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

p {
    font-family: Helvetica Neue, Helvetica, Arial, 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: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #4a4f57;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4,
h5 a {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 36px;
    color: #4a4f57;
}

h2 {
    font-size: 32px;
    color: #1C3F94;
}

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

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


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

#main-header {
    padding: 0px;
}

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

.logo-wrap {
    z-index: 199;
    margin-top: 25px;
    position: absolute;
}

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


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

.subpage-main-header {
    position: relative;
}

.subpage-main-header .logo-wrap {
    margin-top: 12px;
}

.subpage-main-header .logo-wrap img {
    margin: 0 auto;
    width: 105px;
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 990px) {
    .subpage-main-header .logo-wrap img {
        width: 130px;
    }
}

@media (max-width: 767px) {
    .subpage-main-header .logo-wrap img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .subpage-main-header .logo-wrap img {
        width: 95px;
    }
}

.subpage-main-header .subpage-head-slide {
    width: 100%;
}

.subpage-main-header img {
    width: 100%;
}

.subpage-main-header [class*="col-"] {
    /* padding: 0;*/
}

#subpage-slide-wrap {
    margin-bottom: 50px;
    position: relative;
    top: -3px;
    border-top: 1px solid #1F495E;
}

#subpage-slide-wrap .carousel .item {
    background: -webkit-linear-gradient(bottom, rgba(22, 48, 63, 0.9), rgba(22, 48, 63, 1));
}

#subpage-slide-wrap .carousel .item img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    opacity: 0.05;
}

#subpage-slide-wrap .carousel .carousel-caption {
    display: none;
}


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

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

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

@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: #4a4f57;
}

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

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

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

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

#search-input input {
    border: 0px;
    box-shadow: none;
    height: 31px;
    color: #4a4f57;
    font-size: 16px;
    font-weight: 500;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    padding: 0px 12px;
}

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

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


/* 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 {
    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: 31px;
    color: #fff;
    font-size: 16px;
    font-family: Helvetica Neue, Helvetica, Arial, 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: 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 */

svg#fb-icon {
    width: 9px;
    height: 16px;
}

svg#linkedin-icon {
    width: 16px;
    height: 16px;
}

.social-media-wrap a:hover svg#fb-icon .cls-1,
.social-media-wrap a:hover svg#linkedin-icon .cls-1,
.social-media-wrap a:hover svg#twitter-icon .cls-1,
.social-media-wrap a:hover svg#email-icon .cls-1 {
    fill: #232d69 !important;
    stroke: #232d69 !important;
}

.social-media-wrap a:hover svg#fb-icon .cls-2,
.social-media-wrap a:hover svg#linkedin-icon .cls-2,
.social-media-wrap a:hover svg#twitter-icon .cls-2,
.social-media-wrap a:hover svg#email-icon .cls-2 {
    fill: #ffffff !important;
}


/* Mobile Social Media */

.mobile-sm-wrap svg {
    width: 33px;
    height: 33px;
}

li.mobile-sm-wrap,
li.mobile-members-link {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
    margin-right: -5px;
}

@media (min-width: 768px) and (max-width: 990px) {
    li.mobile-sm-wrap,
    li.mobile-members-link {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    li.mobile-sm-wrap,
    li.mobile-members-link {
        display: inline-block !important;
    }
}

li.mobile-sm-wrap a {
    padding: 0px !important;
    border-radius: 0px !important;
    border: 1px solid #1F495E !important;
    border-right: 0px !important;
    background: transparent !important;
    padding: 14px 17px 10px !important;
}

li.mobile-members-link a {
    border-radius: 0px !important;
    border: 1px solid #1F495E !important;
    background: transparent !important;
    padding: 14px 17px 10px !important;
    text-decoration: underline !important;
}

.join-renew-login-wrap {
    margin-top: 22px;
}

@media (min-width: 768px) and (max-width: 990px) {
    .join-renew-login-wrap {
        display: inline-block;
        margin-top: 25px;
        margin-right: 20px;
    }
}

#join-wrap {
    display: inline-block;
    vertical-align: middle;
    border-right: 1px solid #c7d1e5;
    padding-right: 15px;
    margin-right: 11px;
}

