/* Frutiger font function */
@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Light.otf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Light-Italic.otf');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Regular.otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Italic.otf');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-SemiBold.otf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-SemiBold-Italic.otf');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Bold.otf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-Bold-Italic.otf');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Frutiger';
    src: url('../fonts/Frutiger-ExtraBold.otf');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../../webfonts/fa-regular-400.woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../../webfonts/fa-solid-900.woff');
    font-weight: 900;
    font-style: normal;
}

html {
    font-size: 62.5%;
    line-height: 160%;
}

body {
    font-family: 'Frutiger', 'Open Sans', sans-serif;
    font-size: 1.6rem;
    background: #f5f7fa;
    color: #4d4f53;
}

h1, h2, h3, h4, #hero, .card__details, .footer-head {
    font-family: 'Frutiger', 'Raleway', sans-serif;
}

h1 {
    font-size: 3.6rem;
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h4 {
    font-size: 1.7rem;
    font-weight: 600;
}

a {
    color: #ff7900;
    transition: all 0.2s;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #e4e4e4;
    margin: 2em 0 2em;
    padding: 0;
}

.mt-6 {
    margin-top: 6rem;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #bcbec3 !important;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bcbec3;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bcbec3;
}
/* ========================================================================== Main content styles ========================================================================== */
#page-head {
    background: white;
    padding: 20px 0;
}

    #page-head .container {
        position: relative;
    }

    #page-head .header-logo {
        display: flex;
        flex-flow: row;
        align-items: flex-end;
    }

        #page-head .header-logo > a {
            max-width: 230px;
            max-height: 52px;
        }

        #page-head .header-logo .logo-border {
            border-left: 2px solid #efefef;
            align-self: stretch;
            margin: 0 5px;
        }

@media (min-width: 992px) {
    #page-head .header-logo .logo-border {
        margin: 0 10px;
    }
}

@media (min-width: 1200px) {
    #page-head .header-logo .logo-border {
        margin: 0 15px;
    }
}

#page-head .header-logo img {
    max-height: 50px;
}

@media (min-width: 992px) {
    #page-head .header-logo img {
        max-height: 48px;
    }
}

#page-head > .container > .row {
    justify-content: space-between;
}

.top-menu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    flex-basis: 100%;
    max-width: 100%;
}

    .top-menu > ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .top-menu > ul li {
            display: inline-block;
            margin-right: 0.5rem;
        }

@media (min-width: 992px) {
    .top-menu > ul li {
        margin-right: 20px;
    }
}

.top-menu > ul li a {
    color: #363636;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
}

    .top-menu > ul li a:hover {
        color: #ff7900;
    }

.top-menu > ul li.btn-login > a {
    background: #0053a0;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    text-align: center;
}

.top-menu > ul li.btn-login:hover > a {
    text-decoration: none;
    background: #176fc1;
    color: white;
}

.top-menu .ic-search {
    font-size: 1.85rem;
    position: relative;
    top: 3px;
}

.top-menu #iconsmenu-replicate, .top-menu #subsitemenu-replicate {
    display: none;
}

.login__dropdown, .link__dropdown {
    position: absolute;
    background: white;
    z-index: 999;
    display: block;
    padding: 5px 0px 5px 16px;
    width: 88px;
    font-size: 1.3rem;
    text-align: center;
    margin-left: -15px;
    border: 1px solid rgba(151, 151, 151, 0.06);
    box-shadow: 0 4px 6px 0 rgba(42, 59, 84, 0.20);
    display: none;
    transition: all 0.2s;
}

    .login__dropdown ul, .link__dropdown ul {
        padding: 0;
    }

.navbar {
    background: #0053a0;
    padding-top: 0;
    padding-bottom: 0;
    display: none !important;
}

