/* VARS */
:root {
    --header-height: 75px;

    /* --page-width: 1560px; */
    --page-width: 1000px;
    --page-width--s: 900px;
    --page-width--m: 1200px;
    --page-width--l: 1280px;
    --primary: #00326d;
    --primary-trans: #00336de2;
    --secondary: #f76528;
    --tertiary: #67e4f9;
    --accent: #016b4f;
    --bg-light: #f7f7f7;
    --white-trans: #ffffffe7;
    --grey: rgb(220, 220, 220);
    --transition: 0.3s;
    --section-pad: 100px 20px;
    --space-xs: 8px;
    --space-s: 16px;
    --space-m: 24px;
    --space-l: calc(1.5rem + ((1vw - 3.6px) * 0.5128));
    --space-xl: calc(3rem + ((1vw - 3.6px) * 1.0256));
    --space-xxl: calc(3.75rem + ((1vw - 3.6px) * 2.5641));
    --text-s: 14px;
    --text-m: calc(1rem + ((1vw - 3.6px) * 0.1282));
    --text-l: calc(1.125rem + ((1vw - 3.6px) * 0.3846));
    --text-xl: calc(1.5rem + ((1vw - 3.6px) * 1.0256));
    --text-xxl: clamp(30px, calc(1.875rem + ((1vw - 3.6px) * 2.5)), 56px);
    --width--s: 380px;
}

/* VARS END */
/* GLOBAL */
h1,
h2,
h3,
h4,
h5 {
    line-height: 1.1;
    margin: 0;
    font-family: "futura-pt", Arial, sans-serif;
    margin-bottom: 0.5em;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

img,
picture,
svg,
video {
    max-width: 100%;
    display: block;
    height: auto;
}

p {
    line-height: 1.6;
    font-size: var(--text-m);
    color: var(--primary);
}

a {
    color: var(--secondary);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font-family: "futura-pt", Arial, sans-serif;
}

.bg-white {
    background-color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-light {
    background-color: var(--bg-light);
}

.mb-xs {
    margin-bottom: var(--space-xs);
}

.mb-s {
    margin-bottom: var(--space-s);
}

.mb-m {
    margin-bottom: var(--space-m);
}

.mb-l {
    margin-bottom: var(--space-l);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mb-xxl {
    margin-bottom: var(--space-xxl);
}

.mt-xs {
    margin-top: var(--space-xs);
}

.mt-s {
    margin-top: var(--space-s);
}

.mt-m {
    margin-top: var(--space-m);
}

.mt-l {
    margin-top: var(--space-l);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mt-xxl {
    margin-top: var(--space-xxl);
}

* {
    box-sizing: border-box;
}

.flex--col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.flex--col .btn {
    margin-top: var(--space-l);
}

.flex--row {
    display: flex;
    flex-direction: row;
}

.gap--s {
    gap: var(--space-s);
}

.gap--m {
    gap: var(--space-m);
}

.gap--l {
    gap: var(--space-l);
}

.gap--xl {
    gap: var(--space-xl);
}

.gap--xxl {
    gap: var(--space-xxl);
}

/* GLOBAL END */
/* BUTTONS */
.btn {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: "futura-pt", Arial, sans-serif;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: white;
}

.btn--primary:hover {
    background: var(--grey);
    color: var(--primary);
}

.btn--secondary {
    background: var(--secondary);
    color: white;
}

.btn--secondary:hover {
    background: var(--accent);
}

.btn--white {
    background: white;
    color: var(--primary);
}

.btn--white:hover {
    background: var(--grey);
}

.header__logo-link {
    width: 280px;
}

.header__logo {
    width: 100%;
}

.header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    z-index: 30;
    transition: var(--transition);
}

.homepage-hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    padding-top: var(--header-height);
}

.homepage-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

.homepage-hero__content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: var(--page-width--s);
    gap: 40px;
    color: white;
    height: 100%;
    position: relative;
}

.homepage-hero__h1 {
    font-size: var(--text-xxl);
    font-weight: 600;
    margin: 0;
}

.text-shadow {
    text-shadow: 1px 1px 4px rgb(0 0 0 / 80%);
}

.homepage-hero__h2 {
    font-size: var(--text-l);
    font-weight: 500;
}

.scroll-icon {
    background: rgba(0, 50, 109, 0.85);
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transition: var(--transition);
    position: absolute;
    bottom: 0;
}

.scroll-icon__icon {
    width: 20px;
    margin-top: 4px;
}

.section {
    padding: var(--section-pad);
    position: relative;
}

.section__inner {
    width: 100%;
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section__inner--s {
    max-width: var(--page-width--s);
}

.section__inner--l {
    max-width: var(--page-width--l);
}

.section--pad-s {
    padding-top: var(--space-s);
    padding-bottom: var(--space-s);
}

.section--pad-m {
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
}

.section--pad-l {
}

.intro-box {
    width: 100%;
    max-width: var(--page-width--s);
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--secondary);
    padding: var(--space-xl);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    position: relative;
}

.intro-box__title {
    font-size: var(--text-xl);
    margin: 0;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: var(--space-s);
    font-size: calc(50px - (0.021em * var(--length))) !important;
    font-weight: 600;
    white-space: nowrap;
}

.intro-box__text,
.intro-box__text p {
    font-size: var(--text-l);
}

.intro-box__image {
    width: 100%;
    max-width: 100px;
    background: var(--primary);
    padding: var(--space-xs);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,50%) !important;
    max-height: 70px;
    object-fit: contain;
}

