*,
*: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: 'Niramit', sans-serif;
    font-size: 16px;
    color: #323233;
}

p {
    font-family: 'Niramit', sans-serif;
    font-size: 16px;
    color: #323233;
}


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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: #222223;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-size: 32px;
    color: #222223;
}

h2 {
    font-size: 26px;
    color: #222223;
}

h3 {
    font-size: 22px;
    color: #222223;
}

h4 {
    font-size: 20px;
}

h1.title {
    margin-top: 15px;
}

h1.title:empty {
    display: none;
}


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


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

a {
    color: ;
}

a:hover,
a:focus {
    color: ;
}


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

img {
    border: 0px;
}


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

#main-header {
    padding: 15px 0px 10px;
}

#logo-wrap a {
    text-decoration: none;
}

.logo-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .logo-wrap {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .logo-wrap {
        margin-right: 5px;
    }
}

@media (max-width: 380px) {
    .logo-wrap {
        margin-right: 5px;
    }
}

.logo-wrap svg {
    max-width: 100%;
    width: 110px;
    height: 110px;
}

@media (max-width: 767px) {
    .logo-wrap svg {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .logo-wrap svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 380px) {
    .logo-wrap svg {
        width: 65px;
        height: 65px;
    }
}

.logo-txt {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #222e3f;
    line-height: 26px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .logo-txt {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .logo-txt {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .logo-txt {
        font-size: 13px;
        line-height: 22px;
    }
}

@media (max-width: 380px) {
    .logo-txt {
        font-size: 10px;
        line-height: 18px;
    }
}

.logo-txt span {
    color: #aa0a30;
}

#right-side-wrap {
    text-align: right;
    margin-top: 42px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #right-side-wrap {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #right-side-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    #right-side-wrap {
        margin-top: 35px;
    }
}

@media (max-width: 480px) {
    #right-side-wrap {
        margin-top: 25px;
    }
}


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

#search-login-wrap {
    display: inline-block;
}

#search-input {
    max-width: 240px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 50px;
    color: #929292;
}

@media (min-width: 768px) and (max-width: 990px) {
    #search-input {
        max-width: 215px;
        margin-right: 20px;
    }
}

@media (max-width: 380px) {
    #search-input {
        max-width: 180px;
    }
}

.search-main-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
}

.search-input {
    background: transparent;
    border: 2px solid #fff;
}

#search-input ::-webkit-input-placeholder {
    color: #4f4f4f;
}

#search-input :-moz-placeholder {
    /* Firefox 18- */
    color: #4f4f4f;
}

#search-input ::-moz-placeholder {
    /* Firefox 19+ */
    color: #4f4f4f;
}

#search-input :-ms-input-placeholder {
    color: #4f4f4f;
}

.icon-search:before {
    content: url("../images/search-icon.png");
}

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 29px;
    color: #4f4f4f;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Niramit', sans-serif;
    padding: 0px;
}

#search-input button {
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
    border: 0;
    color: #4f4f4f;
    padding: 0px;
    height: 29px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.input-group.search-input-wrap {
    border: none;
    background: #fff;
    border-radius: 0pc;
    border-bottom: 1px solid #dadfe5;
}


/* Mobile Search Bar */

li.mobile-search-wrap {
    margin-top: 35px;
    margin-bottom: 5px;
    padding-left: 0px;
    width: 260px;
}

li.mobile-search-wrap a {
    border-bottom: 0px !important;
}

li.mobile-search-wrap .input-group.search-input-wrap {
    background: transparent;
    border-bottom: 1px solid #2f3a47;
}

li.mobile-search-wrap .icon-search:before {
    content: url(../images/mobile-search-icon.png);
}

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #ced9ea;
    font-size: 16px;
    font-family: 'Niramit', sans-serif;
    padding: 0px 0px;
    font-weight: normal;
}

.mobile-search-wrap ::-webkit-input-placeholder {
    color: #ced9ea;
}

.mobile-search-wrap :-moz-placeholder {
    /* Firefox 18- */
    color: #ced9ea;
}

.mobile-search-wrap ::-moz-placeholder {
    /* Firefox 19+ */
    color: #ced9ea;
}

.mobile-search-wrap :-ms-input-placeholder {
    color: #ced9ea;
}

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #ced9ea;
    padding: 0px;
    height: 31px;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.mobile-search-wrap button:hover,
.mobile-search-wrap button:focus {
    background: transparent;
    color: transparent;
}


/* Social Media Icons */

.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .social-media-wrap {
        display: inline-block !important;
    }
}

