﻿
/*COLOUR PALETTE*/

/* NAVY: #212C57 */
/* LIGHT BLUE: #438AC9 */


html {
    scroll-behavior: smooth;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}
form {
    overflow-x: hidden;
}
body {
    font-family: Lato;
    font-size: 14pt;
}

h1, h2, h3 {
    font-family: lato, sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1 {
    color: #212C57;
    font-size: 3em;
}
h2 {
    color:#212C57;
    font-size: 2.5em;
}
h3 {
    color:#212C57;
    font-size: 2em;
    text-transform: capitalize;
}
h4 {
    color:#212C57;
    font-size: 1.5em;
}
h5 {
    color:#212C57;
    font-size: 1em;
}
p, a {
    font-family: Lato;
    font-size: 14pt;
}
/*.internal-page span, nav span {
    font-family: Lato;
    font-size: 14pt;
}*/
a {
    text-decoration: none;
    color: #212C57;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}
    a:hover, a:focus, a:active {
        color: #DBA643;
        text-decoration: none;
    }
ul li {
    font-family: Lato;
    /*font-size: 16pt;*/
    margin-bottom: 5px;
}

table th {
    background-color: #438AC9 !important;
    font-family: muli;
    color: #fff;
    font-weight: normal;
    padding: 0.65em 1.3em;
    border: 1px solid transparent;
}

table td {
    line-height: 1.8em;
    color: #4d4d4d;
    font-family: Lato;
    background: none repeat scroll 0 0 transparent;
    /*border: 1px solid transparent;*/
    padding: 0.7em 1.3em;
    vertical-align: top;
    border-color: #cccccc;
}
.month-title td {
    color: #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

a.web-link {
    font-family: muli;
    font-weight: bold;
    font-size: 1.3em;
    color: #9ccb3b;
    padding: 1.3em 1.3em 1.3em 55px;
    align-content: center;
    position: relative;
    margin: 1em 0;
    display: block;
}
.no-padding {
    padding: 0 !important;
}
a.web-link:before {
    position: absolute;
    content: "";
    width: 39px;
    height: 39px;
    background-image: url('/ckfinder/userfiles/images/plus.png');
    background-size: contain;
    display: inline-block;
    left: 0.3em;
    top: 1em;
}
.no-scroll {
    height: 100vh;
    overflow: hidden;
}

ul.one-col {
    column-count: 1 !important;
    -webkit-column-count: 1 !important;
}

header {
    z-index: 99999;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfb;
    position: fixed;
}
header .upper-header {
    border-bottom: 5px solid #438AC9;
    width: 100%;
    display: flex;
    justify-content: center;
}
header .upper-left-header, header .upper-right-header {
    padding: 10px;
    flex: 1;
}
header .upper-left-header {
    margin-left: auto;
    float: left;
}
header .upper-left-header a {
    float: left;
}
header .upper-right-header {
    margin-right: auto;
    float: right;
}
header .logo {
    padding: 20px;
}
header .logo * {
    color: #fff !important;
    flex: 1 0 100%;
    text-align: center;
        
}
header .logo img {
    display: block;
    margin: auto;
    max-width: 100%;
}
header .upper-right-header .quick-links {
    list-style: none;
    float: right;
    padding: 0;
    width: 100%;
    text-align: right;
}
header .upper-right-header .quick-links li {
    display: inline-block;
    position: relative;
}
header .upper-right-header .quick-links li:after {
    content: " | ";
}
header .upper-right-header .quick-links li:last-child:after {
    content: "";
}
header .upper-right-header .quick-links li a {
    text-transform: uppercase;
    color: #212C57;
}
header .upper-right-header .social-links {
    float: right;
    display: block;
}
header .upper-right-header .social-links a {
    padding: 0 5px;
}
header .desktop-nav {
    width: 100%;
    background-color: #212C57;
}
header .desktop-nav ul.rmRootGroup {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
    header .desktop-nav ul.rmRootGroup li {
        margin: 0;
        position: relative;
        padding: 10px 15px;
    }
header .desktop-nav a {
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}
header .desktop-nav a:hover,
header .desktop-nav a:focus,
header .desktop-nav a:active {
    color: #DBA643;
}
    header .desktop-nav ul.rmRootGroup li > .rmSlide {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #212C57;
        min-width: 100%;
        width: auto;
        padding: 5px 10px;
        opacity: 0;
        z-index: -1;
        pointer-events: none;
        transition: 0.5s all ease-in-out;
        -webkit-transition: 0.5s all ease-in-out;
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
    }
header .desktop-nav ul.rmRootGroup li:hover > .rmSlide {
    z-index: 9;
    opacity: 1;
    pointer-events: all;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}
    header .desktop-nav ul.rmRootGroup > li > .rmSlide ul.rmLevel1 {
        list-style: none;
        padding: 5px;
        text-align: left;
        /*column-count: 2;*/
    }

    header .desktop-nav ul.firstCol,
    header .desktop-nav ul.secondCol {
        display: inline-block;
        width: 50%;
    }

    header .desktop-nav .two-cols {
        display: flex;
        flex-wrap: nowrap;
    }


        header .desktop-nav ul.rmRootGroup > li > .rmSlide ul.rmLevel1 li {
            padding: 5px;
            border-bottom: solid 1px #438AC9;
            white-space: nowrap;
            position: relative;
        }
        header .desktop-nav ul.rmRootGroup > li > .rmSlide ul.rmLevel1 li a {
            font-size: 0.9em;
            width: 100%;
            position: relative;
            display: block;
            padding-right: 60px;
        }
    header .desktop-nav ul.rmLevel1 > li > a:after {
        content: ">>";
        display: inline-block;
        position: absolute;
        right: 0;
        float: right;
        transition: 0.5s all ease-in-out;
        -webkit-transition: 0.5s all ease-in-out;
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
    }
header .desktop-nav ul.rmLevel1 > li:hover > a::after, 
header .desktop-nav ul.rmLevel1 > li:focus > a::after, 
header .desktop-nav ul.rmLevel1 > li:active > a::after {
    color: #DBA643;
}


    header .desktop-nav ul.rmRootGroup li.level2 > .rmSlide {
        background-color: #438AC9;
    }
    
    header .desktop-nav ul.rmRootGroup li.level2 > .rmSlide ul{
        list-style: none;
        margin: 0;
        padding-left: 5px;
    }
    
    header .desktop-nav ul.rmRootGroup li.level2 > .rmSlide ul li a{
        color: #fff;
        transition: 0.5s all ease-in-out;
        -webkit-transition: 0.5s all ease-in-out;
    }
        header .desktop-nav ul.rmRootGroup li.level2 > .rmSlide ul li a:hover {
            color: #DBA643;
            transition: 0.5s all ease-in-out;
            -webkit-transition: 0.5s all ease-in-out;
        }

    header .desktop-nav li.level2 .rmSlide {
        transition: 0.5s all ease-in-out;
        -webkit-transition: 0.5s all ease-in-out;
        top: 0;
        position: relative;
        padding: 0 !important;
    }
        header .desktop-nav li.level2:hover .rmSlide {
        }
    header .desktop-nav li.level2 .rmSlide .pop-out-menu {
/*        position: absolute;
        top: 100%;
        background-color: #438AC9;*/
    }
        header .desktop-nav li.level2 .rmSlide .pop-out-menu ul {
            background-color: #438AC9;
            z-index: 99;
        }



    header .mobile-quick-links {
        width: 100%;
        background-color: #212C57;
        display: none;
    }
    header .mobile-quick-links ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0px;
    }
    header .mobile-quick-links ul li {
        padding: 10px 0;
        margin: 0;
    }
header .mobile-quick-links ul a {
    color: #fbfbfb;
    text-transform: uppercase;
}
header .mobile-quick-links ul li:after {
    content: "|";
    color: #fbfbfb;
    margin: 0 10px;
}
header .mobile-quick-links ul li:last-child:after {
    content: "";
}

header .mobile-nav-quick-links {
    position: absolute;
    top: 0;
    left: 0;
    text-align: right;
    width: 100%;
}
header .mobile-nav-quick-links ul {
    float: right;
}
    header .mobile-nav-quick-links ul li {
        display: inline-block;
        color: #fff;
    }
header .mobile-nav-quick-links a {
    color: #fff;
    font-size: 0.95em;
}



header .quick-links-dropdown {
    position: relative;
}

header .quick-links-dropdown .quick-links-list {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 5px 10px;
    background: #212C57;
    opacity: 0;
    z-index: -5;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}
header .quick-links-dropdown:hover .quick-links-list {
    opacity: 1;
    z-index: 10;
}

header .quick-links-dropdown .quick-links-list li {
    padding: 5px;
}

header .quick-links-dropdown .quick-links-list li:after{
    content: "";
    display: none;
}

header .quick-links-dropdown .quick-links-list a {
    color: #fff !important;
    white-space: nowrap;
}

header .quick-links-dropdown .quick-links-list a:hover {
    color: #DBA643 !important;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}

.internal-content {
    max-width: 1400px;
    margin-top: -30vh;
}
.internal-content.no-banner {
    margin-top: 0 !important;
}

/*BURGER BUTTON STYLE*/
#nav-icon3 {
    height: 5em;
    width: 5em;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999999999999999999;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}
    #nav-icon3 span {
        display: block;
        position: absolute;
        height: 5px;
        width: 56%;
        background: #438AC9;
        border-radius: 10px;
        opacity: 1;
        left: 50%;
        -webkit-transform: rotate(0deg) translateX(-50%);
        transform: rotate(0deg) translateX(-50%);
        transition: .25s ease-in-out;
    }

        #nav-icon3 span:nth-child(1) {
            top: calc(33% - 5px);
        }

        #nav-icon3 span:nth-child(2),
        #nav-icon3 span:nth-child(3) {
            top: calc(50% - 5px);
        }

        #nav-icon3 span:nth-child(4) {
            top: calc(66% - 5px);
        }

    #nav-icon3.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    #nav-icon3.open {
        position: fixed;
    }
    #nav-icon3.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        left: 10px;
        background: #fff;
    }

    #nav-icon3.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        left: 10px;
        background: #fff;
    }

    #nav-icon3.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