.section__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

.grid--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-xl);
}

.heading2 {
    font-size: var(--text-xxl);
    font-weight: 600;
    margin: 0;
}

.text--s {
    font-size: var(--text-s);
}

.text--m {
    font-size: var(--text-m);
}

.text--l {
    font-size: var(--text-l);
}

.text--xl {
    font-size: var(--text-xl);
}

.text--xxl {
    font-size: var(--text-xxl);
}

.text--left {
    text-align: left;
}

.text--center {
    text-align: center;
}

.text--right {
    text-align: right;
}

.width--s {
    width: 100%;
    max-width: var(--width--s);
}

.features-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-l);
}

.features-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-m);
}

.features-item__image {
    width: 130px;
    flex-shrink: 0;
}

.features-item__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.features-item__number {
    font-size: var(--text-xxl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin: 0 !important;
}

.features-item__small-text {
    font-size: var(--text-l);
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.scroll-icon:hover {
    background: var(--primary);
}

@media (max-width:991px) {
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

.text--white {
    color: white;
}

.text--primary {
    color: var(--primary);
}

.text--secondary {
    color: var(--secondary);
}

.text--tertiary {
    color: var(--tertiary);
}

.text--accent {
    color: var(--accent);
}

.text--white p,
.text--white h1,
.text--white h2,
.text--white h3 {
    color: white;
}

.text--primary p,
.text--primary h1,
.text--primary h2,
.text--primary h3 {
    color: var(--primary);
}

.text--secondary p,
.text--secondary h1,
.text--secondary h2,
.text--secondary h3 {
    color: var(--secondary);
}

.text--tertiary p,
.text--tertiary h1,
.text--tertiary h2,
.text--tertiary h3 {
    color: var(--tertiary);
}

.text--accent p,
.text--accent h1,
.text--accent h2,
.text--accent h3 {
    color: var(--accent);
}

.grid--3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: var(--space-xl);
}

.link--button {
    color: white;
    border-bottom: 1px solid var(--secondary);
    padding: var(--space-m);
    font-size: var(--text-m);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

@media (max-width:991px) {
    .grid--3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:479px) {
    .grid--3 {
        grid-template-columns: 1fr;
    }
}

.link--button:hover {
    background: var(--secondary);
}

.shortcode-wrapper {
}

@media (max-width:479px) {
    .features-item__image {
        width: 90px;
    }
}

.footer {
    background: var(--bg-light);
    padding: var(--space-l) 20px;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-s);
    width: 100%;
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
}

.footer__logo {
    width: 280px;
}

.footer__right {
}

.footer__text {
    font-size: var(--text-s);
}

@media (max-width:767px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.section__overlay--light-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.75) 80%);
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: var(--page-width--s);
    gap: 40px;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: calc(var(--header-height) + var(--space-l));
}