.social-media-wrap ul {
    float: left;
    margin: 0;
    text-align: right;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-media-wrap ul>li {
    float: left;
    position: relative;
    display: block;
    margin-right: 15px;
}

.social-media-wrap ul>li:last-child {
    margin-right: 0px;
}
.social-media-wrap svg {
    width: 25px;
    height: 25px;
}
.social-media-wrap img {
    width: 26px;
    height: 26px;
}
/*.social-media-wrap svg#fb-icon {
    width: 8px;
    height: 15px;
}*/

.social-media-wrap svg#youtube-icon {
    width: 18px;
    height: 13px;
}


/* Mobile Social Media */

.mobile-sm-wrap svg {
    width: 25px;
    height: 25px;
}
.mobile-sm-wrap img {
    width: 26px;
    height: 26px;
}





li.mobile-sm-wrap {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    li.mobile-sm-wrap {
        display: inline-block !important;
        vertical-align: top;
    }
}

li.mobile-sm-wrap.youtube-icon {
    margin-left: 8px;
}

li.mobile-sm-wrap a {
    border-bottom: 0px !important;
    padding: 0px !important;
    margin-right: 5px;
}


/* Login */

#login-wrap {
    float: right;
    display: inline-block;
    vertical-align: middle;
}

#login-wrap a {
    color: #aa0a30;
    position: relative;
    top: 15px;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

#login-wrap a:hover,
#login-wrap a:focus {
    color: #303030;
}


/* Mobile Login */

li.mobile-login a {
    border-bottom: 0px !important;
}


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


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


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


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


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

#slideshow-wrap {
    margin-bottom: 55px;
    position: relative;
}

#slideshow-wrap img {
    width: 100%;
}

#slideshow-wrap a {
    text-decoration: none;
}

.carousel-control {
    margin: auto 0px;
}

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

.carousel-control.left,
.carousel-control.right,
.carousel-control:hover {
    background-image: none;
    font-size: ;
    font-weight: ;
    z-index: 101;
}

.carousel-control {
    margin: auto 0px;
}

.carousel-control {
    display: none;
}

.carousel-control.left {
    height: 42px;
    width: 42px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Raleway', sans-serif;
    background: transparent;
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 1px solid #fff;
    border-radius: 30px;
    margin-left: 15px;
}

.carousel-control.right {
    height: 42px;
    width: 42px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Raleway', sans-serif;
    background: transparent;
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 1px solid #fff;
    border-radius: 30px;
    margin-right: 15px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-control.left,
    .carousel-control.right {
        bottom: 5%;
    }
}

@media (max-width: 767px) {
    .carousel-control.left,
    .carousel-control.right {
        bottom: 40%;
        height: 34px;
        width: 34px;
        top: -38px;
    }
}

.carousel-control img {
    width: 10px;
    height: 16px;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .carousel-control img {
        margin-top: 4px;
    }
}

.caption-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 9px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .caption-wrapper {
        padding: 0;
    }
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background: rgba(11, 52, 112, 0.8);
    padding: 0px;
    left: 0px;
    bottom: 7%;
    right: 0px;
    top: inherit;
    width: 48.7%;
    text-align: left;
    text-shadow: none;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-caption {
        width: 75%;
        bottom: 13%;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        background: #0b3470;
        position: relative;
        width: 100%;
        padding: 10px 10px;
    }
}

.caption-inside-wrap {
    background: rgba(48, 48, 48, .8);
    padding: 10px 15px;
}

.carousel-caption p.caption-text {
    font-size: 22px;
    font-weight: bold;
    line-height: 25px;
    display: block;
    color: #ffffff;
    margin-bottom: 2px;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 767px) {
    .carousel-caption p.caption-text {
        margin-bottom: 5px;
    }
}

.carousel-caption p.alt-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .carousel-caption p.alt-text {
        margin-bottom: 20px;
    }
}

.carousel-indicators {
    left: 0;
    bottom: 0px;
    margin-bottom: 5px;
    text-align: left;
    margin: auto 0 5px;
    width: 100%;
    padding-left: 8px;
}

.carousel-indicators li {
    width: 24px;
    height: 7px;
    background: #0b3470;
    border: 1px solid #3165a3;
    border-radius: 10px;
    margin: 0 auto;
    margin-left: 8px;
}

.carousel-indicators li.active {
    width: 24px;
    height: 7px;
    background: #aa0a30;
    border: 1px solid #bc3b60;
    border-radius: 10px;
    margin-left: 8px;
}


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


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


/*--------------------------------------------------------
					Index / Home Page
--------------------------------------------------------*/

.view-btn {
    margin-top: 20px;
}

.view-btn a {
    background: #aa0a30;
    color: #fff;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 17px;
    text-decoration: none;
}


/* Welcome Section */

#welcome-section-wrap p {
    margin-bottom: 25px;
}


