*, *: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: 'Muli', sans-serif;
    font-size: 19px;
    color: #363e45;
}
p {
    font-family: 'Muli', sans-serif;
    font-size: 19px;
    color: #363e45;
}
#subpage-main p:empty { display: none; } 

/*--------------------------------------------------------
    H1 - H6
--------------------------------------------------------*/
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #22282c;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}
h1 a, h2 a, h3 a, h4 , h5 a {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 35px;
    color: #22282c;
}
h2 {
    font-size: 30px;
    color: #22282c;
}
h3 {
    font-size: 22px;
    color: #22282c;
}
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*/
#subpage-main p:not(:empty) + h2,
#subpage-main p:not(:empty) + h3,
#subpage-main p:not(:empty) + h4,
#subpage-main ul + h2,
#subpage-main ul + h3,
#subpage-main ul + h4,
#subpage-main table + h2,
#subpage-main table + h3,
#subpage-main table + h4 {
    margin-top: 1.5em;
}
#subpage-main h2 + ul,
#subpage-main h3 + ul,
#subpage-main h4 + ul {
	margin-top: -.75rem; /*Adjusts for the margin-bottom placed on these headings to make the ul's look like they belong to that heading*/
}
/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/
a {
	color: ;
}
a:hover, 
a:focus {
	color: ;
}
a.button {}
a.button:hover,
a.button:focus
 {
	text-decoration: none;
}
a.button + * {
	padding-top: 1.5em;
}
/*--------------------------------------------------------
	Objects
--------------------------------------------------------*/
#subpage-main img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
figcaption {
	font-style: italic;
	font-size: .9em;
	padding-top: 5px;
}
@media (max-width: 767px) {
	figcaption {
		font-size: 1em;
	}
}
@media (min-width: 767px) {
	/*The following styles are meant to give more space to the label column in contact forms that are too narrow for the entire label to be read normally*/
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-2, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-2 {
		width: 25%;
		padding-right: 1em;
	}
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-10, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-10 {
		width: 75%;
		padding-left: 0;
	}
	.col-md-5 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-4 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-3 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-2 form[action="contact_form_resp.php"] .col-sm-offset-2, 
	.col-md-1 form[action="contact_form_resp.php"] .col-sm-offset-2 {
		margin-left: 25%;
	}
	/*^^Adjusts the form-group placement of the reCAPTCHA iframe and submit buttom to match the new widths from the styles above*/
}
blockquote {
	font-size: inherit;
}
/*Styles below are taken from Bootstrap's table style to ensure that tables on content pages are responsive and neat whether Bootstrap classes are added or not*/
#subpage-main table {
	max-width: 100%;
	border-collapse: collapse;
	color: #212529;
	margin-bottom: 1em;
}
#subpage-main table td, 
#subpage-main table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    text-align: inherit;
}
#subpage-main table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}
#subpage-main table caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
#subpage-main table tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}
grammarly-btn {
	display: none;
	/*If someone copy/pastes text from Grammarly it will add this invisible button and cause the page to scroll horizontally. This style hides that.*/
}


/*--------------------------------------------------------
                        MAIN HEADER
--------------------------------------------------------*/
#main-header {
    padding: 5px 0px 40px;
    background: #fff;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 1000;
}
@media (max-width: 767px) {
    #main-header {
        padding: 10px 0px 15px;
    }
}

#logo-wrap {
    z-index: 199;
    position: absolute;
    top: 0px;
    max-width: 100%;
    width: 215px;
}
    @media (max-width: 480px) {
        #logo-wrap {
            width: auto !important;
            top: 15px  !important;
        }
        #logo-wrap svg {
            width: 147px !important;
            height: 150px !important;
        }
    }
#logo-wrap a {
    text-decoration: none;
}
#logo-wrap svg {
    max-width: 100%;
    width: 183px;
    height: 186px;
}


.right-side-wrap {
    text-align: right;
    float: right;
    margin-top: 34px;
}
    @media (max-width: 767px) {
        .right-side-wrap {
            margin-top: 25px;
            padding-bottom: 12px;
        }

    }
    @media (max-width: 480px) {
        .right-side-wrap {
            padding-left: 0px;
        }
        #login-search-wrap {
            margin-right: 0px !important;
        }
        .login-wrap {
            top: -5px !important;
        }
        .login-wrap a {
            font-size: 13px !important;
            padding: 8px 10px !important;
        }
        svg#search-icon {
            width: 36px !important;
            height: 36px !important;
        }
    }