@media (max-width:767px) {
    .page-hero {
        min-height: 1px;
    }
}

.section__sidebar-container {
    width: 100%;

    /* max-width: var(--page-width--m); */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--space-xl);
    margin-left: auto;
    margin-right: auto;
}

.sidebar-container__sidebar {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar-container__content {
    flex-grow: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    transform: none !important;
}

.sidebar-container__content p {
    margin-bottom: 1em;
}

.sidebar-container__content figure {
    margin-top: 2em;
    margin-bottom: 2em;
}

.sidebar__link {
    text-decoration: none;
    border-bottom: 1px solid var(--grey);
    width: 100%;
    padding: var(--space-m);
    transition: var(--transition);
    color: var(--primary);
}

.sidebar-container__text {
    margin: 0;
}

.sidebar__link:hover {
    background: var(--grey);
}

@media (max-width:991px) {
    .section__sidebar-container {
        flex-direction: column-reverse;
    }

    .sidebar-container__sidebar {
        max-width: 100%;
    }
}

.floating-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: 0.6s;
    opacity: 0;
}

.floating-wrapper--show {
    transform: translate(0%, -50%);
    opacity: 1;
}

.floating-socials {
    width: 38px;
    background: var(--secondary);
}

.floating-socials__icon-link {
    background: var(--secondary);
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 38px;
}

.floating-socials__icon {
    max-width: 15px;
    max-height: 15px;
}

.floating-socials__icon-link:hover {
    background: var(--primary);
}

@media (max-width:991px) {
    .section__overlay--light-gradient {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.75) 80%);
    }
}

.multilinks-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: var(--space-s);
    padding: var(--space-xl) 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.multilinks-container__link {
    background: var(--secondary);
    padding: var(--space-l);
    color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 110px;
}

.multilinks-container__link-text {
}

.multilinks-container__link:hover {
    background: var(--accent);
}

@media (max-width:1279px) {
    .multilinks-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width:767px) {
    .multilinks-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:479px) {
    .multilinks-container {
        grid-template-columns: 1fr;
    }
}

.post-header {
    background: var(--primary);
    padding: var(--space-l);
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.post-header__text {
    color: white;
    text-transform: uppercase;
}

.post-title {
    font-size: var(--text-xl);
    color: var(--primary);
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.post-content-wrapper {
}

.post-content {
    margin-bottom: var(--space-xl);
}

.post-content ul,
.post-content ol {
    padding-left: 2em;
}

.post-content ul li,
.post-content ol li {
    margin: 6px 0;
    color: var(--primary);
    font-size: var(--text-m);
}

.post-content h2,
h3,
h4 {
    color: var(--primary);
}

.post-content h2 {
    font-size: var(--text-xl);
}

.post-content h3 {
    font-size: var(--text-l);
}

.post-author-box {
    background: var(--bg-light);
    padding: var(--space-l);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-m);
    margin-bottom: var(--space-xl);
}

.post-about-author {
    color: var(--primary);
}

/* POST CONTENT STYLES */
.post-content-wrapper p {
    margin: 1em 0;
}

.post-content-wrapper a {
    color: var(--secondary);
    text-decoration: none;
}

.post-content-wrapper img {
    margin: 2em auto;
}

.post-content-wrapper hr {
    margin: 2em 0;
}

/* POST CONTENT STYLES END */
.post-about-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);
}

.post-author-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.post-author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-author-description {
}

@media (max-width:767px) {
    .post-about-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.post-related-posts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-m);
}

.post-related-post {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid var(--primary);
}

.post-related-post__featured-image {
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition);
    width: 100%;
}

.post-related-post__title {
    color: var(--secondary);
    font-size: var(--text-s);
}

.post-related-post__content-wrapper {
    padding: var(--space-s);
}

.post-related-post__featured-image-wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
}

.post-related-post:hover .post-related-post__featured-image {
    transform: scale(1.05);
}

