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

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

#subpage-main p:empty {
    display: none;
}


/*^^ Break tags shouldn't be used to space out lines, only to make text within a paragraph break to a new line*/


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

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #000000;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

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

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

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

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.*/
}

iframe[src*="www.google.com/maps/embed"] {
    max-width: 100%;
}


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

#main-header {
    padding-top: 25px;
    border-top: 38px solid #B0261C;
}

@media (min-width: 768px) and (max-width: 990px) {
    #main-header {
        padding-top: 5px;
    }
}

@media (max-width: 767px) {
    #main-header {
        padding: 0px;
    }
}

#logo-wrap svg {
    max-width: 100%;
    width: 532px;
    height: 96px;
}

#right-side-wrap {
    text-align: right;
}


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

#search-input {
    max-width: 225px;
    display: inline-block;
    vertical-align: middle;
    color: #93AAB5;
    margin-left: 15px;
}

.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: #93AAB5;
}

#search-input :-moz-placeholder {
    /* Firefox 18- */
    color: #93AAB5;
}

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

#search-input :-ms-input-placeholder {
    color: #93AAB5;
}

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

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 32px;
    color: #93AAB5;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 14px;
}

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

.input-group.search-input-wrap {
    border: 1px solid #A0B6C1;
    background: #fff;
    border-radius: 16px;
}


/* Mobile Search Bar */

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

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

li.mobile-search-wrap .input-group.search-input-wrap {
    border: 1px solid #bcb2d8;
    background: #fff;
}


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

.mobile-search-wrap input {
    border: 0px;
    box-shadow: none;
    height: 32px;
    color: #fff;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    padding: 0px 12px;
    font-weight: normal;
}

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

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

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

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

.mobile-search-wrap button {
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #fff;
    padding: 0px 10px;
    height: 32px;
    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;
}


/* Login */

.login-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.login-wrap a {
    color: #fff;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    background: #B0261C;
    border-radius: 17px;
    padding: 7px 17px;
    text-decoration: none;
}


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

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

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


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

main {
    min-height: calc(100vh - 165px - 76px - 100px);
    /*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#homepage-main {
    position: relative;
    top: -20px;
}

main#subpage-main,
main#mms-main {
    margin-top: 30px;
}

main#homepage-main .row_wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /* min-width: 1200px; */
}

#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-wrap {
    margin-bottom: 30px;
    position: relative;
}

.slideshow-wrap .container {
    width: 100%;
}

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

.slideshow-wrap [class*="col-"] {
    padding: 0;
}

#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 {
    top: ;
    width: ;
    display: none;
}

.carousel-indicators {
    display: none;
}

.caption-wrapper {
    margin: 0 auto;
}

.carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    background: rgba(109, 112, 114, .75);
    padding: 10px 15px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: auto;
    width: 100%;
    text-align: center;
    text-shadow: none;
}

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

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

.carousel-caption p.caption-text {
    font-size: 24px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #fff;
    display: block;
}

.carousel-caption p.alt-text {
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
}

.caption-btn-wrap {
    margin-top: 40px;
    margin-bottom: 20px;
}

.caption-btn-wrap a {
    background: transparent;
    border: 1px solid #9290c6;
    border-radius: 19px;
    padding: 9px 23px;
    text-decoration: none;
    color: #605e9c;
    font-size: 16px;
    font-weight: bold;
}

.caption-btn-wrap a:hover {
    background: #605e9c;
    border: 1px solid #605e9c;
    color: #fff;
}


/* Top Slideshow */

.top-slideshow-wrap {
    margin-bottom: 25px;
    position: relative;
}

.top-slideshow-wrap .container {
    width: 100%;
}

.top-slideshow-wrap img {
    width: 100%;
    height: auto;
}

.top-slideshow-wrap [class*="col-"] {
    padding: 0;
}

.top-slideshow-wrap .carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    background: rgba(109, 112, 114, .75);
    padding: 17px 15px 21px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: auto;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (min-width: 768px) and (max-width: 990px) {
    .top-slideshow-wrap .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .top-slideshow-wrap .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

.top-slideshow-wrap .carousel-caption p.caption-text {
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0;
    padding-bottom: 4px;
}

.top-slideshow-wrap .carousel-caption p.alt-text {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0;
}


/* Bottom Slideshow */

.bottom-slideshow-wrap {
    position: relative;
}

.bottom-slideshow-wrap .container {
    width: 100%;
}

.bottom-slideshow-wrap img {
    width: 100%;
    height: auto;
}

.bottom-slideshow-wrap [class*="col-"] {
    padding: 0;
}

.bottom-slideshow-wrap .carousel-caption {
    position: absolute;
    z-index: 100;
    background-color: #fff;
    background: rgba(109, 112, 114, .75);
    padding: 25px;
    left: 15px;
    bottom: 0px;
    right: auto;
    top: 0px;
    width: 27.5%;
    text-align: left;
    text-shadow: none;
    margin: auto;
    height: 275px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    .bottom-slideshow-wrap .carousel-caption {
        width: 34.5%;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .bottom-slideshow-wrap .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .bottom-slideshow-wrap .carousel-caption {
        display: block;
        position: static;
        width: 100%;
        height: auto !important;
    }
}

.bottom-slideshow-wrap .carousel-caption p.caption-text {
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0;
    padding-bottom: 8px;
}

.bottom-slideshow-wrap .carousel-caption p.alt-text {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0;
}

@media (min-width: 768px) {
    .bottom-slideshow-wrap .carousel-caption p.alt-text {
        word-wrap: break-word;
        overflow: hidden;
        max-height: 8.25em;
        line-height: 22px;
        padding-right: 20px;
    }
}

.slide-btn-wrap,
.bottom-slideshow-wrap .slide-btn-wrap {
    margin: 15px 0 auto;
    text-align: center;
}

.slide-btn-wrap a,
.bottom-slideshow-wrap .slide-btn-wrap a {
    color: #fff;
    text-decoration: none;
    background: #B0261C;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    padding: 7px 27px;
}


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


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

#welcome-section-wrap {
    padding-top: 0px;
    padding-bottom: 35px;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
}


/* Events */

@media (min-width: 992px) {
    #events-section-wrap {
        padding-right: 0px;
    }
}