.small-menu {
    display: none;
}

    .small-menu .dropdown-menu {
        margin: 0;
        border: none;
        box-shadow: none;
        width: auto;
        float: right;
        top: 0;
        height: 100vh;
        left: unset;
        left: -250%;
        display: inherit !important;
        border-radius: 0;
        padding: 25px 25px 0;
        transition: all .3s ease;
        background-color: #212C57;
        position: fixed;
        overflow: scroll;
        transition-delay: 0.5s;
    }

        .small-menu .dropdown-menu.open {
            left: 0;
            overflow: scroll;
            transition-delay: 0s;
        }

        .small-menu .dropdown-menu ul.rmRootGroup {
            position: relative;
            padding-top: 2em;
        }
        .small-menu .dropdown-menu ul.rmRootGroup > li.level1 {
            padding-top: 1em;
        }
            .small-menu .dropdown-menu ul.rmRootGroup > li.level1 > a {
                width: 100%;
            }

        .small-menu .dropdown-menu ul {
            list-style: none;
        }

            .small-menu .dropdown-menu ul li {
                transition: all 0.4s ease;
                /*position: relative;*/
            }

            .small-menu .dropdown-menu ul.rmRootGroup {
                padding-bottom: 20px;
                list-style: none;
                height: 100%;
                padding-left: 0;
                min-width: 20vw;
                z-index: 9;
                position: relative;
            }

            .small-menu .dropdown-menu ul li.level1.hasChildren > span {
                position: absolute;
                top: 10px;
                right: 20px;
                width: 15px;
                height: 15px;
                z-index: 10;
                cursor: pointer;
                transition: all 0.4s ease;
                -webkit-transition: all 0.4s ease;
            }

            .small-menu .dropdown-menu ul li.level1.liParentSelected > span {
                top: 19.5px;
            }

            .small-menu .dropdown-menu ul li.level1.hasChildren > span:after {
                content: "";
                position: absolute;
                width: 3px;
                height: 100%;
                background-color: #244288;
                left: 50%;
                transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                transition: all .4s ease;
                border-radius: 4px;
            }

            .small-menu .dropdown-menu ul li.level1.liParentSelected > span:after {
                opacity: 0;
                visibility: hidden;
            }

            .small-menu li.hasChildren > span:before {
                content: "";
                position: absolute;
                width: 100%;
                height: 3px;
                background-color: #244288;
                top: 50%;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                border-radius: 4px;
            }

            .small-menu .dropdown-menu ul > li.level1 > a {
                color: #fff;
                font-size: 22pt;
                padding: 0 25px;
                display: inline-block;
                transition: all .3s ease;
                position: relative;
            }
                .small-menu .dropdown-menu ul > li > a:hover {
                    text-decoration: none;
                    color: #F2B818;
                }

            .small-menu .dropdown-menu ul li .rmSlide {
                transition: 0.5s max-height ease-in-out;
                -webkit-transition: 0.5s max-height ease-in-out;
                max-height: 0;
                background-color: #0A3A8E;
                transition-delay: 0.5s;
                overflow: hidden;
            }
            .small-menu .dropdown-menu ul li:hover .rmSlide {
                max-height: 99999px;
                transition-delay: 0s;
            }
