<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    box-sizing: border-box;
}


/*
--------------------------------------------------------------------------
 Typography 
--------------------------------------------------------------------------
 */

 :root {
    font-size: 16px;
    font-family: 'Krub', sans-serif;
}

body {
    color: var(--text);
    font-size: inherit !important;
    font-family: inherit !important;
    background: #f4f4f4;
}

p+p {
    margin-top: .25em;
}

p:empty {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: bold;
    font-family: 'Noto Serif', serif;
}


/*  Links -------------------

 */

a {
    color: var(--secondary);
    text-decoration: none;
    -webkit-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

a:hover,
a:focus {
    color: var(--accent);
    text-decoration: none;
}

#sign-up-link,
a.button-link,
input[type="submit"]:not(#mms-main input),
.mobile-login button {
    /* :not exception needed to avoid messing with all sorts of different buttons in the MMS  */
    background: var(--secondary);
    font-size: inherit;
    padding: .8em 3ch;
    display: inline-block;
    color: white;
    border-radius: 2em;
/*    margin-right: 2ch;*/
    position: relative;
    left: -.25em;
    /*^^ Optically adjust for rounded left edge */
    border: none;
    text-align: center;
}

.button-link:not(:last-child) {
    margin-bottom: .5em;
}

a.button-link:hover,
a.button-link:focus {
    text-decoration: none;
}

a.button-link+*:not(.button-link) {
    padding-top: 1.5em;
}

*+.button-link {
    margin-top: 1em;
}

li:not(:last-child) .button-link {
    margin-bottom: .75rem;
}

hr {
    border-top: 1px solid #c2c0c0;
}

/*
--------------------------------------------------------------------------
 Objects
--------------------------------------------------------------------------
 */


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    body {
        --side-margin: calc((100vw - 750px) / 2);
    }
    .wrapper {
        width: 750px;
    }
}

@media (min-width:992px) {
    body {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1200px) {
    body {
        --side-margin: calc((100vw - 1170px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

@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;
    border-left-color: var(--secondary);
}

blockquote p {
    font-size: 1.05em;
}


/*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. :not added to prevent styling Google Custom Search tables*/

#subpage-main table {
    max-width: 100%;
    border-collapse: collapse;
    color: #212529;
    margin-bottom: 1em;
    font-size: 16px;
    border-bottom: 1px solid #dee2e6;
    margin-top: 2em;
}

#subpage-main thead {
    font-weight: bold;
}

#subpage-main td,
#subpage-main th {
    padding: .75rem;
    vertical-align: top;
    border: 1px solid #333;
    text-align: inherit;
}

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

#subpage-main table caption {
    color: currentColor;
    text-align: left;
    font-size: 1.375em;
    font-weight: bold;
    padding: 0;
}

#subpage-main tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075);
}

@media (max-width: 767px) {
    #subpage-main table {
        font-size: 14px;
    }
    #subpage-main td:first-child,
    #subpage-main th:first-child {
        padding-left: 5px;
    }
    #subpage-main td:last-child,
    #subpage-main th:last-child {
        padding-right: 5px;
    }
}

@media (max-width: 500px) {
    #subpage-main td,
    #subpage-main th {
        padding: 5px 2px;
    }
}

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

.ui-widget {
    /* Part of some pages in the MMS, this style tells it not to overwrite the font with Verdana */
    font-family: revert;
}


/* Feed items */

.feed-item {
    padding: .25rem 20px;
    border-radius: 5px;
}

.feed-item h3 {
    font-size: 1.1rem;
}

.feed-item *:not(:last-child) {
    margin-bottom: .5rem;
}


/* Slideshow defaults */

.carousel-caption {
    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;
    }
}

.caption-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 33px;
    display: block;
    color: initial;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    color: initial;
    margin-bottom: 10px;
}


/*--end slideshow-defaults---------*/


/*----------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: "â€º";
}


/*  Modals ---------------------------------
    ----------------------------------------
 */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 260px;
    font-size: 16px;
    margin: auto;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 20px;
    opacity: .9;
}

.modal a {
    display: block;
    margin-bottom: .5em;
}


/*  Login Forms ----------------------------
----------------------------------------
*/

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}


/*
--------------------------------------------------------------------------
 Header
--------------------------------------------------------------------------
 */


/*  Desktop Menu ---------------------------
    ----------------------------------------
 */

#nav_menu&gt;ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    list-style: none;
    padding-left: 0;
    position: relative;
    margin: 0;
    padding-bottom: 0;
    transition: .125s height ease-in;
}

#nav_menu&gt;ul&gt;li&gt;ul {
    /* 1st tier submenus */
}

#nav_menu&gt;ul&gt;li:last-child&gt;ul {
    /* Submenu of the last top-level menu item */
    left: -100%;
}

#nav_menu&gt;ul::before,
#nav_menu&gt;ul::after {
    content: none;
}

#nav_menu .navbar-nav&gt;li&gt;a {
    padding: 0;
    white-space: nowrap;
}

.caret {
    /* Convert Bootstrap style into em's so carets scale with type */
    border-top: .2em dashed;
    border-right: .2em solid transparent;
    border-left: .2em solid transparent;
}

.dropdown-menu {
    font-size: inherit;
}

.dropdown-menu&gt;li&gt;a {
    font-size: inherit;
    padding: .5rem 1rem;
}

.nav .open&gt;a,
.nav .open&gt;a:focus,
.nav .open&gt;a:hover,
.nav&gt;li&gt;a:focus,
.nav&gt;li&gt;a:hover {
    /* Overwriting BS defaults */
    background-color: transparent;
    color: inherit;
    transition: color .125s ease-in;
}

.nav .open&gt;a:hover,
.dropdown-menu&gt;li&gt;a:focus,
.dropdown-menu&gt;li&gt;a:hover {
    color: var(--secondary);
    background-color: transparent;
}

#nav_menu li.greyed a {
    opacity: .75;
}


/*  Mobile Header Nav ----------------------
    ----------------------------------------
 */

@media (max-width: 990px) {
    #nav_menu {
        display: none !important;
    }
}

.mobileMenuTrigger label {
    display: none;
}

.menu-trigger {
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.menu-trigger:hover,
.menu-trigger:focus {
    color: var(--secondary);
}


/*  Mobile Menu-----------------------------
    ----------------------------------------
 */

#mobileMenuWrapper {
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    background-color: white;
    transition: left 300ms cubic-bezier(1.000, 0.010, 0.0, 1.000);
    color: #444;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobile-menu {
    list-style: none;
    overflow-y: auto;
    overflow-x: visible;
    padding: 1em 1.5em;
}

