/*ENTRY-HERO BANNER */
section.entry-hero .entry-hero-container-inner {
    background: var(--global-palette9);
}

section.entry-hero .entry-hero-container-inner .entry-header {
    margin-top: 50px;
    min-height: unset;
}

.site .entry-hero  .entry-header h1,
.entry-hero .entry-header .archive-description {
    color: var(--global-palette3);
}

.entry-hero .entry-header .archive-description {
    margin-top: 25px;
}

.archive #primary.content-area {
    margin-top: 50px;
}

#primary.content-area {
    margin-top: 10px;
}


/*SHORTCODES*/
/*button*/
.shortcode-button {
    margin: 10px 0;
}

.shortcode-button .button {
    padding: 8px 15px;
    border-radius: 30px;
}

/*image*/
.shortcode-image {
    width: 100%;
    margin: 10px 0;
}

/*image box*/
.image-box.vertical {
    display: flex;
    gap: 50px;
    margin-bottom: 15px;
}

.image-box__image-wrapper {
    margin: 0 auto;
}

.image-box__text {
    margin-top: 30px;
    text-align: center;
}

.vertical .image-box__text {
    margin-top: 30px;
    text-align: left;
}

/*title*/
.shortcode-title {
    margin: 10px 0;
    text-transform: none;
}

/*ux_video*/
.shortcode-video iframe {
    display: block;
    margin: 0 auto 50px;
    height: 500px;
    width: 100%;
}

.shortcode-title.center {
    display: flex;
    align-items: center;
}

.shortcode-title.center:before,
.shortcode-title.center:after {
    content: "";
    display: block;
    height: 2px;
    flex-grow: 1;
    background-color: #223043;
    opacity: 0.5;
}

.shortcode-title.center:before {
    margin-right: 10px;
}

.shortcode-title.center:after {
    margin-left: 10px;
}

/*accordion*/
.accordion {
    margin: 50px 0;
}

.accordion-title {
    display: flex;
    margin: 25px 0;
    align-items: center;
    border-top: 2px solid #22304380;
}

.accordion-title__icon {
    transition: transform .4s ease-out;
}

.accordion-title.opened .accordion-title__icon {
    transform: rotate(180deg);
}

.accordion-title__text {
    margin-left: 10px;
    font-size: 18px;
}

.accordion-inner {
    display: none;
}

/*become a member membership fixes*/
.membership-card-header {
    border-radius: 10px
}

.membership-card-header > .row > .col:first-of-type {
    padding: 10px;
}

.membership-card-header > .row > .col h1 {
    padding-left: 5px;
    color: #fff;
}

.accordion-item:nth-child(n + 7) .membership-card-header > .row > .col h1 {
    color: #223043;
}

/*ux_banner*/
.shortcode-banner {
    padding: 44px;
}

.shortcode-banner:nth-of-type(3) {
    margin-top: 50px;
}

div.shortcode-banner p{
    margin: 16px 0;
}

div.shortcode-button {
    margin: 8px 0;
}

/*divider*/
.text-center {
    text-align: center;
}

.text-center > .is-divider {
    margin-right: auto;
    margin-left: auto;
}

.is-divider {
    height: 3px;
    display: block;
    background-color: #22304380;
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px;
}

/*divider*/
.text-center {
    text-align: center;
}

.text-center > .is-divider {
    margin-right: auto;
    margin-left: auto;
}

.is-divider {
    height: 3px;
    display: block;
    background-color: #22304380;
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px;
}

/*row col*/
.shortcode-row {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 15px;
}

.flex-3  > .shortcode-col + .shortcode-col {
    border-left: 1px solid #ececec;
}

.flex-12 {
    max-width: 100%;
    flex-basis: 100%;
}

.flex-6,
.flex-3 {
    padding: 15px;
}

.flex-6 {
    max-width: 50%;
    flex-basis: 50%;
}

.flex-3 {
    max-width: 25%;
    flex-basis: 25%;
}

/*team_member*/
.shortcode__img-wrapper{
    position: relative;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}

.shortcode__img-cover{
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 0;
    box-sizing: border-box;
}


.shortcode__img {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    box-sizing: border-box;
}

.shortcode-team__text-wrapper {
    padding-top: .7em;
    padding-bottom: 1.4em;
}

.shortcode-team__name,
.shortcode-team__title {
    text-transform: uppercase;
}

@media only screen and (max-width: 1024px){
    .shortcode-video iframe {
        height: unset;
        width: unset;
    }

    .flex-6 {
        max-width: 100%;
        flex-basis: 100%;
    }

    .flex-3 {
        max-width: 50%;
        flex-basis: 50%;
    }

    .flex-3  > .shortcode-col + .shortcode-col {
        border-left: none;
    }
}

@media only screen and (max-width: 576px){
    .image-box.vertical {
        flex-direction: column;
    }

    .flex-3 {
        max-width: 100%;
        flex-basis: 100%;
    }
}