/*            .small-menu li.hasChildren > a:before {
                content: "🠗";
                animation: none;
            }*/

                .small-menu .dropdown-menu ul li .rmSlide.active {
                    max-height: 9999px;
                }
                .small-menu .dropdown-menu ul.rmRootGroup li.level2 {
                    padding: 10px 0;
                }                
                .small-menu .dropdown-menu ul.rmRootGroup li.level2 a {
                    color: #fff;
                    transition: 0.5s all ease-in-out;
                    -webkit-transition: 0.5s all ease-in-out;
                }
                .small-menu .dropdown-menu ul.rmRootGroup li.level2:hover a,
                .small-menu .dropdown-menu ul.rmRootGroup li.level2:active a,
                .small-menu .dropdown-menu ul.rmRootGroup li.level2:focus a {
                    color: #F2B818;
                }

            .small-menu .dropdown-menu ul li.level2 .rmSlide {
                transition: 0.5s max-height ease-in-out;
                -webkit-transition: 0.5s max-height ease-in-out;
                max-height: 0;
                background-color: #0A3A8E;
                transition-delay: 0.5s;
                overflow: hidden;
            }

            .small-menu .dropdown-menu ul li.level2:hover .rmSlide {
                max-height: 99999px;
                transition-delay: 0s;
            }

            .small-menu .dropdown-menu ul li.level3 {
                padding: 5px 0;
            }

    nav {
        /*width: 60%;*/
        height: 100%;
    }