.triggerClose {
    text-align: right;
}

#mobile-menu button {
    border: none;
}

.triggerClose button {
    background: none;
    font-weight: bold;
}

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
    margin-bottom: .75em;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    list-style: none;
    padding: 0;
    background: none;
    border-top: 1px solid var(--secondary);
    padding-top: .75em;
    margin-bottom: .75em;
}
#mobileMenuWrapper &gt;ul&gt;li&gt; .mDropdown {
    border-bottom: 1px solid var(--secondary);
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}


.mDropdown&gt;li&gt;a {
    padding: 0;
}

.mDropdown-parent {
    color: var(--primary);
}

#mobile-menu-col {
    margin-top: 25px;
}

svg#burger-menu {
    width: 28px;
    height: 22px;
}

svg#burger-menu .cls-1 {
    fill: #fff !important;
}


/*
--------------------------------------------------------------------------
 Main
--------------------------------------------------------------------------
 */

main {
    min-height: calc(100vh - 118px - 143px);
    position: relative;
}

@media (min-width: 767px) {
    #subpage-main .row,
    #homepage-main .row {
        /*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*/
        margin-bottom: 2.5em;
    }
    div[class^="col"]+.col-md-12 {
        margin-top: 2em;
    }
}

@media(max-width: 1200px) {
    #homepage-main article&gt;section,
    #subpage-main {
        padding-top: 3.5em;
        padding-bottom: 3.5em;
    }
}

@media(max-width: 990px) {
    #homepage-main article&gt;section,
    #subpage-main {
        padding-top: 2.5em;
        padding-bottom: 2.5em;
    }
    .col-md-6.col-sm-12+.col-sm-12 {
        margin-top: 30px;
    }
}

@media (max-width: 900px) {
    #subpage-main:not(.full-background),
    #mms-main {
        margin-bottom: 2em;
    }
    main div[id^="section-"] {
        padding: 3.5em 0;
    }
}

@media (max-width: 767px) {
    #homepage-main article&gt;section,
    #subpage-main {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    #subpage-main [class*="col-md"]+[class*="col-md"] {
        margin-top: 1rem;
    }
    #subpage-main div[class^="col-md"],
    #homepage-main div[class^="col-md"] {
        margin-bottom: 1em;
    }
    #homepage-main article&gt;section {
        padding: 3em 0;
    }
}

@media (max-width: 450px) {
    #homepage-main article&gt;section {
        padding: 2em 0;
    }
}


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

#banner-row .carousel-control.left,
#banner-row .carousel-control.right {
    /* Remove carousel controls from homepage slideshow */
    display: none;
}

#banner-row img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#banner-row .carousel-caption {
    position: absolute;
    z-index: 100;
    background: transparent;
    left: 0;
    bottom: 10vh;
    right: 0;
    top: unset;
    width: 100%;
    text-align: left;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 4px black;
}

#banner-row .caption-wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

#banner-row .caption-text {
    font-size: 58px;
    font-weight: bold;
    line-height: .9;
    display: block;
    color: white;
    margin-bottom: 10px;
}

#banner-row .alt-text {
    font-size: 26px;
    line-height: 1.2;
    color: white;
}

@media (max-width: 990px) {
    #banner-row .caption-text {
        font-size: 38px;
    }
    #banner-row .alt-text {
        font-size: 20px;
    }
}


/*  Subpages -------------------------------
    ----------------------------------------
 */


/*  Grid Page Editor workarounds -----------
----------------------------------------
 */


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

html {
    --primary: #0a4076;
    --secondary: #1568a3;
    --accent: #2293e3;
    --background: #f4f7f9;
    --text: #333333;
    overflow-x: hidden;
    font-size: 19px;
    font-family: 'Krub', sans-serif;
    color: #666666;
    --side-margin: 1px;
    background: #f4f4f4;
}

@media (min-width:768px) {
     :root {
        --side-margin: calc((100vw - 750px) / 2);
    }
}

@media (min-width:991px) {
     :root {
        --side-margin: calc((100vw - 987px) / 2);
    }
    .wrapper {
        width: 970px;
    }
}

@media (min-width:1201px) {
     :root {
        --side-margin: calc((100vw - 1170px) / 2);
    }
    .wrapper {
        width: 1170px;
    }
}

body {
    color: inherit;
    overflow: inherit;
}

body,
header,
footer,
main,
header nav {
    font-family: inherit !important;
    font-size: inherit !important;
    /* Prevent MMS pages with hard-coded fonts from overwriting this  */
}

p {
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: .75em;
    color: inherit;
}


/*--------------------------------------------------------
    Headings
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .3em;
    padding: 0;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
}

h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
    margin-top: 1em;
}

h1 {
    font-size: 60px;
    line-height: 1.3em;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
    line-height: 1.4em;
}

#homepage-main h3 {
    font-size: 28px;
    font-weight: 400;
    text-transform: none;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 18px;
}


/*--------------------------------------------------------
    Links
--------------------------------------------------------*/

a {
    text-decoration: none;
    color: var(--secondary);
    transition: .125s color ease-in-out;
}

a:hover,
a:focus {
    color: var(--accent);
    text-decoration: none;
}

.button-link {
    text-transform: capitalize;
    display: block;
    width: fit-content;
    color: white;
    background-color: var(--primary);
    text-align: center;
    padding: 0.6em 2ch;
    text-decoration: none;
    line-height: 1;
    transition: background .125s ease-in-out;
    text-shadow: none;
    border-radius: 5px;
    border: none;
}

.button-link:hover,
.button-link:focus {
    background-color: var(--secondary);
    text-decoration: none;
    outline: none;
    color: white;
}

.button-link:not(:first-child) {
    margin-top: 1.5em;
}

.button-link:not(:last-child) {
    margin-bottom: 2em;
}

#mms-main a {
    text-decoration: none;
}


/*--------------------------------------------------------
    Objects
--------------------------------------------------------*/

.offscreen {
    /* This class allows an element to be read by a screenreader without appearing in the viewport  */
    position: absolute;
    left: -666vw;
}


/*  Wrappers
    *.wrapper acts as a more symantic stand in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns 
 */

