@import url("https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600&display=swap");
/* font-family: 'Josefin Sans', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,200&display=swap");
/* font-family: 'Nunito', sans-serif; */
@font-face {
    font-family: "Gill Sans SemiBold";
    src: url("webfonts/gillsan-semibold.eot");
    /* IE9*/
    src: url("webfonts/gillsan-semibold.eot?#iefix") format("embedded-opentype"), url("webfonts/gillsan-semibold.woff2") format("woff2"), url("webfonts/gillsan-semibold.woff") format("woff"), url("webfonts/gillsan-semibold.ttf") format("truetype"), url("webfonts/gillsan-semibold.svg#Gill Sans SemiBold") format("svg");
    /* iOS 4.1- */
}

@font-face {
    font-family: "PrincetownD";
    src: url("webfonts/princetown-let.eot");
    /* IE9*/
    src: url("webfonts/princetown-let.eot?#iefix") format("embedded-opentype"), url("webfonts/princetown-let.woff2") format("woff2"), url("webfonts/princetown-let.woff") format("woff"), url("webfonts/princetown-let.ttf") format("truetype"), url("webfonts/princetown-let.svg#PrincetownD") format("svg");
    /* iOS 4.1- */
}

:root {
    --balloon-color: rgba(16, 16, 16, 0.95);
    --balloon-font-size: 12px;
    --balloon-move: 4px;
}

button[aria-label][data-balloon-pos] {
    overflow: visible;
}