@media (min-width: 769px) {
    .navbar {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .navbar .container {
        flex-direction: column-reverse;
    }
}

.navbar .navbar-nav {
    margin-left: -10px;
}

    .navbar .navbar-nav > li {
        padding: 0;
        margin: 0;
        border-bottom: 4px solid transparent;
    }

        .navbar .navbar-nav > li.active {
            border-bottom: 4px solid #ff7900;
        }

        .navbar .navbar-nav > li:hover, .navbar .navbar-nav > li.focus {
            background: #0e3f6c;
        }

        .navbar .navbar-nav > li a.nav-link {
            padding: 0 15px;
            margin: 10px 0 6px;
            color: white !important;
            text-transform: uppercase;
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

.navbar .social-icons {
    margin-top: 0;
    align-self: stretch;
}

@media (max-width: 991px) {
    .navbar .social-icons {
        justify-content: flex-end;
    }

        .navbar .social-icons .nav-item {
            padding-bottom: 10px;
        }
}

.navbar .social-icons .nav-item {
    border-bottom: 0;
}

    .navbar .social-icons .nav-item .nav-link {
        padding: 0;
        margin: 0;
        font-size: 1.7rem;
        vertical-align: sub;
        padding: 0 10px;
    }

        .navbar .social-icons .nav-item .nav-link span {
            vertical-align: middle;
            background: white;
            width: 25px;
            height: 25px;
            color: #0053a0;
            text-align: center;
            border-radius: 50%;
        }

            .navbar .social-icons .nav-item .nav-link span::before {
                padding-left: 1px;
                line-height: 142%;
                vertical-align: middle;
            }

.nav-dropdown {
    top: 100%;
    background: rgba(3, 38, 69, 0.8);
    z-index: 16;
    width: 100%;
    left: 0;
    color: #ff7900;
    padding: 20px;
    margin: 0;
    border: 0;
    border-radius: 0;
    font-size: 1.6rem;
}

    .nav-dropdown .nav-dropdown__level2 {
        display: flex;
        flex-flow: row wrap;
        list-style: none;
        padding: 0;
    }

        .nav-dropdown .nav-dropdown__level2 > li {
            font-size: 1.05em;
            font-weight: 600;
            padding-top: 0;
            padding-bottom: 0;
            flex: 1;
            min-width: 10%;
        }

.navbar-nav .nav-dropdown .nav-dropdown__level2 > li {
    padding-left: 15px;
}

.nav-dropdown .nav-dropdown__level2 > li a {
    color: #fff;
    display: inline-block;
    max-width: 80%;
    vertical-align: top;
}

    .nav-dropdown .nav-dropdown__level2 > li a:hover {
        text-decoration: none;
    }

.nav-dropdown .nav-dropdown__level2 > li::before {
    content: "";
    font-size: 24px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    line-height: 0;
}

.nav-dropdown .nav-dropdown__level2 > li > ul, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul {
    margin-top: 5px;
    list-style: none;
    padding: 0 0 0 0.85em;
}

    .nav-dropdown .nav-dropdown__level2 > li > ul > li, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li {
        padding: 0;
        font-size: 0.85em;
        font-weight: 400;
        /* 4th tier */
    }

        .nav-dropdown .nav-dropdown__level2 > li > ul > li a, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li a {
            color: #b8d8f2;
        }

            .nav-dropdown .nav-dropdown__level2 > li > ul > li a:hover, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li a:hover {
                color: #fff;
            }

        .nav-dropdown .nav-dropdown__level2 > li > ul > li li, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li li {
            padding: 0;
        }

        .nav-dropdown .nav-dropdown__level2 > li > ul > li::before, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li::before {
            content: "";
            border-color: transparent #ff7900;
            border-style: solid;
            border-width: 0.35em 0 0.35em 0.45em;
            display: inline-block;
            left: -0.85em;
            position: relative;
        }

        .nav-dropdown .nav-dropdown__level2 > li > ul > li ul, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li ul {
            display: none;
            padding-left: 1.5em;
        }

        .nav-dropdown .nav-dropdown__level2 > li > ul > li span.fa, .nav-dropdown .nav-dropdown__level2 > li .subsite_nav__level3 > ul > li span.fa {
            padding-right: 10px;
            float: right;
            padding-top: 5px;
            color: #fff;
        }

.nav-dropdown .nav-dropdown__level2 > li:not(:first-child) {
    border-left: 1px solid rgba(238, 238, 238, 0.35);
}

.navbar.subsite {
    background: #022645;
    font-size: 1.2rem;
}

    .navbar.subsite .navbar-nav {
        flex-flow: row wrap;
        margin-left: -10px;
    }

        .navbar.subsite .navbar-nav > li {
            padding: 0;
            margin: 0;
            border-bottom: none;
        }

            .navbar.subsite .navbar-nav > li.active {
                background: #0e3f6c;
            }

            .navbar.subsite .navbar-nav > li > .nav-link {
                padding: 0 15px;
                margin: 10px 0;
                font-size: 1.2rem;
            }

            .navbar.subsite .navbar-nav > li:not(:first-child) > .nav-link {
                border-left: 1px solid rgba(238, 238, 238, 0.35);
            }

            .navbar.subsite .navbar-nav > li .subsite_nav {
                background: #0e3f6c;
                position: absolute;
                padding: 0;
                width: auto;
                left: auto;
                top: 100%;
                font-size: 1.2rem;
            }

                .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 {
                    display: block;
                    min-width: 150px;
                }

                    .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li {
                        border: none;
                        font-weight: 400;
                        padding-bottom: 10px;
                        padding-top: 10px;
                    }

                        .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li > a {
                            max-width: unset;
                            color: #b8d8f2;
                        }

                        .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li::before {
                            content: none;
                        }

                        .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li:hover > a {
                            color: #fff;
                        }

                        .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level3, .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level4 {
                            position: absolute;
                            left: 100%;
                            top: 0;
                            background: #0e3f6c;
                            padding: 0;
                            color: #ff7900;
                            border-radius: 0;
                            border: 0;
                        }

                            .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level3 ul, .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level4 ul {
                                display: block;
                                margin-top: 0;
                                width: 200px;
                            }

                                .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level3 ul li, .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level4 ul li {
                                    font-size: 1.2rem;
                                    padding: 8px 24px 8px 16px;
                                }

                            .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level4 ul {
                                list-style-position: inside;
                            }

                                .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 > li .subsite_nav__level4 ul li {
                                    padding-left: 0;
                                }

                    .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 li {
                        padding-right: 24px;
                    }

                        .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 li.has-child {
                            padding-right: 12px;
                            position: relative;
                        }

                            .navbar.subsite .navbar-nav > li .subsite_nav .nav-dropdown__level2 li.has-child::after {
                                content: "›";
                                font-size: 24px;
                                display: inline-block;
                                position: relative;
                                line-height: 15px;
                                float: right;
                                padding-left: 1rem;
                            }

.iconsmenu_item {
    position: auto;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    flex: 1;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

    .iconsmenu_item .nav-dropdown {
        text-align: left;
        top: auto;
        bottom: 100%;
        background: rgba(3, 38, 69, 0.9);
    }

        .iconsmenu_item .nav-dropdown .nav-dropdown__level2 > li {
            padding: 0 15px;
        }

            .iconsmenu_item .nav-dropdown .nav-dropdown__level2 > li ul li a {
                max-width: 79%;
            }

.navbar.sidebar {
    padding: 0;
}

    .navbar.sidebar .navbar-nav {
        width: 100%;
    }

        .navbar.sidebar .navbar-nav .nav-item {
            border: none;
            padding: 0;
            margin: 0;
            font-weight: 700;
        }

            .navbar.sidebar .navbar-nav .nav-item a {
                color: #fff;
                text-decoration: none;
                display: block;
                padding: 10px 35px 10px 25px;
            }

                .navbar.sidebar .navbar-nav .nav-item a:hover, .navbar.sidebar .navbar-nav .nav-item a.active {
                    background: #0e3f6c;
                }

                .navbar.sidebar .navbar-nav .nav-item a.collapser {
                    width: 35px;
                    position: absolute;
                    top: 0;
                    right: 0;
                    text-align: center;
                }

                    .navbar.sidebar .navbar-nav .nav-item a.collapser::before {
                        content: "+";
                    }

                    .navbar.sidebar .navbar-nav .nav-item a.collapser.open::before {
                        content: "-";
                    }

            .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu {
                padding: 0;
                font-size: 1.4rem;
                border-radius: 0;
                border: none;
                font-weight: 600;
            }

                .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu a {
                    color: #4d4f53;
                    padding-left: 35px;
                }

                    .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu a:hover, .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu a.active {
                        background: #f5f7fa;
                    }

                .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu {
                    font-weight: 500;
                }

                    .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu a {
                        padding-left: 45px;
                    }

                    .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu .dropdown-menu a {
                        padding-left: 55px;
                    }

                    .navbar.sidebar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu a {
                        padding-left: 66px;
                    }

@media (min-width: 769px) {
    .top-menu {
        display: block !important;
        text-align: right;
    }

        .top-menu > ul li:hover > a ~ .link__dropdown, .top-menu > ul li:hover > a ~ .login__dropdown {
            display: block;
            opacity: 1;
            transition: all 0.2s;
        }

        .top-menu > ul li.btn-login > a.collapser {
            display: none;
            background: none;
        }

    .navbar-toggler {
        display: none !important;
    }

    .mobile-show, #iconsmenu-replicate, #subsitemenu-replicate {
        display: none !important;
    }
}

@media (max-width: 769px) {
    #page-head > .container {
        max-width: 100%;
    }

    #page-head .navbar-toggler {
        display: inline-block;
        float: right;
    }

    .top-menu {
        display: none;
        position: relative;
        margin-top: 10px;
        transform: translateY(0%);
    }

        .top-menu .subsite_button {
            display: flex;
        }

            .top-menu .subsite_button .btn {
                background: none;
                border: 1px solid #efefef;
                border-radius: 10px 10px 0 0;
                flex: 1;
                font-size: 0.8em;
            }

                .top-menu .subsite_button .btn.active {
                    color: #fff;
                }

                    .top-menu .subsite_button .btn.active#mobile-main {
                        background: #ff7900;
                    }

                    .top-menu .subsite_button .btn.active#mobile-subsite {
                        background: #0053a0;
                    }

        .top-menu > ul {
            border-top: 1px solid #efefef;
        }

            .top-menu > ul > li > a {
                font-weight: 700;
            }

            .top-menu > ul > li > ul > li > a {
                font-weight: 600;
            }

            .top-menu > ul li {
                display: block;
                padding: 0;
                margin-right: 0;
                position: relative;
            }

                .top-menu > ul li a {
                    padding: 10px 10px;
                }

                    .top-menu > ul li a:hover {
                        background: #efefef;
                    }

                    .top-menu > ul li a.collapser {
                        width: 38px;
                        position: absolute;
                        top: 0;
                        right: 0;
                        text-align: center;
                    }

                        .top-menu > ul li a.collapser::before {
                            content: "+";
                        }

                        .top-menu > ul li a.collapser.open::before {
                            content: "-";
                        }

                .top-menu > ul li ul {
                    display: none;
                    padding-left: 0;
                    margin-left: 10px;
                }

            .top-menu > ul .btn-login > a {
                display: none;
            }

            .top-menu > ul span.fa {
                display: none;
            }

        .top-menu .login__dropdown, .top-menu .link__dropdown {
            opacity: 1;
            position: relative;
            box-shadow: none;
            border: 0;
            text-align: left;
            padding: 0;
            width: 100%;
            display: none;
        }

            .top-menu .login__dropdown .nav-dropdown__level2 ul, .top-menu .link__dropdown .nav-dropdown__level2 ul {
                padding-left: 25px;
            }

        .top-menu .login__dropdown {
            display: block;
            /* justify-content: center;
		 */
            margin-left: 0;
            padding: 0;
        }

            .top-menu .login__dropdown li {
                /* text-align: center;
		 */
                margin: 10px 5px;
            }

                .top-menu .login__dropdown li a {
                    border-radius: 12px;
                    padding: 2px 10px;
                    background: #0053a0;
                    color: #fff;
                    max-width: 130px;
                }

                    .top-menu .login__dropdown li a:hover {
                        background: #176fc1;
                        color: #fff;
                    }

        .top-menu #iconsmenu-replicate {
            display: block;
        }

        .top-menu .social-icons {
            display: inline-block;
            margin-top: 0;
        }

            .top-menu .social-icons .nav-link {
                font-size: 1.6rem;
            }

    #iconsmenu {
        display: none;
    }
}