#join-wrap a,
#renew-wrap a {
    color: #4a4f57;
    text-decoration: underline;
    font-size: 16px;
}

#renew-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}


/* Mobile Join and Renew */

li.mobile-join-wrap {
    margin-top: 15px;
}


/* Login */

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

#login-wrap a {
    background: #232d69;
    color: #fff;
    padding: 7px 14px;
    position: relative;
    text-decoration: none;
    border-left: 1px solid #232d69;
    border-right: 1px solid #232d69;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 15px;
    border-radius: 17px;
    font-weight: 700;
    text-align: center;
}

#login-wrap a:hover,
#login-wrap a:focus {
    background: #232d69;
}


/* Mobile Login */

li.mobile-login {
    margin-top: 10px;
}

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

li.mobile-login span {
    margin-left: 5px;
}

li.mobile-login a {
    background: #232d69 !important;
    color: #fff !important;
    padding: 10px 14px;
    position: relative;
    text-decoration: none;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 15px;
    border-radius: 17px;
    font-weight: 700;
    text-align: center;
    border-radius: 30px;
    width: 140px !important;
    border-radius: 35px !important;
}


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

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

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


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

main {
    min-height: calc(100vh - 45px - 170px);
    /*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 {
    margin-top: 1%;
}

@media (max-width: 990px) {
    main#subpage-main {
        margin-top: 10%;
    }
}

#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: 50px;
    position: relative;
    top: -3px;
    border-top: 1px solid #1F495E;
}

@media (min-width: 768px) and (max-width: 990px) {
    .slideshow-wrap {
        border-top: 0px;
    }
}

@media (max-width: 767px) {
    .slideshow-wrap {
        border-top: 0px;
    }
}

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

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

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

.slideshow-wrap .carousel-caption {
    display: block;
    position: absolute;
    z-index: 100;
    background: -webkit-linear-gradient(bottom, rgba(22, 48, 63, .40), rgba(22, 48, 63, 1));
    padding: 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: 0px;
    width: 100%;
    text-align: center;
    text-shadow: none;
    padding-top: 13%;
}

.slideshow-wrap .carousel-caption p.caption-text {
    font-size: 60px;
    font-weight: 400;
    line-height: normal;
    display: block;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.slideshow-wrap .carousel-caption p.caption-text span {
    font-size: 32px;
    text-align: center;
    display: block;
    line-height: 16px;
    margin-top: 35px;
}

.slideshow-wrap .caption-btn-wrap {
    margin-top: 65px;
    display: block;
}

.slideshow-wrap .caption-btn-wrap a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 18px 59px;
}

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

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

.carousel-control.left {
    height: 44px;
    width: 44px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    border-radius: 30px;
    margin-left: 15px;
}

.carousel-control.right {
    height: 44px;
    width: 44px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    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 {
        height: 38px;
        width: 38px;
    }
}

.carousel-control img {
    width: 15px;
    height: 23px;
    margin-top: 10px;
}

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

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

@media (min-width: 768px) and (max-width: 990px) {
    .caption-wrapper {
        padding: 0;
    }
}

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

.carousel-caption {
    display: none;
    position: absolute;
    z-index: 100;
    background: transparent;
    padding: 0px;
    left: inherit;
    bottom: 0px;
    right: 0px;
    top: inherit;
    width: 100%;
    text-align: left;
    text-shadow: none;
}

@media (min-width: 768px) and (max-width: 990px) {
    .carousel-caption {
        position: relative;
        width: 100%;
        padding: 0;
    }
}

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

.carousel-caption p.caption-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    display: block;
    color: #ffffff;
    margin-bottom: 0px;
}

.carousel-caption p.alt-text {
    font-size: 16px;
    font-family: serif;
    font-style: italic;
    color: white;
    margin-bottom: 10px;
    display: none;
}

.carousel-indicators {
    display: none;
}

.caption-btn-wrap {
    display: none;
}


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


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

#member_custom_menu_wrap_5 .event-item .col-md-3 {
    width: 70px;
}

#member_custom_menu_wrap_5 .event-item .col-md-9 {
    width: calc(100% - 70px);
}

#member_custom_menu_wrap_5 .event-details-wrap {
    width: inherit;
}


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

.btn-wrap {
    margin-top: 60px;
}

.btn-wrap a {
    background: #fff;
    color: #517AA5;
    border: 2px solid #517AA5;
    border-radius: 8px;
    font-size: 15px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 700;
    padding: 15px 46px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.btn-wrap a:hover,
.btn-wrap a:focus {
    background: #fff;
    color: #1C3F94;
    border: 2px solid #1C3F94;
}


/* Upcoming Events */

#events-news-wrap {
    margin-top: 15px;
    margin-bottom: 90px;
}

