:root {
    --color-main-navy: #002856;
    --color-main-teal: #0079a5;
    --color-accent-cornflower: #94c1d1;
    --color-accent-gunmental: #5e7989;
    --color-accent-stormy: #3a5569;
    --color-accent-deep: #1f303f;
    --color-accent-white: #ffffff;
    --color-accent-sand: #f0e3c2;
    --color-accent-orange: #ebc470;
    --color-accent-brown: #b18043;
    --color-accent-seafoam: #aeced4;
    --color-accent-viridian: #6e9a8b;
    --color-accent-forest: #44726d;
    --color-accent-seaweed: #526969;
}

body {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    font-family: "freight-sans-pro", sans-serif;
    font-variant-numeric: lining-nums;
    font-weight: 400;
    color: var(--color-main-navy);
    overflow-x: clip;
}

h1 {
    font-size: 44px;
    line-height: 48px;
    letter-spacing: 0.02em;
    font-family: "freight-display-pro", serif;
    font-variant-numeric: oldstyle-nums;
    font-weight: 300;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.02em;
    font-family: "freight-display-pro", serif;
    font-variant-numeric: oldstyle-nums;
    font-weight: 300;
}

h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.02em;
    font-family: "freight-display-pro", serif;
    font-variant-numeric: oldstyle-nums;
    font-weight: 400;
}

h4 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-family: "freight-sans-pro", sans-serif;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-family: "freight-sans-pro", sans-serif;
    font-weight: 400;
}

small {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.02em;
}

/* Re-enforce number alignment */
.font-\[\'freight-sans-pro\'\] {
    font-variant-numeric: lining-nums;
}

.font-\[\'freight-display-pro\'\] {
    font-variant-numeric: oldstyle-nums;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 72px;
        line-height: 72px;
    }

    h2 {
        font-size: 44px;
        line-height: 48px;
    }

    h3 {
        font-size: 32px;
        line-height: 36px;
        font-weight: 300;
    }

    h4 {
        font-size: 24px;
        line-height: 28px;
        font-family: "freight-display-pro", serif;
        font-variant-numeric: oldstyle-nums;
    }
}

.wp-site-blocks,
.main-col {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 980px;
}

.wp-site-blocks {
    overflow-y: clip;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.wp-site-blocks > footer {
    margin-top: auto;
}

/* This full width breakout implementation sourced from https://css-tricks.com/full-width-containers-limited-width-parents/ */
.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

@media (min-width: 1024px) {
    .main-col {
        width: 950px;
        padding-left: 0;
        padding-right: 0;
    }

    .lg\:alignfull {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
}

@keyframes strokeAnimate {
    from {
        stroke-dashoffset: 1.3;
    }

    to {
        stroke-dashoffset: 0;
    }
}

header.fixed-top {
    background-color: transparent;
    transition: background-color 500ms ease-out !important;
}

header.fixed-top.fixed-top-on-dark,
header.fixed-top.fixed-top-on-dark .mobile-menu-search-icon,
header.fixed-top.fixed-top-on-dark #mobile-menu-button {
    color: white;
}

header.fixed-top .fixed-top-hidden {
    opacity: 1;
}

header.fixed-top.fixed-top-on-dark .fixed-top-hidden {
    opacity: 0;
}

header.fixed-top.fixed-top-on-dark .fixed-top-block {
    opacity: 1;
}

header.fixed-top.fixed-top-with-hover,
header.fixed-top.fixed-top-with-hover .mobile-menu-search-icon,
header.fixed-top.fixed-top-with-hover #mobile-menu-button,
header.fixed-top.mobile-bg,
header.fixed-top.mobile-bg .mobile-menu-search-icon,
header.fixed-top.mobile-bg #mobile-menu-button,
header.fixed-top.mobile-bg nav {
    background-color: white;
    color: #002856;
    transition: color 500ms ease-out !important;
}

header.fixed-top.fixed-top-with-hover .fixed-top-hidden,
header.mobile-bg .fixed-top-hidden {
    opacity: 1 !important;
    transition-property: none !important;
}

header.fixed-top.fixed-top-with-hover .fixed-top-block,
header.mobile-bg .fixed-top-block {
    opacity: 0 !important;
    transition-property: none !important;
}

.main-nav .mega-menu-area li > a:hover {
    color: #0079A5;
}

/* make sure links in lists are styled like the rest on the site */
/* wrapped in .wp-block-post-content class to prevent it from affecting the header. */
.wp-block-post-content ul > li > a {
    color: #0079A5;
    cursor: pointer;
}

.scroll-container {
    --scrollbar-foreground: #0079A5;
    --scrollbar-background: transparent
    /* Foreground, Background */;
    scrollbar-color: var(--scrollbar-foreground) var(--scrollbar-background);
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(221,221,221,1) 40%, rgba(221,221,221,1) 80%, rgba(0,0,0,0) 100%);
}