#login-search-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}
.social-media-wrap {
    display: inline-block;
    vertical-align: middle;
}
.social-media-wrap svg {
    width: 38px;
    height: 38px;
}
#search-wrap {
    display: inline-block;
    vertical-align: middle;
}
svg#search-icon {
    width: 38px;
    height: 38px;
}

.login-wrap {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -4px;
    margin-right: 6px;
}
.login-wrap a {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding: 8px 12px;
    text-transform: none;
    background: #1e415e;
    border: 1px solid #1e415e;
    border-radius: 2px;
    text-decoration: none;
}
.login-wrap a:hover, .login-wrap a:focus {
    background: #1e415e !important;
    color: #fff !important;
}


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

.dropdown-menu li{
	width: 100%;
}
.nav>li>a:hover, .nav>li>a:focus {
	background-color: transparent;
}

/*--------------------------------------------------------
					Index / Main Body
--------------------------------------------------------*/
main {
	min-height: calc(100vh - 146px - 200px);
	/*The minimum height of the main section of the page should be the height of the screen minus the header and footer*/
	position: relative;
}
main#subpage-main, main#mms-main {
    margin-top: 100px;
}
#subpage-main
#mms-main {
	margin-bottom: 2.5em;
}
@media (max-width: 900px) {
	#subpage-main
	#mms-main {
		margin-bottom: 2em;
	}
}
@media (min-width: 767px) {	
	#subpage-main .row {
	    margin-bottom: 1em;
	}
}
@media (max-width: 767px) {
	#subpage-main div[class^="col-md"] {
	    margin-bottom: 1em;
	}
}
/*^^These two styles can be tweaked if needed, but they are a handy default for spacing rows (and then columns once the screen hits the col-xs breakpoint on subpages*/

/*----------------Slideshow----------*/
#slideshow-section-wrap {
    position: relative;
}
#slideshow-section-wrap img {
    width: 100%;
}
#slideshow-section-wrap .carousel-indicators, #slideshow-section-wrap .carousel-caption {
    display: none;
}
#slideshow-section-wrap .carousel-control {
    display: block;
    margin: auto 0px;
}
#slideshow-section-wrap .carousel-control.left {
    height: 36px;
    width: 36px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Poppins', sans-serif;
    background: rgba(5,64,116,0.6);
    border: 2px solid #c7d1e5;
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border-radius: 30px;
    margin-left: 15px;
}
#slideshow-section-wrap .carousel-control.right {
    height: 36px;
    width: 36px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Poppins', sans-serif;
    background: rgba(5,64,116,0.6);
    border: 2px solid #c7d1e5;
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border-radius: 30px;
    margin-right: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        #slideshow-section-wrap .carousel-control.left, .carousel-control.right {
            bottom: 5%;
        }
    }
    @media (max-width: 767px) {
        #slideshow-section-wrap .carousel-control.left, .carousel-control.right {
            height: 38px;
            width: 38px;
        }
    }
#slideshow-section-wrap .carousel-control img {
    width: 12px;
    height: 17px;
    margin-top: 1px;
}
    @media (max-width: 767px) {
        #slideshow-section-wrap .carousel-control img {
            margin-top: 0px;
        }
    }

#slideshow-section-wrap .carousel-indicators li {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 15px;
}
#slideshow-section-wrap .carousel-indicators li.active {
    width: 13px;
    height: 13px;
    margin-left: 8px !important;
    margin: 0 auto;
    background-color: #a65625;
    border: 1px solid #a65625;
    border-radius: 15px;
}
.carousel-control.left, .carousel-control.right, .carousel-control:hover{
	background-image: none;
	font-size: ;
	font-weight: ;
	z-index: 101;
}
.carousel-control{
	top: ;
	width: ;
    display: none;
}
.carousel-indicators {
    display: none;
}
.carousel-caption { 
    display: none;
	position: absolute;
	z-index: 100;
	background-color: #002857;
	background: rgba(0, 0, 0, .6);
	padding: 10px 15px;
	left: inherit;
	bottom: 0px;
	right: 0px;
	top: inherit;
	width: 100%;
	text-align: left;
	text-shadow: none;
}

@media (max-width: 600px){
	.carousel-caption{
		padding: 0px 10px;
	}

}
.carousel-caption p.caption-text{
	font-size: 28px;
	font-weight: 600;
	line-height: 33px;
	display: block;
	color: white;
	margin-bottom: 10px;
}
.carousel-caption p.alt-text{
	font-size: 16px;
	font-family: serif;
	font-style: italic;
	color: white;
	margin-bottom: 10px;
}
.carousel img {
    max-width: 100%;
    height: auto;
}

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


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