#events-section-wrap h2 {
    margin-bottom: 25px;
}

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

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

.event-img-wrap.remove-event-img {
    display: none;
}

#event-url-image {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    min-width: 260px;
    height: auto;
    max-width: 100%;
}

img#event-url-image[src=""] {
    display: none;
}

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

.event-date {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #6B6660;
    margin-bottom: 18px;
}

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

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

h3.event-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #16303F;
    padding-bottom: 5px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

a.ev-title-link {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #16303F;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

a.ev-title-link:hover {
    color: #232d69;
}

.event-description {
    padding-top: 1px;
}

.event-btn {
    margin-top: 22px;
}

.event-btn a {
    color: #517AA5;
    text-decoration: none;
}

.event-btn a:after {
    content: url(../images/arrow-blue.png);
    width: 48px;
    height: 5px;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    top: -1px;
}

.event-btn a:hover {
    color: #1C3F94;
    text-decoration: none;
}

.event-btn a:hover:after {
    content: url(../images/arrow-blue-hover.png);
}


/* News */

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

.news-item {
    margin-bottom: 40px;
}

.news-img-wrap {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    width: 260px;
}

.news-img-wrap img {
    max-width: 100%;
    width: 100%;
    min-height: 200px;
    height: 200px;
    object-fit: cover;
}

.news-img-wrap:empty {
    display: none;
}

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

h3.news-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #16303F;
    padding-bottom: 5px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

a.news-title-link {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #16303F;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

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

.news-date {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #6B6660;
    margin-bottom: 18px;
}

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

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

.news-blurb {
    font-size: 16px;
    color: #323233;
}

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

.news-btn {
    margin-top: 22px;
}

.news-btn a {
    color: #517AA5;
    text-decoration: none;
}

.news-btn a:after {
    content: url(../images/arrow-blue.png);
    width: 48px;
    height: 5px;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    top: -1px;
}

.news-btn a:hover {
    color: #1C3F94;
    text-decoration: none;
}

.news-btn a:hover:after {
    content: url(../images/arrow-blue-hover.png);
}


/* Project Spotlight */

.project-spotlight-wrap {
    background: #16303F;
    padding: 5px 0px 85px;
}

.project-spotlight-wrap h2 {
    color: #FFFFFF;
    margin-bottom: 30px;
    position: relative;
    top: 75px;
}

.project-spotlight-wrap .carousel-control {
    background: rgba(81, 122, 165, .6);
    display: block;
}

.project-spotlight-wrap .carousel-control.left {
    left: -9%;
}

.project-spotlight-wrap .carousel-control.right {
    right: -9%;
}

.project-spotlight-wrap .caption-wrapper {
    padding-left: 0px;
    padding-top: 55px;
}

.project-spotlight-wrap .carousel-caption {
    display: block;
    width: 50%;
    float: left;
    position: relative;
}

.project-spotlight-wrap .carousel-caption p.caption-text {
    font-size: 15px;
    font-weight: 400;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 32px;
}

.project-spotlight-wrap .carousel-caption .slide-btn {
    margin-top: 20px;
    margin-bottom: 20px;
}

.project-spotlight-wrap .carousel-caption .slide-btn a {
    color: #FEE089;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

.project-spotlight-wrap .carousel-caption .slide-btn a:after {
    content: url(../images/arrow-gold.png);
    width: 99px;
    height: 12px;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    top: 2px;
}

.project-spotlight-wrap .carousel-caption p.alt-text {
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 25px;
    font-style: italic;
}

.project-spotlight-wrap .carousel.slide .item img {
    float: right;
}


/* Sponsors */

#sponsors-section-wrap .carousel-control {
    display: block;
}

#sponsors-section-wrap {
    margin-top: 80px;
    margin-bottom: 80px;
}

#sponsors-section-wrap h2 {
    padding-bottom: 30px;
    color: #2a2e38;
}