#events-section-wrap h2 {
    color: #000000;
    font-size: 21px;
    margin-bottom: 10px;
}

.event-item {
    margin-bottom: 15px;
}

#events-wrap {
    margin-bottom: 30px;
}

.event-date-wrap {
    background: transparent;
    width: 21%;
    display: inline-block;
    vertical-align: top;
    max-width: 68px;
    padding: 0px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .event-date-wrap {
        width: 30%;
    }
}

.event-details-wrap {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 95px);
    width: -webkit-calc(100% - 95px);
    width: -moz-calc(100% - 95px);
    position: relative;
    top: -2px;
    margin-left: 22px;
}

.event-month {
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 3px 0px;
    font-weight: 400;
    background: #B0261C;
    border: 1px solid #B0261C;
}

.event-date {
    text-align: center;
    color: #B0261C;
    font-size: 18px;
    font-weight: 400;
    padding: 4px 0px;
    background: #fff;
    border: 1px solid #B0261C;
}

#event-container {
    padding-left: 0px;
    margin-left: -15px;
}

h3.event-title {
    font-weight: normal;
    padding-bottom: 0px;
    line-height: 16px;
    margin-bottom: 3px;
}

a.ev-title-link {
    color: #5B5B5B;
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: none;
    word-wrap: break-word;
    overflow: hidden;
    line-height: 21px;
    display: inline-block;
    padding-bottom: 3px;
}

a.ev-title-link:hover {
    text-decoration: underline;
    color: #B0261C;
    font-weight: 700;
}

.event-description {
    padding-top: 2px;
    margin-bottom: 0px;
    color: #000000;
    font-size: 14px;
    word-wrap: break-word;
    overflow: hidden;
    margin: 0;
}


/* News */

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

@media (min-width: 992px) {
    #news-section-wrap {
        padding-left: 30px;
    }
}

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

.news-item {
    background: #B0261C;
    border-radius: 12px;
}

.news-details-inside-wrap {
    padding: 25px;
    min-height: 390px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    .news-details-inside-wrap {
        min-height: 410px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .news-details-inside-wrap {
        padding: 20px;
    }
}

.news-image {
    margin-bottom: 10px;
}

.news-image:empty {
    display: none;
}

.news-image img {
    max-width: 100%;
    width: 100%;
}

h3.news-title {
    font-size: 19px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    padding-bottom: 5px;
    font-family: 'Nunito Sans', sans-serif;
}

a.news-title-link {
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
}

a.news-title-link:hover {
    color: #fff;
}

.news-date {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: #fff;
    margin-bottom: 5px;
}

.news-date img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 2px;
}

.news-date span {
    display: inline-block;
    vertical-align: sub;
}

.news-blurb {
    font-size: 14px;
    color: #fff;
    line-height: 17.5px;
}


/*--------------------------------------------------------
				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: #B0261C;
    padding: 37px 0px 28px;
    font-size: 15px;
}

footer#main-footer p {
    color: #ffffff;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
    font-size: 18px;
}

@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;
    }
}


/* Footer Social Media Icons */

.footer-social-media-wrap ul {
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-social-media-wrap ul {
        margin-bottom: 20px;
    }
}

.social-media-wrap {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 5px;
    margin-right: 2px;
}

@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: 5px;
}

.social-media-wrap svg {
    width: 60px;
    height: 60px;
}


/*--------------------------------------------------------------
                      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: 14px;
    font-family: 'Nunito Sans', sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #B0261C;
    border: 1px solid #B0261C;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 17px;
    font-family: 'Nunito Sans', 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: #B0261C;
    border: 1px solid #B0261C;
    text-decoration: none;
}

.login-form a {
    color: #B0261C;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    margin-left: 15px;
    padding-bottom: 10px;
    text-decoration: underline;
}

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

.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: #17242d;
    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 {}
    main#homepage-main {
        top: 0px;
    }
    .news-inside-wrap {
        margin-bottom: 20px;
    }
    #news-section-wrap {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .container {}
    main#homepage-main {
        top: 0px;
    }
    .news-inside-wrap {
        margin-bottom: 20px;
    }
    #news-section-wrap {
        margin-top: 30px;
    }
}

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

@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) {}