.small-menu-content {
    position: relative;
    padding-top: 50px;
    justify-content: right;
    height: 100%;
}
 
a.read-more, a.document-link {
    padding: 1em 2em;
    color: #fff;
    background-color: #438AC9;
    font-family: muli;
    text-transform: uppercase;
    z-index: 5;
    transition: 0.5s all ease-in-out;
    text-decoration: none;
    display: block;
}
    a.read-more:hover, a.document-link:hover {
        background-color: #212C57;
    }

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.banner-container img{
    min-width: 100%;
    min-height: 100%;
}
.home-template .slick-track, .home-template .slick-list {
    height: 100%;
}
.home-template .slider {
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}
.home-template .slider img {
    min-width: 100%;
    min-height: 100%;
}
.home-template .banner-container .caption {
    position: absolute;
    text-align: left;
    bottom: 10%;
    left: 25px;
    z-index: 8;
    color: #fff;
    font-size: 4em;
    text-shadow: 2px 4px 5px #000000;
    font-style: italic;
}
.banner-arrow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    text-align: center;
    animation: down-up;
    animation-play-state: paused;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.banner-arrow:hover {
    animation-play-state: running;
}

@keyframes down-up {
    0% {
        bottom: 10%;
    }
    50% {
        bottom: 8%;
    }
    100% {
        bottom: 10%;
    }
}