#sponsors-section-wrap .carousel .item {
    margin: 0 auto;
    text-align: center;
}

#sponsors-section-wrap .carousel-control {
    background: rgba(25, 35, 51, .4);
    display: block;
    width: 40px;
    height: 40px;
}

#sponsors-section-wrap .carousel-control.left {
    left: -9%;
}

#sponsors-section-wrap .carousel-control.right {
    right: -9%;
}

#sponsors-section-wrap .carousel-control img {
    margin-top: 10px;
    width: 14px !important;
    height: 20px !important;
    padding: 0px;
    border: 0px;
    top: -1px;
}

#sponsors-section-wrap .caption-wrapper {
    max-width: 165px;
    padding-right: 15px;
    padding-left: 15px;
}

#sponsors-section-wrap .carousel-indicators {
    display: none;
}

#sponsors-section-wrap .carousel-indicators li {
    width: 13px;
    height: 13px;
    background: #fff;
    border: 1px solid #c7cfd3;
    border-radius: 10px;
    margin: 0 auto;
    margin-left: 6px;
}

#sponsors-section-wrap .carousel-indicators .active {
    width: 13px;
    height: 13px;
    margin-left: 6px;
    background: #fcb424;
    border: 1px solid #fcb424;
    border-radius: 10px;
}

#sponsors-section-wrap .carousel .carousel-inner .item img {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #F1F1F1;
    border-radius: 10px;
    padding: 5px 10px;
}

#sponsors-section-wrap .carousel-caption {
    top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #sponsors-section-wrap .carousel-caption {
        position: absolute;
        padding-left: 12px;
        padding-right: 12px;
        top: 9px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #sponsors-section-wrap .carousel-caption {
        position: absolute;
        padding-left: 5px;
        padding-right: 5px;
        top: 4px;
    }
}

@media (max-width: 767px) {
    #sponsors-section-wrap .carousel-caption {
        position: absolute;
        padding-left: 15px;
        padding-right: 15px;
    }
}

#sponsors-section-wrap p.caption-text {
    font-size: 15px;
    color: #fff;
    line-height: normal;
    margin-bottom: 0px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #sponsors-section-wrap p.caption-text {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #sponsors-section-wrap p.caption-text {
        font-size: 10px;
    }
}

#sponsors-section-wrap .caption-text h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #sponsors-section-wrap .caption-text h3 {
        font-size: 15px;
        padding-bottom: 0px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #sponsors-section-wrap .caption-text h3 {
        font-size: 12px;
        padding-bottom: 0px;
    }
}

#sponsors-section-wrap .alt-text {
    display: none;
}


/* News Letter */

.newsletter-wrap {
    background: #16303F;
    margin-top: 35px;
    padding: 70px 0px;
}

#newsletter-inside-wrap h2 {
    color: #ffffff;
    font-size: 30px;
    padding-bottom: 20px;
    font-weight: 700;
}

#newsletter-inside-wrap #contact-form {
    margin-top: 20px;
    margin-bottom: 10px;
}

#newsletter-inside-wrap .contact-form-row-left {
    width: 83.33333333%;
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

#newsletter-inside-wrap .contact-form-row-right {
    width: 16.66666667%;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}

#newsletter-inside-wrap label {
    display: none;
}

#newsletter-inside-wrap label[for="contactCaptcha"] {
    display: block;
    margin-bottom: 15px;
}

#newsletter-inside-wrap .col-sm-offset-2.col-sm-10 {
    margin: 0;
    padding: 0;
}

#newsletter-inside-wrap #contact-form input.form-control {
    background: #16303F;
    border: 1px solid #566F7C;
    border-radius: 4px;
    box-shadow: none;
    height: 50px;
    color: #FFFFFF;
    font-size: 16px;
    width: 455px;
}

