﻿:root {
    --bg-lightblue: #DEE3EA;
    --bg-blue: #B2C5DD;
    --deep-blue: #0B3D7E;
    --deeper-blue: #0B356B;
    --gold: #DEB406;
    --white: #FCFBFA;
    --light-grey: #F4F5F6;
    --text-dark: #444950;
    --text-anchor: #3383E9;
    --partials-container: 1432px; /* Increate from 1100px */ /* Foundation xxlarge: 1440px */
    --intermediate-container: 1285px; /* Foundation xlarge: 1200px */
    --mini-container: 1182px;
    --micro-container: 1000px; /* Foundation large: 1024 px */
}
/* Foundation medium: 640 px */

@font-face {
    font-family: 'Helvetica Neue';
    font-weight: 500;
    src: url(/css/webfonts/HelveticaNeueMedium.otf);
}

@font-face {
    font-family: 'Helvetica Neue';
    font-weight: 400;
    src: url(/css/webfonts/HelveticaNeueRoman.otf);
}


html, body {
    font-smooth: antialiased;
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue',Helvetica,Roboto,Arial,sans-serif;
    margin: 0;
    overflow-x: hidden;
}

p {
    color: var(--text-dark);
}

li {
    color: var(--text-dark);
}

ol li {
    margin-bottom: 8px;
}

table {
    box-shadow: 0 0 10px #44495088;
    border-collapse: collapse;
    border-left: 0;
    border-right: 0;
    border-radius: 10px;
    border-spacing: 0px;
    overflow: hidden;
}

table tbody tr td {
    font-size: 18px;
    line-height: 24px;
    border:0;
}

    table tbody tr td a {
        font-weight: 400;
    }

        table tbody tr td a:hover {
            font-weight: 400;
        }

        table textarea {
            margin-bottom:0;
        }

@media only screen and (max-width: 525px) {

    table tbody tr td {
        padding: 5px;
    }
}

/* Form Elements */

.button {
    /*background-color: var(--gold);*/
    background-color: #444;
    padding: 10px 16px 8px;
    /*color: var(--deep-blue);*/
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    width: fit-content;
}

.button + .button {
    margin-left: 32px;
}

    .button:hover {
        color: var(--gold);
        background-color: var(--deep-blue);
    }

label {
    color: var(--text-dark);
}

[type="color"], [type="date"], [type="datetime-local"], [type="datetime"], [type="email"], [type="month"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], textarea, select:not([multiple]) {
    border-radius: 4px;
    background-color: var(--bg-lightblue);
    border: none;
    color: var(--deep-blue);
    padding: 6px 16px;
}

table [type="date"], table [type="datetime"], table [type="email"], table [type="number"], table [type="password"], table [type="search"], table [type="text"], table [type="url"], table textarea, table select:not([multiple]) {
    margin-bottom: 0;
}

section.background-blue input :not(.full-width-card), section.background-blue textarea {
    background-color: var(--white);
}

input[type="checkbox"], input[type="radio"] {
    margin-top: 6px;
    margin-bottom: 0;
    float: left;
    margin-right: 7px;
}

    input[type="checkbox"] + label, input[type="radio"] + label {
        font-weight: normal;
        display: inline;
    }

.fieldset {
    box-shadow: 0 0 10px #44495088;
    border-left: 0;
    border-right: 0;
    border-radius: 10px;
    border-spacing: 0px;
    margin-bottom: 60px;
}

fieldset.fieldset legend {
    color: var(--deep-blue);
    padding-top: 28px;
}
    .fieldset input[type="checkbox"] + label, .fieldset input[type="radio"] + label {
    font-weight: normal;
    display: block;
    margin-left: 20px;
}




/* HEADER */


.title-bar {
    background-color: var(--white);
    width: 100%;
}

    .title-bar .title-bar-title {
        padding-left: 16px;
        color: var(--deep-blue);
    }

    .title-bar .button {
        padding: 10px 16px 8px;
        text-decoration: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 0;
        margin-right:16px;
    }