.alert {
    margin-bottom: 0;
    padding-right: 1.25rem;
}

    .alert .container {
        padding-left: 20px;
        position: relative;
    }

        .alert .container .close {
            padding: 0;
            font-size: 2rem;
        }

#hero {
    background-size: cover;
    height: 300px;
    position: relative;
}

    #hero.home {
        height: auto;
    }

@media (max-width: 991px) {
    #hero.home {
        height: unset;
    }
}

@media all and (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
    #hero.home {
        height: auto;
    }
}

#hero.home #heroCarousel {
    height: auto;
}

@media (max-width: 991px) {
    #hero.home #heroCarousel {
        height: unset;
    }
}

@media all and (max-width: 991px) and (-ms-high-contrast: none), (max-width: 991px) and (-ms-high-contrast: active) {
    #hero.home #heroCarousel {
        height: auto;
    }
}

#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .visible-desktop {
        display: none;
    }
}

.visible-mobile {
    display: none;
}

@media (max-width: 991px) {
    .visible-mobile {
        display: block;
    }
}

#heroCarousel {
    height: 350px;
}

    #heroCarousel .carousel-inner, #heroCarousel .carousel-item {
        height: 100%;
    }

    #heroCarousel img {
        width: 100%;
        height: auto;
    }

@media all and (min-width: 1024px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #heroCarousel img {
        height: auto;
        position: relative;
    }
}

#heroCarousel .hero__container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

    #heroCarousel .hero__container .container {
        height: 100%;
    }

    #heroCarousel .hero__container .hero__title {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

        #heroCarousel .hero__container .hero__title a {
            background: #ff7900;
            border-color: #ff7900;
            color: #fff;
        }

            #heroCarousel .hero__container .hero__title a:hover {
                background: #0053a0;
                border-color: #0053a0;
            }

.page-heading, .page-heading h1 {
    text-align: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.39);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .page-heading, .page-heading h1 {
        font-size: 3rem;
    }
}

.angle-bg {
    position: absolute;
    width: 48%;
    height: 0;
    z-index: 1;
    border-top: 450px solid rgba(13, 62, 108, 0.9);
    border-right: 200px solid transparent;
}

.hero__title {
    /* position: absolute;
	 */
    color: white;
}

    .hero__title h1 {
        font-size: 4.8rem;
        font-weight: bold;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    }

@media (max-width: 768px) {
    .hero__title h1 {
        font-size: 3rem;
    }
}

.hero__title p {
    font-size: 1.8rem;
    width: 80%;
}