.scroll-container::-webkit-scrollbar {
    height: 4px;

    /* Mostly for horizontal scrollbars */
    -webkit-appearance: none;
}

.scroll-container::-webkit-scrollbar-thumb {
    /* Foreground */
    background: var(--scrollbar-foreground);
}

.scroll-container::-webkit-scrollbar-track {
    /* Background */
    background: var(--scrollbar-background);
}

.wp-block-post-content p a {
    color: --color-main-teal;
    cursor: pointer;
}

.entry-content.wp-block-post-content {
    color: #002856;
}

.entry-content.wp-block-post-content p {
    margin-bottom: 24px;
}

.entry-content.wp-block-post-content p a {
    color: #0079a5;
}

.has-links a {
    color: #0079a5;
    transition: color 400ms;
}

.has-links a:hover {
    color: #11aadd;
}

.has-links a img[src*="svg"] {
    filter: invert(38%) sepia(23%) saturate(3291%) hue-rotate(163deg) brightness(88%) contrast(102%);
    -webkit-transition: -webkit-filter 400ms;
    transition: filter 400ms;
}

.has-links a:hover img[src*="svg"] {
    filter: invert(51%) sepia(90%) saturate(483%) hue-rotate(150deg) brightness(91%) contrast(93%);
}

.remove-last-margin div.wp-block-post-content :last-child {
    margin-bottom: 0;
}

.a2a_kit.addtoany_list {
    display: flex;
    align-items: center;
}

.a2a_kit.addtoany_list a {
    padding-left: 0;
    padding-right: 0;
}

.download-share-subscribe .a2a_kit {
    gap: 25px;
    justify-content: space-between;
}

.download-share-subscribe .a2a_kit a {
    flex-shrink: 0;
}

/* *
 * WordPress default body block styles */
.has-paragraphs p {
    margin-bottom: 24px;
}

.has-lists > ul,
.has-lists > ul ul,
.has-lists > ol,
.has-lists > ol ol,
.entry-content.wp-block-post-content > ul,
.entry-content.wp-block-post-content > ul ul,
.entry-content.wp-block-post-content > ol,
.entry-content.wp-block-post-content > ol ol {
    padding-left: 17px;
    margin-bottom: 24px;

    @media (min-width: 1024px) {
        gap: 25px;
    }
}

.has-lists > ul,
.has-lists > ul ul,
.entry-content.wp-block-post-content > ul,
.entry-content.wp-block-post-content > ul ul {
    list-style-type: disc;
}

.has-lists > ol,
.has-lists > ol ol,
.entry-content.wp-block-post-content > ol,
.entry-content.wp-block-post-content > ol ol {
    list-style-type: decimal;
}

.has-lists > ul ul,
.has-lists > ol ol,
.entry-content.wp-block-post-content > ul ul,
.entry-content.wp-block-post-content > ol ol {
    margin-top: 15px;
    margin-bottom: 0;
}

.has-lists > ul li,
.has-lists > ol li,
.entry-content.wp-block-post-content > ul li,
.entry-content.wp-block-post-content > ol li {
    margin-bottom: 15px;
}