@media (max-width: 1024px) {
    .title-bar {
        padding-top:0;
        padding-bottom:0;
    }
}
    
    header {
        /*max-width: var(--partials-container);*/
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        row-gap: 12px;
        padding: 16px 0 0;
        position: relative;
    }

        header .header-top {
            max-width: var(--partials-container);
            width: 100%;
            margin: 0 auto;
            display: inline-flex;
            justify-content: space-between;
            align-items: center;
        }

            header .header-top .search-bar {
                width: 35vw;
                position: relative;
                margin-bottom: 0;
            }

                header .header-top .search-bar input[type="text"] {
                    width: calc(100% - 32px);
                    border-radius: 4px;
                    background-color: var(--bg-lightblue);
                    border: none;
                    color: var(--deep-blue);
                    padding: 12px 16px;
                    margin-right: 10px;
                }

                    header .header-top .search-bar input[type="text"]::placeholder {
                        color: var(--deep-blue);
                    }

                header .header-top .search-bar a {
                    position: absolute;
                    right: 0;
                    top: 0;
                    border: none;
                    padding: 12px 16px 11px;
                    border-radius: 0 4px 4px 0;
                    background-color: var(--deep-blue);
                    color: var(--white);
                    cursor: pointer;
                }

            header .header-top .button {
                padding: 10px 16px 8px;
                text-decoration: none;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 400;
                line-height: 1;
                margin-right: 10px;
            }

.header-top .menu li.dropdown-login {
    position: relative;
}

    .header-top .menu li.dropdown-login .login-form {
        display: none;
        position: absolute;
        padding: 30px 10px;
        width: 250px;
        border-top: 2px solid #1C2759;
        top: 120%;
        right: 0;
        background: #fff;
        z-index: 100;
        border-right: 1px solid #ececec;
        border-left: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }

        .header-top .menu li.dropdown-login .login-form h6 {
            font-weight: 600;
            margin-bottom: 18px;
        }

        .header-top .menu li.dropdown-login .login-form .input-group {
            margin-bottom: 10px;
        }

            .header-top .menu li.dropdown-login .login-form .input-group .input-group-label:first-child {
                border-top-left-radius: 3px;
                border-bottom-left-radius: 3px;
            }

            .header-top .menu li.dropdown-login .login-form .input-group .input-group-label i {
                font-size: 13px;
                color: #6c6c6c;
            }

            .header-top .menu li.dropdown-login .login-form .input-group input {
                font-size: 13px;
                border-top-right-radius: 3px;
                border-bottom-right-radius: 3px;
            }

        .header-top .menu li.dropdown-login .login-form fieldset {
            margin-bottom: 14px;
        }

            .header-top .menu li.dropdown-login .login-form fieldset label {
                font-size: 12px;
                color: #8e8e8e;
            }

        .header-top .menu li.dropdown-login .login-form input[type="submit"] {
            width: 100%;
            border: 1px solid #404040;
            text-align: center;
            text-transform: capitalize;
            background: #404040;
            font-size: 13px;
            color: #FFFFFF;
            padding: 10px 0;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            border-radius: 3px;
            margin-bottom: 30px;
        }

            .header-top .menu li.dropdown-login .login-form input[type="submit"]:hover {
                background: #1C2759;
                color: #fff;
                border: 1px solid #1C2759;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                -ms-border-radius: 3px;
                border-radius: 3px;
            }

        .header-top .menu li.dropdown-login .login-form p {
            font-size: 12px;
            color: #8e8e8e;
        }

            .header-top .menu li.dropdown-login .login-form p a.newaccount {
                color: #222222;
                background: transparent;
                padding: 0;
                margin: 0;
                font-weight: 600;
            }

                .header-top .menu li.dropdown-login .login-form p a.newaccount:hover {
                    color: #1C2759;
                }


header .header-bottom {
    background-color: #414142;
}

    header .header-bottom > ul.menu {
        max-width: var(--partials-container);
        width: 100%;
        margin: 0 auto;
    }


        header .header-bottom a {
            font-family: 'Helvetica', sans-serif;
            font-size: 16px;
            color: var(--white);
            font-weight: 400;
            text-decoration: none;
        }


header .dropdown.menu > li > a {
    padding: 24px 0 24px 0;
    color: var(--white);
}

.menu .is-active > a:hover {
    color: #414142;
    background: #E6E7E8;
}

header .dropdown.menu > li.is-active > a {
    color: #414142;
    background: #E6E7E8;
}

.menu .is-active > a {
    color: #414142;
    background: #E6E7E8;
}

header .menu.expanded li {
    background-color: #414142;
}

header .dropdown.menu li:hover {
    background: #E6E7E8;
}

        header .dropdown.menu .is-dropdown-submenu {
            border: 0;
        }

            header .dropdown.menu .is-dropdown-submenu a {
                color: var(--white);
                padding: 0.9rem
            }

header .dropdown.menu > li.is-dropdown-submenu-parent > a {
    color: var(--white);
    padding-right: 0;
}

header .dropdown.menu > li.is-dropdown-submenu-parent.is-active a, header .dropdown.menu > li.is-dropdown-submenu-parent a:hover {
    color: #414142;
}

header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item a {
    color: var(--white);
}

header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item.is-active a, header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item a:hover {
    color: #414142;
}