#iconsmenu {
    text-align: center;
    padding: 0 0 25px;
    background: #032645;
    position: relative;
}

    #iconsmenu a {
        text-decoration: none;
    }

        #iconsmenu a:hover {
            color: white;
        }

    #iconsmenu span:not(.fa) {
        text-transform: uppercase;
        color: white;
        font-weight: 500;
        line-height: 1px;
    }

    #iconsmenu div[class^="ic-"] {
        font-size: 5rem;
    }

#home-main, #sub-main {
    padding: 40px 0;
}

    #home-main h2, #sub-main h2 {
        text-transform: uppercase;
    }

    #home-main h3, #sub-main h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #0053a0;
    }

    #home-main p.font-italic, #sub-main p.font-italic {
        font-size: 1.4rem;
    }

    #sub-main .contact a {
        color: #0053a0;
    }

    #sub-main .contact label {
        font-size: 1.4rem;
        font-weight: 600;
    }

    #sub-main .contact .form-control {
        height: 50px;
        font-size: 1.6rem;
    }

    #sub-main .contact #textarea {
        height: auto;
    }

    #sub-main .date {
        font-size: 1.6rem;
        color: #9ba0a9;
    }

    #sub-main .publications .input-group .form-control {
        height: 45px;
        font-size: 1.6rem;
        padding-left: 15px;
    }

    #sub-main .publications .input-group .input-group-append .btn {
        height: 45px;
        background-color: #ff7900;
        color: white;
        width: 50px;
        font-size: 2rem;
    }

        #sub-main .publications .input-group .input-group-append .btn:hover {
            opacity: 0.8;
            transition: all 0.2s;
        }

    #sub-main .calc .form-control {
        height: 50px;
        font-size: 1.6rem;
        padding-left: 15px;
        margin-bottom: 26px;
    }

    #sub-main .calc select.form-control {
        /* text-indent: 10px;
	 */
    }

.spotlight-wrapper {
    background: white;
    margin-top: 20px;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
}

    .spotlight-wrapper a {
        color: #363636;
    }

.news-wrapper {
    min-height: 220px;
    margin-top: 20px;
    margin-bottom: 28px;
    position: relative;
}

    .news-wrapper .text-center {
        margin-top: 20px;
    }

.events-wrapper {
    min-height: 220px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .events-wrapper .text-center {
        margin-top: 20px;
    }
/* News */
.news__img {
    height: 120px;
    overflow-y: hidden;
}

    .news__img img {
        width: 100%;
    }

.news__txt {
    background: white;
    padding: 14px 20px;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
}

.news__date {
    font-size: 1.2rem;
    color: #726b65;
}

.news__desc {
    font-size: 1.4rem;
    font-weight: 400;
}
/* Events */
.event__block {
    min-height: 78px;
    background: white;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
    margin-bottom: 20px;
    display: flex;
}

.event__date {
    background: #005398;
    min-height: 78px;
    max-width: 78px;
    color: white;
    flex: 1;
}

.datewrap {
    position: relative;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

    .datewrap span {
        font-size: 2.6rem;
        padding-bottom: 0.5rem;
    }

.event__title {
    font-size: 1.4rem;
    padding: 0 12px;
    color: #363636;
    flex: 3;
    margin: auto;
    max-height: 6.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

    .event__title:hover {
        text-decoration: none;
    }

.module-article h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: unset !important;
}

.module-article h2 {
    text-transform: unset !important;
}
/* Main button */
.btn-main {
    padding: 10px 16px;
    border: 1px solid #363636;
    border-radius: 5px;
    color: #363636;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    min-width: 126px;
    display: inline-block;
    transition: all 0.2s;
}

    .btn-main:hover {
        background: #ff7900;
        color: white;
        text-decoration: none;
        border: 1px solid #ff7900;
        transition: all 0.2s;
        cursor: pointer;
    }

    .btn-main.orange {
        background: #ff7900;
        border: none;
        color: white;
    }

        .btn-main.orange:hover {
            opacity: 0.8;
        }
/* Spotlight Slider */
#carouselSpotlight {
    margin-top: 20px;
    height: auto !important;
}

    #carouselSpotlight .carousel-item img {
        height: 100% !important;
    }

    #carouselSpotlight .carousel-item .embed-responsive {
        height: 300px !important;
    }

@media (max-width: 1200px) {
    #carouselSpotlight .carousel-item .embed-responsive {
        height: 292px !important;
    }
}

@media (max-width: 768px) {
    #carouselSpotlight .carousel-item .embed-responsive {
        height: 282px !important;
    }
}

@media (max-width: 576px) {
    #carouselSpotlight .carousel-item .embed-responsive {
        object-fit: cover;
        height: 250px;
    }
}

#carouselSpotlight .carousel-inner {
    overflow: visible;
}

#carouselSpotlight .carousel-indicators {
    bottom: 28%;
}

#carouselSpotlight .spotlight-cap {
    position: relative;
    background: white;
    min-height: 114px;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
    padding: 30px 5px;
}

    #carouselSpotlight .spotlight-cap p {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    #carouselSpotlight .spotlight-cap a {
        color: #4d4f53;
    }

#carouselSpotlight .spotlight-action {
    background: #fff;
    padding-bottom: 30px;
}

.text-center.spotlight {
    margin-top: 20px;
}
/* Testimonials */
#testimonials {
    min-height: 186px;
    color: white;
    padding: 30px 0;
    position: relative;
    background: #212c56;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, rgba(33, 44, 86, 1) 0%, rgba(37, 41, 54, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(33, 44, 86, 1) 0%, rgba(37, 41, 54, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(33, 44, 86, 1) 0%, rgba(37, 41, 54, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.avatar-img {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.clip-circle {
    height: auto;
    object-fit: scale-down;
    clip-path: circle(40px at center);
}

@media (min-width: 768px) and (max-width: 992px) {
    .clip-circle {
        object-fit: cover;
    }
}

@media (min-width: 768px) {
    .clip-circle {
        width: 100%;
    }
}

.test__name {
    font-size: 1.8rem;
    font-weight: 600;
}

