﻿/*
======================================================================================================
Fonts
======================================================================================================
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
/*
	font-family:"Lato", sans-serif;
*/
/*
======================================================================================================
Variables
======================================================================================================
*/
/*
======================================================================================================
Defaults
======================================================================================================
*/
html {
    font-size: 62.5%;
    height: 100%;
}

body {
    color: #3d3d3d;
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    line-height: 2.8rem;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

.h1, h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 4.2rem;
    margin: 0 0 30px;
}

.h2, h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 3.6rem;
    margin: 0 0 25px;
}

.h3, h3 {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 3.2rem;
    margin: 0 0 25px;
}

.h4, h4 {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3rem;
    margin: 0 0 15px;
}

.h5, h5 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    margin: 0 0 15px;
}

.h6, h6 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2rem;
    margin: 0 0 15px;
}

code {
    background: #e7f5fe;
    color: #000000;
    font-family: "Roboto Mono", monospace;
    padding: 5px;
}

hr {
    background: #cccccc;
    border: none;
    height: 1px;
    margin: 0 0 30px;
    opacity: 1;
}

sup {
    vertical-align: -webkit-baseline-middle;
}

img {
    vertical-align: bottom;
}

strong {
    font-weight: 700;
}

ul {
    line-height: 2.4rem;
    margin: 0 0 40px 30px;
    padding: 0;
}

    ul li {
        margin: 0 0 10px;
        padding: 0;
    }

    ul ul {
        margin: 15px 0 15px 45px;
    }

ol {
    line-height: 2.4rem;
    margin: 0 0 40px 30px;
    padding: 0;
}

    ol li {
        margin: 0 0 10px;
        padding: 0;
    }

    ol ol {
        list-style-type: lower-alpha;
        margin: 15px 0 15px 45px;
    }

p {
    margin: 0 0 35px;
}

blockquote {
    margin: 0 0 40px;
    position: relative;
    padding-left: 40px;
}

    blockquote .line {
        background: #b8b8b8;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 5px;
    }

    blockquote .quote {
        display: block;
        font-size: 2rem;
        font-weight: 300;
        line-height: 3rem;
        margin: 0 0 30px;
    }

    blockquote cite {
        display: flex;
        justify-content: flex-end;
        font-size: 1.6rem;
        font-style: normal;
        line-height: 2.2rem;
        margin-right: 15%;
    }

a {
    color: #046aaf;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #000000;
        outline: none;
        text-decoration: underline;
    }

    a:focus {
        outline: 2px dotted #83cbfc;
    }

button:focus {
    outline: 2px dotted #83cbfc;
}

@media (min-width: 768px) {
    blockquote .quote {
        font-size: 3rem;
        line-height: 4rem;
    }

    blockquote cite {
        font-size: 1.8rem;
        line-height: 2.2rem;
        margin-right: 20%;
    }
}

dl {
    margin: 0 0 40px;
    padding-left: 30px;
}

    dl dt {
        font-size: 1.7rem;
    }

    dl dd {
        margin: 0 0 15px;
        padding-left: 30px;
    }

/*
======================================================================================================
Tables
======================================================================================================
*/
.table-wrap {
    margin: 0 0 30px;
    overflow: auto;
}

    .table-wrap table {
        background: #ffffff;
        border: 1px solid #cccccc;
        width: 100%;
    }

        .table-wrap table thead {
            background: whitesmoke;
            font-size: 1.5rem;
            line-height: 1.8rem;
        }

            .table-wrap table thead th {
                border: 1px solid #cccccc;
                font-size: 1.9rem;
                font-weight: 700;
                padding: 10px 20px;
            }

        .table-wrap table tbody {
            font-size: 1.6rem;
            line-height: 2.2rem;
        }

            .table-wrap table tbody td {
                border-left: 1px solid #cccccc;
                border-right: 1px solid #cccccc;
                padding: 10px 20px;
                vertical-align: top;
            }

            .table-wrap table tbody tr:nth-child(even) {
                background: whitesmoke;
            }

            .table-wrap table tbody tr:nth-child(odd) {
                background: #ffffff;
            }

    .table-wrap .table-responsive .inline-heading {
        display: none;
    }

@media (max-width: 767px) {
    .table-wrap .table-responsive {
        border: 1px solid #e0e0e0;
        border-bottom: none;
    }

        .table-wrap .table-responsive thead {
            display: none;
        }

        .table-wrap .table-responsive tbody tr:nth-child(odd) td {
            background: #ffffff;
            border-bottom: 1px solid whitesmoke;
        }

        .table-wrap .table-responsive tbody tr:nth-child(even) td {
            background: whitesmoke;
            border-bottom: 1px solid #ffffff;
        }

        .table-wrap .table-responsive tbody tr td:last-child {
            border-bottom: 1px solid #e0e0e0;
        }

        .table-wrap .table-responsive tbody td {
            background: #ffffff;
            border: none;
            display: flex;
            justify-content: flex-start;
        }

            .table-wrap .table-responsive tbody td .inline-heading {
                display: flex;
                font-weight: 600;
                margin-right: 15px;
                min-width: 100px;
            }
}
/*
======================================================================================================
Forms
======================================================================================================
*/
::-webkit-input-placeholder {
    color: #3d3d3d;
}

::-moz-placeholder {
    color: #3d3d3d;
}

:-ms-input-placeholder {
    color: #3d3d3d;
}

:-moz-placeholder {
    color: #3d3d3d;
}