.wrapper {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + 13px);
}

.img-responsive.full-width:not(#mycanvas img) {
    /* Make sure that when the system automatically adds the class .img-responsive that it doesn't break .full-width. This is not applied to images viewed on the Grid Editor page. */
    max-width: unset;
}

#gm-canvas .full-width {
    left: unset;
    right: unset;
    width: unset;
}

.row-background:not(#mycanvas .row-background) {
    position: relative;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 15px;
}

.row-background:not(#mycanvas .row-background)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    display: block;
    background-color: var(--background);
}

@media (min-width: 992px) {
    .row-background:not(#mycanvas .row-background)&gt;.col-md-9 {
        width: calc(75% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-8 {
        width: calc(66.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-7 {
        width: calc(58.3% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-6 {
        width: calc(50% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-5 {
        width: calc(41.7% - 15px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-4 {
        width: calc(33.3% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-3 {
        width: calc(25% - 20px);
    }
    .row-background:not(#mycanvas .row-background)&gt;.col-md-2 {
        width: calc(20% - 20px);
    }
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width {
        --side-margin: -15px;
        left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + 30px);
    }
    .row-background:not(#mycanvas .row-background) {
        padding-right: 15px;
    }
    .row-background::before {
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .row-background {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}


/* Events/News items */

.feed-item {
    display: flex;
    gap: 1em 1ch;
    line-height: 1.2;
}

.feed-item:not(:last-child) {
    margin-bottom: .75rem;
}

.feed-item time {
    background: var(--secondary);
    border-radius: 5px;
    color: white;
    text-align: center;
    min-width: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-item time span {
    display: block;
}

.feed-item .day {
    font-size: 1.4em;
    line-height: 1;
}

#homepage-main .feed-item h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    line-height: 1;
}

@media (min-width: 768px) {
    .feed-item time {
        font-size: 14px;
    }
}


/* Slideshows defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}


/* Home Top Slideshow */

.home-top-slideshow {
    position: relative;
}

.home-top-slideshow .slide .carousel-indicators {
    display: none;
}

.home-top-slideshow .slide .item img {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    background-position: center;
    background-size: cover;
}
    @media (max-width: 767px) {
        .home-top-slideshow .slide .item img {
            min-height: auto;
            height: auto;
        }
        .home-top-slideshow p.caption-text {
            margin-bottom: 15px;
        }
        img[src="https://www.viethconsulting.com/slideshows/images/4S/default/B0.478199001662490413.jpg"]+.carousel-caption::before {
            width: 100% !important;
            height: calc(250%) !important;
        }
    }

.home-top-slideshow .carousel-caption {
    background: transparent;
    text-align: center;
    min-height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home-top-slideshow .caption-wrapper {
    transform: translateY(20px);
    opacity: 0;
    transition: .25s transform ease-in-out, .25s opacity ease-in-out;
}

.home-top-slideshow .active .caption-wrapper {
    transform: translateY(0);
    opacity: 1;
}

img[src="https://www.viethconsulting.com/slideshows/images/4S/default/B0.478199001662490413.jpg"]+.carousel-caption::before {
    content: '';
    position: absolute;
    top: calc(-50% + 0px);
    left: 0;
    display: block;
    width: 580px;
    height: calc(150%);
    background: url(../images/pubs-fg.png);
    bottom: 0;
    background-size: cover;
    transform: translateX(-500px);
    transition: .25s transform ease-in-out;
    margin-top: 20px;
}

.active img[src="https://www.viethconsulting.com/slideshows/images/4S/default/B0.478199001662490413.jpg"]+.carousel-caption::before {
    transform: translateX(0px);
}

.home-top-slideshow .carousel-control {
    display: block;
    text-shadow: none;
    background: none;
}

.home-top-slideshow .carousel-control.left {
    height: 48px;
    width: 48px;
    color: #fff;
    top: 0px;
    left: auto;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Krub', sans-serif;
    vertical-align: middle;
    text-align: center;
    padding-right: 2px;
    border: 0px;
    margin-left: 15px;
}

.home-top-slideshow .carousel-control.right {
    height: 48px;
    width: 48px;
    color: #fff;
    top: 0px;
    left: auto;
    right: 0px;
    line-height: normal;
    bottom: 0;
    margin: auto;
    opacity: 1;
    text-shadow: none;
    font-family: 'Krub', sans-serif;
    vertical-align: middle;
    text-align: center;
    padding-left: 2px;
    border: 0px;
    margin-right: 15px;
}

.home-top-slideshow .carousel-control img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    transition: filter 0.25s;
}

.home-top-slideshow .top-slide-heading {
    margin-top: -6.5%;
}

@media (max-width: 767px) {
    .home-top-slideshow .top-slide-heading {
        margin-top: -10.5%;
    }
}

@media (max-width: 580px) {
    .home-top-slideshow .top-slide-heading {
        margin-top: -27.5%;
    }
    .home-top-slideshow .top-slide-heading h1 {
        font-size: 50px !important;
    }
    .home-top-slideshow .top-slide-content h2 {
        font-size: 32px !important;
    }
    .home-top-slideshow .top-slide-content h3 {
        font-size: 19px !important;
        line-height: 26px !important;
    }
    .home-top-slideshow .top-slide-content h4 {
        font-size: 16px !important;
    }
}

.home-top-slideshow .top-slide-heading h1 {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif!important;
    font-weight: 700;
    font-size: 70px;
    color: rgba(237, 63, 0, 0.89);
}

.home-top-slideshow .top-slide-content h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 52px;
}

.home-top-slideshow .top-slide-content h3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    white-space: normal;
    word-break: break-word;
}

.home-top-slideshow .top-slide-content h4 {
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
}

.home-top-slideshow p.caption-text {
    font-size: 50px;
    font-weight: 300;
    font-family: 'Noto Serif', serif;
    line-height: 65px;
}

.home-top-slideshow .top-slides-link a {
    color: #1568a3;
    background-color: #ffffff;
    border: 2px solid;
    border-color: #1568a3;
    border-radius: 12px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 0px;
    padding: 11px 10px;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all;
    transition-property: all;
}

.home-top-slideshow .top-slides-link a:hover {
    color: #1568a3;
}


/*--------------------------------------------------------
    Header
--------------------------------------------------------*/

#header-outer-wrap {
    position: relative;
    border-top: 2px solid #fecc00;
    background-color: #1568a3;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
    z-index: 99;
}

#header-outer-wrap.fixed {
    position: fixed;
    top: 0;
    z-index: 999;
}

#main-header {
    padding: 0px;
}

svg#main-logo {
    max-width: 100%;
    width: 230px;
    height: 80px;
}

.logo-inside-wrap {
    width: 400px;
    max-width: 100%;
}

#logo-wrap a {
    position: relative;
    display: block;
    padding: 16px 0 11px;
    border-bottom: 4px solid transparent;
    -webkit-transition: border 0.25s;
    -o-transition: border 0.25s;
    transition: border 0.25s;
}

#logo-wrap a:hover,
#logo-wrap a:focus {
    border-bottom-color: #fecc00;
}

#logo-wrap img {
    display: block;
    width: 100%;
    height: auto;
    margin-right: 10px;
}

@media (min-width: 768px) {
    #logo-wrap img {
        width: 400px;
    }
}

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


/* Search icon */

.search-wrap svg {
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
}

.search-wrap path {
    fill: white;
    transition: fill .125s ease-in-out;
}

.search-wrap a:hover path,
.search-wrap a:focus path {
    fill: #fff;
}


/* Desktop menu  */

header nav {
    width: 630px;
    max-width: 100%;
}

#nav_menu {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-right: 0;
}

#nav_menu&gt;ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

#nav_menu&gt;ul::before,
#nav_menu&gt;ul::after {
    content: none;
}

#nav_menu li {
    position: relative;
}