.test__title {
    font-size: 1.4rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.test__quote img {
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

.test__txt {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .test__txt {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .test__quote {
        margin: 20px;
    }

        .test__quote img {
            padding-top: 0;
            width: 18px;
        }

    .test__txt {
        font-size: 1.45rem;
        text-align: center;
    }
}
/* Subpages */
#filterwrap {
    margin: 20px 0;
}

.filterSelect {
    height: 45px;
    border: none;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
    border-radius: 3px;
    padding-left: 15px;
    min-width: 150px;
    margin-left: -5px;
}

    .filterSelect:hover {
        cursor: pointer;
    }

#listings a, .listings a {
    text-decoration: none;
}

#listings.same-height > div, .listings.same-height > div {
    display: flex;
}

.default-card {
    background: white;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
    width: 100%;
}

    .default-card img {
        width: 100%;
        height: 240px;
        margin: auto;
        display: block;
        object-fit: contain;
        transition: all 0.5s ease-out;
    }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .default-card img {
        width: auto;
    }
}

.col-md-6 .default-card img, .col-lg-6 .default-card img {
    height: 300px;
}

.col-md-4 .default-card img, .col-lg-4 .default-card img {
    height: 194px;
}

.default-card:not(div):hover {
    box-shadow: 0 8px 16px 0 rgba(42, 59, 84, 0.16);
}

    .default-card:not(div):hover .card__details .card__title {
        color: #0053a0;
    }

    .default-card:not(div):hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        transition: all 0.5s ease-out;
    }

    .default-card:not(div):hover .btn-main {
        background: #ff7900;
        border: 1px solid #ff7900;
        color: white;
        transition: all 0.2s;
    }

.default-card.programmes {
    /* color: $primary-blue;
	 */
}

    .default-card.programmes .card__img {
        /* height: 100%;
	 */
        text-align: center;
    }

.default-card.publications {
    border-left: 5px solid #005398;
}

    .default-card.publications:hover {
        text-decoration: none;
    }

    .default-card.publications .author {
        margin-top: 6px;
        margin-bottom: 6px;
    }

        .default-card.publications .author span, .default-card.publications .journal span {
            font-weight: 600;
            margin-right: 10px;
        }

.card__img {
    overflow: hidden;
}

.card__details {
    padding: 20px;
    color: #4d4f53;
}

.card__title {
    font-size: 1.8rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
}

.card__date {
    display: inline-block;
    background: #f5f7fa;
    padding: 3px 8px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card__excerpt {
    overflow: hidden;
    margin-top: 10px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 4.5em;
}

div[id^="pemlisting"] .default-card img {
    object-fit: cover;
}

@media (max-width: 575px) {
    div[id^="pemlisting"] .default-card img {
        height: auto;
    }
}

div[id^="pemlisting"] .default-card .card__details {
    font-size: 1.2rem;
}

    div[id^="pemlisting"] .default-card .card__details .card__title {
        font-size: 1.3rem;
    }
/* Pagination */
#pagination, .pagination {
    text-align: center;
    position: relative;
    width: 100%;
}

    #pagination ul, .pagination ul {
        list-style: none;
        display: inline-flex;
        padding-left: 0;
    }

        #pagination ul li, .pagination ul li {
            margin-right: 5px;
        }

            #pagination ul li.is-active a, .pagination ul li.is-active a {
                background: #ff7900;
                color: white;
            }

            #pagination ul li a, .pagination ul li a {
                color: #4d4f53;
                background-color: #e8edf2;
                display: block;
                padding: 5px;
            }

                #pagination ul li a:hover, .pagination ul li a:hover {
                    background: #ff7900;
                    color: white;
                    text-decoration: none;
                }

@media (min-width: 768px) {
    #pagination ul li a, .pagination ul li a {
        min-width: 36px;
        height: 36px;
    }
}

.pagination__controls {
    display: inline-flex;
    margin: 0 auto;
}

.sidepage h3 {
    text-transform: uppercase;
    color: #7d823f !important;
    font-size: 1.6rem !important;
    font-weight: 600;
}

.sidepage hr {
    margin: 0.5em 0 0.8em;
}

.sidepage .reference a {
    color: #0053a0;
}

@media (max-width: 768px) {
    .sidepage {
        margin-top: 20px;
    }
}

.datetime, .speaker {
    margin-bottom: 25px;
}

    .speaker img {
        margin: 10px 0 15px;
    }

.speaker__name {
    font-weight: 600;
}

#upcoming {
    background: white;
    padding: 30px 0;
}
/* Breadcrumbs */
#breadcrumbs {
    background-color: #f1f1f1;
    border-bottom: 1px solid #e1e3e6;
    padding: 7px 0px;
    color: #032645;
    font-size: 1.4rem;
}

.breadcrumbs__list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 0;
}

    .breadcrumbs__list li {
        display: inline-block;
    }

        .breadcrumbs__list li a {
            color: #4d4f53;
        }

            .breadcrumbs__list li a:hover {
                text-decoration: underline;
                color: #0053a0;
            }

        .breadcrumbs__list li:after {
            content: " >";
            color: #4d4f53;
            margin: 0 10px;
            font-size: 1.3rem;
        }

        .breadcrumbs__list li:last-child:after {
            display: none;
        }

.nopadding {
    padding-left: 0px;
}
/* Accordion */
.panel-default > .panel-heading {
    color: #4d4f53;
    border-top: 2px solid #d9dee3;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .panel-default > .panel-heading a {
        display: block;
        padding: 10px 15px;
    }

        .panel-default > .panel-heading a:after {
            content: "";
            position: relative;
            right: 15px;
            display: inline-block;
            font-family: 'Glyphicons Halflings';
            font-style: normal;
            font-weight: 400;
            line-height: 1;
            font-size: 3rem;
            color: #ff7900;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            float: right;
            transition: transform 0.25s linear;
            -webkit-transition: -webkit-transform 0.25s linear;
        }

        .panel-default > .panel-heading a[aria-expanded="true"]:after {
            content: "\2212";
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

        .panel-default > .panel-heading a[aria-expanded="false"]:after {
            content: "\002b";
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
        }

.accordion .expand-all, .accordion .collapse-all {
    transition: all 0.2s;
    font-weight: 600;
    padding-left: 1rem;
    padding-right: 1rem;
    cursor: pointer;
}

    .accordion .expand-all:hover, .accordion .collapse-all:hover {
        color: #ff7900;
        transition: all 0.2s;
    }

.accordion .panel-body {
    padding-bottom: 30px;
}

    .accordion .panel-body a:hover {
        text-decoration: none;
    }

.accordion .panel-title a {
    font-size: 1.8rem;
    color: #4d4f53;
    font-weight: 700;
    padding: 20px 0px;
}

    .accordion .panel-title a:hover {
        text-decoration: none;
        color: #ff7900;
    }

        .accordion .panel-title a:hover ~ .panel-default > .panel-heading a:after {
            color: black;
        }
/* Map */
#map {
    width: 100%;
    height: 380px;
    background: grey;
}
/* calculator */
.block {
    padding: 25px;
    background-color: #7d823f;
    color: white;
}