/* Button */

.btn-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
.btn-wrap a {
    background: #054074;
    border: 1px solid #054074;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 9px 22px;
    border-radius: 1px;
    text-decoration: none;
}
.btn-wrap a:hover {
    background: #054074 !important;
    border: 1px solid #054074;
    text-decoration: none;
}


/* Welcome Section */
.welcome-slideshow-wrap {
    background: url(../images/welcome-sponsor-bg.png);
    background-size: cover;
    width: 100%;
    min-height: 430px;
    margin-bottom: 50px;
}
    @media (max-width: 767px) {
        .welcome-slideshow-wrap {
            padding-bottom: 15px;
        }

    }
#welcome-section-wrap {
    padding-top: 80px;
    padding-bottom: 20px;
    color: #fff;
}
    @media (max-width: 465px) {
        #welcome-section-wrap {
            padding-top: 50px;
        }
    }


#welcome-section-wrap h1 {
    margin-bottom: 8px;
    color: #fff;
}
#welcome-section-wrap p {
    line-height: 25px;
    margin-bottom: 35px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
#welcome-section-wrap p:last-child {
    margin-bottom: 0px;
}


/* Sponsor Section */

#sponsor-section-wrap {
    margin-bottom: 40px;
}
    @media (max-width: 767px) {
        #sponsor-section-wrap .carousel .item {
            width: 33.33333333%;
            display: inline-block;
            padding-bottom: 10px;
        }

    }
    @media (max-width: 580px) {
        #sponsor-section-wrap .carousel .item {
            width: 50%;
            display: inline-block;
            padding-left: 10px;
            padding-right: 10px;
            padding-bottom: 10px;
        }

    }



/* News */

.news-outside-wrap {
    background: #f2f4f7;
    padding: 50px 0px 0px;
    margin-bottom: 30px;
}
#news-section-wrap {
    margin-bottom: 65px;
    margin-top: 15px;
}
#news-section-wrap h2 {
    padding-bottom: 25px;
}
@media (min-width: 768px) {
    #news-section-wrap .news-inside-wrap:nth-child(1) {
        padding-right: 0px;
    }
    #news-section-wrap .news-inside-wrap:nth-child(2) {
        padding: 0px;
    }
    #news-section-wrap .news-inside-wrap:nth-child(2) .news-item {
        border-left: 0px;
        border-right: 0px;
    }
    #news-section-wrap .news-inside-wrap:nth-child(3) {
        padding-left: 0px;
    }
}

.news-item {
    background: #ffffff;
    border: 1px solid #dcdfea;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
    @media (max-width: 990px) {
        .news-item {
            margin-bottom: 30px;
        }
        #news-section-wrap .news-inside-wrap:nth-child(3) .news-item {
            margin-bottom: 0px;
        }
    }

.news-details-inside-wrap {
    padding: 30px 30px;
    min-height: 196px;
}
    @media (max-width: 767px) {
        .news-details-inside-wrap {
            padding: 15px;
            min-height: auto;
        }
    }

    @media (min-width: 768px) and (max-width: 990px) {
        .news-details-inside-wrap {
            padding: 15px 20px;
            min-height: 240px !important;
        }
    }
.news-image {
    margin-bottom: 20px;
}
.news-image img {
    max-width: 100%;
    width: 100%;
}
h3.news-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
    padding-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}
a.news-title-link {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
}

a.news-title-link:hover {
    color: #054074;
}
.news-date {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #4a4f57;
    border-bottom: 1px solid #e5e1e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
}
.news-date span {
    display: inline-block;
    vertical-align: sub;
    color: #4a4f57;
}
.news-blurb {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4a4f57;
    padding-top: 15px;
}
#news-section-wrap .btn-wrap {
    margin-top: 30px;
}




/* Events */
#events-section-wrap {
    margin-bottom:  50px;

}
#events-section-wrap h2 {
    padding-bottom: 30px;
}
.event-inside-wrap {
    border-bottom: 1px solid #dcdfea;
}
.event-date-wrap {
    display: inline-block;
    vertical-align: bottom;
    width: 19%;
    border-right: 1px solid #dcdfea;
    padding-top: 23px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
}
    @media (min-width: 768px) and (max-width: 990px) {
        .event-date-wrap {
            width: 25%;
        }
        .event-title-wrap {
            width: 48%;
        }
        .event-more-info {
            width: 26%;
        }
        a.ev-title-link {
            font-size: 17px !important;
        }
    }
    @media (max-width: 767px) {
        .event-date-wrap {
            width: 100% !important;
            border-right: 0px !important;
            padding-bottom: 0px !important;
        }
        .event-inside-wrap {
            padding-bottom: 15px !important;
        }
        .event-more-info {
            float: none !important;
            padding-top: 0px !important;
            padding-left: 15px !important;
            text-align: left;
        }

    }