.home-template .welcome {
    padding: 100px 0;
}
.home-template .welcome img {
    max-width: 100%;
}
.home-template .welcome .text {
    background-color:#212C57;
    color: #fff;
    padding: 2em;
    margin-top: 2em;
}
.home-template .welcome .text h2 {
    color: #fff;
    margin: 0;
    padding-top: 0;
}
.home-template .welcome .text .read-more {
    position: absolute;
    bottom: -2em;
}
.home-template .welcome .img:after {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
    left: -5%;
    top: 5%;
    background-color: #438AC9;
    z-index: -1;
}
.home-template .links {
    display: grid;
    grid-template-columns: auto auto auto auto;
}
.home-template .links .link.double-width {
    grid-column: span 2 / auto;
}
.home-template .links .link.double-height {
    grid-row: span 2 / auto;
}
.home-template .link {
    overflow: hidden;
    margin: 5px;
    position: relative;
}
.home-template .link:nth-child(1),
.home-template .link:nth-child(4) {
    margin-left: 0;
}
.home-template .link:nth-child(3),
.home-template .link:nth-child(6) {
    margin-right: 0;
}
.home-template .links img {
    min-width: 100%;
    min-height: 100%;
}
.home-template .link h4 {
    position: absolute;
    bottom: 25px;
    padding: 25px;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}

.home-template .link a {
    position: absolute;
    bottom: -50px;
    left: 0;
    padding: 25px;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
}


.home-template .link.double-height:hover h4 {
    bottom: 70px;
}

.home-template .link.double-height:hover a {
    bottom: 40px;
}
.home-template .link:hover h4 {
    bottom: 60px;
}

.home-template .link:hover a {
    bottom: 25px;
}



.home-template .upcoming-events-cont {
    padding: 50px 0;
    background-color: #E4F1FD;
}
.home-template .upcoming-events {
    padding: 25px;
    text-align: center;
}
.home-template .upcoming-events .events {
    padding: 50px 0;
}
.home-template .upcoming-events-title {
    width: 100%;
    text-align: center;
    color: #212C57;
    /*text-transform: uppercase;*/
}
.home-template .upcoming-events .event-cont {
    padding: 25px;
}
.home-template .upcoming-events .event {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    background-color: #212C57;
    position: relative;
    z-index: 2;
    text-align: left;
}
.home-template .upcoming-events .event-cont:before {
    content: " ";
    padding: 25px;
    position: absolute;
    height: 100%;
    width: 100%;
    left: -5%;
    top: 5%;
    background-color: #438AC9;
    background-clip: content-box;
}
.home-template .upcoming-events .event .event-title {
    color: #fbfbfb;
    font-weight: bold;
    font-size: 1.5em;
}
.home-template .upcoming-events .event .date {
    color: #fbfbfb;
    text-transform: uppercase;
    font-weight: 300;
}
.home-template .upcoming-events .event .event-more {
    color: #438AC9;
}
.home-template .upcoming-events .next-arrow,
.home-template .upcoming-events .prev-arrow {
    position: absolute;
    top: 45%;
    cursor: pointer;
}
.home-template .upcoming-events .prev-arrow {
    left: -10%;
}
.home-template .upcoming-events .next-arrow {
    right: -10%;
}

.phoenix-bg {
    background-image: url('/ckfinder/userfiles/images/Core/phoenix-after.png');
    background-position: bottom right;
    background-size: auto;
    background-repeat: no-repeat;
}