.entry-content.wp-block-post-content > ul.is-style-od_list_two_column,
.entry-content.wp-block-post-content > ol.is-style-od_list_two_column {
    @media (min-width: 1024px) {
        columns: 2;
    }
}

.entry-content.wp-block-post-content > ul.is-style-od_list_three_column,
.entry-content.wp-block-post-content > ol.is-style-od_list_three_column {
    @media (min-width: 1024px) {
        columns: 3;
    }
}

header.fixed-top.fixed-top-on-dark .utility-nav a:hover {
    /* controls hover text color at very top of screen */
    color: white;
}

header.fixed-top.fixed-top-on-dark .utility-nav a::after {
    /* controls underline color on very top of screen */
    background-color: white;
}

header.fixed-top-on-dark .utility-nav a:hover {
    /* controls hover text color mid-page scroll */
    color: #002856;
}

/* stops nav elements from disappearing from mobile menu when scrolled all the way to the top */
ul#menu-utility {
    @media (max-width: 1280px) {
        color: #002856;
    }
}

.main-nav button {
    @media (max-width: 1280px) {
        color: #002856;
    }
}

/* make the "people" tab dark blue to prevent it from vanishing */
.main-nav span {
    @media (max-width: 1280px) {
        color: #002856;
    }
}

div.mega-menu-area a span {
    color: white;
}

/* improve mobile responsiveness on seminar listing archive */
section.seminar-listing-breakpoints-widths {
    width: 164px;
    margin-right: auto;
    margin-left: auto;

    @media (min-width: 400px) {
        width: 353px;
    }

    @media (min-width: 585px) {
        width: 538px;
    }

    @media (min-width: 775px) {
        width: 732px;
    }

    @media (min-width: 775px) {
        width: 100%;
    }
}

section.seminar-listing-breakpoints-widths div.loadmore-bar hr {
    @media (max-width: 400px) {
        display: none;
    }
}

section.seminar-listing-breakpoints-widths div.loadmore-bar button {
    @media (max-width: 400px) {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* Make utility navs on pages that are not home page blue instead of white so they don't vanish */
/* You can alternatively target only the home page header by header.fixed-top-on-dark */
header.wp-block-template-part a.utility-nav-conditional-styles {
    color: #002856;

    @media (max-width: 1280px) {
        color: #002856;
    }
}

header.wp-block-template-part a.utility-nav-conditional-styles:hover {
    @media (min-width: 1280px) {
        color: #002856;
    }
}

.close-menu-icon,
.mobile-menu-search-icon {
    @media (max-width: 1280px) {
        color: #002856;
    }
}

/* footer cutstom nav styles */
.custom-hover-underline {
    position: relative;
}

.home-page-social-icons svg {
    color: white;
}

.custom-hover-underline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease-in-out;

    /* Adjust the duration and timing function as needed */
}

.custom-hover-underline:hover::before {
    width: 100%;
}

div.wp-block-media-text {
    row-gap: 6px;
    column-gap: 75px;
}

div.wp-block-media-text .wp-block-media-text__content {
    padding: 0;
}

div.wp-block-media-text .wp-block-media-text__media {
    margin-bottom: 24px;
}

blockquote.wp-block-quote {
    padding: 0 10%;
    margin-bottom: 24px;
}

blockquote.wp-block-quote p:last-of-type {
    margin-bottom: 0;
}

.screen-border {
    border-style: solid;
    border-color: #272727;
    border-width: 16px;
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .is-style-od_subhead {
        width: 81.5%;
        font-size: 24px;
        line-height: 28px;
        font-family: 'freight-display-pro';
    }

    .is-style-od_eighty_percent {
        padding-right: 190px;
    }
}

.wp-block-buttons>.wp-block-button {
    display: inline-flex;
}

.wp-block-button,
.gform_wrapper button {
    /* group/button relative flex items-center active:bg-[#002856] bg-[#0079a5] cursor-pointer font-medium leading-6 px-[25px] py-[13px] rounded-[44px] text-sm text-white tracking-[0.15em] uppercase overflow-hidden */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0079a5;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.15em;
    padding: 13px 25px;
    border-radius: 44px;
    text-transform: uppercase;
    overflow: hidden;
    width: fit-content;
}

.wp-block-button .wp-block-button__link,
.gform_wrapper button .wp-block-button__link {
    padding: 0;
    background: transparent;
    z-index: 5;

    /* translate-x-[14px] group-hover/button:translate-x-0 transition-transform duration-[400ms] */
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    transform: translateX(14px);
}

.wp-block-button:hover .wp-block-button__link,
.gform_wrapper button:hover .wp-block-button__link {
    transform: translateX(0px);
}

.wp-block-button::before,
.gform_wrapper button::before {
    /* absolute inset-0 bg-[#11aadd] opacity-0 group-hover/button:opacity-100 transition-opacity duration-[400ms] group-active/button:hidden */
    content: " ";
    position: absolute;
    inset: 0px;
    background: #11aadd;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
}

.wp-block-button:hover::before,
.gform_wrapper button:hover::before {
    opacity: 1;
}

.wp-block-button .wp-block-button__link::before,
.gform_wrapper button .wp-block-button__link::before {
    position: absolute;
    inset: -45px;
    content: " ";
}

.wp-block-button::after,
.gform_wrapper button::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.5' height='14.1' viewBox='0 0 17.5 14.1'%3E%3Cpath d='M0.8,7.1h16l-6,6 M10.8,1.1l3,3' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/svg%3E");

    /* -translate-x-[14px] group-hover/button:translate-x-0 opacity-0 group-hover/button:opacity-100 transition-[opacity,transform] duration-[400ms] ml-3 w-[16px] */
    transform: translateX(-14px);
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    margin-left: 12px;
    width: 16px;
    line-height: 0;
    z-index: 5;
    display: block;
}