#nav_menu .navbar-nav&gt;li a {
    transition: background .125s ease-in-out;
    position: relative;
    color: #fff;
    font-family: 'Krub', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 4px solid transparent;
    padding: 30px 0 26px !important;
}

#nav_menu .navbar-nav&gt;li&gt;a:hover,
#nav_menu .navbar-nav&gt;li&gt;a:focus {
    /*border-bottom-color: #fecc00;*/
}

#nav_menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s color ease-in-out;
    color: var(--text);
}

#nav_menu a:hover,
#nav_menu a:focus,
#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover {
    background: transparent;
}

#nav_menu .navbar-nav&gt;li&gt;a&gt;b.caret {
    display: none;
}

#nav_menu .caret {
    margin-left: .5ch;
}

#nav_menu .dropdown-menu {
    /* Dropdown menu  */
    font-size: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #1568a3;
    padding: 5px 0;
    border-top: 6px solid #1568a3;
    width: 240px;
    min-height: 250px;
}

#nav_menu .dropdown-menu li a {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    padding: 12px 25px !important;
    line-height: 19px;
    white-space: normal;
}

#nav_menu .dropdown-menu a {
    text-decoration: none;
    background: transparent;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    padding: .5em 1ch;
}

#nav_menu .dropdown-menu a:hover,
#nav_menu .dropdown-menu a:focus {
    background-color: rgba(0, 0, 0, .03);
    color: white;
}

#nav_menu .dropdown-menu:not(.men-level-):not(.men-level-0) {
    top: 0;
}

#nav_menu .dropdown:hover .men-level-0,
#nav_menu .dropdown:hover .men-level- {
    display: block;
}


#nav_menu ul&gt;li.dropdown&gt;ul.dropdown-menu:before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    right: 100%;
    height: 4px;
    background-color: #fecc00;
    -webkit-transition: right 0.25s;
    -o-transition: right 0.25s;
    transition: right 0.25s;
}

#nav_menu ul&gt;li.dropdown.open&gt;ul.dropdown-menu:before {
    right: 0;
}

#nav_menu li.dropdown-submenu b.caret {
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: relative;
    float: right;
    top: 3px;
}

#nav_menu .dropdown-submenu:hover .men-level-1 {
    display: block;
    top: -3px;
}

#nav_menu .men-level-1 {
    top: 0px;
}

#nav_menu .men-level-1,
#nav_menu .men-level-2 {
    left: 100% !important;
    min-height: auto;
    padding: 0;
}


#nav_menu .dropdown-menu.men-level-1 .dropdown-submenu:hover .men-level-2 {
    display: block;
    bottom: 0;
    top: auto;
}
#nav_menu .dropdown-menu li .men-level-2 a {
    font-size: 14px;
    padding: 7px 25px !important;
    line-height: 16px;
}

.search-icon {
    width: 1rem;
    position: relative;
    top: -.125rem;
}

@media (max-width: 1200px) {
    #nav_menu&gt;ul {
        display: flex;
        justify-content: space-between;
    }
    #nav_menu&gt;ul&gt;li&gt;a,
    #nav_menu .dropdown-menu a {
        padding: .5em 1ch;
    }
}

@media (max-width: 990px) {
    header nav {
        display: none;
    }
}


/* Mobile menu trigger  */


/*.mobileMenuTrigger:not(.triggerClose) {
    border: 2px solid currentColor;
    padding: 10px 5px;
    color: var(--primary);
    transition: color .125s ease-in-out;
    display: inline-flex;
    border-radius: 5px;
    background: transparent;
}

.mobileMenuTrigger:not(.triggerClose):hover,
.mobileMenuTrigger:not(.triggerClose):focus {
    color: var(--secondary);
    outline: none;
}*/

.menu-trigger {
    width: 30px;
}

@media (min-width: 991px) {
    .mobileMenuTrigger:not(.triggerClose) {
        display: none;
    }
}

#mobile-menu&gt;li#triggerClose {
    color: var(--secondary);
    float: right;
    display: inline;
    font-size: 28px;
    cursor: pointer;
    transform: rotate(45deg);
}


/* Login modal */

.modal-open .modal {
    display: flex;
}

.modal-dialog {
    max-width: 100%;
    font-size: 16px;
    margin: auto;
    width: 300px;
}

.modal-content {
    margin-top: 20px;
    border-radius: 0;
}

.modal-header,
.modal-body {
    padding: .5rem 1rem;
}

.modal-header .close {
    opacity: 1;
    z-index: 1;
    position: relative;
}

.modal h2 {
    font-size: 24px;
    margin-top: 0;
}

.modal-header,
.modal-body {
    padding: 1em 2ch;
}

.modal input[name="Username"],
.modal input[name="Password"] {
    width: 100%;
    padding-left: .25em;
    padding-right: .25em;
    margin-bottom: 0.5em;
    height: 2em;
    border: 1px solid rgba(68, 68, 68, .5);
}