footer {
    width: 100%;
    position: relative;
    min-height: 400px;
}
footer .main-frame {
    position: relative;
}
footer iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
}
footer .footer-content {
/*    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: end;
    flex-wrap: wrap;*/
position: relative;
}
footer .contact {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    background-color: #212C57;
}
footer .footer-strip {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #438AC9;
    color: #fbfbfb;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
footer .footer-strip a,
footer .footer-strip p
{
    color: #fbfbfb;
    font-size: 12pt;
    margin: 0;
}

.internal-page .banner-container {
    position: relative;
}
.internal-page .banner-container:after {
    content: " ";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(/ckfinder/userfiles/images/Core/phoenix-after.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}
.banner-container p {
    margin: 0;
    min-height: 100%;
    min-width: 100%;
}
.internal-page .banner-container img {
    min-width: 100%;
    min-height: 100%;
}

.internal-page .content {
    padding: 25px;
    background-color: #ffffff;
}


.internal-page .breadcrumb {
    background-color: transparent;
    padding-left: 0;
    margin-bottom: 50px;
}
.internal-page .breadcrumb span, .internal-page .breadcrumb a {
    font-size: 14pt;
    color: #337ab7;
    text-transform: uppercase;
}
.internal-page .breadcrumb a:after{
    content: " | ";
}
.section-menu {
    padding: 0 10px 25px;
}
.section-menu-content {
    padding: 50px;
    color: #fff;
    background-color: #212C57;
}
.section-menu h4 {
    color: #fff;
    margin-bottom: 25px;
}
.section-menu ul {
    list-style: none;
    padding-left: 0;
}
.section-menu li {
    transition: 0.5s all ease-in-out;
}

.section-menu a {
    color: #fff;
    text-decoration: none;
    transition: 0.5s all ease-in-out;
}

.section-menu a:hover, .section-menu .selectedPage > a {
    /*color: #438AC9;*/
}
.section-menu li.level3 {
    margin-left: 25px;
}


.sws-float-left {
    float: left;
    padding: 30px;
}
.sws-float-right {
    float: right;
    padding: 30px;
}

table {
    overflow-x: scroll;
    overflow-y: auto;
    max-width: 100%;
    position: relative;
    /*display: block;*/
}
.mobile-image {
    display: none;
}

.green-background {
    background-color: #49AD4D;
    color: #fff;
}

/* NEWS PAGE */
 .news-page {
    padding: 25px;
    text-align: center;
}

     .news-page .events {
        padding: 50px 0;
    }

 .news-page-title {
    width: 100%;
    text-align: center;
    color: #212C57;
    text-transform: uppercase;
}

 .news-page .event-cont {
    padding: 25px;
}

 .news-page .event {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    background-color: #212C57;
    position: relative;
    z-index: 2;
    text-align: left;
}

 .news-page .event-cont:before {
    content: " ";
    padding: 25px;
    position: absolute;
    height: 100%;
    width: 100%;
    left: -5%;
    top: 5%;
    background-color: #438AC9;
    background-clip: content-box;
}

 .news-page .event .event-title {
    color: #fbfbfb;
    font-weight: bold;
    font-size: 1.5em;
}

 .news-page .event .date {
    color: #fbfbfb;
    text-transform: uppercase;
    font-weight: 300;
}

 .news-page .event .event-more {
    color: #438AC9;
}














/* ==================================
   Cookie Control
   ================================== */


.CookieControl {
    /*    background-image:url(../img/cookie/cookie-opac.png);
    background-repeat:repeat;*/
    background-color: #212C57;
    color: #fff;
    padding: 20px 0;
}


.CookieButtonWrap {
    margin: 10px auto;
}

.CookieButton {
    text-transform: uppercase;
    color: #fff !important;
    background-color: #438AC9;
    font-size: 16pt;
    padding: 10px 20px;
    border: none;
    transition: 0.5s all;
    cursor: pointer;
    display: inline-block;
    float: right;
}

    .CookieButton:hover {
        background-color: #003E7D;
    }

    .CookieButton:active {
        position: relative;
        top: 1px;
    }

.CookieMessage {
    float: left;
    width: 90%;
    padding-right: 2%;
    color: #fff;
}

    .CookieMessage p {
        color: #fff;
    }

.CookieMessageWrap {
    /*background-color: #083423;*/
    color: #fff;
}

.CookieMessage a {
    color: #BE8333;
}

    .CookieMessage a:hover {
        color: #fff;
    }




/* CONTACT FORM */
.TextBoxEnquiry {
    background: #f2f2f2;
    border-radius: 0px;
    border: 0px;
}

input#EnquiryForm_ButtonSubmit {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 50px;
    background: #212C57;
    border: 0px;
    color: #fff;
    width: 100%;
}


    input#EnquiryForm_ButtonSubmit:hover {
        background: #438AC9;
        transition: .2s;
    }