header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item li.is-submenu-item a {
    color: var(--white);
}

header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item li.is-submenu-item.is-active a, header .dropdown.menu > li.is-dropdown-submenu-parent li.is-submenu-item li.is-submenu-item a:hover {
    color: #414142;
}

            header .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
                display: none;
            }

header .dropdown.menu li.is-dropdown-submenu-item a {
    text-align: left;
    margin-left: 16px;
    margin-right: 16px;
    border-bottom: 1px solid var(--white);
    min-width: 250px;
}

        header .dropdown.menu > li.is-dropdown-submenu-parent li.is-dropdown-submenu-parent > a::after {
            content: " \002B";
            display: block;
            border: none;
            margin-top: -9px;
        }

        header .dropdown.menu li.is-dropdown-submenu-item li.is-dropdown-submenu-item a {
            color: var(--white);
            border-bottom: none;
        }

.off-canvas-absolute {
    background-color: var(--white);
}

.off-canvas hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border-bottom-color: var(--bg-blue);
}

        .off-canvas .menu {
            background-color: var(--white);
        }

.off-canvas .menu a {
    color: var(--deep-blue);
}

.off-canvas-wrapper {
    background-color: var(--white);
}



    @media (max-width: 1024px) {
        header {
            padding: 16px;
        }

            header .search-bar {
                display: none;
            }

            header .logo img {
                max-width: 182.93px;
                height: 52px;
            }
    }

    /* END HEADER */




    .subnav-container {
        background-color: var(--deep-blue);
    }

        .subnav-container.show-for-medium {
            background-color: var(--gold);
            color: var(--deep-blue);
        }

    .subnav.menu {
        max-width: var(--intermediate-container);
        margin: 0 auto;
        background-color: var(--deep-blue);
    }

    .subnav-container.show-for-medium .subnav.menu {
        background-color: var(--gold);
    }

    .subnav.menu a {
        color: var(--white);
        font-size: smaller;
    }

    .subnav.menu li:hover {
        background: var(--gold);
    }

    .subnav-container.show-for-medium .subnav.menu li:hover {
        background: var(--deep-blue);
    }


.header-banner {
    background-image: url(/images/banners/waveBannerBackgroundWhite.webp);
    background-size: cover;
    background-position: center center;
}

    .header-banner h1 {
        text-align: center;
        width: 100vw;
        /*padding: 60px 0;*/
        padding: 20px 0;
        margin: 0 auto;
        /*font-size: 48px;*/
        font-size: 28px;
        font-weight: 500;
        background-blend-mode: multiply;
    }

.about-header h1 {
    color: var(--deep-blue);
    background-color: #B2C5DDBB; /* Blue */
}

.directories-header h1 {
    color: var(--gold);
    background-color: #0B3D7EBB; /* Deep Blue */
}

.education-header h1 {
    color: var(--bg-lightblue);
    background-color: #0B3D7EBB; /* Deep Blue */
}

.membership-header h1 {
    color: var(--white);
    background-color: #DEB406BB; /* Gold */
}

.misc-header h1 {
    color: var(--gold);
    background-color: #DEE3EABB; /* Light Blue */
}

.myisakos-header .header-background {
    background-color: #0B3D7EBB; /* Deep Blue */
}

    .myisakos-header .header-background>div {
        max-width: var(--partials-container);
        margin: 0 auto;
    }

.myisakos-header h1 {
    display: inline-block;
    text-align: left;
    padding-left: 10px;
    color: var(--white);
}

.myisakos-banner-text {
    padding-top: 40px;
    color: var(--white);
    display: block;
    float: right;
    padding-bottom: 30px;
    height: 100%;
    vertical-align: text-bottom;
}

.myisakos-header-headshot {
    padding-left: 16px;
    max-height: 200px;
    max-width: 216px;
}