[aria-label][data-balloon-pos] {
    position: relative;
    cursor: pointer;
}

    [aria-label][data-balloon-pos]:after {
        opacity: 0;
        pointer-events: none;
        transition: all .18s ease-out .18s;
        text-indent: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: normal;
        font-style: normal;
        text-shadow: none;
        font-size: var(--balloon-font-size);
        background: var(--balloon-color);
        border-radius: 2px;
        color: #fff;
        content: attr(aria-label);
        padding: .5em 1em;
        position: absolute;
        white-space: nowrap;
        z-index: 10;
    }

    [aria-label][data-balloon-pos]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-top-color: var(--balloon-color);
        opacity: 0;
        pointer-events: none;
        transition: all .18s ease-out .18s;
        content: "";
        position: absolute;
        z-index: 10;
    }

    [aria-label][data-balloon-pos]:hover:before, [aria-label][data-balloon-pos]:hover:after, [aria-label][data-balloon-pos][data-balloon-visible]:before, [aria-label][data-balloon-pos][data-balloon-visible]:after, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:before, [aria-label][data-balloon-pos]:not([data-balloon-nofocus]):focus:after {
        opacity: 1;
        pointer-events: none;
    }

    [aria-label][data-balloon-pos].font-awesome:after {
        font-family: FontAwesome, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    [aria-label][data-balloon-pos][data-balloon-break]:after {
        white-space: pre;
    }

    [aria-label][data-balloon-pos][data-balloon-break][data-balloon-length]:after {
        white-space: pre-line;
        word-break: break-word;
    }

    [aria-label][data-balloon-pos][data-balloon-blunt]:before, [aria-label][data-balloon-pos][data-balloon-blunt]:after {
        transition: none;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up"]:after {
        bottom: 100%;
        left: 50%;
        margin-bottom: 10px;
        transform: translate(-50%, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up"]:before {
        bottom: 100%;
        left: 50%;
        transform: translate(-50%, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:after {
        transform: translate(-50%, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up"][data-balloon-visible]:before {
        transform: translate(-50%, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-left"]:after {
        bottom: 100%;
        left: 0;
        margin-bottom: 10px;
        transform: translate(0, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-left"]:before {
        bottom: 100%;
        left: 5px;
        transform: translate(0, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:after {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up-left"][data-balloon-visible]:before {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-right"]:after {
        bottom: 100%;
        right: 0;
        margin-bottom: 10px;
        transform: translate(0, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-right"]:before {
        bottom: 100%;
        right: 5px;
        transform: translate(0, var(--balloon-move));
        transform-origin: top;
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:after {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="up-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="up-right"][data-balloon-visible]:before {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down"]:after {
        left: 50%;
        margin-top: 10px;
        top: 100%;
        transform: translate(-50%, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down"]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-bottom-color: var(--balloon-color);
        left: 50%;
        top: 100%;
        transform: translate(-50%, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:after {
        transform: translate(-50%, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down"][data-balloon-visible]:before {
        transform: translate(-50%, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-left"]:after {
        left: 0;
        margin-top: 10px;
        top: 100%;
        transform: translate(0, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-left"]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-bottom-color: var(--balloon-color);
        left: 5px;
        top: 100%;
        transform: translate(0, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:after {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down-left"][data-balloon-visible]:before {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-right"]:after {
        right: 0;
        margin-top: 10px;
        top: 100%;
        transform: translate(0, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-right"]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-bottom-color: var(--balloon-color);
        right: 5px;
        top: 100%;
        transform: translate(0, calc(var(--balloon-move) * -1));
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:after {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="down-right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="down-right"][data-balloon-visible]:before {
        transform: translate(0, 0);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="left"]:after {
        margin-right: 10px;
        right: 100%;
        top: 50%;
        transform: translate(var(--balloon-move), -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="left"]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-left-color: var(--balloon-color);
        right: 100%;
        top: 50%;
        transform: translate(var(--balloon-move), -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:after {
        transform: translate(0, -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="left"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="left"][data-balloon-visible]:before {
        transform: translate(0, -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="right"]:after {
        left: 100%;
        margin-left: 10px;
        top: 50%;
        transform: translate(calc(var(--balloon-move) * -1), -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="right"]:before {
        width: 0;
        height: 0;
        border: 5px solid transparent;
        border-right-color: var(--balloon-color);
        left: 100%;
        top: 50%;
        transform: translate(calc(var(--balloon-move) * -1), -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:after, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:after {
        transform: translate(0, -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-pos="right"]:hover:before, [aria-label][data-balloon-pos][data-balloon-pos="right"][data-balloon-visible]:before {
        transform: translate(0, -50%);
    }

    [aria-label][data-balloon-pos][data-balloon-length="small"]:after {
        white-space: normal;
        width: 80px;
    }

    [aria-label][data-balloon-pos][data-balloon-length="medium"]:after {
        white-space: normal;
        width: 150px;
    }

    [aria-label][data-balloon-pos][data-balloon-length="large"]:after {
        white-space: normal;
        width: 260px;
    }

    [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
        white-space: normal;
        width: 380px;
    }

@media screen and (max-width: 768px) {
    [aria-label][data-balloon-pos][data-balloon-length="xlarge"]:after {
        white-space: normal;
        width: 90vw;
    }
}

[aria-label][data-balloon-pos][data-balloon-length="fit"]:after {
    white-space: normal;
    width: 100%;
}

* {
    outline: none;
    box-sizing: border-box;
}

body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
    color: #606060;
    font-family: "Open Sans", sans-serif;
    background-color: #ffffff;
}

@media (min-width: 992px) {
    body {
        font-size: 18px;
        font-weight: 300;
    }
}

.container {
    max-width: 1500px;
    margin-bottom: 15px;
}

    .container.wide {
        max-width: 1354px;
    }

    .container.narrow {
        max-width: 1470px;
    }

        .container.narrow.super {
            max-width: 1120px;
        }
@media (min-width: 768px) {
    .container {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .container {
        margin-bottom: 60px;
    }
}

h2 {
    font-size: 24px;
    line-height: 130%;
    font-family: "Josefin Sans";
    color: #002b54;
    margin-bottom: 12px;
    font-weight: bold;
}

@media (min-width: 992px) {
    h2 {
        font-size: 30px;
    }
}

h2 ~ h3 {
    margin-top: 15px;
}

h3 {
    font-size: 20px;
    line-height: 150%;
    font-family: "Josefin Sans";
    margin: 0 0 12px 0;
}

@media (min-width: 992px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 1.0em;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

p {
    margin: 0;
    padding: 0 0 15px 0;
    line-height: 150%;
}

    p strong {
        font-weight: 700;
    }

    p ~ h2, p ~ h3 {
        margin-top: 10px;
    }

ol, ul {
    margin-bottom: 20px;
}

    ol ~ h2, ol ~ h3, ul ~ h2, ul ~ h3 {
        margin-top: 15px;
    }

.bttn {
    display: inline-block;
    font-weight: normal;
    border: none;
    padding: 10px 16px;
    color: #fcfcff;
    background-color: #bda976;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    line-height: 130%;
    transition: all 0.33s;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 1px;
}

    .bttn:focus, .bttn:active {
        outline: none;
    }

    .bttn:hover {
        text-decoration: none;
        color: #fcfcff;
        background-color: #002b54;
    }

    .bttn.reverse {
        background-color: #002b54;
    }

        .bttn.reverse:hover {
            text-decoration: none;
            color: #fcfcff;
            background-color: #bda976;
        }

@media (min-width: 992px) {
    .bttn {
        line-height: 100%;
        width: auto;
        margin-bottom: 0;
    }

        .bttn ~ .bttn {
            margin-left: 15px;
        }
}

strong {
    font-weight: bold;
}

blockquote {
    margin: 0;
}

    blockquote cite {
        font-style: normal;
        font-weight: bold;
        font-family: "Gill Sans SemiBold";
        color: #002b54;
        position: relative;
        padding-left: 20px;
    }

        blockquote cite::before {
            content: '';
            width: 12px;
            height: 2px;
            position: absolute;
            top: 50%;
            left: 0;
            background-color: #002b54;
        }

.pod ul li > span {
    font-weight: bold;
}

/* ================================================================== */
.shaker {
    font-size: 11px;
    text-align: center;
    color: #bebebe;
    margin: 0 auto;
    background-color: #f4f4f4;
    transition: all 250ms;
}

    .shaker a {
        background: url("../images/sugarshaker.png") no-repeat center left;
        height: 16px;
        margin: 0;
        padding: 5px 0px 5px 21px;
        color: #bebebe;
        font-size: 11px;
        font-weight: normal;
        transition: all 500ms;
    }

    .shaker:hover {
        color: #555555;
    }

        .shaker:hover a {
            color: #333333;
            text-decoration: underline;
        }

form {
    width: 100%;
    line-height: 35px;
}

@media (max-width: 992px) {
    form label:not(.label-on-always) {
        display: none;
    }
}

form .btn-submit {
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    border: none;
    transition: all 250ms;
    color: #cfcfcf;
    border: 1px solid #f5f5f5;
    border-radius: 2px;
    font-family: "Josefin Sans";
    font-size: 14px;
}

    form .btn-submit:hover {
        color: #3a3530;
        background: #f0ebe8;
    }

@media (min-width: 576px) {
    form .btn-submit {
        width: auto;
        padding-right: 20px;
        padding-left: 20px;
    }
}

form .btn-submit[disabled] {
    color: white;
    background-color: #806557;
    border-color: #806557;
}

    form .btn-submit[disabled]:hover {
        background-color: #806557;
        border-color: #806557;
        cursor: not-allowed;
    }
.form-control {
    margin-bottom: 0.25rem;
}

form select.form-control,
form input[type="text"].form-control,
form input[type="email"].form-control,
form input[type="phone"].form-control,
form input[type="checkbox"].form-control,
form input[type="radio"].form-control,
form input[type="tel"].form-control,
form input[type="number"].form-control,
form input[type="password"].form-control,
form textarea.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: inherit;
    outline: none;
    font-size: 16px;
    border-radius: 1px;
}

form select.error,
form input[type="text"].error,
form input[type="email"].error,
form input[type="phone"].error,
form input[type="checkbox"].error,
form input[type="radio"].error,
form input[type="tel"].error,
form input[type="number"].error,
form input[type="password"].error,
form textarea.error {
    border-color: #b70000;
}

form select ~ .error,
form input[type="text"] ~ .error,
form input[type="email"] ~ .error,
form input[type="phone"] ~ .error,
form input[type="checkbox"] ~ .error,
form input[type="radio"] ~ .error,
form input[type="tel"] ~ .error,
form input[type="number"] ~ .error,
form input[type="password"] ~ .error,
form textarea ~ .error {
    display: block;
    color: #b70000;
    font-size: 13px;
    padding: 5px 0 0 0;
    margin: 0;
    line-height: 100%;
}

form textarea.form-control {
    resize: none;
    height: 200px;
}

form select {
    background: #ffffff;
    background-image: url(../images/bg-select.png);
    background-position: right center;
    background-repeat: no-repeat !important;
    padding-right: 50px !important;
    overflow: hidden;
}

@media (max-width: 576px) {
    form select {
        margin-bottom: 15px;
    }
}

form .form-check {
    padding-left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    form .form-check input[type="checkbox"] {
        width: 25px;
        height: 25px;
        top: 0;
        left: 0;
        margin-left: 0;
        cursor: pointer;
    }

    form .form-check span {
        display: inline-block;
        margin-left: 10px;
        cursor: pointer;
    }

    form .form-check label {
        cursor: pointer;
    }

.input-group {
    position: relative;
}

    .input-group .symbol {
        position: absolute;
        left: 12px;
        top: 1px;
        z-index: 5;
    }

    .input-group.has-symbol input {
        padding-left: 40px;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group .margined-control {
        margin-bottom: 10px;
    }

form .form-title {
    margin-bottom: 20px;
}

.plus {
    text-decoration: none;
}

    .plus .plus {
        display: block;
    }

    .plus .minus {
        display: none;
    }

    .plus .span {
        text-decoration: none;
    }

    .plus i {
        display: inline-block;
        padding-left: 7px;
    }

.minus {
    text-decoration: none;
}

    .minus .plus {
        display: none;
    }

    .minus .minus {
        display: block;
    }

    .minus .span {
        text-decoration: none;
    }

    .minus i {
        display: inline-block;
        padding-left: 7px;
    }

@media (min-width: 992px) {
    .max-3 {
        width: 170px !important;
        flex: none !important;
    }
}

@media (min-width: 992px) {
    .max-12 {
        width: 240px !important;
        flex: none !important;
    }
}

@media (min-width: 992px) {
    .post-form-copy {
        text-align: right;
    }
}

.heading {
    display: flex;
    margin: 15px 0;
    align-items: center;
    justify-content: space-between;
}

    .heading .logo img {
        max-height: 100px;
        max-width: 170px;
    }

    .heading .logo.institution-logo img {
        max-height: 100px;
        max-width: 170px;
    }

    .heading .main-navigation .menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
    }

        .heading .main-navigation .menu li {
            display: inline;
            padding: 0 0 0 25px;
        }

            .heading .main-navigation .menu li a {
                text-transform: uppercase;
                color: #002b54;
                font-weight: bold;
                font-size: 18px;
                font-family: "Open Sans", sans-serif;
            }

                .heading .main-navigation .menu li a:hover {
                    text-decoration: none;
                }

            .heading .main-navigation .menu li.current-page a {
                color: #bda976;
            }

            .heading .main-navigation .menu li.uni-nav {
                border-right: 1px solid #cccccc;
                padding-right: 30px;
            }

                .heading .main-navigation .menu li.uni-nav a {
                    color: #8e8e8e;
                }

                .heading .main-navigation .menu li.uni-nav:first-child {
                    padding-right: 0;
                    border: none;
                }

    .heading .open-trigger {
        color: #002b54;
        font-size: 2rem;
        margin-left: 20px;
    }
@media (min-width: 992px) {
    .heading .logo img {
        max-height: 120px;
        max-width: 462px;
    }

    .heading .logo.institution-logo img {
        max-height: 120px;
        max-width: 462px;
    }
}
    @media (min-width: 1500px) {
        .heading {
            margin: 30px 0 0 0;
        }



            .heading .main-navigation .menu {
                display: block;
            }

            .heading .open-trigger {
                position: absolute;
                left: -10000px;
                top: auto;
                width: 1px;
                height: 1px;
                overflow: hidden;
            }
    }

    .hero .hero-banner {
        height: 143px;
        transition: background 0.5s;
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 2px;
    }

    @media (max-width: 992px) {
        .hero br {
            display: none;
        }
    }

    .hero .page-title {
        font-family: "Josefin Sans";
        font-size: 1.6rem;
        line-height: 120%;
        text-transform: uppercase;
        color: #bda976;
        font-weight: bold;
        padding: 15px 15px 10px 15px;
        margin: 0;
    }

    .hero .intro {
        background-color: rgba(189, 169, 118, 0.95);
        color: #ffffff;
        padding: 10px 20px;
    }

    @media (min-width: 993px) {
        .hero.institution-background .page-title {
            color: #ffffff !important;
        }
    }

    @media (max-width: 992px) {
        .hero.institution-background .page-title {
            background-color: #ffffff !important;
        }

        .hero.institution-background .second-line {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
    }

    .hero .hero-pagination {
        margin: 10px 0 0 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

        .hero .hero-pagination li {
            display: inline;
            padding: 0 3px;
        }

        .hero .hero-pagination span {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #cccccc;
            display: inline-block;
            transition: background 0.33s;
            cursor: pointer;
        }

        .hero .hero-pagination .active span {
            background-color: #002b54;
            cursor: default;
        }

    @media (min-width: 768px) {
        .hero {
            height: 670px;
            position: relative;
        }

            .hero .hero-banner {
                height: 670px;
            }

            .hero.inner {
                height: 340px;
            }

                .hero.inner .hero-banner {
                    height: 340px;
                }

            .hero.institution-background {
                height: 484px;
                margin-bottom: 30px;
            }

                .hero.institution-background .hero-banner {
                    height: 484px;
                }

                .hero.institution-background .hero-pagination {
                    text-align: center;
                    margin-top: 15px;
                }

                    .hero.institution-background .hero-pagination li {
                        padding: 0 5px;
                    }

                    .hero.institution-background .hero-pagination span {
                        width: 20px;
                        height: 20px;
                        background-color: #cccccc;
                        border: none;
                    }

                    .hero.institution-background .hero-pagination .active span {
                        background-color: #002b54;
                    }

            .hero .hero-pagination {
                text-align: left;
            }

                .hero .hero-pagination li {
                    padding: 0 10px 0 0;
                }

                .hero .hero-pagination span {
                    width: 20px;
                    height: 20px;
                    background-color: #bda976;
                    border: 2px solid #bda976;
                }

                .hero .hero-pagination .active span {
                    background-color: white;
                }

            .hero .page-title {
                background-color: rgba(189, 169, 118, 0.95);
                color: #ffffff;
                font-size: 2.8rem;
                padding: 20px 40px 10px 40px;
                text-align: left;
                display: inline-block;
                line-height: 100%;
                margin-top: 20px;
                border-radius: 2px;
            }

            .hero .intro {
                display: block;
                max-width: 510px;
                font-size: 24px;
                padding: 20px 40px;
                margin-top: 30px;
                border-radius: 2px;
            }

            .hero .institution {
                background-color: rgba(0, 43, 84, 0.8);
                border-radius: 2px;
            }

            .hero .institution-form {
                text-align: center;
            }

            .hero .hero-content {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
            }

                .hero .hero-content .hero-text {
                    padding: 40px;
                }
    }

    .institution {
        background-color: #002b54;
        color: #ffffff;
        padding: 10px 20px;
    }

        .institution .institution-form {
            padding-bottom: 10px;
        }

            .institution .institution-form label {
                position: absolute;
                left: -10000px;
                top: auto;
                width: 1px;
                height: 1px;
                overflow: hidden;
            }

            .institution .institution-form.loading i {
                display: block;
            }

            .institution .institution-form.loading input {
                padding-left: 35px;
            }

        .institution .institute-name {
            width: 100%;
            margin: 0 auto;
            font-family: "Josefin Sans";
        }

        .institution .input-wrapper {
            position: relative;
            display: inline-block;
            max-width: 500px;
            width: 100%;
            z-index: 10;
            color: #666666;
            text-align: left;
            letter-spacing: 1px;
        }

            .institution .input-wrapper input {
                text-transform: uppercase;
                font-size: 18px;
                outline: none !important;
                border: 1px solid #002b54;
                border-radius: 0 !important;
                line-height: 100%;
                padding-top: 10px;
                padding-bottom: 8px;
                font-weight: bold;
            }

            .institution .input-wrapper i {
                position: absolute;
                left: 6px;
                top: 50%;
                margin-top: -9px;
                font-size: 20px;
                color: #cccccc;
                display: none;
            }

            .institution .input-wrapper .easy-autocomplete-container ul {
                margin-top: -1px !important;
                text-transform: uppercase;
                border: 1px solid #002b54;
                -webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.24);
                -moz-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.24);
                box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.24);
            }

                .institution .input-wrapper .easy-autocomplete-container ul li {
                    font-size: 18px !important;
                }

    .pod {
        border-radius: 2px;
    }

        .pod.shaded {
            background-color: #f5f5f5;
            height: 100%;
        }

        .pod.image {
            margin-bottom: 30px;
        }

        .pod .image {
            display: block;
            width: 100%;
            
            border-radius: 2px;
        }

        .pod .detail {
            padding: 25px 15px 30px;
        }

            .pod .detail.shaded {
                background-color: #f5f5f5;
                margin-bottom: 15px;
            }

    @media (min-width: 768px) {
        .pod .detail.shaded {
            margin-bottom: 45px;
        }
    }

    .pod .bttn {
        margin-top: 10px;
    }

    @media (min-width: 768px) {
        .pod .detail {
            padding: 25px 30px 45px;
        }
    }

    .pod p ~ h2,
    .pod ol ~ h2,
    .pod ul ~ h2 {
        margin-top: 30px;
    }

    .pod p:last-child {
        margin-bottom: 30px;
    }

    .pod.rounded {
        background-color: transparent;
    }

        .pod.rounded .image {
            width: 75%;
            border-radius: 0;
            margin: 30px auto 15px;
        }

        .pod.rounded .detail {
            text-align: center;
            padding: 15px;
        }

    @media (min-width: 1800px) {
        .padding-0 {
            padding-right: 0;
            padding-left: 0;
        }
    }

    .pod-image {
        background-color: #f5f5f5;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        border-radius: 2px;
        min-height: 160px;
    }

    .detail ul {
        margin: 10px 0;
        padding: 0 0 0 35px;
        list-style: none;
    }

        .detail ul li {
            padding-bottom: 12px;
            position: relative;
            line-height: 150%;
        }

            .detail ul li::before {
                content: "";
                background: #bda976;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                position: absolute;
                left: -32px;
                top: 9px;
            }

    .detail .title {
        line-height: 120%;
    }

    .page-banner {
        background-position: top center;
        background-size: cover;
        background-repeat: no-repeat;
        margin-bottom: 15px;
        border-radius: 2px;
    }

        .page-banner .banner-text {
            background-color: rgba(0, 43, 84, 0.8);
            color: #ffffff;
            width: 100%;
            text-align: center;
            padding: 30px 30px 20px;
            border-radius: 2px;
        }

        .page-banner .banner-title {
            font-size: 2rem;
            font-family: "PrincetownD";
            color: #ffffff;
            font-weight: normal;
        }

        .page-banner .banner-detail {
            max-width: 800px;
            margin: 0 auto;
        }

            .page-banner .banner-detail a {
                color: #ffffff;
                text-decoration: underline;
            }

                .page-banner .banner-detail a:hover {
                    text-decoration: none;
                }

    @media (min-width: 768px) {
        .page-banner .banner-title {
            font-size: 4rem;
        }

        .page-banner .banner-text {
            padding: 30px;
        }

        .page-banner .banner-detail {
            font-size: 22px;
        }
    }

    .page-carousel .carousel-title {
        position: relative;
        text-align: center;
    }

        .page-carousel .carousel-title span {
            display: inline-block;
            padding-left: 15px;
            padding-right: 15px;
            background-color: #ffffff;
        }

        .page-carousel .carousel-title::before {
            border-top: 1px solid #e1e1e1;
            content: "";
            margin: 0 auto;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            z-index: -1;
        }

    .page-carousel .dots {
        margin-top: 30px;
        text-align: center;
    }

        .page-carousel .dots span {
            width: 20px;
            height: 20px;
            line-height: 20px;
            display: inline-block;
            color: #ffffff;
            border-radius: 50%;
            margin: 0 5px;
            text-align: center;
            background-color: #cccccc;
            transition: all 0.33s;
        }

            .page-carousel .dots span.active {
                background-color: #002b54;
            }

    .page-carousel .carousel-body {
        display: flex;
        justify-content: center;
        margin-top: 45px;
        width: 100%;
    }

        .page-carousel .carousel-body .item.product {
            text-align: center;
        }

            .page-carousel .carousel-body .item.product a {
                display: block;
            }

                .page-carousel .carousel-body .item.product a:hover {
                    text-decoration: none;
                }

            .page-carousel .carousel-body .item.product img {
                margin: 0;
                max-width: 170px;
            }

            .page-carousel .carousel-body .item.product span {
                display: block;
                margin-top: 15px;
                color: #002b54;
                font-weight: bold;
                padding: 0 15px;
            }

        .page-carousel .carousel-body .carousel-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            display: block;
            outline: none !important;
            background-color: #002b54;
            transition: all 0.33s;
            text-align: center;
            cursor: pointer;
        }

            .page-carousel .carousel-body .carousel-button i {
                color: #ffffff;
                font-size: 1.5em;
                line-height: 60px;
            }

            .page-carousel .carousel-body .carousel-button:hover {
                background-color: #bda976;
            }

        .page-carousel .carousel-body .carousel-block {
            align-items: center;
            padding-top: 60px;
        }

            .page-carousel .carousel-body .carousel-block:not(.always) {
                display: none !important;
            }

            .page-carousel .carousel-body .carousel-block.left {
                padding-right: 45px;
            }

            .page-carousel .carousel-body .carousel-block.right {
                padding-left: 45px;
            }

    @media (max-width: 768px) {
        .page-carousel .carousel-body .carousel-block.always .carousel-button {
            transform: scale(0.6, 0.6);
        }

        .page-carousel .carousel-body .carousel-block.always.left {
            padding-right: 0;
        }

        .page-carousel .carousel-body .carousel-block.always.right {
            padding-left: 0;
        }
    }

    .page-carousel .carousel-body .item img {
        max-width: 100%;
        margin: 20px 10px 20px 20px;
        text-align: center;
        display: inline-block;
    }

    .page-carousel .carousel-body blockquote {
        padding: 0 10px;
    }

        .page-carousel .carousel-body blockquote p {
            font-family: "Nunito", sans-serif;
            line-height: 130%;
        }

        .page-carousel .carousel-body blockquote cite {
            font-size: 1.4rem;
        }

    @media (min-width: 992px) {
        .page-carousel .carousel-body blockquote p {
            font-size: 22px;
        }
    }

    @media (min-width: 768px) {
        .page-carousel .carousel-body .carousel-block:not(.always) {
            display: block !important;
        }
    }

    @media (min-width: 768px) {
        .page-carousel .testimonials-carousel .carousel-image {
            text-align: right;
        }
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .footer-menu li {
            display: inline;
            padding: 0 7px;
        }

        .footer-menu a {
            text-decoration: none;
            color: #002b54;
            font-weight: bold;
            font-size: 14px;
            font-family: "Open Sans", sans-serif;
        }

    @media (min-width: 768px) {
        .footer-menu {
            text-align: left;
        }

            .footer-menu li {
                padding-left: 0;
                padding-right: 30px;
            }

            .footer-menu a {
                font-size: 16px;
            }
    }

    .footer-content {
        
        font-size: 14px;
        text-align: center;
        padding: 85px 0 0 0;
        margin-top: 30px;
    }

        .footer-content p {
            line-height: 180%;
            color: #999999;
        }

        .footer-content a {
            color: #000000;
            text-decoration: none;
        }

    @media (min-width: 768px) {
        .footer-content {
            
            padding: 0 85px 0 0;
            margin-top: 0;
            text-align: right;
        }

            .footer-content p {
                line-height: 150%;
            }
    }

    .item .item-total {
        color: #535353;
    }

        .item .item-total .figures {
            font-weight: bold;
        }

    .item .item-image {
        display: block;
        width: 100%;
        margin: 15px 0;
    }

    .item .form-group {
        margin-bottom: 0;
    }

    .item .item-attributes {
        margin: 15px 0;
    }

        .item .item-attributes dt,
        .item .item-attributes dd {
            float: left;
            font-weight: normal;
            margin: 0;
            line-height: 150%;
        }

        .item .item-attributes dt {
            padding-right: 5px;
        }

            .item .item-attributes dt + dd {
                float: none;
                font-weight: bold;
            }

    .item .basket-item-controls {
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #e1e1e1;
        margin: 10px 0 45px 0;
        padding: 0;
        list-style: none;
    }

        .item .basket-item-controls li {
            display: inline;
            padding-right: 10px;
        }

        .item .basket-item-controls a {
            font-size: 16px;
            color: #98322e;
            padding: 10px 20px 10px 2px;
            display: inline-block;
        }

            .item .basket-item-controls a:hover {
                text-decoration: none;
                color: #4a1816;
            }

    @media (min-width: 992px) {
        .item:last-child .basket-item-controls {
            margin-bottom: 0;
        }
    }

    .display-none {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .large-cta {
        text-transform: uppercase;
        padding-bottom: 10px;
        color: #ffffff;
        line-height: 150%;
    }

        .large-cta strong {
            color: #ffffff;
        }

    .typed-cursor {
        animation: blinkingText 0.8s infinite;
    }

    @keyframes blinkingText {
        0% {
            color: #ffffff;
        }

        49% {
            color: #ffffff;
        }

        60% {
            color: transparent;
        }

        99% {
            color: transparent;
        }

        100% {
            color: #ffffff;
        }
    }

    .faqs-list {
        list-style: none;
        margin: 10px 0;
        padding: 0;
        line-height: 150%;
    }

        .faqs-list a {
            display: block;
            padding: 10px 15px;
            background-color: #f6f6f6;
            font-weight: bold;
            color: #002b54;
        }

            .faqs-list a:hover {
                text-decoration: none;
            }

        .faqs-list > li > a {
            border: 1px solid #cccccc;
            background-color: #efefef;
            border-left: 10px solid #002b54;
            font-size: 1.3rem;
        }

            .faqs-list > li > a i {
                top: 15px;
            }

        .faqs-list > li > ul > li a {
            border-top: 1px solid #cccccc;
        }

        .faqs-list > li > ul > li:first-child a {
            border-top: none;
        }

        .faqs-list > li:last-child > ul li:last-child a {
            border-bottom: 1px solid #cccccc;
        }

        .faqs-list a {
            border-left: 10px solid #002b54;
            position: relative;
            padding-left: 38px !important;
        }

        .faqs-list i {
            display: inline-block;
            position: absolute;
            left: 15px;
            top: 14px;
            min-width: 20px;
        }

        .faqs-list ul {
            list-style: none;
        }

            .faqs-list ul a {
                display: block;
                padding: 10px 15px;
                background-color: #f6f6f6;
                font-weight: bold;
                color: #002b54;
            }

                .faqs-list ul a:hover {
                    text-decoration: none;
                }

        .faqs-list .faq-group {
            padding: 20px 20px 5px 20px;
            background-color: #f6f6f6;
            color: #111111;
            margin: 0;
        }

            .faqs-list .faq-group .answer {
                margin-bottom: 10px;
                line-height: 130%;
            }

                .faqs-list .faq-group .answer p {
                    padding-bottom: 10px;
                }

    @media (min-width: 992px) {
        .faqs-list .faq-group {
            padding: 20px 30px 15px 45px;
        }
    }

    .faqs-list .answer a {
        background: none !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        display: inline !important;
        font-weight: normal !important;
        color: royalblue !important;
        text-decoration: underline;
    }

    .js .faqs-list > li > a {
        border-left: 10px solid #a3a3a3;
    }

    .js .faqs-list a {
        background-color: #ffffff;
        transition: all 0.33s;
    }

        .js .faqs-list a:hover {
            background-color: #efefef;
        }

    .js .faqs-list .active > a {
        background-color: #efefef;
        border-left: 10px solid #002b54;
        border-color: #002b54;
    }

    .js .faqs-list .active li a {
        border-left: 10px solid #a3a3a3;
        border-right: 1px solid #cccccc;
    }

    .js .faqs-list .active .active a {
        background-color: #f6f6f6;
        border-left: 10px solid #002b54;
        border-right: none;
        border-color: #002b54;
    }

    .js .faqs-list ul {
        display: none;
    }

    .js .faqs-list .active ul {
        display: block;
    }

        .js .faqs-list .active ul ul {
            display: none;
        }

        .js .faqs-list .active ul .active ul {
            display: block;
        }

    .map {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 200px;
        width: 100%;
        border-radius: 2px;
        display: block;
        text-indent: -9000px;
    }

    .tool-tip i {
        color: #000000;
        cursor: default;
    }

    @media (max-width: 992px) {
        .tool-tip {
            display: none;
        }
    }

    .js #text-list {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .template img {
        max-width: 100%;
        margin: 5px 0;
    }

    .navigation {
        display: flex;
    }

    .basket-case {
        position: relative;
        max-width: 50px;
        display: inline-block;
        margin-left: 25px;
    }

    @media (min-width: 992px) {
        .basket-case {
            margin-top: -4px;
        }
    }

    .shopping-cart {
        align-self: flex-end;
        position: relative;
        color: #002b54;
        display: block;
        font-size: 1.8rem;
        margin-right: 5px;
        margin-bottom: 15px;
        padding-top: 3px;
    }

        .shopping-cart .items {
            position: absolute;
            color: #002b54;
            background-color: #bda976;
            font-size: 14px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            top: -5px;
            right: -5px;
            text-align: center;
            line-height: 22px;
            font-weight: bold;
        }

    .process-and-cart {
        align-items: center;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

        .process-and-cart .basket-statement {
            font-weight: bold;
            color: #002b54;
            line-height: 50px;
        }

        .process-and-cart .process-tabs {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            justify-content: space-between;
        }

            .process-and-cart .process-tabs li {
                color: #002b54;
                text-transform: uppercase;
                font-weight: bold;
            }

                .process-and-cart .process-tabs li.active {
                    color: #bda976;
                }

    @media (min-width: 576px) {
        .process-and-cart {
            flex-direction: row-reverse;
            align-items: stretch;
            justify-content: space-between;
            border-bottom: 1px solid #e5e5e5;
            border-top: 1px solid #e5e5e5;
            padding: 10px 0;
        }

            .process-and-cart .shopping-cart {
                margin-right: 15px;
                margin-bottom: 0;
            }

            .process-and-cart .process-tabs {
                display: flex;
                align-items: center;
            }

                .process-and-cart .process-tabs li {
                    padding: 8px 16px;
                    border-right: 1px solid #cccccc;
                }

                    .process-and-cart .process-tabs li:last-child {
                        border-right: none;
                    }
    }

.product-imagery .product-image {
    width: 100%;
    max-width: 418px;
}

    .product-imagery .product-image-carousel {
        margin-top: 30px;
    }

        .product-imagery .product-image-carousel img {
            padding: 10px 15px;
            max-width: 32%;
            margin-bottom: 15px;
            cursor: pointer;
            border: 1px solid transparent;
        }

            .product-imagery .product-image-carousel img.active {
                cursor: default;
                border-color: #cccccc;
}
.product-imagery .offer-image {
    position: absolute;
    top: 0;
    right: 15px;
    max-width: 100px;
    width: 30%;
}





    .product-price {
        line-height: 100%;
        margin-top: 10px;
        font-size: 1.5rem;
    }

    .product-description,
    .product-options,
    .ceremony-options {
        margin-bottom: 45px;
    }

    .price-table {
        display: inline-block;
        margin-bottom: 15px;
    }

        .price-table td,
        .price-table th {
            text-align: right;
        }

        .price-table td {
            min-width: 90px;
            font-weight: bold;
            color: #bda976;
        }

    .total-price .price-label {
        font-weight: bold;
    }

    .total-price .price-value {
        font-weight: bold;
        font-size: 3rem;
        color: #bda976;
    }

    .img-personalise {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    .hr {
        margin: 45px 0;
    }

    @media (max-width: 992px) {
        .hr {
            margin: 15px 0;
        }
    }

    .products-list-tabs {
        margin-bottom: 30px;
    }

    @media (max-width: 1201px) {
        .products-list-tabs {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
    }

    .products-list-tabs li a {
        font-size: 18px;
    }

    .products-list-tabs .container {
        margin-bottom: 0;
    }

    .products-list-tabs .desktop-tabs {
        margin: 0;
        padding: 0;
        list-style: none;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
    }

    .products-list-tabs a {
        color: #002b54;
        padding: 12px 15px;
        text-transform: uppercase;
        font-weight: bold;
        display: inline-block;
    }

        .products-list-tabs a:hover {
            text-decoration: none;
        }

    .products-list-tabs li {
        border-right: 1px solid #e5e5e5;
    }

        .products-list-tabs li.active a {
            color: #bda976;
            cursor: default;
        }

        .products-list-tabs li:last-child {
            border: none;
        }

    .products-list-show {
        color: #002b54;
        padding: 12px 15px;
        text-transform: uppercase;
        font-weight: bold;
        display: inline-block;
    }

    .price {
        color: #bda976;
        font-weight: bold;
    }

    .products-list .container {
        margin-bottom: 0;
    }

    .products-list img {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .products-list .list-title {
        padding-bottom: 15px;
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 15px;
    }

    @media (min-width: 1200px) {
        .products-list .list-title {
            position: absolute;
            left: -10000px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
    }

    .products-list a {
        display: block;
        margin: 30px 0;
        position: relative;
    }

    @media (max-width: 768px) {
        .products-list a {
            text-align: center;
        }
    }

    .products-list a .title {
        color: #002b54;
        font-weight: bold;
    }

    .products-list a .description {
        color: #111111;
    }

    .products-list a:hover .detail {
        opacity: 0;
    }

    .products-list .detail {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 145px;
        background-color: rgba(252, 252, 255, 0.9);
        padding: 15px 20px;
        opacity: 1;
        transition: all 0.5s;
    }

    .products-list span {
        display: block;
    }

    .list-title {
        text-transform: uppercase;
        position: relative;
        font-size: 18px;
    }

        .list-title i {
            position: absolute;
            right: 15px;
            top: 50%;
            margin-top: -7px;
            display: none;
        }

    .js .list-title {
        cursor: pointer;
        padding: 15px 15px;
        border-radius: 2px;
        transition: all 0.33s;
        background-color: #efefef;
    }

        .js .list-title i.open-list {
            display: block;
        }

        .js .list-title i.close-list {
            display: none;
        }

        .js .list-title:hover {
            background-color: #d7d7d7;
        }

    .js .items-row {
        display: none;
    }

    .js .active .list-title {
        background-color: #fcfcff;
        color: #bda976;
        cursor: default;
    }

        .js .active .list-title i.open-list {
            display: none;
        }

        .js .active .list-title i.close-list {
            display: block;
        }

    .js .active .items-row {
        display: flex;
    }

    .mm-panels a {
        text-transform: uppercase;
        color: #002b54 !important;
        font-weight: bold;
    }

    .mm-panels .current-page a {
        color: #bda976 !important;
    }

    .mm-panels .uni-nav a {
        color: #8e8e8e !important;
        border-bottom: 1px solid #bda976;
    }

    .mm-panels .uni-nav:first-child a {
        border-bottom: none;
    }

    .back-to-top {
        position: fixed;
        bottom: 45px;
        right: 25px;
        z-index: 2;
        font-size: 2.2em;
        transition: all 0.5s;
        opacity: 0;
        color: #002b54;
    }

        .back-to-top:hover {
            color: #bda976;
        }

        .back-to-top.shown {
            opacity: 1;
        }

    @media (max-width: 1800px) {
        .back-to-top {
            display: none;
        }
    }

    .strike-through {
        position: relative;
        z-index: 1;
        font-weight: bold;
        color: #002b54;
    }

        .strike-through::before {
            border-top: 1px solid #e1e1e1;
            content: "";
            margin: 0 auto;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            z-index: -1;
        }

        .strike-through span {
            background: #fff;
            padding: 0 15px 0 0;
        }

    .payment-methods {
        padding: 15px 0 30px 0;
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
    }

        .payment-methods a {
            padding-right: 15px;
            display: inline-block;
            line-height: 56px;
            margin-right: 10px;
            max-width: 33%;
            padding: 0 15px 15px 15px;
            border-bottom: 5px solid #efefef;
        }

            .payment-methods a img {
                width: 100%;
            }

            .payment-methods a:last-child {
                margin-right: 0;
                border-right: none;
            }

            .payment-methods a.active {
                border-bottom: 5px solid #002b54;
            }

    .integration-button {
        display: block;
        margin-bottom: 15px;
    }

    .payment-method {
        display: none;
    }

        .payment-method.active {
            display: block;
        }

    .overlay {
        height: 0;
        width: 100%;
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        background-color: black;
        background-color: rgba(0, 0, 0, 0.9);
        overflow: hidden;
        transition: 0.25s;
    }

        .overlay .overlay-content {
            position: relative;
            top: 35%;
            width: 100%;
            text-align: center;
        }

    @media (max-width: 992px) {
        .overlay .overlay-content {
            top: 80px;
        }
    }

    @media (max-width: 400px) {
        .overlay .overlay-content {
            top: 80px;
        }
    }

    .overlay .easy-autocomplete {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: bold;
    }

        .overlay .easy-autocomplete input {
            border: none !important;
            border-radius: 1px;
            text-transform: uppercase;
            font-weight: bold;
        }

    .overlay .easy-autocomplete-container ul {
        text-align: left !important;
        font-size: 12px;
        margin-top: -2px !important;
        background-color: transparent !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-color: #cccccc;
    }

        .overlay .easy-autocomplete-container ul li {
            font-size: 18px;
            background-color: #ffffff;
            -webkit-transition: background 0.5s;
            -moz-transition: background 0.5s;
            -o-transition: background 0.5s;
            transition: background 0.5s;
            font-weight: normal;
        }

            .overlay .easy-autocomplete-container ul li.selected {
                background-color: #002b54;
            }

            .overlay .easy-autocomplete-container ul li:nth-last-child(1) {
                border-bottom-left-radius: 4px;
                border-bottom-right-radius: 4px;
            }

    .overlay .overlay-form {
        margin: 0 auto;
        position: relative;
        max-width: 90%;
    }

        .overlay .overlay-form input {
            width: 100% !important;
        }

    @media (min-width: 576px) {
        .overlay .overlay-form {
            display: flex;
            width: 460px;
        }

            .overlay .overlay-form .form-group {
                width: 460px;
                margin-bottom: 0;
            }
    }

    .overlay a {
        text-decoration: none;
        font-size: 2em;
        position: absolute;
        top: -100px;
        right: 10px;
    }

        .overlay a i {
            color: #ffffff;
        }

            .overlay a i:hover {
                -webkit-transition: color 0.5s;
                -moz-transition: color 0.5s;
                -o-transition: color 0.5s;
                transition: color 0.5s;
            }

    @media (max-width: 992px) {
        .overlay a {
            top: -55px;
        }
    }

    /* -- tool tips --*/
    .tooltip {
        position: absolute;
        z-index: 1070;
        display: block;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.42857143;
        text-align: left;
        text-align: start;
        text-decoration: none;
        text-shadow: none;
        text-transform: none;
        letter-spacing: normal;
        word-break: normal;
        word-spacing: normal;
        word-wrap: normal;
        white-space: normal;
        filter: alpha(opacity=0);
        opacity: 0;
        line-break: auto;
    }

        .tooltip.in {
            filter: alpha(opacity=90);
            opacity: 0.9;
        }

        .tooltip.top {
            padding: 5px 0;
            margin-top: -3px;
        }

        .tooltip.right {
            padding: 0 5px;
            margin-left: 3px;
        }

        .tooltip.bottom {
            padding: 5px 0;
            margin-top: 3px;
        }

        .tooltip.left {
            padding: 0 5px;
            margin-left: -3px;
        }

    .tooltip-inner {
        max-width: 200px;
        padding: 3px 8px;
        color: #fff;
        text-align: center;
        background-color: #000;
        border-radius: 4px;
    }

    .tooltip-arrow {
        position: absolute;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

    .tooltip.top .tooltip-arrow {
        bottom: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    .tooltip.top-left .tooltip-arrow {
        right: 5px;
        bottom: 0;
        margin-bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    .tooltip.top-right .tooltip-arrow {
        bottom: 0;
        left: 5px;
        margin-bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    .tooltip.right .tooltip-arrow {
        top: 50%;
        left: 0;
        margin-top: -5px;
        border-width: 5px 5px 5px 0;
        border-right-color: #000;
    }

    .tooltip.left .tooltip-arrow {
        top: 50%;
        right: 0;
        margin-top: -5px;
        border-width: 5px 0 5px 5px;
        border-left-color: #000;
    }

    .tooltip.bottom .tooltip-arrow {
        top: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

    .tooltip.bottom-left .tooltip-arrow {
        top: 0;
        right: 5px;
        margin-top: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

    .tooltip.bottom-right .tooltip-arrow {
        top: 0;
        left: 5px;
        margin-top: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

    /* datepicker */
    .datepicker-grid .selected {
        background-color: #002b54 !important;
        color: #fff !important;
    }

    .datepicker-cell.today:not(.selected),
    .datepicker-cell.today.focused:not(.selected) {
        background-color: #bda976;
        border-radius: 1px;
        font-weight: bold;
        color: #fff;
    }

    .datepicker-cell.selected,
    .datepicker-cell.selected:hover {
        background-color: #002b54;
        color: #fff;
        border-radius: 1px;
        font-weight: bold;
    }

    .datepicker-cell.focused:not(.selected) {
        background: #ffffff;
    }


    /* Added 06.03.2021 */
    /* - Segun Konibire */
    /* ---------------- news sections ------------------ */
    .news .pod .detail {
        padding: 0 0 0 15px;
    }

        .news .pod .detail .date {
            font-size: 1.1em;
            letter-spacing: 1px;
            margin-top: -10px;
            color: #7a7a7a;
        }

        .news .pod .detail .author {
            font-size: 1.2em;
            margin-top: -15px;
            color: #002b54;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

    @media (max-width: 768px) {
        .news .pod .detail {
            padding: 15px 0 0 0;
        }
    }

    .news .news-divider {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
        border-top: 1px solid #e5e5e5;
        height: 30px;
    }

    @media (min-width: 992px) {
        .news .news-divider {
            margin-top: 30px;
            max-width: 100%;
            height: 20px;
        }
    }

    .news-pagination {
        padding: 20px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

        .news-pagination ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .news-pagination li {
            display: inline-block;
            padding: 0 0 4px 0;
        }

        .news-pagination a {
            display: inline-block;
            padding: 8px 20px;
            text-decoration: none;
            background-color: #bda976;
            color: #ffffff;
            font-weight: bold;
            transition: all 250ms;
            border-radius: 2px;
        }

            .news-pagination a:hover {
                background-color: #003363;
            }

        .news-pagination .active a {
            background-color: #002b54;
            cursor: default;
        }

    .article .addtional-images img {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    .article .addtional-images.mobile {
        display: block;
    }

    .article .addtional-images.desktop {
        display: none;
    }

    @media (min-width: 768px) {
        .article .addtional-images img {
            margin-bottom: 0;
        }

        .article .addtional-images.mobile {
            display: none;
        }

        .article .addtional-images.desktop {
            display: block;
        }
    }

    .article .article-links {
        margin: 30px 0 0 0;
        list-style: none;
        padding: 0;
    }

        .article .article-links li::before {
            content: none !important;
        }

        .article .article-links li a {
            margin: 0;
        }


    /* Added 22.03.2021 */
    /* - BD */
    /* ---------------- news sections ------------------ */

    .short-text {
        display: none;
    }


    @media (max-width: 768px) {
        .short-text {
            display: inline-block;
        }


        .full-text {
            display: none;
        }
    }

    .article .article-links li a {
        margin: 0;
    }

.uni-navigation a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: #002b54;
    font-weight: bold;
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    margin-right: 15px;
}

.notification-bar {
    background-color: rgba(0, 43, 84, 0.8);
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

    .notification-bar p {
        margin: 4px;
        padding: 0;
    }

    .notification-bar .close-btn {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        cursor: pointer;
    }

        .notification .close-btn:hover {
            color: #f00;
        }

@media (max-width: 768px) {
    .notification-bar {
        font-size: 14px;
    }
}

.body-notification-bar-visible {
    padding-top: 60px;
}


/* CSS tweaks via overrides */
/* By Segun Konibire 24.03.2023 */

/* global container width */
.container {
    max-width: 1500px; 
}
.container.wide {
    max-width: 1500px; 
}
.container.narrow {
    max-width: 1450px; 
}
.container.narrow.super {
    max-width: 1200px; 
}
/* -------------------- */

/* image pods */
.products-list img {
    max-width: none;
}
.products-list .detail {
    height: auto;
}
/* -------------------- */

/* main navigation */
@media (min-width: 1000px) {
    .heading .main-navigation .menu {
        display: none;
    }
}
@media (min-width: 1200px) {
    .heading .main-navigation .menu {
        display: block;
    }
}
/* -------------------- */

/* main navigation */
.product-imagery .product-image {
    max-width: 418px;
}
/* -------------------- */


/* hamburger trigger */
@media (min-width: 1000px){
    .heading .open-trigger {
        position: relative;
        width: auto;
        height: auto;
        left: 0;
    }
}
@media (min-width: 1200px){
    .heading .open-trigger {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
}
/* -------------------- */