.event-date img {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}
.event-date span {
    display: inline-block;
    vertical-align: middle;
    color: #2a2a2b;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Muli', sans-serif;
}
.event-title-wrap {
    display: inline-block;
    vertical-align: middle;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
}
h3.event-title {
    padding-bottom: 3px;
    line-height: 26px;
}
a.ev-title-link {
    color: #00263a;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-decoration: underline;
}
.event-more-info {
    display: inline-block;
    vertical-align: middle;
    float: right;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
    text-align: right;
}
.event-more-btn a {
    color: #054074;
    border: 1px solid #054074;
    border-radius: 2px;
    padding: 8px 19px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
#events-section-wrap .btn-wrap {
    margin-top: 30px;
}

.event-inside-wrap:hover {
    background: #054074;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
.event-inside-wrap:hover .event-date-wrap, .event-date-wrap:hover {
    border-right: 1px solid #2b6a99;
}
.event-inside-wrap:hover .event-date span, .event-date span:hover {
    color: #fff;
}
.event-inside-wrap:hover .event-date, .event-date img:hover {
    filter: brightness(0) invert(1);
}
.event-inside-wrap:hover a.ev-title-link ,a.ev-title-link:hover {
    color: #ffffff;
}
.event-inside-wrap:hover .event-more-btn a, .event-more-btn a:hover {
    background: #043356;
    border: 1px solid #2b6a99;
    color: #fff;
}




/*--------------------------------------------------------
				CSS Styles for Inner Pages
--------------------------------------------------------*/
/*----------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#main-footer {
    background: #054074;
    padding: 40px 0px 27px;
}
footer#main-footer p{
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}
footer#main-footer a:hover {
    color: #fff;
}
footer#main-footer strong {
    color: #fff;
    font-weight: 600;
}
footer#main-footer .text-left span {
    border-left: 1px solid #c7d1e5;
    margin-left: 20px;
    padding-left: 25px;
}

    @media (min-width: 768px) and (max-width: 990px) {
        footer#main-footer .text-left span {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
            padding-top: 0px;
        }

    }
    @media (max-width: 767px) {
        footer#main-footer .text-left, footer#main-footer .text-right {
            text-align: center;
        }
        footer#main-footer .text-left span {
            display: block;
            border-left: 0px;
            padding-left: 0px;
            margin-left: 0px;
            padding-top: 15px;
        }
    }

footer#main-footer p.privacy-wrap {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 767px) {
    footer#main-footer p.privacy-wrap {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
}



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




/*--------------------------------------------------------------
                      Modal Member Login
--------------------------------------------------------------*/
.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;
    font-family: 'Muli', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}
.login-form input[type="submit"] {
    background: #054074;
    border: 1px solid #054074;
    border-radius: 2px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-left: 10px;
    outline: none;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    height: auto;
}
.login-form input[type="submit"]:hover, .login-form input[type="submit"]:focus {
    background: #054074;
    border: 1px solid #054074;
    color: #fff;
    text-decoration: none;
}
.login-form a {
    color: #60717c;
    font-size: 14px;
    font-family: 'Muli', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}
.login-form a:hover, .login-form a:focus {
    color: #60717c;
}
.login-form input:last-of-type{
    width: 100px;
    margin: none;
}
h6.modal-title {
    color: #527785;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
h4#myModalLabel {
    font-size: 22px;
    color: #4A4F56;
    padding-bottom: 0px;
}




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



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

@media (min-width: 1332px) and (max-width: 1365px) {

}

@media (max-width: 1200px) {

}

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

}

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

}


@media (max-width: 991px) {

}


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

}


@media (max-width: 767px) {
    .container {}

}

@media (min-width: 560px) and (max-width: 990px) {

    .news-details-inside-wrap {
        min-height: auto;
    }
    .news-image {
        float: left;
        width: 33.33333333%;
    }
    .news-details-wrap {
        float: left;
        width: 66.66666667%;
        padding-left: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 580px) {


}

@media (max-width: 480px) {
    .container {}

}

@media (max-width: 350px) {

}


/* 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) {  


}