.modal a {
    display: block;
    margin-bottom: .5em;
}

@media (max-width: 990px) {
    .header-links li:not(:last-child) {
        display: none;
    }
}


/*--------------------------------------------------------
    Mobile navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    position: fixed;
    background: white;
    top: 0;
    bottom: 0;
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    left: -120%;
    width: 300px;
    box-shadow: 0 3px 14px -2px rgba(0, 0, 0, 0.4);
    transition: left .125s ease-in-out;
}

#mobileMenuWrapper.open {
    left: 0;
}

#mobileMenuWrapper ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mobileMenuWrapper li {
    display: block;
    margin-bottom: .7rem;
}

#mobileMenuWrapper .mobile-search-close {
    display: flex;
    justify-content: space-between;
}

#mobileMenuWrapper a {
    background-color: transparent;
    text-decoration: none;
}

#mobileMenuWrapper .mDropdown {
    display: none;
    padding-top: .7rem;
}

#mobileMenuWrapper .mDropdown.open {
    display: block;
}

.triggerClose {
    text-align: right;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
}

#mobileMenuWrapper #mobile-menu {
    overflow: auto;
    padding: 1rem;
}


/*--------------------------------------------------------
    Main
--------------------------------------------------------*/

#subpage-main,
#mms-main {
    padding-top: 3rem;
    min-height: calc(100vh - 54px - 167px - 4rem);
}

main:not(#mms-main) .row:not(#banner-row) {
    position: relative;
    padding-top: 0rem;
    padding-bottom: 0rem;
}

#homepage-main .row:last-child {
    padding-bottom: 0 !important;
}

@media (max-width: 990px) {
    main:not(#mms-main) .row:not(#banner-row) {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
    main:not(#mms-main) .column+.column {
        margin-top: 1rem;
    }
}


/* @media (max-width: 767px) {
    #homepage-main {
        overflow-x: hidden;
    }
} */


/* Banner row  */

#banner-row {
    position: relative;
}

#banner-row img {
    max-height: 90vh;
    object-fit: cover;
    object-position: top;
}

#banner-row:not(#mycanvas #banner-row) figcaption {
    position: absolute;
    bottom: 100px;
    color: white;
    font-size: 24px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgb(0 0 0 / 70%);
    max-width: calc(100% - 30px);
}

#banner-row:not(#mycanvas #banner-row) h1 {
    color: white;
    font-size: 55px;
    padding-bottom: 0;
    border-bottom: 3px solid;
    width: fit-content;
}

@media (max-width: 990px) {
    #banner-row:not(#mycanvas #banner-row) figcaption {
        bottom: 2rem;
        font-size: 1.1rem;
    }
    #banner-row:not(#mycanvas #banner-row) h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    #banner-row:not(#mycanvas #banner-row) figcaption {
        position: relative;
        background: var(--primary);
        top: 0;
        bottom: 0;
        margin-left: -15px;
        margin-right: -15px;
        max-width: unset;
        padding: 1rem;
    }
}


/* Events and News rows */

#events-row .column:not(#mycanvas .column),
#news-row .column:not(#mycanvas .column) {
    /* max-height: 50vh;
    overflow-y: visible; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    grid-gap: 1rem 30px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: 100%;
}

#events-row img:not(#mycanvas img),
#news-row img:not(#mycanvas img) {
    height: 100% !important;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: .25;
}

#events-row h2,
#news-row h2,
#events-row .button-link,
#news-row .button-link {
    grid-column: 1 / -1;
}

#news-row time {
    display: none;
}

[src="https://media.istockphoto.com/photos/baseball-batter-preparing-to-hit-ball-picture-id536311505?s=2048x2048"] {
    /* Specific to the placeholder images of this template */
    object-position: 0 -200px !important;
}

[src="https://media.istockphoto.com/photos/two-plastic-balls-picture-id503626553?s=2048x2048"] {
    /* Specific to the placeholder images of this template */
    object-position: 0 -380px !important;
}

@media (max-width: 990px) {
    #events-row:not(#mycanvas .row),
    #news-row:not(#mycanvas .row) {
        overflow: hidden;
    }
    #events-row img:not(#mycanvas img),
    #news-row img:not(#mycanvas img) {
        height: 200% !important;
    }
}


/* We Are Row */

#we-are-row h2,
#we-are-row .button-link,
#sponsors-row h2 {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.we-are-grid,
.sponsors-list {
    /* margin-top: 2rem; */
    padding: 0;
    list-style: none;
    display: grid;
    gap: 50px 30px;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}

.we-are-grid li {
    background: white;
    border-radius: 5px;
    box-shadow: 0px 3px 5px rgb(102 102 102 / 30%);
    /* border: 1px solid #ddd; */
    overflow: hidden;
}

.we-are-grid img {
    height: 240px !important;
    height: unset !important;
    /* Overwrite inline style automatically added to any uploaded image */
    width: 100%;
    /* object-fit: cover; */
}

.we-are-grid section {
    padding: 1em;
}

.we-are-grid h3 {
    font-size: 20px;
    /* color: var(--secondary); */
}

@media (max-width: 1200px) {
    .we-are-grid,
    .sponsors-list {
        gap: 2rem 30px;
    }
}

@media (max-width: 767px) {
    .we-are-grid,
    .sponsors-list {
        gap: 1.5rem 30px;
    }
}


/* Sponsors Row */

.sponsors-list li {
    justify-self: center;
}


/* #mycanvas .sponsors-list {
    display: block;
} */

.sponsors-list {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    margin-top: 2rem;
}

.sponsors-list img {
    border: 1px solid #e6e9f4;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}


/* Button */

#homepage-main .btn-wrap a {
    font-size: 20px;
    padding: 0.5em 1em;
    line-height: 1.7em!important;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: all!important;
    transition-property: all!important;
}

#homepage-main #member-portal-wrap {
    margin-top: 50px;
}

@media (max-width: 767px) {
    #homepage-main #member-portal-wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

#homepage-main .member-portal-btn a {
    background-color: #ffffff;
    border-color: #1568a3;
    border-radius: 12px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #1568a3;
}

@media (max-width: 580px) {
    #homepage-main .member-portal-btn a {
        display: block;
    }
}

#homepage-main .member-portal-btn a:hover {
    background-color: hsla(0, 0%, 100%, .2);
}