@media (max-width:767px) {
    .post-related-posts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:479px) {
    .post-related-posts {
        grid-template-columns: 1fr;
    }
}

.post-share-links {
}

.post-share-links__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
}

.post-share-links__link {
    background: var(--bg-light);
    padding: var(--space-xs);
    transition: var(--transition);
}

.post-share-links__link:hover {
    background: var(--grey);
}

.post-share-links__icon {
    width: 16px;
}

.header__inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.header--scrolling {
    background: var(--white-trans);
}

/* GRAVITY FORMS CONTACT FORM */
.gfield_html {
    line-height: 1.6;
    font-size: var(--text-m);
    color: var(--primary);
}

.gform_heading {
    display: none;
}

body .gform_wrapper .gfield_label {
    color: var(--primary);
    font-weight: 600;
}

body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: var(--space-s);
}

.field_sublabel_below .ginput_complex.ginput_container label {
    margin-top: var(--space-s);
    color: var(--primary);
    text-transform: uppercase;
}

.gform_footer input.button {
    background: var(--primary);
    color: white;
    box-shadow: none;
    border: none;
    padding: var(--space-s) var(--space-m);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
}

.gform_footer input.button:hover {
    background: var(--grey);
    color: var(--primary);
}

@media (max-width: 899px) {
    #gform_fields_45 .gfield:nth-child(1) {
        grid-column: span 6;
    }

    #gform_fields_45 .gfield:nth-child(2) {
        grid-column: span 6;
    }

    #gform_fields_45 .gfield:nth-child(3) {
        grid-column: span 12;
    }
}

@media (max-width: 479px) {
    #gform_fields_45 .gfield:nth-child(1) {
        grid-column: span 12;
    }

    #gform_fields_45 .gfield:nth-child(2) {
        grid-column: span 12;
    }

    #gform_fields_45 .gfield:nth-child(3) {
        grid-column: span 12;
    }
}

/* GRAVITY FORMS CONTACT FORM END */
/* PUBLICATIONS FORM */
.email_download_link {
    padding: var(--space-l);
    background: var(--bg-light);
    display: inline-block;
}

.email_download_link p {
    margin: 0;
}

.email_download_link form span {
    color: var(--primary);
    font-weight: 600;
}

.email_download_link form input {
    padding: var(--space-s);
    margin-bottom: var(--space-s);
}

body .gform_legacy_markup_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    margin-top: var(--space-s);
    color: var(--primary);
    text-transform: uppercase;
}

.email_download_link form input.submit {
    background: var(--primary);
    color: white;
    box-shadow: none;
    border: none;
    padding: var(--space-s) var(--space-m);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
}

.email_download_link form input.submit:hover {
    background: var(--grey);
    color: var(--primary);
}

/* PUBLICATIONS FORM END */
.header__logo--scrolling {
    display: none;
}

.center--all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.archive-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