/* Reset WP styles */
.wp-block-button .wp-block-button__link.is-style-outline,
.wp-block-button.is-style-outline>.wp-block-button__link {
    border: 0;
    padding: 0;
}

.wp-block-button .wp-element-button,
.wp-block-button .wp-block-button__link {
    color: inherit;
}

.wp-block-button.is-style-outline {
    border: 1px solid #0079a5;
    background: white;
    color: #0079a5;
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    padding: 12px 24px;
}

.wp-block-button.is-style-outline:hover {
    color: white;
    border-color: #11aadd;
    background-color: #11aadd;
}

.wp-block-button.is-style-od_button_mail::after {
    content: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='22.1' height='17.5' viewBox='0 0 22.1 17.5'%3E%3Cpath d='M1.3,1.3L3,3 M20.8,1.3l-8.1,8.1c-0.9,0.9-2.3,0.9-3.2,0L5.9,5.9 M17.9,16.8h2.3c0.6,0,1.1-0.5,1.1-1.1V1.9c0-0.6-0.5-1.1-1.1-1.1H1.9c-0.6,0-1.1,0.5-1.1,1.1l0,0v13.7c0,0.6,0.5,1.1,1.1,1.1h11.4' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3C/path%3E%3C/svg%3E");
    transform: translateX(-17px);
    width: 22.1px;
}

.wp-block-button.is-style-od_button_mail:hover::after {
    transform: translateX(0px);
}

.wp-block-button.is-style-od_button_mail .wp-block-button__link {
    transform: translateX(17px);
}

.wp-block-button.is-style-od_button_mail:hover .wp-block-button__link {
    transform: translateX(0);
}

/* STYLE GRAVITY FORMS PASTED IN VIA GUTTENBERG EDITOR */
.gform_wrapper label {
    font-size: 14px;
    font-weight: 300 !important;
}

.gform_wrapper input {
    border-width: 0px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    padding-left: 0px !important;
}

.gform_wrapper select {
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    color: #0079A5;
    border-radius: 35px;
    padding-left: 25px !important;
    padding-right: 25px !important;
    padding-top: 17px !important;
    padding-bottom: 17px !important;
}