#homepage-main .member-portal-btn a:after {
    font-size: 32px;
    line-height: 1em;
    content: '';
    opacity: 0;
    position: absolute;
    margin-left: -1em;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-transform: none;
    -webkit-font-feature-settings: "kern" off;
    font-feature-settings: "kern" off;
    font-variant: none;
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
}

#homepage-main .member-portal-btn a:hover:after {
    content: '';
    border: solid #1568a3;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    top: -4px;
    margin-left: 0.3em;
    opacity: 1;
}


/* Latest 4S News */

.news-item-wrap {
    padding-bottom: 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid #dddddd;
}

#latest-news-wrap h2 {
    background-color: #333333;
    padding: 18px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    color: #cccccc!important;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-item-wrap h3 {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 21px;
}

.news-item-wrap a.news-title-link {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.news-item-wrap a.news-title-link:hover {
    color: var(--accent);
}

.news-item-wrap p {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
}

@media (max-width: 767px) {
    .news-item-wrap p {
        font-size: 16px;
    }
}

.link-text {
    margin-top: 30px;
    margin-bottom: 20px;
}

.link-text a {
    font-weight: 800;
    font-size: 13px;
    line-height: 26px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .link-text a {
        font-size: 16px;
        line-height: 22px;
    }
}

.link-text a:hover {
    color: #2293e3;
    text-decoration: none;
}


/* 4S Publications */

#homepage-main .publications-outer-wrap {
    background-image: linear-gradient(180deg, #cccccc 0%, #ffffff 100px)!important;
    padding-top: 75px;
    padding-bottom: 25px;
    background-color: transparent;
    -webkit-box-shadow: inset 0 0 7px rgb(0 0 0 / 7%);
    box-shadow: inset 0 0 7px rgb(0 0 0 / 7%);
    border-top: 2px solid #fecc00;
}

#publications-wrap {
    margin-bottom: 0px !important;
}

#publications-left-wrap&gt;.row {
    padding-top: 0px !important;
}

#pub-heading-text {
    margin-top: 30px;
    margin-bottom: 40px;
}

#pub-heading-text h2 {
    font-size: 40px;
}

#pub-shtv-wrap,
#pub-backchannels-wrap,
#pub-ests-wrap,
#publications-left-wrap .column {
    margin-top: 20px;
}

#pub-shtv-wrap h2,
#pub-backchannels-wrap h2,
#pub-ests-wrap h2 {
    background-color: #333333;
    padding: 18px 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    color: #cccccc!important;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

#pub-shtv-wrap *,
#pub-shtv-wrap em,
#pub-ests-wrap *,
#pub-ests-wrap em {
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 767px) {
    #pub-shtv-wrap *,
    #pub-shtv-wrap em,
    #pub-ests-wrap *,
    #pub-ests-wrap em,
    #pub-shtv-wrap .link-text,
    #pub-ests-wrap .link-text,
    #pub-shtv-wrap .link-text a,
    #pub-ests-wrap .link-text a {
        font-size: 16px;
        line-height: 22px;
    }
}

#pub-shtv-wrap .link-text,
#pub-ests-wrap .link-text {
    margin-top: 20px;
    font-size: 13px;
}

#pub-shtv-wrap .link-text a,
#pub-ests-wrap .link-text a {
    font-size: 13px;
}

#pub-journals-wrap {
    margin-top: 10px;
}

#pub-journals-wrap .news-item-wrap {
    border-bottom: 0px;
    margin-bottom: 0px;
}

#pub-journals-wrap h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'Krub', sans-serif;
    line-height: 26px;
    margin-bottom: 5px !important;
}

#pub-journals-wrap a.news-title-link {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    font-family: 'Krub', sans-serif;
    line-height: 26px;
}

@media (max-width: 767px) {
    #pub-journals-wrap a.news-title-link,
    #pub-journals-wrap .news-item-wrap p {
        font-size: 16px;
    }
}

#pub-journals-wrap a.news-title-link:hover {
    color: var(--accent);
}

#pub-journals-wrap .news-item-wrap p {
    font-size: 15px;
    line-height: 22px;
}

#publications-left-wrap h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

#pub-editorials-wrap .news-item-wrap,
#pub-research-wrap .news-item-wrap,
#pub-thematic-wrap .news-item-wrap,
#pub-engagements-wrap .news-item-wrap {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

#pub-editorials-wrap .news-item-wrap h3,
#pub-research-wrap .news-item-wrap h3,
#pub-thematic-wrap .news-item-wrap h3,
#pub-engagements-wrap .news-item-wrap h3 {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Krub', sans-serif;
    line-height: 26px;
}

#pub-editorials-wrap .news-item-wrap h3 a.news-title-link,
#pub-research-wrap .news-item-wrap h3 a.news-title-link,
#pub-thematic-wrap .news-item-wrap h3 a.news-title-link,
#pub-engagements-wrap .news-item-wrap h3 a.news-title-link {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Krub', sans-serif;
    line-height: 26px;
}

#pub-editorials-wrap .news-item-wrap p,
#pub-research-wrap .news-item-wrap p,
#pub-thematic-wrap .news-item-wrap p,
#pub-engagements-wrap .news-item-wrap p {
    font-size: 15px;
    line-height: 1.7em;
}

@media (max-width: 767px) {
    #pub-editorials-wrap .news-item-wrap h3,
    #pub-research-wrap .news-item-wrap h3,
    #pub-thematic-wrap .news-item-wrap h3,
    #pub-engagements-wrap .news-item-wrap h3,
    #pub-editorials-wrap .news-item-wrap h3 a.news-title-link,
    #pub-research-wrap .news-item-wrap h3 a.news-title-link,
    #pub-thematic-wrap .news-item-wrap h3 a.news-title-link,
    #pub-engagements-wrap .news-item-wrap h3 a.news-title-link,
    #pub-editorials-wrap .news-item-wrap p,
    #pub-research-wrap .news-item-wrap p,
    #pub-thematic-wrap .news-item-wrap p,
    #pub-engagements-wrap .news-item-wrap p {
        font-size: 16px;
    }
}


/*4S Blog: Backchannels*/

.backchannels-news-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.backchannels-news-item .news-image {
    display: inline-block;
    width: 200px;
}

.backchannels-news-item .news-image img {
    width: 100%;
    max-width: 100%;
    margin-top: 5px;
}

.backchannels-news-item .news-date-title {
    display: inline-block;
    width: 60%;
    vertical-align: top;
    margin-left: 15px;
}