/* Upcoming Events */

#events-section-wrap h2 {
    padding-bottom: 25px;
    border-bottom: 1px solid #e6eaef;
}

#events-section-wrap h4 {
    color: #222223;
    font-size: 15px;
    padding-bottom: 0px;
    background: #ededed;
    display: inline-block;
    font-weight: normal;
    padding: 4px 5px;
}

.event-content {
    border-bottom: 1px solid #e6eaef;
    padding: 15px 0px;
}

.event-outside-wrap .event-item:last-child .event-content {
    border-bottom: 0px;
}

h3.event-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    padding-top: 2px;
    padding-bottom: 3px;
}

a.ev-title-link {
    font-size: 16px;
    font-weight: 600;
    color: #a71930;
    font-family: 'Raleway', sans-serif;
}

.event-calendar-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.event-date {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #4f4f4f;
    font-weight: 400;
}

#events-section-wrap .btn-wrap a {
    padding: 7px 21px;
    font-size: 16px;
}


/* News */

#news-section-wrap {
    margin-top: 50px;
    margin-bottom: 65px;
}

#news-section-wrap h2 {
    padding-bottom: 15px;
}

.news-item {
    border-bottom: 1px solid #dadfe5;
    padding: 20px 0px;
}

h3.news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #a71930;
}

a.news-title-link {
    color: #a71930;
    font-size: 18px;
    font-weight: 600;
}

.news-date {
    margin-bottom: 10px;
    font-family: 'Niramit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 35px;
    color: #222223;
}

.news-details {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 135px);
    width: -webkit-calc(100% - 135px);
    width: -moz-calc(100% - 135px);
    position: relative;
    padding: 0px;
}

@media (max-width: 480px) {
    .news-details {
        width: 100%;
    }
}

.news-details h4 {
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    padding-bottom: 8px;
}

a.news-title-link {
    color: #a71930;
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

#news-section-wrap .view-btn {
    margin-top: 35px;
}

#news-section-wrap .view-btn a {
    padding: 5px 20px;
}


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

#subpage {
    min-height: calc(100vh - 282px);
    padding-top: 30px;
    padding-bottom: 30px;
}


/*----------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: "›";
}


/*--------------------------------------------------------------
                        Modal Log In
--------------------------------------------------------------*/

.modal {
    overflow-y: visible;
}

.modal-dialog {
    max-width: 280px;
    margin: 50px auto;
}

.modal-header {
    text-align: center;
}

.modal-body {
    padding: 15px 23px;
}

.login-form input {
    width: 203px!important;
    height: 30px;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 0px 15px;
    margin-left: 15px;
    background: #fff;
    font-size: 16px;
    color: #3a3f47;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
    font-family: 'Niramit', sans-serif;
}

.login-form input[type="submit"] {
    background: #aa0a30;
    border: 1px solid #aa0a30;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Niramit', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    padding: 6px 20px;
    height: auto;
}

.login-form input[type="submit"]:hover,
#login input[type="submit"]:focus {
    background: #630a0f;
    border: 1px solid #630a0f;
    text-decoration: none;
    color: #fff;
    outline: none;
}

.login-form a {
    color: #303030;
    display: block;
    margin-left: 15px;
    font-size: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.login-form a:hover,
#login a:focus {
    color: #a71930;
}

.login-form input:last-of-type {
    width: 100px;
    margin: none;
}

h4.modal-title {
    color: #222223;
    font-size: 24px;
    padding-bottom: 0px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}


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

.footer-content-wrapper {
    background: #202935;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 23px 0px 23px;
}

.footer-content-wrapper strong {
    color: #fff;
}

.footer-content-wrapper a {
    color: #fff;
    text-decoration: underline;
    font-weight: 400;
}

.footer-content-wrapper p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
}

.footer-content-wrapper .text-left p span {
    font-size: 14px;
}

.footer-content-wrapper .text-right p {
    font-size: 14px;
}


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


/*----------- MEDIA QUERY --------------------*/

@media (min-width: 1200px) {}

@media (min-width: 1000px) {
    .container {}
}

@media (min-width: 990px) and (max-width: 1199px) {
    .container {}
}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
}

@media (max-width: 767px) {
    .container {}
    #logo-wrap {
        padding-right: 5px;
    }
    .footer-content-wrapper .text-left,
    .footer-content-wrapper .text-right {
        text-align: left;
    }
    .footer-content-wrapper .text-right {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {}
    #logo-wrap {
        padding-right: 0px;
    }
}


/* Safari Browser */

@media only screen and (-webkit-min-device-pixel-ratio: 1) {
     ::i-block-chrome,
    .div {}
}


/* Internet Browser */

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    #logo-wrap svg {}
}