.calculator-bg {
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
    padding: 30px;
}

.dosage-txt {
    margin-top: 10px;
}
/* Footer */
footer {
    background: white;
    padding: 30px 0;
    font-size: 1.4rem;
    letter-spacing: 0.3px;
}

    footer img {
        margin-bottom: 10px;
    }

    footer ul {
        list-style-type: none;
        padding: 0;
    }

        footer ul a {
            color: #4d4f53;
            transition: all 0.2s;
        }

            footer ul a:hover {
                color: #ff7900;
                transition: all 0.2s;
                text-decoration: none;
            }

        footer ul.quicklinks {
            flex-wrap: wrap;
        }

@media (min-width: 768px) {
    footer ul.quicklinks {
        height: 110px;
    }
}

footer ul.quicklinks li {
    flex-basis: 25%;
    max-height: 25%;
    margin-right: 1rem;
}

@media (max-width: 767px) {
    footer ul.quicklinks li {
        margin-bottom: 0.5rem;
    }
}

footer .footer-head {
    font-weight: 700;
    text-align: right;
}

footer .footer-logo {
    padding-bottom: 20px;
}

footer .fas {
    color: #c5c5c5;
}

.footer-txt {
    font-size: 1.3rem;
}

    .footer-txt a {
        color: #4d4f53;
    }

.social-icons {
    font-size: 2rem;
    margin-top: 10px;
}

    .social-icons a {
        display: inline;
        text-decoration: none;
    }

        .social-icons a::before {
            background: #c5c5c5;
            color: #fff;
            border-radius: 50%;
            padding: 6px;
        }

        .social-icons a.ic-yt2:hover::before {
            background: #cd201f;
        }

        .social-icons a.ic-facebook:hover::before {
            background: #3b5998;
        }

        .social-icons a.ic-twitter:hover::before {
            background: #55acee;
        }

        .social-icons a.ic-insta:hover::before {
            background: #e4405f;
        }

        .social-icons a.ic-linkedin:hover::before {
            background: #0077b5;
        }

blockquote {
    padding: 10px 20px;
    font-size: 1.75rem;
    border-left: 5px solid #eee;
}

div[data-sf-role="form-container"] .sf-FormNav {
    display: flex;
    flex-flow: row wrap;
    text-align: center;
    justify-content: center;
}

    div[data-sf-role="form-container"] .sf-FormNav li {
        margin-right: 0;
        margin-top: 10px;
        margin-bottom: 10px;
        flex: 1;
        min-width: 20%;
    }

@media (max-width: 768px) {
    div[data-sf-role="form-container"] .sf-FormNav li {
        min-width: 33.333%;
    }
}

div[data-sf-role="form-container"] .sf-FormNav li.active .sf-FormNav-page {
    background: #ff7900;
    border: #ff7900;
    color: #fff;
}

div[data-sf-role="form-container"] .sf-FormNav li.past .sf-FormNav-page {
    background: #16cc53;
    border: #16cc53;
    color: #fff;
}

div[data-sf-role="form-container"] .sf-fieldWrp {
    margin-bottom: 25px;
}

    div[data-sf-role="form-container"] .sf-fieldWrp label {
        display: block;
        font-size: 1.7rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

        div[data-sf-role="form-container"] .sf-fieldWrp label .error {
            color: red;
            font-size: 13px !important;
        }

    div[data-sf-role="form-container"] .sf-fieldWrp input:not([type="checkbox"]):not([type="radio"]), div[data-sf-role="form-container"] .sf-fieldWrp textarea, div[data-sf-role="form-container"] .sf-fieldWrp select {
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        height: 50px;
        padding-left: 15px;
        font-size: 1.6rem;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    div[data-sf-role="form-container"] .sf-fieldWrp textarea {
        height: 100px;
    }

    div[data-sf-role="form-container"] .sf-fieldWrp p {
        color: #666;
        margin: 5px 0;
    }

    div[data-sf-role="form-container"] .sf-fieldWrp.sf-RadioButtons label, div[data-sf-role="form-container"] .sf-fieldWrp.sf-Checkboxes label {
        font-weight: 500;
        margin-bottom: 5px;
    }

div[data-sf-role="form-container"] a {
    text-decoration: none;
}

div[data-sf-role="form-container"] button {
    background: transparent;
    padding: 8px 10px;
    border: 1px solid #363636;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    min-width: 126px;
    transition: all 0.2s;
}

    div[data-sf-role="form-container"] button:hover {
        background: #ff7900;
        color: white;
        text-decoration: none;
        border: 1px solid #ff7900;
        transition: all 0.2s;
        cursor: pointer;
    }

#scrollToTop {
    display: none;
    cursor: pointer;
    font-size: 0.9em;
    position: fixed;
    text-align: center;
    z-index: 3;
    transition: background-color 0.2s ease-in-out;
    background: #0053a0;
    color: #fff;
    right: 50px;
    bottom: 30px;
    padding: 8px 12px;
}

    #scrollToTop:hover {
        background: #0e3f6c;
    }

.pem-frontend-detail .tab-layout .nav-tabs {
    border-bottom: none;
}

    .pem-frontend-detail .tab-layout .nav-tabs a {
        border: 1px solid #4d4f53;
        border-bottom: none;
        padding: 5px 25px;
        color: #0053a0;
        margin-right: 5px;
    }

        .pem-frontend-detail .tab-layout .nav-tabs a:hover, .pem-frontend-detail .tab-layout .nav-tabs a.active {
            text-decoration: none;
            color: #fff;
            background: #0053a0;
        }

.pem-frontend-detail .tab-layout .tab-content {
    border: 1px solid #4d4f53;
    padding: 20px;
}

#SiteMap a:hover {
    text-decoration: none;
}