form {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

    form hr {
        margin: -5px 0 25px;
    }

    form p {
        margin: 0 0 20px;
    }

    form label {
        display: block;
    }

    form input,
    form select,
    form textarea {
        background: #ffffff;
        border: 1px solid #cccccc;
        border-radius: 2px;
        color: #525252;
        display: block;
        font-size: 1.6rem;
        height: 44px;
        line-height: 30px;
        outline: none;
        padding: 6px 10px;
        transition: all 0.2s ease-in-out;
        width: 100%;
    }

        form input[type=file] {
            line-height: 24px;
        }

    form textarea {
        min-height: 120px;
    }

        form input:focus,
        form select:focus,
        form textarea:focus {
            box-shadow: 0 0 3px #046aaf;
        }

    form label {
        display: block;
        margin: 0;
    }

    form button {
        cursor: pointer;
    }

    form .label-text {
        display: block;
        font-size: 1.6rem;
        line-height: 2rem;
        margin: 0 0 5px;
    }

    form .checkboxes label,
    form .radios label {
        padding-left: 24px;
        position: relative;
    }

        form .checkboxes label input,
        form .radios label input {
            box-shadow: none;
            display: inline;
            height: auto;
            left: 0;
            opacity: 0;
            position: absolute;
            top: 3px;
            width: auto;
        }

    form .checkboxes .label-text,
    form .radios .label-text {
        position: relative;
    }

        form .checkboxes .label-text:before,
        form .radios .label-text:before {
            color: #666666;
            position: absolute;
            font-family: "Font Awesome 6 Free";
            left: -27px;
            padding: 0 3px;
            top: 0;
        }

    form .checkboxes label .label-text:before {
        content: "\f0c8";
    }

    form .radios label .label-text:before {
        content: "\f111";
    }

    form .checkboxes label input:checked + .label-text:before {
        content: "\f14a";
    }

    form .radios label input:checked + .label-text:before {
        content: "\f192";
    }

    form .checkboxes label input:focus + .label-text:before {
        outline: 2px dotted #83cbfc;
    }

    form .radios label input:focus + .label-text:before {
        outline: 2px dotted #83cbfc;
    }

    form .error {
        color: #970101;
    }

        form .error input {
            background: #fff5f5;
            border-color: #D40202;
        }

    form .success {
        color: #1c752b;
    }

        form .success input {
            background: #f0fbf2;
            border-color: #28A63D;
        }

/*
======================================================================================================
Colors
======================================================================================================
*/
.primary {
    background-color: #046aaf !important;
}

.primary-text {
    color: #046aaf !important;
}

.primary-d3 {
    background-color: #010f19 !important;
}

.primary-d3-text {
    color: #010f19 !important;
}

.primary-d2 {
    background-color: #022e4b !important;
}

.primary-d2-text {
    color: #022e4b !important;
}

.primary-d1 {
    background-color: #034c7d !important;
}

.primary-d1-text {
    color: #034c7d !important;
}

.primary-l1 {
    background-color: #1fa2fa !important;
}

.primary-l1-text {
    color: #1fa2fa !important;
}

.primary-l2 {
    background-color: #83cbfc !important;
}

.primary-l2-text {
    color: #83cbfc !important;
}

.primary-l3 {
    background-color: #e7f5fe !important;
}

.primary-l3-text {
    color: #e7f5fe !important;
}

.secondary {
    background-color: #03826d !important;
}

.secondary-text {
    color: #03826d !important;
}

.secondary-d3 {
    background-color: #000a09 !important;
}

.secondary-d3-text {
    color: #000a09 !important;
}

.secondary-d2 {
    background-color: #01322a !important;
}

.secondary-d2-text {
    color: #01322a !important;
}

.secondary-d1 {
    background-color: #025a4c !important;
}

.secondary-d1-text {
    color: #025a4c !important;
}

.secondary-l1 {
    background-color: #06f0c9 !important;
}

.secondary-l1-text {
    color: #06f0c9 !important;
}

.secondary-l2 {
    background-color: #6afce3 !important;
}

.secondary-l2-text {
    color: #6afce3 !important;
}

.secondary-l3 {
    background-color: #d8fef8 !important;
}

.secondary-l3-text {
    color: #d8fef8 !important;
}

.tertiary {
    background-color: #7c324b !important;
}

.tertiary-text {
    color: #7c324b !important;
}

.tertiary-d3 {
    background-color: #0f0609 !important;
}

.tertiary-d3-text {
    color: #0f0609 !important;
}

.tertiary-d2 {
    background-color: #33151f !important;
}

.tertiary-d2-text {
    color: #33151f !important;
}

.tertiary-d1 {
    background-color: #582335 !important;
}

.tertiary-d1-text {
    color: #582335 !important;
}

.tertiary-l1 {
    background-color: #bc587a !important;
}

.tertiary-l1-text {
    color: #bc587a !important;
}

.tertiary-l2 {
    background-color: #d9a1b4 !important;
}

.tertiary-l2-text {
    color: #d9a1b4 !important;
}

.tertiary-l3 {
    background-color: #f6eaee !important;
}

.tertiary-l3-text {
    color: #f6eaee !important;
}

.accent-1 {
    background-color: #42b3eb !important;
}

.accent-1-text {
    color: #42b3eb !important;
}

.accent-1-d3 {
    background-color: #021017 !important;
}

.accent-1-d3-text {
    color: #021017 !important;
}

.accent-1-d2 {
    background-color: #0b4b6a !important;
}

.accent-1-d2-text {
    color: #0b4b6a !important;
}

.accent-1-d1 {
    background-color: #1485bd !important;
}

.accent-1-d1-text {
    color: #1485bd !important;
}

.accent-1-l1 {
    background-color: #79c9f1 !important;
}

.accent-1-l1-text {
    color: #79c9f1 !important;
}

.accent-1-l2 {
    background-color: #b1e0f7 !important;
}

.accent-1-l2-text {
    color: #b1e0f7 !important;
}

.accent-1-l3 {
    background-color: #e8f6fd !important;
}

.accent-1-l3-text {
    color: #e8f6fd !important;
}

.accent-2 {
    background-color: #7999e2 !important;
}

.accent-2-text {
    color: #7999e2 !important;
}

.accent-2-d3 {
    background-color: #070f22 !important;
}

.accent-2-d3-text {
    color: #070f22 !important;
}

.accent-2-d2 {
    background-color: #193676 !important;
}

.accent-2-d2-text {
    color: #193676 !important;
}

.accent-2-d1 {
    background-color: #2c5cc9 !important;
}

.accent-2-d1-text {
    color: #2c5cc9 !important;
}

.accent-2-l1 {
    background-color: #a3b9eb !important;
}

.accent-2-l1-text {
    color: #a3b9eb !important;
}

.accent-2-l2 {
    background-color: #cdd9f4 !important;
}

.accent-2-l2-text {
    color: #cdd9f4 !important;
}

.accent-2-l3 {
    background-color: #f7f9fd !important;
}

.accent-2-l3-text {
    color: #f7f9fd !important;
}

.slate {
    background-color: #545D6C !important;
}

.slate-text {
    color: #545D6C !important;
}

.slate-d3 {
    background-color: #111316 !important;
}

.slate-d3-text {
    color: #111316 !important;
}

.slate-d2 {
    background-color: #272c33 !important;
}

.slate-d2-text {
    color: #272c33 !important;
}

.slate-d1 {
    background-color: #3e444f !important;
}

.slate-d1-text {
    color: #3e444f !important;
}

.slate-l1 {
    background-color: #8690a1 !important;
}

.slate-l1-text {
    color: #8690a1 !important;
}

.slate-l2 {
    background-color: #bfc4cd !important;
}

.slate-l2-text {
    color: #bfc4cd !important;
}

.slate-l3 {
    background-color: #f8f9fa !important;
}

.slate-l3-text {
    color: #f8f9fa !important;
}

.alert-info {
    background: #00ADB3 !important;
}

.alert-info-text {
    color: #00ADB3 !important;
}

.alert-info-d3 {
    background-color: #00191a !important;
}

.alert-info-d3-text {
    color: #00191a !important;
}

.alert-info-d2 {
    background-color: #004a4d !important;
}

.alert-info-d2-text {
    color: #004a4d !important;
}

.alert-info-d1 {
    background-color: #007c80 !important;
}

.alert-info-d1-text {
    color: #007c80 !important;
}

.alert-info-l1 {
    background-color: #1af7ff !important;
}

.alert-info-l1-text {
    color: #1af7ff !important;
}

.alert-info-l2 {
    background-color: #80fbff !important;
}

.alert-info-l2-text {
    color: #80fbff !important;
}

.alert-info-l3 {
    background-color: #e6feff !important;
}

.alert-info-l3-text {
    color: #e6feff !important;
}

.alert-low {
    background: #28A63D !important;
}

.alert-low-text {
    color: #28A63D !important;
}

.alert-low-d3 {
    background-color: #041207 !important;
}

.alert-low-d3-text {
    color: #041207 !important;
}

.alert-low-d2 {
    background-color: #104319 !important;
}

.alert-low-d2-text {
    color: #104319 !important;
}

.alert-low-d1 {
    background-color: #1c752b !important;
}

.alert-low-d1-text {
    color: #1c752b !important;
}

.alert-low-l1 {
    background-color: #54d66a !important;
}

.alert-low-l1-text {
    color: #54d66a !important;
}

.alert-low-l2 {
    background-color: #a6eab1 !important;
}

.alert-low-l2-text {
    color: #a6eab1 !important;
}

.alert-low-l3 {
    background-color: #e8f9eb !important;
}

.alert-low-l3-text {
    color: #e8f9eb !important;
}

.alert-medium {
    background: #EA7200 !important;
}

.alert-medium-text {
    color: #EA7200 !important;
}

.alert-medium-d3 {
    background-color: #231100 !important;
}

.alert-medium-d3-text {
    color: #231100 !important;
}

.alert-medium-d2 {
    background-color: #653100 !important;
}

.alert-medium-d2-text {
    color: #653100 !important;
}

.alert-medium-d1 {
    background-color: #a85200 !important;
}

.alert-medium-d1-text {
    color: #a85200 !important;
}

.alert-medium-l1 {
    background-color: #ff9e42 !important;
}

.alert-medium-l1-text {
    color: #ff9e42 !important;
}

.alert-medium-l2 {
    background-color: #ffca98 !important;
}

.alert-medium-l2-text {
    color: #ffca98 !important;
}

.alert-medium-l3 {
    background-color: #fff7ef !important;
}

.alert-medium-l3-text {
    color: #fff7ef !important;
}

.alert-high {
    background: #D40202 !important;
}

.alert-high-text {
    color: #D40202 !important;
}

.alert-high-d3 {
    background-color: #1e0000 !important;
}

.alert-high-d3-text {
    color: #1e0000 !important;
}

.alert-high-d2 {
    background-color: #5b0101 !important;
}

.alert-high-d2-text {
    color: #5b0101 !important;
}

.alert-high-d1 {
    background-color: #970101 !important;
}

.alert-high-d1-text {
    color: #970101 !important;
}

.alert-high-l1 {
    background-color: #fd3535 !important;
}

.alert-high-l1-text {
    color: #fd3535 !important;
}

.alert-high-l2 {
    background-color: #fe9a9a !important;
}

.alert-high-l2-text {
    color: #fe9a9a !important;
}

.alert-high-l3 {
    background-color: #ffebeb !important;
}

.alert-high-l3-text {
    color: #ffebeb !important;
}

.black {
    background-color: #000000 !important;
}

.black-text {
    color: #000000 !important;
}

.gray-1 {
    background-color: #141414 !important;
}

.gray-1-text {
    color: #141414 !important;
}

.gray-2 {
    background-color: #292929 !important;
}

.gray-2-text {
    color: #292929 !important;
}

.gray-3 {
    background-color: #3d3d3d !important;
}

.gray-3-text {
    color: #3d3d3d !important;
}

.gray-4 {
    background-color: #525252 !important;
}

.gray-4-text {
    color: #525252 !important;
}

.gray-5 {
    background-color: #666666 !important;
}

.gray-5-text {
    color: #666666 !important;
}

.gray-6 {
    background-color: #7a7a7a !important;
}

.gray-6-text {
    color: #7a7a7a !important;
}

.gray-7 {
    background-color: #8f8f8f !important;
}

.gray-7-text {
    color: #8f8f8f !important;
}

.gray-8 {
    background-color: #a3a3a3 !important;
}

.gray-8-text {
    color: #a3a3a3 !important;
}

.gray-9 {
    background-color: #b8b8b8 !important;
}

.gray-9-text {
    color: #b8b8b8 !important;
}

.gray-10 {
    background-color: #cccccc !important;
}

.gray-10-text {
    color: #cccccc !important;
}

.gray-11 {
    background-color: #e0e0e0 !important;
}

.gray-11-text {
    color: #e0e0e0 !important;
}

.gray-12 {
    background-color: whitesmoke !important;
}

.gray-12-text {
    color: whitesmoke !important;
}

.white {
    background-color: #ffffff !important;
}

.white-text {
    color: #ffffff !important;
}

.gradient-primary {
    background: #022e4b;
    background: -moz-linear-gradient(left, #022e4b 0%, #1fa2fa 100%);
    background: -webkit-linear-gradient(left, #022e4b 0%, #1fa2fa 100%);
    background: linear-gradient(to right, #022e4b 0%, #1fa2fa 100%);
}

/*
======================================================================================================
Font Styles
======================================================================================================
*/
.font-size-xl {
    font-size: 2.2rem;
    line-height: 3.3rem;
}

.font-size-lg {
    font-size: 1.9rem;
    line-height: 3rem;
}

.font-size-md {
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.font-size-sm {
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.font-size-xs {
    font-size: 1.3rem;
    line-height: 1.9rem;
}

.text-caption {
    display: block;
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 10px 0;
}

.text-cta {
    display: inline-block;
    font-weight: 700;
    padding-right: 14px;
    position: relative;
    text-transform: uppercase;
}

    .text-cta i {
        position: absolute;
        right: 0;
        top: 6px;
    }

.text-external {
    display: inline-block;
    margin-right: 2px;
    padding-right: 22px;
    position: relative;
}

    .text-external:after {
        content: "\f08e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 0;
    }

.text-label {
    color: #545D6C;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2.2rem;
    text-transform: uppercase;
}

.text-meta {
    color: #545D6C;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2.2rem;
}

/*
======================================================================================================
Buttons
======================================================================================================
*/
.button {
    background: #046aaf;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.6rem;
    min-width: 166px;
    outline: none;
    padding: 9px 20px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

    .button:hover,
    .button:focus {
        background: #022e4b;
        color: #ffffff;
        outline: none;
        text-decoration: none;
    }

.button-lg {
    min-width: 200px;
    padding: 13px 60px;
}

.button-sm {
    min-width: 100px;
    padding: 2px 20px;
}

.button.secondary:hover,
.button.secondary:focus {
    background: #025a4c !important;
}

.button.tertiary-d1:hover,
.button.tertiary-d1:focus {
    background: #33151f !important;
}

.button.slate:hover,
.button.slate:focus {
    background: #3e444f !important;
}

.button.gray-6:hover,
.button.gray-6:focus {
    background: #525252 !important;
}

.button.white {
    color: #034c7d;
}

    .button.white:hover,
    .button.white:focus {
        background: rgba(255, 255, 255, 0.8) !important;
    }

.button i:first-child {
    margin-right: 5px;
}

.button i:last-child {
    margin-left: 5px;
}

/*
======================================================================================================
Container
======================================================================================================
*/
.container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
/*
======================================================================================================
Utilities
======================================================================================================
*/
.border {
    border: 1px solid #e0e0e0 !important;
}

.border-none {
    border: none !important;
}

.border-round {
    border-radius: 100%;
}

.clickable {
    cursor: pointer;
}

/*
======================================================================================================
Dark Mode
======================================================================================================
*/
.dark-mode a {
    color: #ffffff;
    text-decoration: underline;
}

    .dark-mode a:not(.button):hover,
    .dark-mode a:not(.button):focus {
        opacity: 0.8;
    }

.dark-mode form .checkboxes .label-text:before,
.dark-mode form .radios .label-text:before {
    color: #ffffff;
}

.filter-grayscale {
    filter: grayscale(1);
}

.height-off {
    height: auto !important;
}

.height-on {
    height: 100% !important;
}

.hr-lg {
    height: 4px !important;
}

.hr-md {
    height: 2px !important;
}

.margin-0 {
    margin: 0 !important;
}

.margin-5 {
    margin-bottom: 5px !important;
}

.margin-10 {
    margin-bottom: 10px !important;
}

.margin-15 {
    margin-bottom: 15px !important;
}

.margin-20 {
    margin-bottom: 20px !important;
}

.margin-30 {
    margin-bottom: 30px !important;
}

.margin-40 {
    margin-bottom: 40px !important;
}

.margin-50 {
    margin-bottom: 50px !important;
}

.margin-60 {
    margin-bottom: 60px !important;
}

.margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.margin-pull-10 {
    margin-bottom: -10px !important;
}

.margin-pull-20 {
    margin-bottom: -20px !important;
}

.margin-pull-30 {
    margin-bottom: -30px !important;
}

.margin-pull-40 {
    margin-bottom: -40px !important;
}

.margin-pull-50 {
    margin-bottom: -50px !important;
}

.margin-pull-60 {
    margin-bottom: -60px !important;
}

.nowrap {
    white-space: nowrap;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-70 {
    opacity: 0.7;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.padding-0 {
    padding: 0 !important;
}

.padding-10 {
    padding: 10px !important;
}

.padding-20 {
    padding: 20px !important;
}

.padding-30 {
    padding: 30px !important;
}

.padding-40 {
    padding: 40px !important;
}

.padding-50 {
    padding: 50px !important;
}

.padding-60 {
    padding: 60px !important;
}

.pipe {
    margin: 0 5px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

    .row > div {
        padding-left: 15px;
        padding-right: 15px;
    }

.row-gutter-0 {
    margin-left: 0;
    margin-right: 0;
}

    .row-gutter-0 > div {
        padding-left: 0;
        padding-right: 0;
    }

.row-gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}

    .row-gutter-10 > div {
        padding-left: 5px;
        padding-right: 5px;
    }

.row-gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}

    .row-gutter-20 > div {
        padding-left: 10px;
        padding-right: 10px;
    }

.row-gutter-30 {
    margin-left: -15px;
    margin-right: -15px;
}

    .row-gutter-30 > div {
        padding-left: 15px;
        padding-right: 15px;
    }

.row-gutter-40 {
    margin-left: -20px;
    margin-right: -20px;
}

    .row-gutter-40 > div {
        padding-left: 20px;
        padding-right: 20px;
    }

.row-gutter-50 {
    margin-left: -25px;
    margin-right: -25px;
}

    .row-gutter-50 > div {
        padding-left: 25px;
        padding-right: 25px;
    }

.row-gutter-60 {
    margin-left: -30px;
    margin-right: -30px;
}

    .row-gutter-60 > div {
        padding-left: 30px;
        padding-right: 30px;
    }

.row-offset-wrap {
    margin: -3px;
    overflow: hidden;
    padding: 3px;
}

.spacer-5 {
    clear: both;
    height: 5px;
}

.spacer-10 {
    clear: both;
    height: 10px;
}

.spacer-20 {
    clear: both;
    height: 20px;
}

.spacer-30 {
    clear: both;
    height: 30px;
}

.spacer-40 {
    clear: both;
    height: 40px;
}

.spacer-50 {
    clear: both;
    height: 50px;
}

.spacer-60 {
    clear: both;
    height: 60px;
}

.spacer-70 {
    clear: both;
    height: 70px;
}

.spacer-80 {
    clear: both;
    height: 80px;
}

.text-align-center {
    text-align: center;
}

.text-align-justify {
    text-align: justify;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-indent {
    padding-left: 30px;
}

.text-wrap {
    word-wrap: break-word;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-truncate {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.visually-hidden {
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    white-space: nowrap;
    width: 1px;
}

/*
====================================================================================================
#Page
====================================================================================================
*/
#page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    #page main {
        flex-grow: 1;
        flex-shrink: 0;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

/*
====================================================================================================
Header
====================================================================================================
*/
header {
    background: #ffffff;
    border-bottom: 5px solid #046aaf;
    left: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
}

    header .skip-to-content {
        background: #046aaf;
        border: 2px solid #046aaf;
        color: #ffffff;
        display: inline-block;
        font-size: 1.6rem;
        left: -2000%;
        line-height: 20px;
        min-width: 160px;
        padding: 8px 20px;
        position: absolute;
        text-decoration: none;
        text-align: center;
        top: 10px;
        z-index: 2;
    }

        header .skip-to-content:focus {
            left: auto;
            right: 15px;
        }

    header .header-content {
        align-items: center;
        display: flex;
        position: relative;
    }

        header .header-content .container {
            position: relative;
        }

        header .header-content .container-fluid {
            position: relative;
        }

        header .header-content .logo {
            flex: 1;
            height: 55px;
        }

            header .header-content .logo a {
                display: inline-flex;
                align-items: center;
            }

            header .header-content .logo img {
                height: 55px;
                margin-right: 10px;
                width: auto;
            }

        header .header-content .dropdowns {
            display: none;
        }

            header .header-content .dropdowns > ul {
                display: flex;
                font-size: 1.5rem;
                line-height: 2rem;
                list-style: none;
                margin: 20px 0 0;
                z-index: 1;
            }

                header .header-content .dropdowns > ul > li {
                    margin: 0;
                    padding: 0 8px;
                    position: relative;
                }

                    header .header-content .dropdowns > ul > li > a {
                        border-bottom: 6px solid transparent;
                        color: #034c7d;
                        display: block;
                        padding: 16px 15px 10px;
                        text-decoration: none;
                        transition: all 0.2s ease-in-out;
                    }

                    header .header-content .dropdowns > ul > li:hover > a,
                    header .header-content .dropdowns > ul > li:focus > a,
                    header .header-content .dropdowns > ul > li.focused > a {
                        border-bottom-color: #1fa2fa;
                    }

                    header .header-content .dropdowns > ul > li:hover > ul,
                    header .header-content .dropdowns > ul > li:focus > ul,
                    header .header-content .dropdowns > ul > li.focused > ul {
                        height: auto;
                        opacity: 1;
                    }

                    header .header-content .dropdowns > ul > li > ul {
                        background: #ffffff;
                        border: 1px solid #cccccc;
                        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                        height: 0;
                        list-style: none;
                        margin: 0;
                        opacity: 0;
                        overflow: hidden;
                        position: absolute;
                        left: 10px;
                        top: 100%;
                        width: 275px;
                    }

                    header .header-content .dropdowns > ul > li:nth-child(5) > ul {
                        left: auto;
                        right: 10px;
                    }

                    header .header-content .dropdowns > ul > li:nth-child(6) > ul {
                        left: auto;
                        right: 10px;
                    }

                    header .header-content .dropdowns > ul > li > ul > li:first-child {
                        margin-top: 15px;
                    }

                    header .header-content .dropdowns > ul > li > ul > li:last-child {
                        margin-bottom: 15px;
                    }

                    header .header-content .dropdowns > ul > li > ul > li {
                        margin: 0;
                    }

                        header .header-content .dropdowns > ul > li > ul > li > a {
                            color: #034c7d;
                            display: block;
                            padding: 6px 20px;
                            text-decoration: none;
                            transition: all 0.2s ease-in-out;
                        }

                            header .header-content .dropdowns > ul > li > ul > li > a:hover,
                            header .header-content .dropdowns > ul > li > ul > li > a:focus {
                                background: whitesmoke;
                                color: black;
                            }

        header .header-content .links {
            font-size: 2.4rem;
            line-height: 48px;
            margin: 6px -10px 6px 0;
        }

            header .header-content .links > a {
                color: #034c7d;
                display: inline-block;
                height: 48px;
                line-height: 48px;
                margin: 0 0 0 10px;
                padding: 0;
                text-align: center;
                text-decoration: none;
                width: 48px;
            }

                header .header-content .links > a:hover,
                header .header-content .links > a:focus {
                    color: #000000;
                }

            header .header-content .links .open-menu i:last-child {
                display: none;
            }

            header .header-content .links .open-menu.opened i:first-child {
                display: none;
            }

            header .header-content .links .open-menu.opened i:last-child {
                display: inline;
            }

@media (min-width: 992px) {
    header .header-content {
        text-align: left;
    }

        header .header-content .dropdowns {
            display: flex;
        }

        header .header-content .links {
            font-size: 2rem;
        }

            header .header-content .links .open-menu {
                display: none;
            }
}
/*
====================================================================================================
Main
====================================================================================================
*/
main {
    position: relative;
}

    main .content-inner {
        margin: 0 auto;
        padding: 20px 20px 0;
    }

        main .content-inner .crumbs {
            margin: 0 0 20px;
        }

@media (min-width: 1200px) {
    main .content-inner {
        padding: 20px 30px 0;
    }
}
/*
====================================================================================================
Footer
====================================================================================================
*/
footer {
    color: #000000;
    font-size: 1.5rem;
    line-height: 2.1rem;
}

    footer p {
        margin: 0 0 15px;
    }

    footer ul {
        list-style: none;
        margin: 0 0 10px;
    }

    footer hr {
        background: #1fa2fa;
        height: 2px;
        margin: 0 0 20px;
    }

    footer a {
        color: #000000;
    }

        footer a:hover,
        footer a:focus {
            text-decoration: underline;
        }

    footer .footer-content:first-child {
        background: #ffffff;
        border-top: 5px solid #046aaf;
        padding: 40px 0 30px;
    }

    footer .footer-content:last-child {
        background: #046aaf;
        color: #ffffff;
        padding: 20px 0;
    }

    footer .logo {
        display: inline-flex;
        align-items: center;
    }

        footer .logo img {
            height: 55px;
            margin-right: 10px;
            width: auto;
        }

    footer .social {
        margin: 0 -5px 10px;
        text-align: right;
    }

        footer .social a {
            color: #046aaf;
            display: inline-block;
            font-size: 2.6rem;
            margin: 0 5px;
        }

    footer .copyright {
        font-size: 1.4rem;
        line-height: 2rem;
        text-align: center;
    }
/*
====================================================================================================
Menu
====================================================================================================
*/
.menu.opened {
    right: 0;
    width: 100%;
}

.menu {
    background: #ffffff;
    border-left: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    bottom: 0;
    max-width: 430px;
    overflow: auto;
    position: fixed;
    right: -430px;
    transition: right 0.2s ease-in-out;
    top: 70px;
    width: 0;
    z-index: 3;
}

    .menu a {
        color: #3d3d3d;
    }

    .menu .main ul {
        font-size: 1.6rem;
        line-height: 2.2rem;
        list-style: none;
        margin: 0;
    }

        .menu .main ul > li {
            border-bottom: 1px solid #cccccc;
            margin: 0;
            overflow: hidden;
            position: relative;
        }

            .menu .main ul > li > a {
                display: block;
                padding: 8px 40px 8px 20px;
                transition: all 0.2s ease-in-out;
            }

                .menu .main ul > li > a:hover,
                .menu .main ul > li > a:focus {
                    background: whitesmoke;
                    text-decoration: none;
                }

            .menu .main ul > li > ul {
                margin: 0;
            }

            .menu .main ul > li > .toggle-sub-list {
                background: transparent;
                border: none;
                color: #3d3d3d;
                font-size: 2.2rem;
                outline: none;
                padding: 8px 5px;
                position: absolute;
                right: 0;
                text-align: center;
                top: 0;
                width: 32px;
            }

                .menu .main ul > li > .toggle-sub-list:hover,
                .menu .main ul > li > .toggle-sub-list:focus {
                    background: transparent;
                }

            .menu .main ul > li.opened > .toggle-sub-list {
                transform: rotate(90deg);
            }

            .menu .main ul > li > .sub-list ul li {
                border-bottom: none;
            }

                .menu .main ul > li > .sub-list ul li a {
                    padding-left: 40px;
                }

                    .menu .main ul > li > .sub-list ul li a:hover,
                    .menu .main ul > li > .sub-list ul li a:focus {
                        text-decoration: none;
                    }

            .menu .main ul > li > .sub-list .sub-list-item {
                border-top: 1px solid #cccccc;
            }

            .menu .main ul > li > .sub-list .sub-list-head {
                padding: 8px 40px 8px 20px;
                position: relative;
            }

                .menu .main ul > li > .sub-list .sub-list-head a {
                    border: none;
                    color: #046aaf;
                    outline: none;
                    padding: 8px 5px;
                    position: absolute;
                    right: 0;
                    text-align: center;
                    top: 0;
                    transition: all 0.2s ease-in-out;
                    width: 32px;
                }

                    .menu .main ul > li > .sub-list .sub-list-head a.opened {
                        transform: rotate(45deg);
                    }

@media (min-width: 992px) {
    .menu {
        display: none !important;
    }
}
/*
====================================================================================================
Page Shield
====================================================================================================
*/
.page-shield {
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
}

@media (min-width: 992px) {
    .page-shield {
        display: none !important;
    }
}

.align-wrap {
    display: flex;
}

.bg-img {
    left: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

    .bg-img img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .bg-img video {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .bg-img .center-bottom {
        object-position: center bottom;
    }

    .bg-img .center-center {
        object-position: center center;
    }

    .bg-img .center-top {
        object-position: center top;
    }

    .bg-img .left-bottom {
        object-position: left bottom;
    }

    .bg-img .left-center {
        object-position: left center;
    }

    .bg-img .left-top {
        object-position: left top;
    }

    .bg-img .right-bottom {
        object-position: right bottom;
    }

    .bg-img .right-center {
        object-position: right center;
    }

    .bg-img .right-top {
        object-position: right top;
    }

.body-copy {
    max-width: 700px;
}

.buttons-wrap {
    margin-left: -5px;
    margin-right: -5px;
}

    .buttons-wrap > a,
    .buttons-wrap > button {
        margin: 5px;
    }

.card-wrap {
    height: 100%;
    padding: 0 0 30px;
}

    .card-wrap .card-inner.clickable:hover,
    .card-wrap .card-inner.clickable:focus {
        border-color: #1fa2fa !important;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    }

    .card-wrap .card-inner {
        background: #ffffff;
        border: 1px solid #cccccc;
        font-size: 1.6rem;
        height: 100%;
        line-height: 2.2rem;
        padding: 20px;
        position: relative;
        transition: all 0.2s ease-in-out;
    }

    .card-wrap .content .h5,
    .card-wrap .content h5 {
        font-weight: 500;
    }

    .card-wrap .content p {
        margin: 0 0 10px;
    }

    .card-wrap .content > p:last-child {
        margin: 0;
    }

    .card-wrap .content > .text-label {
        margin: 0 0 5px;
    }

    .card-wrap .content .head {
        background: #034c7d;
        color: #ffffff;
        margin: -21px -21px 15px;
        padding: 7px 20px;
    }

    .card-wrap .content .img-wrap {
        margin: -20px -20px 20px;
    }

    .card-wrap .icon, .content .icon {
        background: #28A63D;
        border-radius: 4px;
        bottom: 5px;
        color: #ffffff;
        font-size: 1.8rem;
        height: 32px;
        line-height: 32px;
        position: absolute;
        right: 5px;
        text-align: center;
        width: 32px;
    }

        .card-wrap .icon i, .content .icon i {
            transform: rotate(-45deg);
        }

.copy-media-card {
    margin: 0 0 30px;
    padding: 0;
}

    .copy-media-card .content {
        padding: 30px 40px 0;
    }

.crumbs {
    color: #666666;
    display: none;
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin: -20px 0 40px;
}

    .crumbs a {
        display: inline-block;
        text-decoration: none;
    }

        .crumbs a:hover,
        .crumbs a:focus {
            color: #000;
        }

    .crumbs span {
        display: inline-block;
        margin: 0 5px;
    }

    .crumbs .active {
        margin: 0;
    }

@media (min-width: 576px) {
    .crumbs {
        display: block;
    }
}

.filter-tags {
    margin: -5px -5px 20px;
}

    .filter-tags a {
        align-items: center;
        border: 1px solid #cccccc;
        border-radius: 2px;
        color: #3d3d3d;
        display: inline-flex;
        font-size: 1.4rem;
        line-height: 2.4rem;
        margin: 5px;
        padding: 4px 10px;
        position: relative;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }

        .filter-tags a i {
            color: #046aaf;
            margin-left: 15px;
        }

        .filter-tags a:hover,
        .filter-tags a:focus {
            background: whitesmoke;
            border-color: #a3a3a3;
        }

.form-buttons > a {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #3d3d3d;
    min-width: 0;
    padding: 8px 0;
    text-align: center;
    width: 44px;
}

    .form-buttons > a.on {
        background: #046aaf;
        border-color: #046aaf;
        color: #ffffff;
    }

.form-filters {
    background: whitesmoke;
    margin: 0 0 30px;
    padding: 20px 20px 12px;
}

    .form-filters p {
        margin: 0 0 8px;
    }

    .form-filters .form-search {
        margin: 0 0 8px;
    }

.form-search {
    margin: 0 0 30px;
    position: relative;
}

    .form-search form {
        position: relative;
    }

        .form-search form input {
            background: #ffffff;
            padding-left: 20px;
            padding-right: 44px;
        }

        .form-search form button {
            background: transparent;
            border: none;
            color: #000000;
            height: 44px;
            font-size: 1.6rem;
            line-height: 44px;
            padding: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: 44px;
        }

.form-sign-up {
    background: #ffffff;
    border: 2px solid #83cbfc;
    padding: 30px 30px 10px;
}

@media (min-width: 768px) {
    .form-sign-up {
        padding: 30px 60px 10px;
    }
}

.heading .h2, .heading h2 {
    font-size: 2.8rem;
    line-height: 3.2rem;
}

.heading hr {
    background: #83cbfc;
}

.img-wrap {
    position: relative;
}

    .img-wrap img {
        max-width: 100%;
    }

    .img-wrap .caption {
        background: black;
        color: #ffffff;
        font-size: 1.4rem;
        line-height: 2rem;
        padding: 10px 30px;
    }

        .img-wrap .caption a {
            color: #ffffff;
        }

        .img-wrap .caption p {
            margin: 0 0 10px;
        }

@media (min-width: 768px) {
    .img-wrap .caption {
        background: rgba(0, 0, 0, 0.6);
        left: 0;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .img-float-left {
        float: left;
        margin-right: 30px;
        max-width: 50%;
    }

    .img-float-right {
        float: right;
        margin-left: 30px;
        max-width: 50%;
    }
}

.img-wrap-bg {
    background-size: cover;
    background-position: center center;
    display: flex;
    height: 100%;
}

    .img-wrap-bg img {
        max-width: 100%;
    }

.list-icons {
    list-style: none;
    margin: 0 0 40px;
}

    .list-icons li {
        padding-left: 50px;
        position: relative;
    }

        .list-icons li > span:first-child {
            left: 20px;
            position: absolute;
            top: 0;
        }

.list-no-bull {
    list-style: none;
    margin: 0 0 40px;
}

.listing {
    border-bottom: 1px solid #cccccc;
    margin: 0 0 30px;
    padding: 0 0 20px;
    position: relative;
}

    .listing p {
        margin: 0 0 10px;
    }

    .listing ul {
        margin-bottom: 10px;
    }

    .listing .content {
        max-width: 700px;
    }

    .listing .text-label {
        margin: 0 0 5px;
    }

    .listing .text-meta {
        margin: 0 0 5px;
    }

    .listing .text-stamp {
        position: absolute;
        right: 0;
        top: 0;
    }

    .listing .text-title {
        font-size: 1.9rem;
        font-weight: 400;
        line-height: 3rem;
        margin: 0 0 10px;
    }

.nav-links {
    display: flex;
    font-size: 1.5rem;
    line-height: 2rem;
    list-style: none;
    margin: 0 -20px;
    overflow: auto;
    padding: 0 18px;
    z-index: 1;
}

    .nav-links > li {
        margin: 0;
        padding: 0 2px;
        position: relative;
    }

        .nav-links > li > a {
            border-bottom: 6px solid transparent;
            color: #034c7d;
            display: block;
            padding: 15px 15px 9px;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }

        .nav-links > li:hover > a,
        .nav-links > li:focus > a,
        .nav-links > li.on > a {
            border-bottom-color: #1fa2fa;
        }

.note-wrap {
    margin: 0 0 40px;
    overflow: hidden;
    padding-left: 5px;
}

    .note-wrap .heading {
        background: rgba(255, 255, 255, 0.65);
        color: #000000;
        padding: 5px 20px 5px 35px;
        position: relative;
    }

        .note-wrap .heading .icon {
            left: 10px;
            position: absolute;
            top: 5px;
        }

    .note-wrap .content {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px 20px 10px 35px;
    }

        .note-wrap .content p {
            margin: 0 0 10px;
        }

.notice-wrap {
    border-radius: 4px;
    margin: 0 0 40px;
    overflow: hidden;
    padding: 2px;
}

    .notice-wrap .notice-inner {
        padding: 10px 20px;
    }

.pager {
    margin: 0 -3px 30px;
    text-align: center;
}

    .pager nav a {
        background: #ffffff;
        border: 1px solid #cccccc;
        border-radius: 2px;
        color: #3d3d3d;
        display: inline-block;
        font-size: 1.4rem;
        line-height: 32px;
        margin: 2px 0;
        min-width: 34px;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }

        .pager nav a:hover,
        .pager nav a:focus {
            background: whitesmoke;
            border-color: #a3a3a3;
            text-decoration: none;
        }

        .pager nav a:focus {
            background: #046aaf;
            color: #ffffff;
        }

    .pager nav span {
        display: inline-block;
        line-height: 32px;
        text-align: center;
        width: 34px;
    }

    .pager nav .on {
        background: #e0e0e0;
    }

        .pager nav .on:hover,
        .pager nav .on:focus {
            background: #e0e0e0;
            color: #3d3d3d;
            text-decoration: none;
        }

    .pager nav .text {
        border: none;
        color: #046aaf;
        padding: 0 5px;
    }

        .pager nav .text:hover,
        .pager nav .text:focus {
            background: transparent;
            color: #046aaf;
        }

.pager-prev-next nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.share-this {
    align-items: center;
    color: #666666;
    display: flex;
    margin: -25px 0 40px;
}

    .share-this a {
        color: #666666;
        font-size: 2rem;
        margin-left: 10px;
        text-decoration: none;
    }

        .share-this a:hover,
        .share-this a:focus {
            color: #03826d;
        }

.slider-banner .slide {
    background: #ffffff;
    padding: 0 10px;
}

    .slider-banner .slide .caption {
        opacity: 0.3;
    }

    .slider-banner .slide.slick-current .caption {
        opacity: 1;
    }

.slider-banner .slick-arrow {
    background: #ffffff;
    margin-top: -32px;
}

    .slider-banner .slick-arrow:after {
        color: #046aaf;
    }

@media (min-width: 768px) {
    .slider-banner .slide {
        padding: 0 5px;
    }

        .slider-banner .slide .img-wrap {
            max-width: 700px;
        }

    .slider-banner .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -375px;
    }

    .slider-banner .slick-arrow.slick-next {
        right: 50%;
        margin-right: -375px;
    }
}

@media (min-width: 992px) {
    .slider-banner .slide {
        padding: 0 5px;
    }

        .slider-banner .slide .img-wrap {
            max-width: 900px;
        }

    .slider-banner .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -475px;
    }

    .slider-banner .slick-arrow.slick-next {
        right: 50%;
        margin-right: -475px;
    }
}

@media (min-width: 1200px) {
    .slider-banner .slide {
        padding: 0 5px;
    }

        .slider-banner .slide .img-wrap {
            max-width: 1100px;
        }

    .slider-banner .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -575px;
    }

    .slider-banner .slick-arrow.slick-next {
        right: 50%;
        margin-right: -575px;
    }
}

@media (min-width: 1400px) {
    .slider-banner .slide {
        padding: 0 5px;
    }

        .slider-banner .slide .img-wrap {
            max-width: 1300px;
        }

    .slider-banner .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -675px;
    }

    .slider-banner .slick-arrow.slick-next {
        right: 50%;
        margin-right: -675px;
    }
}

@media (min-width: 1600px) {
    .slider-banner .slide {
        padding: 0 5px;
    }

        .slider-banner .slide .img-wrap {
            max-width: 1500px;
        }

    .slider-banner .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -775px;
    }

    .slider-banner .slick-arrow.slick-next {
        right: 50%;
        margin-right: -775px;
    }
}

.slider-cards-wrap {
    padding: 2px 50px;
}

    .slider-cards-wrap .slick-slider {
        margin: 0 -15px 30px;
    }

        .slider-cards-wrap .slick-slider .slick-list {
            padding: 5px 0;
        }

        .slider-cards-wrap .slick-slider .card-wrap {
            height: auto;
            padding: 0 15px;
        }

        .slider-cards-wrap .slick-slider .img-wrap img {
            width: 100%;
        }

    .slider-cards-wrap .slick-arrow.slick-prev {
        left: -36px;
    }

    .slider-cards-wrap .slick-arrow.slick-next {
        right: -36px;
    }

.slider-images {
    padding: 0 48px;
    position: relative;
}

    .slider-images .slide {
        font-size: 1.6rem;
        line-height: 2.2rem;
        position: relative;
    }

        .slider-images .slide p {
            margin: 0 0 16px;
        }

        .slider-images .slide .img-wrap {
            margin: 0;
        }

.slider-caption-text {
    font-size: 1.4rem;
    line-height: 2rem;
    margin: 10px 0 20px;
    padding: 0 48px;
}

@media (min-width: 768px) {
    .slider-images .slide .img-wrap {
        margin: 10% 0;
        overflow: hidden;
        padding-bottom: 40%;
        transition: all 0.2s ease;
        display: block;
        min-width: 100%;
    }

        .slider-images .slide .img-wrap img {
            height: 100%;
            left: 0;
            object-fit: cover;
            position: absolute;
            top: 0;
            width: 100%;
        }

    .slider-images .slide.slick-current .img-wrap {
        border: 3px solid #ffffff;
        margin: 0;
        padding-bottom: 60%;
    }

    .slider-caption-text {
        margin: 10px auto 20px;
        max-width: 60%;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .slider-caption-text {
        max-width: 63%;
    }
}

.vid-wrap {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

    .vid-wrap iframe {
        border: none;
        bottom: 0;
        left: 0;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

/*
======================================================================================================
Tray Styles
======================================================================================================
*/
.tray {
    padding: 40px 0 10px;
    position: relative;
}

    .tray .container {
        position: relative;
        z-index: 1;
    }

    .tray.tray-offset {
        padding-bottom: 0;
    }

        .tray.tray-offset + .tray {
            padding-top: 10px;
        }

.tray-alert {
    background: #000000;
    bottom: 0;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 2.2rem;
    padding: 24px 0;
    position: sticky;
    left: 0;
    width: 100%;
    z-index: 2;
}

    .tray-alert p {
        margin: 0;
    }

    .tray-alert .container {
        position: relative;
    }

    .tray-alert .content {
        display: flex;
        padding-right: 40px;
    }

        .tray-alert .content .icon {
            font-size: 3rem;
            margin: 2px 15px 0 0;
        }

    .tray-alert .close-alert {
        background: transparent;
        border: none;
        color: #ffffff;
        display: inline-block;
        padding: 5px 10px;
        position: absolute;
        right: 20px;
        text-decoration: none;
        top: -3px;
    }

.tray-banner {
    background: #046aaf;
    color: #ffffff;
    padding: 10px 0 20px;
    position: relative;
}

    .tray-banner .h1, .tray-banner h1 {
        display: flex;
        margin: 0;
    }

.tray-banner-small {
    background: #046aaf;
    color: #ffffff;
    padding: 7px 0 17px;
    position: relative;
}

    .tray-banner-small .h2, .tray-banner h2 {
        display: flex;
        margin: 0;
    }

.tray-form {
    padding: 60px 0 40px;
}

.tray-image {
    height: 25vh;
    max-height: 255px;
    padding: 0;
}

    .tray-image img {
        width: 100%;
    }

@media (min-width: 768px) {
    .tray-image {
        height: 50vh;
        max-height: 500px;
        padding: 0;
    }
}

.tray-image-grid {
    display: flex;
    padding: 0;
    flex-wrap: wrap;
}

    .tray-image-grid .grid-item {
        overflow: hidden;
        height: 85px;
        position: relative;
        width: 25%;
    }

@media (min-width: 768px) {
    .tray-image-grid .grid-item {
        height: 166px;
    }
}

.tray-listing .listing:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tray-nav-links {
    background: whitesmoke;
    border-bottom: 1px solid #cccccc;
    padding: 0;
    position: sticky;
    top: 65px;
    z-index: 2;
}

.tray-promo {
    position: relative;
}

    .tray-promo .controls {
        bottom: 10px;
        left: 0;
        line-height: 3rem;
        position: absolute;
        text-align: right;
        width: 100%;
        z-index: 2;
    }

        .tray-promo .controls a {
            color: #ffffff;
            font-size: 3rem;
        }

            .tray-promo .controls a .text {
                display: none;
            }

            .tray-promo .controls a:last-child {
                display: none;
            }

        .tray-promo .controls .paused a:first-child {
            display: none;
        }

        .tray-promo .controls .paused a:last-child {
            display: inline;
        }

@media (min-width: 768px) {
    .tray-promo .content .h1, .tray-promo .content h1 {
        font-size: 5rem;
        line-height: 5.6rem;
    }

    .tray-promo .content p {
        font-size: 2.8rem;
        line-height: 3.4rem;
    }
}

.tray-slider-banner {
    padding: 10px 0 0;
}

/*
====================================================================================================
Plugins
====================================================================================================
*/
/* Slick Slider */
.slick-slider {
    display: none !important;
}

    .slick-slider.slick-initialized {
        display: block !important;
    }

.slick-track {
    display: flex !important;
}

    .slick-track .slick-slide {
        display: flex !important;
        height: auto !important;
    }

.slick-arrow {
    background: #a3a3a3;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: -20px;
    overflow: hidden;
    outline: none;
    padding: 0;
    position: absolute;
    text-indent: -999px;
    top: 50%;
    width: 40px;
    z-index: 1;
}

    .slick-arrow.slick-prev {
        left: 0;
    }

    .slick-arrow.slick-next {
        right: 0;
    }

    .slick-arrow:after {
        color: #ffffff;
        font-family: "Font Awesome 6 Free";
        font-size: 2rem;
        font-weight: 900;
        position: absolute;
        text-indent: 0;
    }

    .slick-arrow.slick-prev:after {
        content: "\f053";
        left: 12px;
    }

    .slick-arrow.slick-next:after {
        content: "\f054";
        right: 12px;
    }

    .slick-arrow:focus {
        outline: 2px dotted #046aaf;
    }

.slick-dots {
    line-height: 20px;
    list-style: none;
    margin: 10px 0;
    text-align: center;
    width: 100%;
    z-index: 1;
}

    .slick-dots li {
        display: inline-block;
        margin: 0 5px 0;
    }

        .slick-dots li button {
            background: transparent;
            border: 2px solid #046aaf;
            border-radius: 100%;
            cursor: pointer;
            height: 18px;
            overflow: hidden;
            padding: 0;
            text-indent: -1000px;
            width: 18px;
        }

        .slick-dots li.slick-active button {
            background: #046aaf;
            border-color: #046aaf;
        }

/*
======================================================================================================
Lakeside
======================================================================================================
*/
.lakeside header .header-content .dropdowns > ul > li:hover > a,
.lakeside header .header-content .dropdowns > ul > li:focus > a,
.lakeside header .header-content .dropdowns > ul > li.focused > a {
    border-bottom-color: #42b3eb;
}

.lakeside footer hr {
    background-color: #79c9f1;
}

.lakeside footer .footer-content:first-child {
    border-top: 5px solid #0b4b6a;
}

.lakeside .heading hr {
    background-color: #79c9f1 !important;
}

.lakeside .nav-links > li:hover > a,
.lakeside .nav-links > li:focus > a,
.lakeside .nav-links > li.on > a {
    border-bottom-color: #42b3eb;
}

/*
======================================================================================================
Bayside
======================================================================================================
*/
.bayside header .header-content .dropdowns > ul > li:hover > a,
.bayside header .header-content .dropdowns > ul > li:focus > a,
.bayside header .header-content .dropdowns > ul > li.focused > a {
    border-bottom-color: #7999e2;
}

.bayside footer hr {
    background-color: #a3b9eb;
}

.bayside footer .footer-content:first-child {
    border-top: 5px solid #193676;
}

.bayside .heading hr {
    background-color: #a3b9eb !important;
}

.bayside .nav-links > li:hover > a,
.bayside .nav-links > li:focus > a,
.bayside .nav-links > li.on > a {
    border-bottom-color: #7999e2;
}