.gform_wrapper textarea {
    border-width: 0px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
}

/* 2-column modal form */
.gform_wrapper #gform_16 {
    columns: 2;
    column-gap: 10%;
    width: 126%;

    @media (max-width: 1024px) {
        columns: 1;
        width: 100%;
    }
}

#gform_submit_button_16 {
    width: 180px;
}

/* checkboxes */
.gform_wrapper .gchoice {
    margin-bottom: 20px;
}

.gform_wrapper .gchoice input {
    height: 25px;
    width: 25px;
    border-width: 2px !important;
    margin-right: 10px;
}

.gform_wrapper .gchoice label {
    font-size: 16px !important;
    font-weight: 400 !important;
}

.gform_legacy_markup_wrapper label.gfield_label {
    font-weight: 300;
}

.gform_wrapper input[type="checkbox"] {
    border-color: #DDDDDD;
    border-width: 1px;
    border-radius: 5px;
}

.gform_wrapper button {
    width: 100%;

    @media (min-width: 1024px) {
        width: 235px;
    }
}

/* contact us custom styles */
div#gform_fields_2 {
    grid-row-gap: 30px;
}

div#gform_fields_2 input::placeholder {
    /* Firefox */
    color: #AAAAAA;
    opacity: 1;
}

div#gform_fields_2 input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #AAAAAA;
}

textarea#input_2_8 {
    height: 170px;
}

/* alumni sign up form button positioning */
form#gform_4 div.gform_footer {
    position: static;

    @media (min-width: 640px) {
        width: 150px;
        position: absolute;
        left: 375px;
        bottom: 12px;
    }

    @media (min-width: 1024px) {
        width: 150px;
        position: absolute;
        left: 390px;
        bottom: 33px;
    }
}

/* MODAL STYLES */
.pum-content h2 {
    color: #002856;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 50px;

    @media (max-width: 1024px) {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 35px;
        margin-top: 20px !important;
    }
}

div#popmake-20658 h2 {
    width: 55% !important;

    @media (max-width: 1024px) {
        width: 100%;
    }
}

div.pum-content {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.pum-content label,
.pum-content .gfield_label {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #002856 !important;
}

@media only screen and (min-width: 1024px){
    #popmake-20658.pum-responsive.pum-responsive-medium {
        margin-left: -47% !important;
        width: 93% !important;
    }

    div.pum-content {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

div.pum-container {
    background-color: #ffffff !important;
}

/* shift submit button to right of captcha in rate structures modal on large screen sizes */
form#gform_21 button#gform_submit_button_21 {
    @media only screen and (min-width: 768px){
        width: 135px;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 67px;
        left: 360px;
    }

    @media only screen and (min-width: 1024px){
        width: 135px;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 87px;
        left: 400px;
    }
}

/* change size of textarea input for rate structures modal */
form#gform_21 textarea#input_21_6 {
    height: 41px;
}

/* modal data analytics submit button placement */
#popmake-23237.pum-container div#field_19_6 {
    position: relative;
}

@media only screen and (min-width: 768px){
    #popmake-23237.pum-container button#gform_submit_button_19 {
        width: 135px;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 67px;
        left: 360px;
    }
}

@media only screen and (min-width: 1024px){
    #popmake-23237.pum-container button#gform_submit_button_19 {
        width: 135px;
        position: absolute;
        top: auto;
        right: auto;
        bottom: 87px;
        left: 400px;
    }
}

/* modal fieldset margins for client portal form */
div#popmake-20658 div.gform_fields {
    grid-row-gap: 34px;
}

/* MODAL CLOSE BUTTON */
button.pum-close.popmake-close {
    background-color: #ffffff;
    font-size: 0px !important;
    line-height: 0px !important;
    width: 50px !important;
    height: 50px !important;
}