#SiteMap .nav-sitemap {
    list-style: none;
}

    #SiteMap .nav-sitemap li {
        padding-bottom: 0.25rem;
    }

        #SiteMap .nav-sitemap li::before {
            color: #ff7900;
        }

    #SiteMap .nav-sitemap > li::before {
        font-family: "FontAwesome";
        content: "\f105";
        font-weight: 900;
    }

#SiteMap .nav-stacked {
    list-style: none;
    font-weight: 600;
    padding-left: 25px;
}

    #SiteMap .nav-stacked li::before {
        font-family: "FontAwesome";
        content: "\f0da";
        font-weight: 900;
    }

#SiteMap .nav-list {
    padding-left: 25px;
    list-style: none;
    font-weight: 400;
}

.timeline .container {
    width: 100%;
    padding: 10px;
    padding-bottom: 50px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
}

    .timeline .container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -3px;
        width: 6px;
        height: 100%;
        background: #8c8d8b;
        z-index: 1;
        display: block;
    }

.timeline .timeline-block {
    width: -webkit-calc(50% + 12px);
    width: -moz-calc(50% + 12px);
    width: calc(50% + 12px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline .timeline-block-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .timeline .timeline-block-right .timeline-block {
        float: right;
    }

    .timeline .timeline-block-right .timeline-date {
        text-align: right;
    }

.timeline .timeline-block-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    direction: rtl;
}

    .timeline .timeline-block-left .timeline-block {
        direction: rtl;
    }

    .timeline .timeline-block-left .timeline-date {
        text-align: left;
    }

.timeline .timeline-date {
    width: calc(50% - 12px);
    padding: 10px;
    margin: auto 0;
    font-size: 1.7rem;
    font-weight: 600;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .timeline .timeline-date {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.timeline .marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #f5f7fa;
    background: #1e70a1;
    z-index: 9999;
    margin: auto 0;
}

.timeline .timeline-content {
    width: 93%;
    padding: 10px 15px;
    text-align: left;
    background: white;
    direction: ltr !important;
    -webkit-box-shadow: 0 2px 8px 0 rgba(11, 47, 79, 0.15);
    box-shadow: 0 2px 8px 0 rgba(11, 47, 79, 0.15);
}

    .timeline .timeline-content h3 {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 2rem;
        font-weight: 600;
    }

    .timeline .timeline-content span {
        font-size: 1.7rem;
    }

    .timeline .timeline-content p {
        font-size: 1.7rem;
        line-height: 1.3em;
        word-spacing: 1px;
    }

@media screen and (max-width: 768px) {
    .timeline .container:before {
        left: 30px;
        width: 2px;
    }

    .timeline .marker {
        width: 18px;
        height: 18px;
    }

    .timeline .timeline-date {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        text-align: center !important;
        margin: auto 15px auto -25px;
        width: 0;
        writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }

    .timeline .timeline-content {
        padding: 15px 10px;
        word-wrap: break-word;
    }

    .timeline .timeline-block {
        width: 100%;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .timeline .timeline-block-right {
        float: none;
    }

    .timeline .timeline-block-left {
        float: none;
        direction: ltr;
    }

        .timeline .timeline-block-left .timeline-block {
            direction: ltr;
        }
}

@media (min-width: 768px) {
    .col-take-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

[data-sf-element="verticalBanner"] {
    padding-bottom: 2rem;
}

.height-evenly div.sf_colsIn {
    height: 100%;
}

.height-evenly [data-sf-element="spotlight"] #carouselSpotlight .carousel-inner {
    height: 100%;
}

    .height-evenly [data-sf-element="spotlight"] #carouselSpotlight .carousel-inner .carousel-item {
        height: 100%;
        background: black;
        box-shadow: 0 2px 4px 0 rgba(42, 59, 84, 0.08);
        display: none;
        flex-direction: column;
    }

        .height-evenly [data-sf-element="spotlight"] #carouselSpotlight .carousel-inner .carousel-item.active {
            display: flex;
        }

        .height-evenly [data-sf-element="spotlight"] #carouselSpotlight .carousel-inner .carousel-item > *:first-child {
            width: 100%;
            flex: 6;
        }

        .height-evenly [data-sf-element="spotlight"] #carouselSpotlight .carousel-inner .carousel-item .spotlight-cap {
            flex: 1;
            box-shadow: none;
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
        }

.height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item {
    background: #0053a0;
}

    .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item img {
        padding-top: 10px;
    }

    .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .spotlight-cap {
        background: #0053a0;
    }

        .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .spotlight-cap p {
            color: #fff;
        }

        .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .spotlight-cap a {
            color: #fff;
        }

    .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .spotlight-action {
        background: #0053a0;
    }

    .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .btn-main {
        color: #fff;
        border-color: #fff;
    }

        .height-evenly [data-sf-element="spotlight"] #sdghi-spotlight #carouselSpotlight .carousel-inner .carousel-item .btn-main:hover {
            background: #ff7900;
            border: 1px solid #ff7900;
        }

.height-evenly [data-sf-element="spotlight"] #sdghi-spotlight h2 {
    color: #0053a0;
}

@media (min-width: 992px) {
    .height-evenly [data-sf-element="verticalBanner"] {
        padding-top: 4.5rem;
    }
}

.blog .blog_item, .blog__post .blog_item {
    padding: 1rem 0 2rem;
    border-bottom: 1px solid #bcbec3;
    margin-bottom: 1rem;
}

    .blog .blog_item h2 a, .blog__post .blog_item h2 a {
        color: #4d4f53;
    }

.blog .blog_date, .blog__post .blog_date {
    margin: 0.5rem 0;
    background: #f1f1f1;
    padding: 0.5rem 1rem;
    font-style: italic;
    font-size: 0.8em;
}

.blog .blog_content, .blog__post .blog_content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.blog .blog_more, .blog__post .blog_more {
    font-size: 0.9em;
    color: #0053a0;
}

.sf-Tags li a {
    color: #0053a0;
}

.thrcol-right {
    border: 1px solid #e1e3e6;
    padding: 10px;
    background: #f1f1f1;
}

    .thrcol-right a {
        background: #fff;
        display: block;
        padding: 5px;
        margin: 0 0 10px 0;
        font-weight: bold;
        font-size: 0.8em;
    }

    .thrcol-right img {
        margin-bottom: 5px;
    }