/* .post-type-archive-pecan-street-events .archive-container {
    grid-template-columns: 1fr 1fr;
} */
.archive-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--space-l);
    border: 1px solid var(--grey);
    gap: var(--space-s);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.archive-box__featured-image {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.archive-box__date {
    background: var(--secondary);
    color: white;
    padding: var(--space-xs) var(--space-s);
    flex-shrink: 0;
}

.event--past {
    background: rgb(172, 27, 27);
    color: white;
    padding: var(--space-xs) var(--space-s);
    position: absolute;
    bottom: 0;
    left: 0;
}

.archive-box__title {
    font-size: var(--text-l);
    color: var(--primary);
}

.post-type-archive-pecan-street-events .archive-box__title {
    color: var(--secondary);
    width: 100%;
    padding-bottom: 0.5em;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.archive-box__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.archive-box:hover {
    background: var(--bg-light);
}

.pagination-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: var(--text-m);
    gap: var(--space-s);
    justify-content: flex-start;
}

.pagination-wrapper p {
    margin: 0 !important;
}

.pagination-wrapper .disabled {
    display: none;
}

@media (max-width:991px) {
    .archive-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:767px) {
    .archive-container {
        grid-template-columns: 1fr;
    }

    .post-type-archive-pecan-street-events .archive-container {
        grid-template-columns: 1fr;
    }
}

.archive-box__date-wrapper {
    position: absolute;
    top: -18px;
    left: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.archive-box__image-wrapper {
    position: relative;
}

.past-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.section-newsletter {
    background-image: url('../img/Asset-2_worboys_work_page.png');
    background-repeat: no-repeat;
    background-position: 100% 120%;
}

/* SPLIDE SLIDER */
.splide {
    width: 100vw;
    max-width: min(var(--page-width--s), calc(100vw - 60px));
}

.splide__track {
    padding-bottom: 10px;
}

/* SPLIDE SLIDER END */
/* ANIMATIONS */
.a-fade-up {
    visibility: visible;
}

/* DISABLE ANIMATIONS ON MOBILE */
@media only screen and (max-width : 768px) {
    .a-fade-up {
        /* CSS transitions */
        visibility: visible;
        -o-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;

        /* CSS transforms */
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;

        /* CSS animations */
        -webkit-animation: none !important;
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ANIMATIONS END */
.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/solarpanels.jpg');
    z-index: 20;
    background-position: center bottom;
    transition: var(--transition);
    transform: translateY(-100%);
    overflow: auto;
    background-size: cover;
}

.menu-container__inner {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
}

.menu-container__column {
    padding: var(--space-xxl) var(--space-l);
    padding-top: 35%;
}

.menu-container__column-title {
    font-size: var(--text-l);
    color: var(--secondary);
    margin-bottom: var(--space-l);
    border-bottom: 1px solid white;
    padding-bottom: var(--space-s);
    font-weight: bold;
}

.menu-container__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.menu-container__menu li,
.menu-container__menu li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.menu-container__menu li a:hover {
    color: var(--secondary);
}

.menu-container__menu .sub-menu {
    list-style-type: square;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-left: var(--space-xl);
    margin-top: var(--space-xs);
    line-height: 1.5;
}

.sub-menu li::marker {
    color: var(--primary);
}

.menu-container__column--blue {
    background: rgba(1, 25, 54, 0.80);
}

.menu-container__column--green {
    background: rgba(1, 107, 79, 0.85);
}

.menu-container__column--blue2 {
    background: rgba(56, 72, 111, 0.85);
}

.header__menu-icons-wrapper {
    z-index: 101;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.header__menu-icon:hover,
.header__menu-icon--close:hover {
    fill: var(--secondary);
}

.header__menu-icon {
    width: 30px;
    height: 30px;
    fill: white;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
}

.header__menu-icon--close {
    width: 30px;
    height: 30px;
    fill: white;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.header__menu-icon--scrolling,
.header__menu-icon--scrolling path {
    fill: var(--primary);
}

.menu-container--show {
    transform: translateY(0);
}

@media (max-width:1152px) {
    .menu-container__inner {
        grid-template-columns: 1fr;
    }

    .menu-container__column {
        padding-top: var(--space-xl);
    }

    .menu-container__column--blue {
        padding-top: calc(var(--space-l) + var(--header-height));
    }
}

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

/* SIDEBAR MENU STYLES */
.sidebar-container__sidebar .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar-container__sidebar .menu .sub-menu {
    list-style: none;
    padding-left: var(--space-xs);
    display: flex;
    flex-direction: column;
    margin-top: var(--space-xs);
}

.sidebar-container__sidebar .menu li {
    padding: var(--space-xs);
    display: flex;
    flex-direction: column;
}

.sidebar-container__sidebar .menu li a {
    font-size: var(--text-m);
    text-decoration: none;
    color: var(--primary);
    border-bottom: 1px solid var(--grey);
    padding: var(--space-xs);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition);
}

.sidebar-container__sidebar .menu li.current-menu-item a::before {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent var(--secondary);
}

.sidebar-container__sidebar .menu li a:hover {
    background: var(--bg-light);
}

/* SIDEBAR MENU STYLES END */
/* DYNAMIC MENU STYLES */
.dynamic-menu {
    width: 100%;
    position: sticky;
    top: calc(10px + var(--header-height));
}

.dynamic-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar-container__sidebar .menu .sub-menu {
    list-style: none;

    /* padding-left: var(--space-xs); */
    display: flex;
    flex-direction: column;
    margin-top: var(--space-xs);
}

.dynamic-menu ul li {
    padding: var(--space-xs) 0;
    display: flex;
    flex-direction: column;
}

.dynamic-menu ul li a {
    font-size: var(--text-m);
    text-decoration: none;
    color: var(--primary);
    border-bottom: 1px solid var(--grey);
    padding: var(--space-xs);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: var(--transition);
}

.dynamic-menu ul li.current_page_item {
    /* padding-left: var(--space-m); */
}

.dynamic-menu ul li.current_page_item a {
    display: flex;
    flex-direction: row;
}

.dynamic-menu ul .children {
    /* padding-left: var(--space-s); */
}

.dynamic-menu ul li.current_page_item a[aria-current='page']::before {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent var(--secondary);
}

.dynamic-menu ul li a:hover {
    background: var(--bg-light);
}

/* DYNAMIC MENU STYLES END */
/* BURGER MENU */
/* CSS for styling and animating the burger menu icon */
#burger-menu {
    width: 30px;
    cursor: pointer;
}

#burger-menu.burger-menu--scrolling .line {
    background-color: var(--primary);
}

#burger-menu .line {
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 6px 0;
}

#burger-menu .line:nth-child(2) {
    display: none;
}