@media (max-width: 1024px) {
    .myisakos-banner-text {
        float: left;
        font-size: 12px;
        margin-left: 12px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .myisakos-header-headshot {
        padding-left: 8px;
        margin-right: 12px;
        max-height: 100px;
        max-width: 108px;
    }
}


    .page-content {
        background: var(--white);
        min-height: 600px;
        padding: 0;
        margin: 0 auto;
    }

        .page-content h2 {
            text-align: center;
            color: var(--deep-blue);
            font-weight: 500;
            font-size: 32px;
            margin: 32px 0 32px;
        }

        .page-content h3 {
            color: var(--deep-blue);
            font-size: 22px;
            font-weight: 500;
            margin: 0 0 10px 0;
        }

    .page-content h3 a:not([href]) {
        display: block;
        font-weight: bold;
        margin-bottom: 40px;
    }

.page-content h3 a:not([href])::after {
    content: " \25BA";
}

.page-content h3 a:not([href]).open {
    margin-bottom: 0;
}

.page-content h3 a:not([href]).open::after {
    content: " \25BC";
}

.page-content h3 a:hover {
    color: #787875;
}

    .page-content h4 {
        color: var(--deep-blue);
        font-size: 22px;
        font-weight: 500;
        margin: 0;
    }

        .page-content h4 a:not([href])::after {
            content: " \25BA";
        }

        .page-content h4 a:not([href]).open {
            margin-bottom: 0;
        }

            .page-content h4 a:not([href]).open::after {
                content: " \25BC";
            }

    .page-content h6 {
        color: var(--bg-blue);
        font-size: 18px;
        font-weight: 500;
        font-style: italic;
        margin: 0;
    }






    /* Section Layouts */

section.transparent {
    padding: 60px 0;
}

    section.background-blue {
        padding: 60px 0;
        background-color: var(--bg-lightblue);
    }

    section.waves {
        padding: 40px 0;
        background-image: url(/images/wavesBackground.webp);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        margin: 0;
    }

section.background-blue + section.waves, section.transparent + section.waves {
    padding-top: 60px;
    padding-bottom: 60px;
}

    section .partials {
        max-width: var(--partials-container);
        margin: 0 auto;
    }

    section .intermediate {
        max-width: var(--intermediate-container);
        margin: 20px auto;
    }

        section .intermediate h2:first-child, section .micro h2:first-child {
            margin-top: 0;
        }

section .mini {
    max-width: var(--mini-container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section .mini .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    section .micro {
        max-width: var(--micro-container);
        margin: 20px auto;
    }

section.background-blue:first-child .micro, section.transparent:first-child .micro, section.background-blue:first-child .intermediate {
    margin-top: 0;
}

section .micro.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    @media (max-width: 1024px) {

        .header-banner h1 {
            font-size: 36px;
            line-height: 44px;
            padding: 30px 6px;
        }

        section.background-blue {
            padding-top: 20px;
        }

        section.waves {
            padding-top: 20px;
            background-size: cover;
        }

            section.waves .mini {
                flex-direction: column-reverse;
                padding: 32px;
                gap: 32px;
            }

        section .micro.flex {
            flex-direction: column-reverse;
        }

        section.waves .content h2 {
            text-align: left;
        }

            section.waves img {
                width: 100%;
            }

        section .intermediate {
            margin: 16px 32px;
        }

        section .micro {
            padding-left: 8px;
            padding-right: 8px;
        }
    }

section .partials > p {
    padding-top: 40px;
}

section .micro > p {
    padding-top: 20px;
}




section.waves > div.intermediate {
    margin-top:0;
    margin-bottom:0;
}

section.waves img {
    max-width: 500px;
}

section.waves .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    gap: 40px;
}

section.waves .content h2 {
    margin: 0;
}

    section.waves .content p {
        margin-top: 1rem;
    }

    section.waves .content .button {
        margin-bottom: 1rem;
    }

    section.partner-societies {
        margin-bottom: 45px;
    }

section.partner-societies h2 {
    color: var(--bg-blue);
    font-size: 32px;
    font-weight: 400;
    margin: 0 64px 0 0;
}

section.partner-societies .inner {
    max-width: var(--mini-container);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px 0;
    align-items: center;
}

    @media (max-width: 1024px) {
        section.waves .inner {
            padding: 60px 32px;
            flex-direction: column;
            gap: 64px;
        }

        section.partner-societies .inner {
            flex-direction: column;
            gap: 40px;
            padding: 40px 32px;
            align-items: center;
        }

        section.partner-societies h2 {
            margin: 0;
        }
    }

    .breadcrumbs {
        margin-top: -40px;
        float: right;
        padding-right: 10px;
        vertical-align: top;
    }


    /* Info Cards */

    .info-cards-flex {
        display: flex;
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

        .info-cards-flex.committee {
            align-items: flex-start;
        }

        .info-cards-flex.winners {
            gap: 60px;
        }

        .info-cards-flex .info-card {
            display: flex;
            flex-direction: column;
            /*justify-content: flex-end;*/
            background-color: var(--bg-lightblue);
            border-radius: 24px;
            width: 330px;
            padding: 40px 16px;
            text-align: center;
        }
        .info-cards-flex.pubs .info-card, .info-cards-flex.committee .info-card, .info-cards-flex.winners .info-card, .info-cards-flex.myisakos .info-card {
            padding-top: 16px;
            padding-bottom: 16px;
        }

        .info-cards-flex.winners .info-card, .info-cards-flex.grants .info-card {
            justify-content: flex-start;
            width: 450px;
        }

        .info-cards-flex.about .info-card {
            align-items: center;
        }

        .info-cards-flex.myisakos .info-card {
            justify-content: flex-start;
            align-items: center;
        }

        .info-cards-flex.pubs .info-card h2, .info-cards-flex.courses .info-card h2 {
            margin-bottom: 12px;
            font-size: 24px;
        }

            .info-cards-flex.winners .info-card h2 {
                margin-bottom: auto;
            }


            .info-cards-flex .info-card h3 {
                font-size: 32px;
                font-weight: 500;
                color: var(--bg-blue);
                margin: 20px 0 20px;
            }

        .info-cards-flex.committee .info-card h3 {
            font-size: 24px;
            margin-top: 20px;
        }

        .info-cards-flex.winners .info-card h3 {
            font-size: 28px;
            margin-top: 12px;
        }

        .info-cards-flex.courses .info-card h3 {
            font-size: 20px;
            margin-top: 12px;
        }

            .info-cards-flex .info-card h4 {
                font-size: 32px;
                font-weight: 500;
                color: var(--deep-blue);
                margin: 0;
                margin-top: 10px;
            }

            .info-cards-flex .info-card p {
                font-weight: 400;
                font-size: 16px;
                color: var(--text-dark);
                margin: 20px 0 16px;
                text-align: center;
                line-height: 1.3;
            }

        .info-cards-flex.pubs .info-card p {
            margin-top: 6px;
            margin-bottom:auto;
            padding-bottom: 12px;
        }

        .info-cards-flex.committee .info-card p {
            text-align:left;
        }

        .info-cards-flex.courses .info-card p {
            text-align: left;
            margin-bottom:20px;
        }

        .info-cards-flex.winners .info-card p {
            text-align: left;
            padding-left: 1.5em;
            text-indent: -1.5em;
            margin-top: 4px;
            margin-bottom: 4px;
        }

        .info-cards-flex .info-card ul{
            text-align:left;
        }

        .info-cards-flex.pubs .info-card img, .info-cards-flex.pubs .info-card a:not(.button), .info-cards-flex.pubs .info-card [type="image"] {
            margin: auto auto 16px;
            height: 225px;
            border-radius: 12px;
        }

        .info-cards-flex.pubs .info-card .button {
            margin: 12px auto 0;
        }

        .info-cards-flex.courses .info-card .button {
            align-self:center;
            margin-top: auto;
        }

        .info-cards-flex.myisakos .info-card .button {
            margin-left: 0;
            align-self: center;
            margin-top: auto;
        }

        .info-cards-flex.myisakos .info-card .button + .button {
            margin-top: 12px;
        }

        .info-cards-flex .info-card input[type="text"], .info-cards-flex .info-card input[type="email"] {
            background-color: var(--white);
        }

.small-info-cards-flex {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}

.small-info-cards-flex .info-card {
    background-color: var(--bg-lightblue);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    width: 220px;
    height: auto;
    padding: 16px 16px;
    align-items: center;
}

    .small-info-cards-flex .info-card h3 {
        font-size: 24px;
        font-weight: 500;
        color: var(--bg-blue);
        margin: 0;
        margin-top: 20px;
    }

    .small-info-cards-flex .info-card h4 {
        font-size: 18px;
        font-weight: 500;
        color: var(--deep-blue);
        margin: 0;
        margin-top: 10px;
    }

    .small-info-cards-flex .info-card p {
        font-weight: 400;
        font-size: 16px;
        color: var(--text-dark);
        margin: 0;
        margin-top: 20px;
        text-align: left;
        line-height: 1.2;
    }

    .home-cards-flex {
        max-width: var(--mini-container);
        margin: 80px auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 80px;
    }

        .home-cards-flex .info-card {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding: 24px 24px 32px;
            background-color: var(--bg-lightblue);
            border-radius: 16px;
            height: auto;
            position: relative;
            align-items: center;
        }

            .home-cards-flex .info-card img {
                object-fit: cover;
                border-radius: 8px;
                width: 100%;
            }

            .home-cards-flex .info-card h3 {
                font-size: 24px;
                font-weight: 500;
                color: var(--deep-blue);
                margin: 0;
            }

            .home-cards-flex .info-card p {
                color: var(--text-dark);
                font-size: 16px;
                font-weight: 400;
                margin: 0;
                margin-bottom: 32px;
            }

            .home-cards-flex .info-card a {
                width: fit-content;
            }

        .home-cards-flex .info-card a.button {
            text-align: center;
            display:inline-block;
            position: absolute;
            bottom: 12px;
        }

@media (max-width:1024px) {
    .home-cards-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 24px;
        margin-top: 24px;
        padding: 0 32px;
    }

        .home-cards-flex .info-card {
            justify-self: center;
            max-width: 350px;
        }
}

@media (max-width:640px) {
    .home-cards-flex {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 24px;
        margin-top: 24px;
        align-items: center;
        padding: 0 32px;
    }

        .home-cards-flex .info-card {
           
            padding: 24px 24px 32px;
        }
}

    .small-blue-cards-flex {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 36px;
        align-items: center;
        max-width: var(--partials-container);
        margin: 40px auto 40px auto;
    }

        .small-blue-cards-flex .info-card {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;
            background: var(--bg-blue);
            padding: 40px 24px 40px;
            border-radius: 16px;
        }

            .small-blue-cards-flex .info-card img {
                object-fit: cover;
                border-radius: 8px;
                max-width: 100px;
            }

            .small-blue-cards-flex .info-card h3 {
                font-size: 32px;
                font-weight: 500;
                color: var(--white);
                margin: 0;
            }

            .small-blue-cards-flex .info-card p {
                font-size: 16px;
                font-weight: 400;
                color: var(--white);
                margin: 0;
                margin-top: auto;
                line-height: 1.2;
            }

    @media (max-width:1024px) {
        .small-blue-cards-flex {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            padding: 16px 12px 16px;
            margin: 0 auto 20px;
        }

            .small-blue-cards-flex .info-card h4 {
                font-size: 16px;
            }
    }

.blue-cards-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    margin-bottom: 40px;
}

        .blue-cards-flex .info-card {
            display: flex;
            flex-direction: column;
            max-width: 280px;
            gap: 20px;
            text-align: left;
            background: linear-gradient(var(--deep-blue), var(--deeper-blue));
            padding: 40px 24px 40px;
            border-radius: 16px;
        }

            .blue-cards-flex .info-card h3 {
                font-size: 32px;
                font-weight: 500;
                color: var(--white);
                margin: 0;
            }

                .blue-cards-flex .info-card h3 a {
                    color: var(--white);
                }

            .blue-cards-flex .info-card p {
                font-size: 16px;
                font-weight: 400;
                color: var(--white);
                margin: 0;
                margin-top: auto;
                line-height: 1.2;
            }

            .blue-cards-flex .info-card .separator {
                width: 80%;
                height: 1px;
                background-color: var(--white);
            }

    @media (max-width: 1024px) {
        .blue-cards-flex {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
    }



    /* Headshot Cards */
    .headshot-cards-flex {
        display: flex;
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

        .headshot-cards-flex .headshot-card {
            /*background-color: var(--bg-lightblue);*/
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            width: 330px;
            height: auto;
            padding: 40px 16px;
            align-items: center;
        }

            .headshot-cards-flex .headshot-card img {
                border-color: #AFAFAF;
                border-width: 2px;
                border-style: solid;
                border-radius: 12px;
                width: 160px;
                height: 200px;
            }

            .headshot-cards-flex .headshot-card h4 {
                font-size: 20px;
                font-weight: 500;
                color: var(--deep-blue);
                margin: 0;
                margin-top: 10px;
                text-align: center;
            }

            .headshot-cards-flex .headshot-card p {
                font-weight: 400;
                font-size: 16px;
                color: var(--text-dark);
                margin: 0;
                margin-top: 20px;
                text-align: center;
                line-height: 1.2;
            }

    /* Full Width Cards */

    .full-width-card {
        max-width: var(--mini-container);
        margin: 60px auto 40px;
        border-radius: 16px;
        background-color: var(--white);
        display: flex;
    }

section.background-blue .full-width-card:first-child, section.transparent .full-width-card:first-child {
    margin-top: 0;
}

.full-width-card.light {
    background-color: var(--light-grey);
}

        .full-width-card.reverse {
            background-color: var(--bg-blue);
        }

section.waves .full-width-card {
    background-color: transparent;
}

.full-width-card img {
    max-width: 478px;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

    .memorial .full-width-card img {
        margin-top: 32px;
        width: 250px;
        height: auto;
    }

    .society .full-width-card img {
        flex-basis: 50%;
        max-width: 400px;
        object-fit: scale-down;
        margin-top: 16px;
        margin-bottom: 16px;
        height: 250px;
    }

.awards .full-width-card img {
    margin-top: 16px;
    margin-bottom: 16px;
    object-fit: scale-down;
    height: 200px;
}

.books .full-width-card img {
    object-fit: scale-down;
    width: 200px;
}

.highlights .full-width-card img {
    width: 300px;
    object-fit: scale-down;
    max-width: none;
    height: none;
}

    .full-width-card .content {
        padding: 24px 64px 24px 64px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }

.awards .full-width-card .content {
    padding: 8px 64px 8px 64px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.society .full-width-card .content {
    flex-basis: 50%;
    padding: 24px 24px 24px 24px;
}

        .full-width-card .content h3 {
            font-size: 32px;
            font-weight: 500;
            color: var(--deep-blue);
            margin: 0 0 auto;
            text-align: center;
        }

.society .full-width-card .content h3 {
    margin-bottom:24px;
}

        .full-width-card .content h4 {
            font-size: 22px;
            font-weight: 500;
            color: var(--deep-blue);
            margin: 0;
        }

.full-width-card .content h4 a {
    font-weight: normal;
    color: var(--deep-blue);
}

        .full-width-card .content .paragraphs {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .full-width-card .content p {
            margin: 0;
        }

.awards .full-width-card .content p .year {
    font-size: 22px;
    font-weight: 500;
    color: var(--deep-blue);
}

.full-width-card .content a {
    width: fit-content;
}

.awards .full-width-card .content a {
    line-height: 26px;
    font-weight: 500;
    color: var(--text-anchor);
}

.society .full-width-card a {
    flex-basis: 50%;
    text-align: center;
    width: auto;
}

        .full-width-card .content h4 {
            font-size: 22px;
            font-weight: 500;
            color: var(--deep-blue);
            margin: 0;
        }

/*.full-width-card .content ul {
    list-style-type: none;
}

    .full-width-card .content ul ul {
        list-style-type: disc;
    }

    .full-width-card .content ul li :not(.uls) {
        background-color: var(--bg-lightblue);
        padding: 12px 24px 12px 44px;
        border-radius: 8px;
        margin: 12px 0 12px 0;
        font-size: 16px;
        font-weight: 400;
        color: var(--text-dark);
        line-height: 1.2;
        text-align: left;
    }

    .full-width-card .content ul ul li {
        padding: 6px 12px 6px 12px;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
        color: var(--text-dark);
        line-height: 1.2;
        text-align: left;
    }*/

        .full-width-card .content .uls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

            .full-width-card .content .uls ul {
                list-style-type: disc;
                padding-inline-start: 20px;
                margin: 0;
            }

                .full-width-card .content .uls ul li {
                    font-size: 16px;
                    font-weight: 400;
                    color: var(--text-dark);
                    line-height: 1.2;
                }

@media (max-width: 1024px) {
    .full-width-card {
        margin: 40px 8px 40px;
        display: flex;
        flex-direction: column;
    }

        .full-width-card ~ .full-width-card {
            flex-direction: column-reverse;
        }

        .full-width-card.AANA, .full-width-card.JSOA {
            flex-direction: column-reverse;
        }

        .full-width-card .content {
            padding: 24px 24px 24px 24px;
        }

            .full-width-card .content a {
                text-align:center;
                width: auto;
            }

        .full-width-card img {
            padding-left: 20px;
            padding-right: 20px;
            object-fit: scale-down;
            height: none;
            width: 100%;
        }

    .society .full-width-card img {
        margin: 16px auto;
    }

}

    .highlights-2-col-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

        .highlights-2-col-list ul {
            background-color: var(--bg-lightblue);
            padding: 12px 24px 12px 44px;
            border-radius: 8px;
            margin: 0
        }

        .highlights-2-col-list > div {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .highlights-2-col-list ul li {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.2;
            text-align: left;
        }

    .grid-padding {
        padding: 0.5rem 0.625rem 0.625rem;
    }

    .alt-background:nth-child(odd) {
        background-color: #f1f1f1;
    }

    .listheading {
        font-size: 1rem;
        color: var(--white);
        background-color: var(--deep-blue);
    }


    /* Home Page */

    #home-banner img {
        width: 100%;
    }

    .orthoevidence-chart-container {
        width: 100% !important;
        box-shadow: 0 0 0 !important;
    }

    h3 .orthoevidence-chart-title {
        margin: 0 0 24px;
        font-size: 32px;
        font-weight: 500;
        color: var(--deep-blue);
    }

    .orbit-previous, .orbit-next {
        background-color: var(--gold);
        color: var(--white);
        border-radius: 24px;
        margin-left: 6px;
        margin-right: 6px;
    }

@media (max-width: 1024px) {
    .orbit-previous, .orbit-next {
        margin-left: 2px;
        border-radius: 16px;
        padding: 4px;
        font-size: 12px;
    }
}

        /* ABOUT SECTION */
        .committee_term {
            white-space: nowrap;
        }

        .committee_charges > ul > li {
            list-style-type: none;
            font-weight: bold;
        }

            .committee_charges > ul > li > ul > li {
                list-style-type: disc;
                font-weight: normal;
            }

        .Memorials img {
            float: left;
            padding-right: 10px;
            margin-bottom: 1.25rem;
            padding-left: 10px;
        }

        @media only screen and (max-width: 40em) {

            .Memorials img {
                padding-left: 0;
                margin-bottom: .25rem;
            }
        }

        /* FOOTER */

        footer {
            background: linear-gradient(var(--deep-blue), var(--deeper-blue));
        }

            footer .footer-top {
                max-width: var(--partials-container);
                margin: 0 auto;
                padding: 30px 16px;
                display: flex;
                justify-content: space-between;
                flex-direction: row;
            }

                footer .footer-top .col-left {
                    display: flex;
                    flex-direction: column;
                    gap: 42px;
                }

                    footer .footer-top .col-left img {
                        width: 262px;
                    }

                    footer .footer-top .col-left .legal {
                        display: flex;
                        gap: 42px;
                    }

                        footer .footer-top .col-left .legal a {
                            font-size: 16px;
                            font-weight: 400;
                            color: var(--white);
                            text-decoration: none;
                        }

                footer .footer-top .col-right p {
                    color: var(--white);
                    font-size: 22px;
                    font-weight: 500;
                }

                footer .footer-top .col-right {
                    width: 100%;
                    max-width: 500px;
                }

                    footer .footer-top .col-right .input-group {
                        position: relative;
                        margin-bottom: 0;
                    }

                    footer .footer-top .col-right input[type="email"] {
                        width: calc(100% - 32px);
                        border-radius: 4px;
                        background-color: var(--bg-lightblue);
                        border: none;
                        color: var(--deep-blue);
                        font-size: 16px;
                        padding: 12px 16px;
                    }

                        footer .footer-top .col-right input[type="email"]::placeholder {
                            color: var(--deep-blue);
                        }

                    footer .footer-top .col-right .button {
                        position: absolute;
                        top: 0;
                        right: 0;
                        background-color: var(--bg-blue);
                        color: var(--deep-blue);
                        border: none;
                        border-radius: 4px;
                        font-size: 16px;
                        font-weight: 400;
                        padding: 11px 16px;
                        line-height: 1.05;
                    }

            /*footer .footer-bottom {
                background-color: var(--gold);
            }*/

                footer .footer-bottom .container {
                    max-width: var(--partials-container);
                    margin: 0 auto;
                    padding: 16px 16px;
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                }

                    footer .footer-bottom .container .col-right {
                        display: flex;
                        flex-direction: row;
                        gap: 128px;
                        align-items: center;
                    }

                        footer .footer-bottom .container .col-right .button {
                            background-color: var(--white);
                            padding: 10px 16px 8px;
                            margin-bottom: 0;
                            color: var(--deep-blue);
                            text-decoration: none;
                            border-radius: 8px;
                            font-size: 18px;
                            font-weight: 400;
                            line-height: 1;
                        }

                        footer .footer-bottom .container .col-right .socials {
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            gap: 8px;
                        }

                        footer .footer-bottom .container .col-right .secondary-button {
                            color: var(--deep-blue);
                            font-size: 20px;
                            display: inline-block;
                            width: 36px;
                            height: 36px;
                            -moz-border-radius: 18px;
                            -webkit-border-radius: 18px;
                            -ms-border-radius: 18px;
                            border-radius: 18px;
                            text-align: center;
                            line-height: 36px;
                            background: var(--white);
                            transition: all 0.5s ease;
                            -webkit-transition: all 0.5s ease;
                        }

                            footer .footer-bottom .container .col-right .secondary-button:hover {
                                color: var(--gold);
                            }


                    footer .footer-bottom .container span {
                        color: var(--white);
                    }

        @media (max-width: 1024px) {
            footer .footer-bottom .container {
                padding: 32px;
                flex-direction: column-reverse;
                justify-content: space-between;
                align-items: center;
                gap: 32px;
            }

                footer .footer-bottom .container .col-right {
                    flex-direction: column;
                    gap: 32px;
                    align-items: flex-start;
                    width: 100%;
                }

            footer .footer-top .col-left {
                display: flex;
                flex-direction: column;
                gap: 42px;
            }

                footer .footer-top .col-left .legal {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                }

            footer .footer-top {
                padding: 32px;
                flex-direction: column;
                gap: 32px;
            }
        }


        /* Website Ads */

        #mvLeaderboard img {
            height: auto;
            max-width: 100%;
        }

        .banner-ad {
            padding-top:32px;
            background-color: var(--white);
            width: 100%;
        }

        #sticky-bottom-leadeboard {
            opacity: 1;
        }