button.pum-close.popmake-close::after {
    content: url("data:image/svg+xml, %3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18' height='18' viewBox='0 0 16 16'%3E%3Cpath d='M.889,16A.889.889,0,0,1,.26,14.483l7.1-7.1.012-.012.012-.012,7.1-7.1A.889.889,0,0,1,15.74,1.517L9.258,8l6.483,6.483a.889.889,0,0,1-1.258,1.257L8,9.257,1.517,15.74A.886.886,0,0,1,.889,16M4.444,5.333a.886.886,0,0,1-.628-.26L.26,1.517A.889.889,0,0,1,1.517.26L5.073,3.816a.889.889,0,0,1-.628,1.517' fill='%23002856'/%3E%3C/svg%3E");
    background-color: #ffffff !important;
    font-size: 0px;
    width: 16px;
    line-height: 0;
    z-index: 5;
    display: block;
}

.pum-theme-14453 .pum-content + .pum-close,
.pum-theme-default-theme .pum-content + .pum-close {
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 0px;
    bottom: auto;
    top: 0px;
    padding: 8px;
    color: #002586;
    font-family: inherit;
    font-weight: 400;
    font-size: 12px;
    font-style: inherit;
    line-height: 36px;
    border: 1px none #ffffff;
    border-radius: 0px;

    /* use to override default box shadow to remove box shadow effect */
    box-shadow: 0px 0px 0px 0px rgba( 2, 2, 2, 0.23 ) !important;
    text-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.23 );
    background-color: #ffffff !important;
}

.wp-block-button:hover::after,
.gform_wrapper button:hover::after {
    transform: translateX(0px);
    opacity: 1;
}

/* TABLE STYLES FOR PRIVACY POLICY PAGE */
.wp-block-table tr {
    color: #ffffff;
    background-color: #002856;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-family: "freight-display-pro", serif;
}

.wp-block-table th {
    color: #ffffff;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    text-align: left;
    padding-left: 16px;
}

tbody td {
    font-family: "freight-sans-pro", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    border-color: #dddddd;
    border-width: 1px;
}

/* Alternating column table styles */
tbody td:nth-child(odd) {
    background-color: #fbfbfb;
    color: #002856;
}

tbody td:nth-child(even) {
    background-color: #f5f5f5;
    color: #002856;
}

tbody a {
    color: #0079A5;
}

/* Alter table styles on small screens */
@media (max-width: 1024px) {
    /* Alternating column table styles */
    .wp-block-table th:first-child,
    tbody td:first-child {
        font-weight: 700;
        font-size: 20px;
        font-family: "freight-sans-pro", sans-serif;
        text-align: right;
        padding-right: 16px;
    }

    .wp-block-table th:not(:first-child) {
        font-weight: 400;
        font-family: "freight-sans-pro", sans-serif;
        color: #dddddd;
        font-size: 16px;
        padding-left: 16px;
        text-align: left;
    }

    tbody td {
        border-left-width: 0px;
        border-right-width: 0px;
        background-color: #fbfbfb;
    }

    tbody td:nth-child(odd) {
        background-color: #fbfbfb;
        color: #002856;
        text-align: right;
    }

    tbody td:nth-child(even) {
        background-color: #fbfbfb;
        color: #002856;
        text-align: left;
    }

    table {
        width: 100%;
    }
}

/* SWPIER STYLES FOR CAROUSELS */
div.swiper-scrollbar-drag {
    cursor: pointer;
    color: #0079A5 !important;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0;
    height: 40px;
}

.swiper-scrollbar-drag {
    background: none;
    color: #0079A5 !important;
    background-color: #0079A5 !important;
    border-color: #0079A5;
    border-style: solid;
    border-width: 1px;
}