#burger-menu.open .line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

#burger-menu.open .line:nth-child(2) {
    display: block;
    opacity: 0;
}

#burger-menu.open .line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

#burger-menu.open .line {
    transition: all var(--transition) ease-in-out;
}

#burger-menu:not(.open) .line:nth-child(1) {
    transform: rotate(0deg) translate(0, 0);
}

#burger-menu:not(.open) .line:nth-child(2) {
    display: block;
    opacity: 1;
}

#burger-menu:not(.open) .line:nth-child(3) {
    transform: rotate(0deg) translate(0, 0);
}

#burger-menu:not(.open) .line {
    transition: all 0.3s ease-in-out;
}

@media (max-width:767px) {
    .intro-box__title {
        position: static;
        transform: translate(0) !important;
        padding: 0;
        max-width: 100%;
        font-size: var(--text-xl) !important;
        white-space: normal;
    }
}

.gutenberg-column {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gutenberg-column p {
    margin-bottom: 1em;
}

.gutenberg-column figure {
    margin-top: 2em;
    margin-bottom: 2em;
}

#post-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    z-index: 300;
}

.post-modal__inner {
    background: white;
    width: 100%;
    max-width: var(--page-width--m);
    padding: var(--space-m);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
}

.archive-container--2col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width:767px) {
    .archive-container--2col {
        grid-template-columns: 1fr;
    }
}

#post-modal.post-modal--show {
    display: flex;
}

.post-modal__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-dataport {
    background: var(--primary);
    color: white;
    font-size: var(--text-m);
    padding: var(--space-s);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-xs);
}

.floating-dataport:hover {
    background: var(--secondary);
}

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

.floating-dataport-icon {
    width: 15px;
    fill: white;
}

.floating-dataport-text {
}

@media (max-width:767px) {
    .floating-dataport-text {
        display: none;
    }

    .floating-dataport {
        padding: 0;
        width: 38px;
        height: 38px;
        margin: 0;
    }
}

@media (max-width:479px) {
    .floating-wrapper {
        left: 0;
        right: auto;
        top: auto;
        bottom: 0;
        transform: translate(0);
        flex-direction: row;
    }
}

.section--empty {
}

.section--empty p {
    margin-bottom: 1em;
}

.section--empty ul,
.sidebar-container__content ul,
.gutenberg-column ul,
.section--empty ol,
.sidebar-container__content ol,
.gutenberg-column ol {
    margin: 1em 0 1em 1em;
}