@media (max-width: 580px) {
    .backchannels-news-item .news-date-title {
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
}

.backchannels-news-item h3.news-title {
    font-size: 16px !important;
    line-height: 1.3em;
}

.backchannels-news-item a.news-title-link {
    font-size: 16px;
    line-height: 1.3em;
    color: #333;
}

.backchannels-news-item a.news-title-link:hover {
    color: var(--accent);
}

.backchannels-news-item .news-date {
    font-size: 14px;
    font-style: italic;
    padding: 7px 0px;
}

@media (max-width: 767px) {
    .backchannels-news-item .news-date,
    .backchannels-news-item .news-description {
        font-size: 16px !important;
    }
}

.backchannels-news-item .news-description {
    font-size: 14px;
    font-weight: 500;
}

.backchannels-news-item .news-authors {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

#pub-backchannels-wrap em {
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 767px) {
    #pub-backchannels-wrap em {
        font-size: 16px;
        line-height: 22px;
    }
}

#pub-backchannels-wrap .link-text {
    margin-top: 0px;
}


/* Four Corners*/

#homepage-main .four-corners-wrap {
    background: #F4F4F4;
    -webkit-box-shadow: inset 0 0 7px rgb(0 0 0 / 7%);
    box-shadow: inset 0 0 7px rgb(0 0 0 / 7%);
    border-bottom: 2px solid #fecc00;
    padding-bottom: 5px;
}

#homepage-main .four-corners-wrap .container {
    width: 100% !important;
}

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

.four-corners-wrap .row {
    padding-top: 0px !important;
    margin-bottom: 0px !important;
}

#four-corners-heading {
    background: #1568a3;
    padding: 18px 20px;
}

#four-corners-heading h2 {
    margin-bottom: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    color: #ffffff!important;
    letter-spacing: 1px;
}

.four-corners-wrap .col-content-wrap img {
    max-width: 100%;
    width: 100% !important;
    border-right: 2px solid #fecc00;
}

.four-corners-content {
    width: 100%;
    padding: 15px 10px;
}

.four-corners-content h4 {
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 0px;
}

.four-corners-content h4 a {
    font-family: 'Oxygen', Helvetica, Arial, Lucida, sans-serif!important;
    font-weight: 700!important;
    font-size: 16px!important;
    color: #2293e3!important;
    transition: all 300ms ease 0ms!important;
}


/*4S on Twitter*/

#homepage-main .twitter-outer-wrap {
    background-image: linear-gradient(180deg, #ccc 0%, rgba(0, 0, 0, 0) 100px)!important;
    padding-top: 90px;
    padding-bottom: 100px;
    background-color: #f4f4f4!important;
    border-bottom: 2px solid #fecc00;
}

#twitter-wrap h2 {
    font-size: 40px;
    line-height: 1.3em;
    margin-bottom: 20px;
}

#twitter-wrap .twitter-timeline {
    text-align: center;
    margin: 0 auto;
}


/*STS News*/

#homepage-main .sts-news-outer-wrap {
    background-image: linear-gradient(180deg, #ccc 0%, rgba(0, 0, 0, 0) 100px)!important;
    padding-top: 90px;
    padding-bottom: 50px;
    background-color: #f4f4f4!important;
    border-bottom: 2px solid #fecc00;
}

#sts-news-wrap .row {
    margin-bottom: 0px;
    padding-bottom: 0px !important;
}

#sts-news-wrap h2 {
    font-size: 40px;
    line-height: 1.3em;
    margin-bottom: 20px;
}

#sts-news-wrap p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 5px !important;
}

.sts-news-item-wrap .news-item {
    background-color: #ffffff;
    padding-top: 14px;
    padding-right: 14px;
    padding-bottom: 14px;
    padding-left: 14px;
    min-height: 325px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .sts-news-item-wrap .news-item {
        min-height: auto;
        margin-bottom: 5px;
    }
}

.sts-news-item-wrap h3.news-title {
    font-size: 16px !important;
    line-height: 1.3em;
}

.sts-news-item-wrap a.news-title-link {
    font-size: 16px;
    line-height: 1.3em;
    color: #333;
}

.sts-news-item-wrap a.news-title-link:hover {
    color: var(--accent);
}

.sts-news-item-wrap .news-date {
    font-size: 14px;
    padding: 7px 0px;
}

@media (max-width: 767px) {
    .sts-news-item-wrap .news-date,
    .sts-news-item-wrap .news-blurb {
        font-size: 16px;
    }
}

.sts-news-item-wrap .news-blurb {
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
}


/* Home Bottom Slideshow */

#slideshow-bottom-wrap {
    padding-top: 0px !important;
    margin-bottom: 0px !important;
}

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

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

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

#slideshow-bottom-wrap .slide .carousel-indicators {
    display: none;
}

#slideshow-bottom-wrap .carousel-inner .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    background-blend-mode: multiply;
    background: linear-gradient(180deg, rgba(43, 135, 218, 0.1) 0%, rgba(0, 0, 0, 0.5) 20%)!important;
}

#slideshow-bottom-wrap .slide .item img {
    width: 100%;
    max-width: 100%;
    min-height: 800px;
    height: 800px;
    object-fit: cover;
    object-position: top;
    background-position: top;
    background-size: cover;
}

#slideshow-bottom-wrap .carousel-caption {
    background: transparent;
    text-align: center;
    min-height: auto;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#slideshow-bottom-wrap .carousel-control {
    display: none;
}

#slideshow-bottom-wrap .caption-wrapper * {
    color: #fff;
}

#slideshow-bottom-wrap .bottom-slide-heading h3 {
    font-size: 24px;
    text-transform: uppercase !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700 !important;
    line-height: 26px;
    letter-spacing: 4px;
}

@media (max-width: 767px) {
    #slideshow-bottom-wrap .bottom-slide-heading h3 {
        font-size: 18px;
    }
}

#slideshow-bottom-wrap .bottom-slide-heading h1 {
    font-size: 60px;
    line-height: 1.3em;
    font-family: 'Noto Serif', serif;
    margin-top: 35px;
}

@media (max-width: 767px) {
    #slideshow-bottom-wrap .bottom-slide-heading h1 {
        font-size: 44px;
    }
}

.slide-divider {
    text-align: center;
    height: 3px;
    display: inline-block;
    width: 150px;
    border-top: 3px solid #fff;
    margin-top: 25px;
    margin-bottom: 35px;
}