#search {
    height: 0;
    transition: all 0.2s;
    overflow: hidden;
}

    #search.clicked {
        padding: 20px 0;
        height: 85px;
    }

    #search .gsc-control-cse {
        padding: 0px !important;
        border-color: #ced4da;
        border-radius: 0.25rem;
    }

        #search .gsc-control-cse form.gsc-search-box, #search .gsc-control-cse table.gsc-search-box {
            margin-bottom: 0px !important;
        }

        #search .gsc-control-cse .gsib_b {
            display: none;
        }

        #search .gsc-control-cse .gsc-branding {
            display: none !important;
        }

        #search .gsc-control-cse button.gsc-search-button {
            display: block;
            width: 13px !important;
            height: 13px !important;
            border-width: 0px !important;
            margin: 0px !important;
            padding: 15px !important;
            outline: none;
            cursor: pointer;
            box-shadow: none !important;
            box-sizing: content-box !important;
            background-color: #fff !important;
        }

            #search .gsc-control-cse button.gsc-search-button svg {
                fill: black;
            }

#gsc-iw-id1 {
    border-width: 0px !important;
}

#gsc-i-id1 {
    height: 33px !important;
    background: none !important;
    text-indent: 0px !important;
    padding-left: 12px !important;
}

    #gsc-i-id1::-webkit-input-placeholder, #gsc-i-id1:-ms-input-placeholder {
        color: #bcbec3;
    }

    #gsc-i-id1::-moz-placeholder, #gsc-i-id1:-moz-placeholder {
        color: #bcbec3;
        opacity: 1;
    }

.giving-card {
    border: 1px solid #bcbec3;
    margin-bottom: 2rem;
    background: #0053a0;
    color: white;
    display: block;
}

    .giving-card:hover {
        color: white;
        text-decoration: none;
    }

    .giving-card .giving-card_img {
        width: 100%;
        object-fit: cover;
        background: white;
    }

    .giving-card .giving-card_text {
        padding: 2rem;
    }

        .giving-card .giving-card_text .giving-card_text-detail {
            padding-top: 3rem;
            text-align: right;
            font-size: 1.4rem;
        }

            .giving-card .giving-card_text .giving-card_text-detail .giving-card_name {
                font-weight: bold;
                margin-bottom: 1.5rem;
                font-size: 1.8rem;
            }

#search input[type=search] {
    height: 40px;
    background: white;
    text-indent: 0px;
    padding: 5px 10px 5px 20px;
    border-right: none;
    font-size: 12px;
}

    #search input[type=search]:focus {
        border: 1px solid #ced4da;
        border-right: none;
        box-shadow: none;
    }

#search .input-group-text {
    background-color: white;
    border-left: none;
}

#modal-search-result .modal-body {
    padding: 0;
}

#modal-search-result iframe {
    border: none;
    width: 100%;
    height: 800px;
}

    #modal-search-result iframe.no-result {
        height: 100px !important;
    }

@media screen and (max-height: 800px) {
    #modal-search-result iframe {
        height: 500px;
    }
}

@media screen and (max-width: 480px) {
    #modal-search-result iframe {
        height: 500px;
    }
}

.dn-search-result {
    overflow-x: hidden;
    padding: 0 10px;
}

    .dn-search-result .dn-section-top {
        padding-top: 10px;
    }

    .dn-search-result hr {
        margin: 5px 0;
    }

    .dn-search-result .dn-searchresult-section {
        margin-top: 6px;
    }

    .dn-search-result .dn-searchresult-title {
        margin: 0;
        font-size: 14px;
    }

        .dn-search-result .dn-searchresult-title a {
            text-decoration: underline;
            color: #15c;
        }

    .dn-search-result a.dn-searchresult-anchors {
        color: #093;
        font-size: 11px;
        line-height: 1.5;
        display: block;
    }

    .dn-search-result p.dn-searchresult-content {
        font-size: 11px;
    }

    .dn-search-result .pagination a {
        font-size: 20px;
        text-align: center;
        display: block;
    }

    .dn-search-result .dn-sort-controls {
        float: right;
        font-size: 9px;
    }

.modal-open .modal {
    top: 0;
    bottom: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .modal-open .modal.fade .modal-dialog {
        height: 100%;
        margin: 0 auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        overflow-x: none;
        -webkit-overflow-scrolling: touch;
        transform: none;
        max-width: none;
        pointer-events: all;
        padding: 10px;
    }

#modal-search-result .modal-content {
    max-width: 700px;
    margin: 0 auto;
}

#modal-search-result .modal-footer {
    padding-bottom: 1.5rem;
}

.no-scroll {
    overflow: hidden;
}

    .no-scroll body {
        overflow: hidden;
    }

.sdghi-project .search-side-bar {
    background-color: #dee8f2;
    padding: 20px 15px;
    border-radius: 8px;
}

    .sdghi-project .search-side-bar .filterSelect {
        margin-left: 0;
        width: 100%;
    }

        .sdghi-project .search-side-bar .filterSelect.custom-select {
            font-size: 16px;
        }

    .sdghi-project .search-side-bar .side-bar-title {
        font-weight: bold;
        font-size: 18px;
    }

    .sdghi-project .search-side-bar .input-group .form-control {
        height: 45px;
        font-size: 1.6rem;
        padding-left: 15px;
    }

    .sdghi-project .search-side-bar .input-group .input-group-append .btn {
        height: 45px;
        background-color: #ff7900;
        color: white;
        width: 50px;
        font-size: 2rem;
    }

        .sdghi-project .search-side-bar .input-group .input-group-append .btn:hover {
            opacity: 0.8;
            transition: all 0.2s;
        }

.sdghi-project #projects .project-item {
    padding-top: 15px;
    padding-bottom: 15px;
}

.sdghi-project #projects .panel-default > .panel-heading {
    margin-top: 15px;
}

    .sdghi-project #projects .panel-default > .panel-heading h3.panel-title {
        font-weight: bold;
        color: #4d4f53;
    }

    .sdghi-project #projects .panel-default > .panel-heading > .panel-title a {
        padding: 15px 0;
    }

.tab-layout-map .nav-tabs a {
    padding: 5px 25px;
    color: #333;
}

    .tab-layout-map .nav-tabs a:hover, .tab-layout-map .nav-tabs a.active {
        text-decoration: none;
        color: #0053a0;
        border-bottom: 3px solid #0053a0;
    }

.tab-layout-map .tab-content {
    padding: 3rem 0;
}