.section--empty li,
.sidebar-container__content li,
.gutenberg-column li,
.section--empty ol,
.sidebar-container__content ol,
.gutenberg-column ol {
    line-height: 1.6;
    font-size: var(--text-m);
    color: var(--primary);
}

.section--empty figure,
.sidebar-container__content figure,
.gutenberg-column figure {
    margin-top: 2em;
    margin-bottom: 2em;
}

/* MODAL STYLES */
.modal {
    position: absolute;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal__container {
    background-color: #fff;
    padding: var(--space-l);
    max-width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__container--l {
    max-width: min(var(--page-width--s),100%);
}

.modal__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before {
    content: "\2715";
}

.modal__content {
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
}

.modal__content div {
    line-height: 1.6;
    font-size: var(--text-m);
    color: var(--primary);
}

.modal__content--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-l);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}

/* *************************\
  Demo Animation Style
\************************* */
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}

/* MODAL STYLES END */
/* SEARCH FORM */
#search-form,
#search-form1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xs);
}

#search-form input[type=submit],
#search-form1 input[type=submit] {
    background: var(--primary);
    border: none;
    border-radius: 0;
    padding: var(--space-s);
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

#search-form input[type=submit]:hover,
#search-form1 input[type=submit]:hover {
    background: var(--secondary);
}

/* SEARCH FORM END */
@media (max-width:479px) {
    #search-form,
    #search-form1 {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-socials {
        display: flex;
        flex-direction: row;
        width: auto;
        height: 38px;
    }
}

/* PUBLICATIONS FORM */
.email_download_link {
    width: 100%;
}

.email_download_link form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
}

.email_download_link form p input {
    width: 100%;
    margin-bottom: 0;
}

.email_download_link form br {
    display: none;
}

.email_download_link form input[type=submit] {
    grid-column: 1/3;
}

@media (max-width: 767px) {
    .email_download_link form {
        grid-template-columns: 1fr;
    }

    .email_download_link form input[type=submit] {
        grid-column: 1/2;
    }
}

/* PUBLICATIONS FORM END */
/* STAFF PAGE */
.staff-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: var(--space-m);
}