@media (min-width: 990px) and (max-width: 1199px) {
    #newsletter-inside-wrap #contact-form input.form-control {
        width: 293px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    #newsletter-inside-wrap #contact-form input.form-control {
        width: 220px;
    }
}

@media (max-width: 767px) {
    #newsletter-inside-wrap #contact-form input.form-control {
        width: 100%;
    }
}

#newsletter-inside-wrap #contact-form input.form-control::-webkit-input-placeholder {
    color: #FFFFFF;
}

#newsletter-inside-wrap #contact-form input.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #FFFFFF;
}

#newsletter-inside-wrap #contact-form input.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #FFFFFF;
}

#newsletter-inside-wrap #contact-form input.form-control:-ms-input-placeholder {
    color: #FFFFFF;
}

#newsletter-inside-wrap #contact-form .form-group.row,
#newsletter-inside-wrap #contact-form .form-group.contact-captcha-wrap {
    display: inline-block;
    padding-right: 20px;
    margin-bottom: 15px;
    height: 50px;
}

@media (max-width: 767px) {
    #newsletter-inside-wrap #contact-form .form-group.row,
    #newsletter-inside-wrap #contact-form .form-group.contact-captcha-wrap {
        padding-right: 0px;
        display: list-item;
    }
}

#newsletter-inside-wrap #contact-form .form-group.contact-captcha-wrap iframe {
    width: 100%;
}

#newsletter-inside-wrap #contact-form .form-group.row:nth-child(6) {
    padding-right: 0px;
}

#newsletter-inside-wrap #contact-form .form-group.row p {
    color: #fff;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 0px;
}

#newsletter-inside-wrap #contact-form input.btn.btn-default {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 7px;
    color: #fff;
    padding: 12px 45px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    outline: none;
}


/* Custom style buttons for subpages */