#slideshow-bottom-wrap .bottom-slide-content {
    margin-top: 10px;
    font-size: 21px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    #slideshow-bottom-wrap .bottom-slide-content {
        margin-top: 0px;
        font-size: 18px;

    }
}

#slideshow-bottom-wrap .bottom-slides-link {
    /* margin-top: 50px; */
}

#slideshow-bottom-wrap .bottom-slides-link a {
    color: #ffffff!important;
    border-color: #ffffff;
    border-radius: 12px;
    text-transform: uppercase!important;
    background-color: rgba(255, 255, 255, 0.25) !important;
    transition: all 300ms ease 0ms;
    transition: background-color 300ms ease 0ms, border 300ms ease 0ms, border-radius 300ms ease 0ms, letter-spacing 300ms ease 0ms;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5em 1em;
    line-height: 1.7em!important;
    background-color: transparent;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid;
    transition-duration: .2s;
    -webkit-transition-property: all!important;
    transition-property: all!important;
    letter-spacing: 1px;
}


/*--------------------------------------------------------
    Side menu
--------------------------------------------------------*/

.side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #dddddd;
}

.side-menu a,
.side-menu span {
    color: #333;
    padding: .5em .75em;
    display: block;
    font-family: 'Noto Serif', serif;
}

.side-menu a:hover,
.side-menu a:focus {
    color: #1568a3;
}

.side-menu&gt;li&gt;a {
    border-top: 1px solid #dddddd;
}

.side-menu&gt;li&gt;.menu-title {
    text-transform: uppercase;
    background: #1568a3;
    font-weight: bold;
    font-family: 'Krub', sans-serif;
    color: white;
}

.side-menu ul {
    list-style: none;
    padding-bottom: 0.5em;
}

@media (min-width: 768px) {
    .side-menu ul {
        font-size: 14px;
    }
}

.sidebar-note {
    color: #666;
    padding: 10px;
    background: #fcecad;
    margin-top: 2em;
}

.sidebar-note a {
    color: #1568a3;
}

.sidebar-note a:hover,
.sidebar-note a:focus {
    color: #2293e3;
}

@media (min-width: 768px) {
    .sidebar-note {
        margin-top: 4em;
        font-size: 15px;
    }
}


/*--------------------------------------------------------
    Title Banner
--------------------------------------------------------*/

#title-banner {
    position: relative;
}

#title-banner img {
    max-width: 100%;
    display: block;
}

#title-banner img.full {
    width: 100%;
    display: block;
}

#title-banner figcaption {
    top: calc(50% - 1em);
    position: absolute;
    text-align: center;
    display: block;
    left: 0;
    width: 100vw;
}

#title-banner figcaption:not(img+figcaption) {
    /* If there is no banner image, center the banner heading */
    min-height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    #title-banner figcaption&gt;* {
        font-size: 50px;
    }
}

#title-banner .full+figcaption&gt;* {
    text-shadow: 1px 1px 0 #cecece;
    color: black;
}


/*--------------------------------------------------------
    Flexible news items
--------------------------------------------------------*/

.flexible-news-item {
    display: flex;
    gap: 15px;
}

.flexible-news-item img {
    max-width: 100%;
    height: fit-content;
    width: 200px;
    margin-top: 12px;
    margin-bottom: 12px;
    object-fit: cover;
    object-position: top;
    background-position: top;
    background-size: cover;
}

@media (max-width: 767px) {
    .flexible-news-item img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .flexible-news-item {
        flex-wrap: wrap;
    }
}


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

footer#main-footer {
    background: #000000;
    border-top: 2px solid #fecc00;
    padding: 20px 0px 5px;
    color: #bbbbbb;
    font-size: 14px !important;
}

@media (max-width: 767px) {
    footer#main-footer {
        font-size: 16px !important;
    }
}

footer:not(#homepage-main+footer) {
    margin-top: 3rem;
}

footer&gt;section {
    position: relative;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 30px 1em;
    flex-wrap: wrap;
}

footer&gt;section:last-child {
    padding: 2rem 0;
}

footer&gt;section::before {
    content: '';
    top: 0;
    bottom: 0;
    left: -666vw;
    right: -666vw;
    background: var(--background);
    position: absolute;
    z-index: -1;
}

footer h2 {
    font-size: 24px;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer&gt;section:first-child p {
    max-width: 767px;
}

footer a {
    text-decoration: none;
    color: #bbbbbb;
    font-weight: 700;
    transition: color 300ms ease 0ms;
}

footer a:hover,
footer a:focus {
    color: inherit;
    text-decoration: none;
    color: #fff;
}

footer#main-footer p {
    color: #bbb;
    font-size: 15px;
    font-weight: 500;
}

.footer-privacy {
    margin-bottom: 25px;
}

footer .social-list {
    align-self: flex-start;
    justify-content: flex-end;
    -webkit-box-align: end;
    align-items: end;
    position: relative;
    top: -8px;
}

footer .social-list svg path {
    fill: #999999;
    transition: fill 300ms ease 0ms;
}

footer .social-list svg:hover path,
footer .social-list svg:focus path {
    fill: #ffffff;
}

.social-list {
    /* color: white; */
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
    position: relative;
    list-style: none;
    gap: 10px;
    padding-top: 0px;
    margin-top: 0;
    margin-bottom: 0;
}

.social-list svg {
    padding: 3px;
    /*border: 1px solid var(--secondary);
    background: var(--secondary);*/
    border-radius: 3px;
    transition: .125s background ease-in-out .125s border-color ease-in-out;
    color: white;
    width: 40px;
    height: 40px;
}

.social-list path {
    fill: var(--primary);
}

.social-list rect {
    display: none;
}

@media (max-width: 900px) {
    footer {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    footer,
    footer section {
        display: block;
    }
    footer ul {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    footer#main-footer .text-left,
    footer#main-footer .text-right {
        text-align: center;
    }
    footer .social-list {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 20px;
    }
}


/*--------------------------------------------------------
    MMS Styles
--------------------------------------------------------*/


/* MMS Member Menu icons */

@media (min-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 190px;
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .nav-tabs li.dropdown {
        width: 155px;
    }
}

@media (min-width: 767px) and (max-width: 990px) {
    .nav-tabs li.dropdown {
        width: 120px;
    }
}</pre></body></html>