@media only screen and (max-width: 1600px) {
    .home-template .banner-container .caption h2 {
        font-size: 3em;
    }
}
@media only screen and (max-width: 1400px) {
}
@media only screen and (max-width: 1200px) { 

}
@media only screen and (max-width: 991px) {
    #nav-icon3 {
        display: block;
    }
    .small-menu {
        display: block;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-quick-links {
        display: block;
    }
    .upper-right-header .quick-links {
        display: none;
    }
    .upper-left-header a {
        display: none;
    }
    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }

    .internal-content {
        margin-top: -10vh;
    }

    .small-menu .dropdown-menu ul a {
        white-space: normal !important;
    }
    .small-menu .dropdown-menu ul > li.level1 > a {
        width: auto;
    }

    .small-menu .dropdown-menu ul > li.level1 > .rmSlide {
        position: relative;
        width: 100%;
        height: auto;
    }

    .caption {
        font-size: 0.5em;
        width: unset;
    }

    .home-template .welcome .img {
        justify-content: center;
    }

    .home-template .welcome .text {
        margin-top: 0;
        font-size: 0.8em;
    }

    nav {
        width: 100%;
    }
 
    .home-template .slider {
        display: none;
    }
    .home-template .mobile-image {
        display: block;
        overflow: hidden;
        max-height: 100vh;
    }
    .home-template .mobile-image img {
                position: relative;
        min-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    .home-template .links {
        grid-template-columns: auto auto;
    }
    .home-template .links .link:nth-child(4) {
        order: 1;
    }
    .home-template .links .link:nth-child(n + 5),
    .home-template .links .link:nth-child(3)
    {
        order: 2;
    }
    .home-template .upcoming-events .next-arrow {
        right: -8%;
    }
    .home-template .upcoming-events .prev-arrow {
        left: -8%;
    }
    .home-template .upcoming-events .event-cont:before {
        left: -2.5%;
    }
    footer .footer-content > div {
        position: relative;
        bottom: unset;
        left: unset;
    }
    .internal-page .content {
        padding: 25px 5px;
    }
    .news-page {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
        .news-page .event-cont {
            padding: 25px 0;
        }

}

@media only screen and (max-width: 750px) {
    table {
        display: block;
        width: 100%;
    }
    .internal-content {
        margin-top: 0;
    }
}


@media only screen and (max-width: 567px) {
    body,
    p {
        font-size: 12pt;
    }

    table td {
        display: block;
    }
    .small-menu .dropdown-menu {
        width: 100vw;
        padding: 10px;
    }
    .upcoming-events .next-arrow {
        right: 10% !important;
        top: 80% !important;
    }
    .upcoming-events .prev-arrow {
        left: 10% !important;
        top: 80% !important;
    }
    .home-template .upcoming-events .events {
        padding: 50px 0 100px;
    }
    .home-template .links {
        display: block;
    }
    .home-template .links .link {
        margin: 5px;
    }
    .home-template .links .double-width {
        grid-column: auto;
    }
    .CookieMessage {
        text-align: center;
        float: unset;
    }
    .CookieButton {
        float: unset;
        text-align: center;
    }
    .banner-container {
        height: auto !important;
    }
    .home-template .banner-container .caption {
        font-size: 1.5em;
    }
    .banner-arrow {
        display: none;
    }
}