.swiper.main-col {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 1024px) {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Optional styles to add a circle to the swiper scrollbar */
/* .swiper-scrollbar-drag:after{
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: blue;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -20px;
} */
div.swiper-scrollbar div.swiper-scrollbar-drag {
    cursor: pointer;
}

.swiper .swiper-button-disabled {
    color: #dddddd;
}

/* Make Mobile Menu Scroll */
div.mega-menu-area {
    overflow: auto;
    overscroll-behavior: contain;
    max-height: calc(95vh - 20px);
    max-width: 100vw;
    background-color: white;
}

div.scrollable-mobile-menu-container {
    overflow: auto;
    overscroll-behavior: contain;
    max-width: 100vw;
    -ms-overflow-style: none;

    /* Internet Explorer 10+ */
    scrollbar-width: none;

    /* Firefox */
}

/* selector applies only when hamburger menu is open */
header.mobile-bg div.mega-menu-area {
    /* give some padding so that small screens do not cut off content */
    padding-bottom: 100px;
}

header.mobile-bg div.scrollable-mobile-menu-container {
    height: 100vh;

    /* give some padding so that small screens do not cut off content */
    padding-bottom: 100px;
}

div.scrollable-mobile-menu-container::-webkit-scrollbar {
    display: none;

    /* Safari and Chrome */
}

section.data-analytics-cta-block div.h-full {
    /* Make data analytics images scale with image by removing set height */
    height: 100%;
}

section.data-analytics-cta-block h1 {
    margin-bottom: 0px;

    /* Make extra space under headline on data analytics page */
    @media (min-width: 1024px) {
        margin-bottom: 30px;
    }
}

section.data-analytics-cta-block div.cta-block-img-container {
    @media (max-width: 1024px) {
        margin-bottom: -16px;
        margin-top: -16px;
    }
}

/* allow for special placement of headding on DEI page */
section.dei-hero h2 {
    display: block;

    /* disappears below md breakpoint */
    @media (max-width: 768px) {
        display: none;
    }
}

/* Fix for item count on multiple type main search */
@media (max-width: 1023px) {
    .showing-multiple-types.type-od_podcast article:nth-child(3),
    .showing-multiple-types.type-od_seminar article:nth-child(3) {
        display: none;
    }

    .showing-multiple-types.type-od_practice_area article:nth-child(5),
    .showing-multiple-types.type-od_person article:nth-child(5),
    .showing-multiple-types.type-other article:nth-child(5) {
        display: none;
    }
}

/* show all attorneys per office when view all is clicked */
/* allows for special rendering based on screen size */
.attorney-flexbox article {
    display: none;
}

.attorney-flexbox article:nth-child(-n+6) {
    display: flex;
}

.attorney-flexbox.show-all article {
    display: flex;
}

@media (min-width: 768px) {
    .attorney-flexbox article:nth-child(-n+9) {
        display: flex;
    }

    .attorney-flexbox.show-all article {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .attorney-flexbox article:nth-child(-n+15) {
        display: flex;
    }

    .attorney-flexbox.show-all article {
        display: flex;
    }
}

/* show all attorneys per practice area when view all is clicked */
.pi-people-listing-area article {
    display: none;
}

.pi-people-listing-area article:nth-child(-n+10) {
    display: flex;
}

.pi-people-listing-area.show-all article {
    display: flex;
}

/* Removes mx auto from topics-loadmore cards so that they can be left-aligned */
#upcoming-webinars-tab article {
    @media (min-width: 1024px) {
        margin-left: 0px;
        margin-right: 0px;
    }
}

#archived-webinars-tab article {
    @media (min-width: 1024px) {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.blog-topics-container article {
    @media (min-width: 1024px) {
        margin-left: 0px;
        margin-right: 0px;
    }
}

/* dei people general card wrapper layout adjusment */
.dei-people-card-wrapper > div {
    row-gap: 25px;
    column-gap: 50px;
}

/* attorney print options modifaction to alignful */
.alignfull-atty-print-options {
    width: 100vw;
    position: fixed;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* makes the font size 14px only on the single_od-practice-area pages */
div.individual-practice-listing-area a.flex {
    font-size: 14px;
}

/* position uk-sra-logo */
div.sra-logo-uk-only {
    position: relative;
    bottom: 20px;

    /* uncomment below to get block to appear. Should only appear on the UK site */
    /* display: block; */
}

@media (min-width: 1280px) {
    div.sra-logo-uk-only {
        right: 120px;
    }
}