.yellow-btn {
    background: #fff;
    color: #fee089;
    border: 2px solid #fee089;
    border-radius: 8px;
    font-size: 15px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 700;
    padding: 15px 46px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.yellow-btn:hover,
.yellow-btn:focus {
    background: #fff;
    color: #fee089;
    border: 2px solid #fee089;
    text-decoration: none;
}

.lightblue-btn {
    background: #fff;
    color: #517aa5;
    border: 2px solid #517aa5;
    border-radius: 8px;
    font-size: 15px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 700;
    padding: 15px 46px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.lightblue-btn:hover,
.lightblue-btn:focus {
    background: #fff;
    color: #517aa5;
    border: 2px solid #517aa5;
    text-decoration: none;
}

.dbiablue-btn {
    background: #fff;
    color: #1c3f94;
    border: 2px solid #1c3f94;
    border-radius: 8px;
    font-size: 15px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 700;
    padding: 15px 46px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.dbiablue-btn:hover,
.dbiablue-btn:focus {
    background: #fff;
    color: #1c3f94;
    border: 2px solid #1c3f94;
    text-decoration: none;
}


/*--------------------------------------------------------
                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: #1C3F94;
    padding: 60px 0px 60px;
}

footer#main-footer p {
    color: #fff;
    font-size: 16px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

footer#main-footer a {
    color: #fff;
    text-decoration: underline;
}

footer#main-footer a:hover {
    color: #fff;
}

footer#main-footer strong {
    color: #fff;
}

footer#main-footer .text-left span {
    border-left: 1px solid #fff;
    margin-left: 18px;
    padding-left: 18px;
}

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


.footer-right-wrap .footer-address-wrap {
    text-align: right;
    float: right;
    color: #fff;
    margin-bottom: 30px;
}


.footer-social-media-wrap {
    float: right;
}
.footer-social-media-wrap li {
    position: relative;
    float: left;
    list-style-type: none;
}

.footer-social-media-wrap li a {
    border: 1px solid #517AA5;
    background: #1C3F94;
    padding: 14px 17px 10px;
}

.footer-social-media-wrap li a:hover {
    background: #517AA5;
    border: 1px solid #517AA5;
}

.footer-social-media-wrap li.sm-wrap a {
    border-right: 0px;
}

.footer-social-media-wrap li.footer-admin-link a {
    padding: 14px 13px 10px !important;
}


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

.grid-slideshow-content {
    background: transparent;
    margin-left: 0px;
    padding: 0px 15px;
}

.grid-bottom-featured-wrap {
    background-image: none;
}

.grid-bottom-featured-wrap-h2 {
    color: #527785;
    margin-bottom: 0px;
}

.grid-bottom-featured-wrap-p {
    color: #323233;
}
#subpage-main #mheader_5_wrapper table {
    margin-bottom: 0px;
}

#subpage-main #mheader_5_wrapper table td,
#subpage-main #mheader_5_wrapper table th {
    padding: 0px;
    vertical-align: unset;
    border-top: 0px;
    text-align: inherit;
}

#subpage-main #mheader_5_wrapper table thead th {
    vertical-align: bottom;
    border-bottom: 0px;
    border-top: none;
}

#subpage-main #mheader_5_wrapper table caption {
    padding-top: 0px;
    padding-bottom: 0px;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

#subpage-main #mheader_5_wrapper table tbody tr:hover {
    color: #212529;
    background-color: none;
}


/*--------------------------------------------------------------
                      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: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #9B9B9B;
    box-shadow: none !important;
    border: 1px solid #CCCCCC;
    border-radius: 18px;
}

.login-form input[type="submit"] {
    background: #232d69;
    border: 1px solid #232d69;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    border-radius: 50px;
    font-family: Helvetica Neue, Helvetica, Arial, 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: #232d69;
    border: 1px solid #232d69;
    text-decoration: none;
}

.login-form a {
    color: #232d69;
    font-size: 14px;
    font-family: Helvetica Neue, Helvetica, Arial, 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: Helvetica Neue, Helvetica, Arial, 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 {}
    .news-img-wrap {
        width: 200px;
    }
    .project-spotlight-wrap .carousel.slide .item img {
        width: 50%;
    }
    .project-spotlight-wrap .carousel-control.left {
        left: -5.5%;
        width: 35px;
        height: 35px;
    }
    .project-spotlight-wrap .carousel-control.right {
        right: -5.5%;
        width: 35px;
        height: 35px;
    }
    .project-spotlight-wrap .carousel-control img {
        margin-top: 8px;
        width: 10px !important;
        height: 15px !important;
    }
    #sponsors-section-wrap .carousel-control.left {
        left: -5%;
        width: 35px;
        height: 35px;
    }
    #sponsors-section-wrap .carousel-control.right {
        right: -5%;
        width: 35px;
        height: 35px;
    }
    #sponsors-section-wrap .carousel-control img {
        margin-top: 8px;
        width: 10px !important;
        height: 15px !important;
    }
    footer#main-footer .col-md-9.text-left {
        width: 70%;
    }
    footer#main-footer .col-md-3.text-right {
        width: 30%;
    }
}

@media (max-width: 991px) {}

@media (min-width: 768px) and (max-width: 990px) {
    .container {}
    .slideshow-wrap .carousel-inner .item img {
        min-height: 500px;
        height: auto;
        background-size: cover;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    .slideshow-wrap .carousel-caption {
        padding-top: 25%;
    }
    .slideshow-wrap .carousel-caption p.caption-text {
        font-size: 56px;
    }
    .slideshow-wrap .carousel-caption p.caption-text span {
        font-size: 28px;
        text-align: center;
        display: block;
        line-height: 22px;
        margin-top: 15px;
    }
    #news-section-wrap {
        margin-top: 90px;
    }
    .project-spotlight-wrap {
        padding: 5px 0px 110px;
    }
    .project-spotlight-wrap .carousel.slide .item img {
        float: right;
        width: 50%;
        min-height: 495px;
        height: auto;
        background-size: cover;
        max-width: 100%;
        object-fit: cover;
    }
    .project-spotlight-wrap .carousel-control {
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }
    .project-spotlight-wrap .carousel-control.left {
        left: -3%;
    }
    .project-spotlight-wrap .carousel-control.right {
        right: auto;
        margin-left: 8%;
    }
    #sponsors-section-wrap .carousel-control.left {
        left: -5%;
        width: 35px;
        height: 35px;
    }
    #sponsors-section-wrap .carousel-control.right {
        right: -5%;
        width: 35px;
        height: 35px;
    }
    #sponsors-section-wrap .carousel-control img {
        margin-top: 8px;
        width: 10px !important;
        height: 15px !important;
    }
    #newsletter-inside-wrap .contact-form-row-left {
        width: 79%;
    }
    #newsletter-inside-wrap .contact-form-row-right {
        width: 21%;
    }
    #newsletter-inside-wrap .contact-form-row-right .col-sm-12 {
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .container {}
    .logo-wrap {
        margin: 0 auto;
        width: 100%;
        left: 0px;
    }
    .logo-wrap img {
        text-align: center;
        margin: 0 auto;
        top: -40px;
        position: relative;
    }
    .slideshow-wrap .carousel-caption {
        padding-top: 25%;
    }
    .slideshow-wrap .carousel-inner .item img {
        min-height: 400px;
        height: auto;
        background-size: cover;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    .slideshow-wrap .carousel-caption p.caption-text {
        font-size: 35px;
    }
    .slideshow-wrap .carousel-caption p.caption-text span {
        font-size: 24px;
        text-align: center;
        display: block;
        line-height: 16px;
        margin-top: 15px;
    }
    #resources-section-wrap {
        margin-top: 60px;
    }
    .news-item {
        margin-bottom: 25px;
    }
    #event-url-image {
        width: 40% !important;
        min-width: auto;
    }
    .event-details-wrap {
        width: 50% !important;
    }
    #news-section-wrap {
        margin-top: 70px;
    }
    .news-img-wrap {
        width: 40% !important;
        min-width: auto;
    }
    .news-details-inside-wrap {
        width: 50% !important;
    }
    .project-spotlight-wrap .carousel.slide .item img {
        float: left;
        margin-top: 70px;
    }
    .project-spotlight-wrap .carousel-caption {
        width: 100%;
    }
    .project-spotlight-wrap .carousel-control {
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }
    .project-spotlight-wrap .carousel-control.left {
        left: -3%;
    }
    .project-spotlight-wrap .carousel-control.right {
        right: auto;
        margin-left: 16%;
    }
    .project-spotlight-wrap .carousel-control img {
        margin-top: 9px;
        width: 12px;
        height: 18px;
    }
    #sponsors-section-wrap .carousel-control.left {
        left: 0%;
    }
    #sponsors-section-wrap .carousel-control.right {
        right: 0%;
    }
    #newsletter-inside-wrap .contact-form-row-left {
        width: 100%;
    }
    #newsletter-inside-wrap .contact-form-row-right {
        width: 100% !important;
        text-align: left !important;
        margin-top: 40px;
    }
    #newsletter-inside-wrap .contact-form-row-right .col-sm-12 {
        padding-left: 0px;
    }
    
    .footer-right-wrap {
        margin-top: 20px;
    }
    .footer-right-wrap .footer-address-wrap, .footer-social-media-wrap {
        text-align: left;
        float: left;
    }
}

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

@media (max-width: 580px) {
    #newsletter-inside-wrap .contact-form-row-left {
        width: 100%;
    }
    #newsletter-inside-wrap .contact-form-row-right {
        width: 100% !important;
        text-align: left !important;
        margin-top: 40px;
    }
    #newsletter-inside-wrap .contact-form-row-right .col-sm-12 {
        padding-left: 0px;
    }
}

@media (min-width: 481px) and (max-width: 545px) {
    .slideshow-wrap .carousel-caption {
        padding-top: 35%;
    }
}

@media (max-width: 480px) {
    .container {}
    .slideshow-wrap .carousel-caption {
        padding-top: 42%;
    }
    .slideshow-wrap .carousel-caption p.caption-text {
        font-size: 28px;
    }
    .slideshow-wrap .carousel-caption p.caption-text span {
        font-size: 20px;
        text-align: center;
        display: block;
        line-height: 15px;
        margin-top: 15px;
    }
    #event-url-image {
        max-width: 100% !important;
        min-width: auto;
        width: auto !important;
    }
    .event-details-wrap {
        width: 100% !important;
        margin-top: 20px;
    }
    .news-details-inside-wrap {
        width: 100% !important;
        margin-top: 20px;
    }
}

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