*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*This changes the box model of everything in the website and can be overwriten per component if needed. To read more about box-sizing and why you'd want to overwrite it see https://css-tricks.com/international-box-sizing-awareness-day/ or https://www.w3schools.com/cssref/css3_pr_box-sizing.asp*/


/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 19.2px;
    color: #333333;
}

p {}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4 {
    margin: 0px;
    margin-bottom: 20px;
    padding: 0px;
    font-family: 'PT Sans', sans-serif;
    color: #004a73;
    font-weight: 700;
}

h1 {
    font-size: 30px;
    color: ;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h1.title {}

h1.title:empty {
    display: none;
}


/*^^Hides the extra margin that is added on pages without a title*/


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

a {
    color: #2b7ec1;
}

a:hover,
a:focus {
    color: #004a73;
    text-decoration: underline;
}


/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/

img {
    border: 0px;
}


/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

.header-wrapper {
    padding: 15px 15px 7px;
}

.logo-wrapper {
    float: left;
}

.nav-links-wrapper {
    float: right;
    width: calc(100% - 220px);
}


/*--------- Login modal --------*/

.modal-content {
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.login-modal .modal-dialog {
    max-width: 300px;
    margin: auto;
    margin-top: 15px;
}

.modal-header {
    background: #004a73;
    color: #fff;
    text-align: center;
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.login-modal .close {
    color: #fff;
    text-shadow: none;
    ;
    opacity: .8;
}

.login-modal .close:hover,
.login-modal .close:focus {
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
}

.login-modal .modal-title {
    font-size: 16px;
    padding: 0;
    color: #fff;
}

.modal-title,
.modal-body {
    font-size: 15px;
    text-align: center;
}

.login-modal {
    font-size: 15px;
}

.login-modal input {
    padding: 5px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #D6DAE8;
    width: 200px;
}

.login-modal input:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #888888;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#login a {
    text-decoration: underline;
    border: none;
    color: #2b7ec1;
    font-weight: 400;
}

#login a:hover,
#login a:focus {
    color: #004a73;
    outline: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.login-modal input[type="submit"] {
    background-color: #2b7ec1;
    color: #fff;
    border: 1px solid #2b7ec1;
    border-radius: 2px;
    padding: 6px 8px 5px;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}

.login-modal input[type="submit"]:hover,
#login input[type="submit"]:focus {
    background-color: #004a73;
    border-color: #004a73;
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    outline: none;
}

#mobile-menu-col {
    height: 50px;
}

#mobile-toggle {
    float: right;
    margin-top: 18px;
    cursor: pointer;
}


/*--------------------------------------------------------
					Search Bar
--------------------------------------------------------*/


/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

#nav_menu {
    padding: 0;
}

#nav_menu>.nav {
    float: right;
}

.dropdown-menu li {
    width: 100%;
}

#nav_menu .nav li a {
    font-size: 18px;
    color: #004a73;
    text-align: right;
    font-family: 'PT Sans', sans-serif;
    padding-left: 8px;
    padding-right: 8px;
}

#nav_menu .nav>li>a:hover,
#nav_menu .nav>li>a:focus {
    background-color: transparent;
}

#nav_menu .nav .dropdown-menu li a {
    text-align: left;
}

@media (max-width: 1200px) {
    #nav_menu .nav li a {
        font-size: 16px;
    }
}

#nav_menu .nav>li:last-of-type a {
    padding-right: 0 !important;
}


/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/

.slideshow-wrapper {
    margin-bottom: 20px;
}

.content-wrapper .column {
    margin: 30px 0px;
}

.content-wrapper #gm-canvas .column {
    padding: 0px 15px;
}

.content-wrapper #gm-canvas #quick-links .column {
    float: left !important;
    margin: 0 !important;
    width: 33.33333333%;
}

@media (max-width: 767px) {
    .content-wrapper #gm-canvas #quick-links .column {
        width: 100%;
    }
}

#quick-links {
    padding: 0 15px;
}

#quick-links .column {
    background: #fff;
    text-align: center;
    box-shadow: 1.08px 3.12px 40.8px 5px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 30px;
    border-bottom: 4px solid #fff;
}

#quick-links .column {
    width: -webkit-calc(33.33333333% - 20px);
    width: -moz-calc(33.33333333% - 20px);
    width: calc(33.33333333% - 20px);
}

@media (max-width: 767px) {
    #quick-links .column {
        width: 100%;
        float: left;
        margin: auto auto 20px auto !important;
    }
    #quick-links .column>h2 {
        display: inline;
        padding-left: 15px;
        position: relative;
        top: -22px;
    }
    #quick-links .column>p:first-of-type {
        display: inline;
    }
}

@media (max-width: 400px) {
    #quick-links .column>p:first-of-type {
        display: block;
    }
    #quick-links .column>h2 {
        display: inline-block;
        top: 0;
    }
}

#quick-links>.column:nth-child(2) {
    margin: 30px 0px 30px 30px;
}

#quick-links>.column:nth-child(3) {
    float: right;
}

#quick-links .column:hover {
    border-bottom: 4px solid #004a73;
    transition: .3s;
}

#quick-links .column svg {
    margin-bottom: 5px;
}

#quick-links .column:hover svg path {
    fill: #fcb813 !important;
    transition: .3s;
}


/*----------------Slideshow----------*/

.slideshow-wrapper .item img {
    width: 100%;
    height: auto;
}

.carousel-indicators {
    display: none;
}

#slide-row {
    margin-bottom: 10px;
}

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
    background-image: none;
    z-index: 101;
    color: transparent;
}

.carousel-control {
    top: ;
    width: ;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(35, 31, 32, .5);
    padding: 28px 15px;
    left: auto;
    bottom: 0px;
    right: 0px;
    top: auto;
    width: 100%;
    text-align: center;
}

@media (max-width: 1200px) {
    .carousel-caption {
        position: relative;
        background: rgba(0, 0, 0, .6);
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        padding: 5px 10px;
        height: 120px;
    }
    .carousel-caption p.caption-text {
        font-size: 30px;
    }
    .carousel-caption p.alt-text {
        font-size: 22px;
    }
}


/*@media (max-width: 600px) {
    .carousel-caption {
        height: 246px;
    }
}
@media (max-width: 480px) {
    .carousel-caption {
        height: 324px;
    }
}*/

.carousel-caption p.caption-text {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
    display: block;
    color: white;
    margin-bottom: 0px;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.25em;
}

.carousel-caption p.alt-text {
    font-size: 26px;
    color: white;
    margin-top: 8px;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.02em;
    line-height: 24px;
}

@media (max-width: 992px) {
    .carousel-caption p.alt-text {
        max-height: 2.1em;
        line-height: 26px;
    }
}


/*----------------End Slideshow------*/


/*--------------------------------------------------------
					News and Events Feeds
--------------------------------------------------------*/


/*--------------------------------------------------------
				CSS Styles for Inner Pages
--------------------------------------------------------*/

.subpage {
    margin-top: 30px;
    height: calc(100vh - 210px);
}

@media (max-width: 767px) {
    .subpage {
        height: calc(100vh - 190px);
    }
}


/*----------Responsive Nivo*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "‹";
}

.nivo-nextNav:after {
    content: "›";
}


/*--------------------------------------------------------
						Footer
--------------------------------------------------------*/

.footer-wrapper {
    text-align: center;
    padding: 40px 15px 25px;
    clear: both;
}

@media (max-width: 767px) {
    .footer-wrapper {
        padding-top: 20px;
    }
}

.footer-wrapper a {
    text-decoration: underline;
}


/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/