.attachment-staff-thumb {
    margin-bottom: var(--space-s);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.attachment-tb_square_medium {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.staff-wrapper a {
    text-decoration: none;
}

.staff-wrapper h3 {
    font-size: calc(var(--text-m)*1.1);
    margin: 0;
    max-width: calc(100% - 40px);
    line-height: 1;
}

.staff-wrapper h4 {
    font-size: var(--text-s);
    margin: 0;
    max-width: calc(100% - 40px);
    font-weight: 500;
    line-height: 1.2;
}

.orange2:first-of-type {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.staff-wrapper .titlesection {
    position: relative;
}

.staff-wrapper .titlesection h3,
h4 {
    color: var(--primary);
    text-transform: uppercase;
}

.staff-wrapper .staffarrow {
    position: absolute;
    right: 0;
    top: 0;
}

.modal__content h3 {
    font-size: calc(var(--text-l)*1.1);
    margin-bottom: 1%;
    padding: 0;
    margin-top: var(--space-s);
    color: var(--primary);
}

.modal__content h4 {
    font-size: var(--text-s);
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

@media (max-width: 767px) {
    .modal__content--cols {
        grid-template-columns: 1fr;
    }

    .modal__content img {
        width: 200px;
        height: 200px;
        aspect-ratio: 1/1;
        object-fit: cover;
        object-position: 0% 10%;
    }

    .staff-wrapper h3 {
        font-size: calc(var(--text-m));
    }

    .staff-wrapper h4 {
        font-size: var(--text-s);
        margin: 0;
        max-width: calc(100% - 40px);
    }
}

/* STAFF PAGE END */
.sidebar-container__sidebar-content {
    width: 100%;
    position: sticky;
    top: calc(10px + var(--header-height));
}

.filters-3cols {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: var(--space-m);
}

@media (max-width:991px) {
    .filters-3cols {
        grid-template-columns: 1fr;
        grid-gap: var(--space-xs);
    }
}

/* PUBLICATIONS FILTERS */
.filters-3cols .facetwp-facet {
    margin-bottom: 0;
}

.filters-3cols select {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    background-color: white;
    height: 46px;
    background: url(/wp-content/uploads/2018/06/Asset-11_pecan.png) 95% 50% no-repeat;
    color: var(--primary);
    appearance: none;
}

.filters-3cols .facetwp-input-wrap {
    width: 100%;
}

.filters-3cols .facetwp-search {
    width: 100%;
    height: 46px;
}

/* PUBLICATIONS FILTERS END */
.event-type {
    position: absolute;
    top: 30px;
    right: -15px;
    background: var(--tertiary);
    color: var(--primary);
    padding: var(--space-xs) var(--space-s);
    text-transform: uppercase;
    font-weight: bold;
}

.post-type-wrapper {
    position: absolute;
    top: -25px;
    right: -1px;
    background: #cde6c4;
    color: var(--primary);
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: var(--text-s);
}

.section-hero--text {
    padding-top: var(--header-height);
    padding-bottom: 0;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 0;
}

.section-hero--text__title {
    margin: 0;
}

.orange-block {
    height: 100px;
    width: 90px;
    background: var(--secondary);
    margin-right: var(--space-l);
}

.post-category-bar {
    background: var(--secondary);
    width: 100%;
    padding: var(--space-m);
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--text-l);
}

.single-facet select {
    padding: 10px;
    padding-right: 45px;
    border: 1px solid #999;
    background-color: white;
    height: 46px;
    background: url(/wp-content/uploads/2018/06/Asset-11_pecan.png) 95% 50% no-repeat;
    color: var(--primary);
    appearance: none;
}

.gform_body {
    max-width: 100%;
    margin: auto;
}

/* TABLEPRESS */
/* .tablepress {
    min-width: 70rem;
}

.tablepress-scroll-wrapper {
    overflow-x: auto;
} */
.tablepress .row-1 th {
    background: var(--primary) !important;
    color: white !important;
}

.tablepress .column-1 {
    background: var(--tertiary) !important;
    font-weight: 600 !important;
}

.tablepress img {
    max-width: 1.5rem !important;
}

.tablepress td,
.tablepress th {
    padding: var(--space-s) !important;
}

/* TABLEPRESS END */
@media (max-width: 479px) {
    .wp-block-image figure {
        width: 100%;
    }
}

figure.is-provider-soundcloud {
    margin-top: 0;
}

.is-provider-soundcloud iframe {
    width: 100%;
}

.search-form-header {
    justify-content: flex-start !important;
    margin-top: var(--space-m);
}

.search-form-header input[type="text"] {
    flex-grow: 1;
}

.search-form-header input[type="submit"] {
    background: var(--secondary) !important;
}

/* TABS */
.section--empty .su-tabs {
    border-radius: 0;
    padding: 0;
    background: none;
}

.section--empty .su-tabs-nav {
    background: none;
    text-transform: uppercase;
}

.section--empty .su-tabs-nav span {
    border-radius: 0;
}

.section--empty .su-tabs-current {
    background: var(--primary) !important;
    color: white !important;
}

.section--empty .su-tabs-pane {
    padding: 0;
    margin-top: var(--space-l);
}

.section--empty .su-tabs-pane:not(.su-tabs-pane-open) {
    display: none;
}

/* TABS END */
.wp-block-separator {
    border-color: #eee;
}

.wp-block-embed iframe {
    width: 100%;
    height: 450px;
}

.page-item-7021 {
    order: 99;
}

.su-tabs-nav span {
    font-size: 14px !important;
    font-weight: bold;
}

.su-tabs-pane {
    padding: var(--space-m) !important;
    border: 1px solid #eee;
}

.speakers-wrapper {
    margin-bottom: var(--space-xl);
}

.speakers-wrapper__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.speakers-wrapper__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-l);
}

.speakers-wrapper__photo {
    max-width: 200px;
    aspect-ratio: 1/1;
    border-radius: 100%;
}

.speakers-wrapper__right {
}

.speakers-wrapper__name {
}

.speakers-wrapper__description {
}

@media (max-width:767px) {
    .speakers-wrapper__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

