#cookie-notice,
#cookie-notice .cn-button:not(.cn-button-custom) {
    font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-align: center
}

#cookie-notice {
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    letter-spacing: 0;
    line-height: 20px;
    left: 0
}

#cookie-notice,
#cookie-notice * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#cookie-notice.cn-animated {
    -webkit-animation-duration: .5s !important;
    animation-duration: .5s !important;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#cookie-notice.cn-animated.cn-effect-none {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important
}

#cookie-notice .cookie-notice-container,
#cookie-notice .cookie-revoke-container {
    display: block
}

#cookie-notice.cookie-notice-hidden .cookie-notice-container,
#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
    display: none
}

.cn-position-top {
    top: 0
}

.cn-position-bottom {
    bottom: 0
}

.cookie-notice-container {
    padding: 15px 30px;
    text-align: center;
    width: 100%;
    z-index: 2
}

.cookie-revoke-container {
    padding: 15px 30px;
    width: 100%;
    z-index: 1
}

.cn-close-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    width: 15px;
    height: 15px;
    opacity: .5;
    padding: 10px;
    outline: 0;
    cursor: pointer
}

.cn-close-icon:hover {
    opacity: 1
}

.cn-close-icon:after,
.cn-close-icon:before {
    position: absolute;
    content: ' ';
    height: 15px;
    width: 2px;
    top: 3px;
    background-color: grey
}

.cn-close-icon:before {
    transform: rotate(45deg)
}

.cn-close-icon:after {
    transform: rotate(-45deg)
}

#cookie-notice .cn-revoke-cookie {
    margin: 0
}

#cookie-notice .cn-button {
    margin: 0 0 0 10px;
    display: inline-block
}

#cookie-notice .cn-button:not(.cn-button-custom) {
    letter-spacing: .25px;
    margin: 0 0 0 10px;
    text-transform: none;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    outline: 0;
    box-shadow: none;
    text-shadow: none;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
    padding: 8.5px 10px;
    line-height: 1;
    color: inherit
}

.cn-text-container {
    margin: 0 0 6px
}

.cn-buttons-container,
.cn-text-container {
    display: inline-block
}

#cookie-notice.cookie-notice-visible.cn-effect-fade,
#cookie-notice.cookie-notice-visible.cn-effect-none,
#cookie-notice.cookie-revoke-visible.cn-effect-fade,
#cookie-notice.cookie-revoke-visible.cn-effect-none {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

#cookie-notice.cn-effect-fade,
#cookie-notice.cn-effect-none {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

#cookie-notice.cookie-notice-visible.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-effect-slide {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

#cookie-notice.cn-effect-slide {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

#cookie-notice.cn-position-top.cn-effect-slide {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@media all and (max-width:900px) {

    .cookie-notice-container #cn-notice-buttons,
    .cookie-notice-container #cn-notice-text {
        display: block
    }

    #cookie-notice .cn-button {
        margin: 0 5px 5px
    }
}

@media all and (max-width:480px) {

    .cookie-notice-container,
    .cookie-revoke-container {
        padding: 15px 25px
    }
}

.embedpress-wrapper {
    position: relative
}

.ose-dailymotion.responsive,
.ose-kickstarter.responsive,
.ose-rutube.responsive,
.ose-ted.responsive,
.ose-vimeo.responsive,
.ose-youtube.responsive,
.ose-ustream.responsive,
.ose-google-docs.responsive,
.ose-animatron.responsive,
.ose-amcharts.responsive,
.ose-on-aol-com.responsive,
.ose-animoto.responsive,
.ose-soundcloud.responsive,
.ose-videojug.responsive,
.ose-facebook.responsive,
.ose-issuu.responsive {
    overflow: hidden;
    position: relative;
    height: auto
}

.ose-dailymotion.responsive iframe,
.ose-kickstarter.responsive iframe,
.ose-rutube.responsive iframe,
.ose-ted.responsive iframe,
.ose-vimeo.responsive iframe,
.ose-vine.responsive iframe,
.ose-youtube.responsive iframe,
.ose-ustream.responsive iframe,
.ose-google-docs.responsive iframe,
.ose-animatron.responsive iframe,
.ose-amcharts.responsive iframe,
.ose-on-aol-com.responsive iframe,
.ose-animoto.responsive iframe,
.ose-soundcloud.responsive iframe,
.ose-videojug.responsive iframe,
.ose-issuu.responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute
}

.ose-dailymotion.responsive,
.ose-kickstarter.responsive,
.ose-rutube.responsive,
.ose-ted.responsive,
.ose-vimeo.responsive,
.ose-youtube.responsive,
.ose-animatron.responsive,
.ose-amcharts.responsive,
.ose-on-aol-com.responsive,
.ose-animoto.responsive,
.ose-videojug.responsive {
    padding-bottom: 56.25%
}

.ose-vine.responsive {
    padding-bottom: 100%
}

.ose-ustream.responsive {
    padding-bottom: 63.3%
}

.ose-google-docs.responsive {
    padding-bottom: 62.6%
}

.ose-google-docs.ose-google-docs-drawings.responsive {
    padding-bottom: 74.5%
}

.ose-google-docs.ose-google-docs-document.responsive,
.ose-google-docs.ose-google-docs-forms.responsive,
.ose-google-docs.ose-google-docs-spreadsheets.responsive {
    padding-bottom: 142%
}

.ose-soundcloud.responsive {
    padding-bottom: 155px
}

.ose-issuu.responsive iframe {
    z-index: 2
}

.ose-issuu.responsive {
    padding-bottom: 31.25%
}

.ose-issuu>div>div>div:last-child {
    width: 100% !important;
    z-index: 0;
    position: absolute;
    bottom: 0
}

.ose-mixcloud.responsive iframe {
    width: 100%
}

.ose-google-docs.responsive {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.ose-facebook.responsive iframe {
    padding-bottom: 0;
    width: 100%
}

.elementor-widget-container iframe {
    max-height: 100% !important
}

.elementor-cbutton-preview-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
    background: #fbf6f6
}

@media only screen and (max-width: 800px) {

    .elementor-widget-container .embedpress-facebook-vid-iframe,
    .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
    .embedpress-facebook-vid-iframe {
        max-height: inherit !important
    }

    .ep-first-video iframe {
        max-height: 100% !important
    }

    .ep-youtube__content__block .youtube__content__body .content__wrap:not(.youtube-carousel) {
        grid-template-columns: repeat(auto-fit, minmax(calc(50% - 30px), 1fr)) !important
    }
}

@media only screen and (max-width: 500px) {

    .elementor-widget-container .embedpress-facebook-vid-iframe,
    .embedpress-gutenberg-wrapper .embedpress-facebook-vid-iframe,
    .embedpress-facebook-vid-iframe {
        max-height: 390px !important
    }

    .ep-youtube__content__block .youtube__content__body .content__wrap:not(.youtube-carousel) {
        grid-template-columns: repeat(auto-fit, minmax(calc(100% - 30px), 1fr)) !important
    }
}

.ose-matterport .embera-embed-responsive,
.ose-matterport .embera-embed-responsive iframe {
    width: 100%;
    height: 100%
}

.ose-meetup {
    height: auto !important
}

.embedpress-event .link {
    color: #0098ab
}

.embedpress-event .visibility--a11yHide {
    border: 0;
    clip: rect(0 0 0 0);
    position: absolute;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px
}

.embedpress-event .text--small {
    font-size: 14px;
    margin: 0
}

.embedpress-event .flex {
    display: flex;
    box-sizing: border-box
}

.embedpress-event .flex--wrap {
    flex-wrap: wrap
}

.embedpress-event .flex--row {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap
}

.embedpress-event .flex-item {
    flex-basis: 0;
    flex-grow: 1;
    width: auto;
    min-width: 0;
    box-sizing: border-box
}

.embedpress-event .flex-item--shrink {
    flex-basis: auto;
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-shrink: 0;
    width: auto
}

.embedpress-event .flex--row>.flex-item:first-child {
    padding-left: 0
}

.embedpress-event .text--bold {
    font-weight: 700
}

.embedpress-event h1,
.embedpress-event h2,
.embedpress-event h3,
.embedpress-event h4,
.embedpress-event h5,
.embedpress-event h6 {
    font-size: inherit
}

.embedpress-event .ep-event--title {
    font-size: 32px;
    font-weight: 700
}

.embedpress-event .ep-event--date {
    color: #757575;
    font-weight: 400;
    font-size: 16px
}

.embedpress-event .ep-event--host {
    margin-top: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.ep-event--host .avatar-print {
    border-radius: 50%;
    height: 50px;
    width: 50px
}

.embedpress-event img.avatar--person {
    background-image: none !important;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 50%;
    box-sizing: border-box;
    vertical-align: middle
}

.event-info-hosts-text {
    padding-left: 20px;
    font-size: 16px;
    font-weight: 400
}

.embedpress-event .event-description {
    margin-top: 20px
}

.text--sectionTitle {
    font-size: 20px;
    line-height: 28px
}

.ep-event--attendees {
    margin-top: 50px
}

.ep-event--attendees>.flex {
    margin-bottom: 20px
}

.ep-event--attendees .gridList {
    list-style: none;
    margin: 0 -16px 0 0;
    padding: 0
}

.ep-event--attendees .gridList-item {
    width: auto
}

.ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
    flex: 0 0 50%;
    max-width: 50%
}

.ep-event--attendees .groupMember-name {
    line-height: 1.2 !important
}

.ep-event--attendees .avatar--person {
    margin-bottom: 15px;
    display: inline-block;
    border-radius: 50%
}

.ep-event--attendees img.avatar-print {
    border-radius: 50%
}

.ep-event--attendees .groupMember-role {
    font-size: 12px;
    color: #757575;
    padding-top: 2px;
    margin: 0
}

.ep-event--attendees .groupMember {
    min-height: 100%;
    min-width: 128px;
    padding-left: 8px;
    padding-right: 8px
}

.embedpress-event .align--center {
    text-align: center
}

.embedpress-event .card {
    background: #fff;
    background-clip: padding-box;
    background-size: cover;
    border: 1px solid rgba(46, 62, 72, .12);
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    min-height: 100%;
    padding: 16px 16px 18px;
    position: relative;
    white-space: normal
}

.embedpress-event .card--hasHoverShadow {
    transition: box-shadow .25s cubic-bezier(.4, 0, .2, 1), transform .25s cubic-bezier(.4, 0, .2, 1)
}

.embedpress-event .ep-event-group-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 62, 72, .12)
}

.embedpress-event .ep-event-group--name {
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
    width: 70%;
    word-break: break-word
}

.embedpress-event .ep-event-group--image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 56px;
    height: 56px;
    border-radius: 4px
}

.embedpress-event .ep-event-time-location {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px 0 20px;
    border: 1px solid rgba(46, 62, 72, .12)
}

.embedpress-event .ep-event-time-location .ep-event-datetime,
.embedpress-event .ep-event-time-location .ep-event-location {
    padding-bottom: 20px
}

.embedpress-event .ep-event-location .wrap--singleLine--truncate,
.embedpress-event .ep-event-time-location .ep-event-datetime {
    font-size: 15px;
    line-height: 1.5;
    color: #2e3e48;
    font-style: normal;
    margin: 0
}

.embedpress-event .ep-event-location address {
    font-style: normal;
    margin: 0
}

.embedpress-event .ep-event-location .venueDisplay-venue-address {
    font-style: normal;
    color: #757575;
    margin: 0
}

.embedpress-event .ep-event-location p {
    line-height: 20px
}

.ep-event--attendees .gridList-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1rem;
    margin: 0;
    vertical-align: top;
    width: 50%
}

.gridList-itemInner {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    padding: 0 16px 16px 0
}

.embedpress-yt-subscribe {
    display: flex;
    align-items: center;
    align-content: start;
    text-align: center;
    gap: 1rem;
    max-width: 600px;
    width: 100%
}

.embedpress-yt-subscribe .embedpress-yt-subscribe.dark {
    color: #fff
}

.embedpress-yt-subscribe .embedpress-yt-sub-text {
    display: inline-block;
    margin: 0;
    padding: 0
}

.dewqijm {
    height: 100%;
    margin-right: 10px
}

.dewqijm img[src^="image"] {
    display: none
}

.dewqijm img[src^="http"] {
    height: 56px !important;
    width: 56px !important
}

.dewqijm>div>div {
    display: none
}

.embedpress-event .sticky button {
    display: none
}

.embedpress-event .items-center {
    align-items: center
}

@media only screen and (min-width: 530px) {
    .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }
}

@media only screen and (min-width: 640px) {
    .embedpress-event .card {
        padding: 18px 18px 20px
    }

    .ep-event--attendees .gridList--autoHeight--has4>.gridList-item {
        flex: 0 0 25%;
        max-width: 25%
    }
}

.ose-opensea {
    height: 100% !important;
    width: calc(100% - 40px) !important;
    max-height: 100% !important
}

.ose-github {
    overflow: auto
}

.ep_nft_content_wrap.ep_nft__wrapper {
    display: grid
}

.ep_nft_content_wrap.ep_nft__wrapper,
.ep_nft_content_wrap.ep_nft_list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px
}

.ep_nft_content_wrap .ep_nft_item {
    padding-top: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    background-color: #fff;
    border-radius: 10px;
    transition: background 0.5s, border 0.5s, border-radius 0.5s, box-shadow 0.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .09);
    overflow: hidden;
    padding: 15px;
    position: relative;
    transition: .3s ease-in-out
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid .ep_nft_item {
    display: flex;
    flex-direction: column
}

.ep_nft_content_wrap.ep_nft_list .ep_nft_item {
    justify-content: flex-start;
    align-items: flex-start
}

.ep_nft_content_wrap.ep_nft__wrapper.preset-3 .ep_nft_item .ep_nft_content {
    background-color: #edecf6e6
}

.ep_nft_content_wrap .ep_nft_thumbnail {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 15px;
    border-radius: 5px
}

.ep_nft_content_wrap .ep_nft_thumbnail img {
    height: 340px;
    border-radius: 5px;
    width: 100%;
    object-fit: cover
}

.ep_nft_content .ep_nft_title {
    color: #333;
    font-size: 16px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 15px;
    font-weight: 600;
    word-break: break-all
}

.ep_nft_content {
    text-align: left
}

.ep_nft_content .ep_nft_price {
    color: #333;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    display: flex;
    font-weight: 600
}

.ep_nft_content .ep_nft_price:first-child {
    margin-bottom: 10px
}

span.eb_nft_currency {
    max-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

span.eb_nft_currency svg {
    width: 100%;
    height: auto
}

.ep_nft_content .ep_nft_price_wrapper {
    min-height: 20px
}

.ep_nft_content .ep_nft_creator {
    color: #333;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px
}

.ep_nft_content .ep_nft_creator a {
    color: #3080E2;
    font-size: 14px;
    text-decoration: none;
    word-break: break-all;
    text-decoration: none
}

.ep_nft_content .ep_nft_creator img {
    height: 30px;
    width: 30px;
    border-radius: 50%
}

.ep_nft_content .ep_nft_button button {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px
}

.ep_nft_content .ep_nft_button button a {
    background-color: #3080E2;
    color: #fff;
    font-size: 14px;
    padding-top: 15px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 15px;
    transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s
}

.ep_nft_content .ep_nft_button button:hover a {
    background-color: rgb(46, 142, 238);
    color: #fff
}

.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button {
    opacity: 1;
    transform: translate(0);
    visibility: visible
}

.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a.ep-details-btn:hover {
    background-color: rgb(46, 142, 238);
    color: #fff
}

.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item:hover .ep_nft_button {
    opacity: 1;
    transform: translate(0);
    visibility: visible
}

.ep-nft-gallery-wrapper .ep_nft_content_wrap.ep_nft__wrapper.ep-preset-1 .ep_nft_item .ep_nft_button {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: translateY(30px);
    visibility: hidden;
    width: 100%;
    transition: 0.3s
}

.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep-nft-single-item-wraper .ep_nft_button {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button a {
    background-color: #3080E2;
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
    transition: border 0.5s, border-radius 0.5s, box-shadow 0.5s;
    display: block;
    text-align: center;
    font-weight: 500;
    text-decoration: none
}

.ep-nft-gallery-wrapper.ep-nft-gallery-r1a5mbx .ep_nft_button span.ep-nft-rank {
    color: #a88484;
    border-color: #a88484
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-radius: 10px
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail {
    width: 55%
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content {
    width: calc(45% - 15px)
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content .ep_nft_price.ep_nft_last_sale {
    margin-bottom: 15px
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items .ep_nft_item .ep_nft_thumbnail svg {
    border-radius: 10px
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail img {
    height: 260px
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_button a {
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-grid.ep-preset-2 .ep_nft_content .ep_nft_price:last-child {
    margin-bottom: 15px
}

.alignleft .ose-opensea,
.alignright .ose-opensea,
.aligncenter .ose-opensea {
    max-width: calc(100% - 40px) !important
}

.embedpress-gutenberg-wrapper.alignright,
.embedpress-gutenberg-wrapper.alignleft {
    width: 100%
}

.embedpress-gutenberg-wrapper.alignright .ep-embed-content-wraper>div {
    float: right
}

.embedpress-gutenberg-wrapper.aligncenter.ep-content-share-enabled .ep-embed-content-wraper {
    justify-content: center
}

.embedpress-gutenberg-wrapper.alignright.ep-content-share-enabled .ep-embed-content-wraper {
    justify-content: right
}

.embedpress-gutenberg-wrapper.alignleft.ep-content-share-enabled .ep-embed-content-wraper {
    justify-content: left
}

.embedpress-gutenberg-wrapper.aligncenter {
    text-align: center;
    clear: both
}

.theme-twentytwentythree footer.wp-block-template-part {
    clear: both
}

@media all and (max-width: 1024px) {

    .ep_nft_content_wrap.ep_nft__wrapper,
    .ep_nft_content_wrap.ep_nft_list {
        grid-template-columns: repeat(3, 1fr) !important
    }

    .alignleft .ose-opensea,
    .alignright .ose-opensea,
    .aligncenter .ose-opensea {
        max-width: 100% !important
    }
}

@media all and (max-width: 991px) {
    .ose-opensea {
        min-width: 100% !important;
        max-width: calc(100% - 40px) !important
    }

    .ep_nft_content_wrap.ep_nft__wrapper,
    .ep_nft_content_wrap.ep_nft_list {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

@media all and (max-width: 767px) {

    .ep_nft_content_wrap.ep_nft__wrapper,
    .ep_nft_content_wrap.ep_nft_list {
        grid-template-columns: repeat(1, 1fr) !important
    }
}

.ep-nft-single-item-wraper.ep_nft_content_wrap .ep_nft_item {
    box-shadow: none
}

.ep-nft-rank-wraper {
    margin-bottom: 16px;
    font-weight: 600;
    color: #333;
    font-size: 16px
}

.ep-nft-rank-wraper.ep-empty-label span {
    margin-left: 0px
}

span.ep-nft-rank {
    padding: 2px 8px;
    border-radius: 7px;
    margin-left: 10px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    background: transparent !important;
    border: 1px solid #ddd;
    color: #333
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content {
    width: calc(55% - 15px)
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail {
    width: 45%;
    height: 100%
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail img {
    height: 100%
}

.ep-nft-single-item-wraper span.eb_nft_label {
    color: #333
}

.ep-nft-single-item-wraper .ep_nft_content .ep_nft_price {
    display: flex;
    flex-direction: column;
    margin-right: 45px
}

.ep-nft-single-item-wraper span.eb_nft_price {
    font-size: 30px;
    line-height: normal
}

.ep-nft-single-item-wraper .ep_nft_content .ep_nft_creator img {
    height: 15px;
    width: 15px;
    border-radius: 50%
}

.ep-nft-single-item-wraper .ep-usd-price {
    bottom: 0;
    font-size: 12px
}

.ep-nft-single-item-wraper span.eb_nft_label {
    font-size: 15px
}

.ep-nft-single-item-wraper .ep_nft_content .ep_nft_title {
    margin-bottom: 10px;
    font-size: 24px
}

.ep-nft-single-item-wraper .CollectionLink--name svg {
    width: 20px;
    height: 20px;
    margin-left: 5px
}

.ep-nft-single-item-wraper a.CollectionLink--link {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    color: #3080E2
}

.ep-nft-single-item-wraper sub.verified-icon {
    bottom: -5px;
    left: 4px
}

.ep-nft-single-item-wraper .ep-accordion {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 15px;
    display: block
}

.ep-nft-single-item-wraper .ep-toggle {
    display: none
}

.ep-nft-single-item-wraper .ep-option {
    position: relative
}

.ep-nft-single-item-wraper .ep-content {
    padding: 1em;
    border-top: 1px solid #ddd
}

.ep-nft-single-item-wraper .ep-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.2s
}

.ep-nft-single-item-wraper .ep-title {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.2s;
    padding: 1em;
    display: flex;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    align-items: center
}

.ep-nft-single-item-wraper label.ep-title svg {
    width: 20px;
    height: 20px;
    margin-right: 6px
}

.ep-nft-single-item-wraper .ep-asset-detail-item {
    display: flex;
    justify-content: space-between;
    font-weight: 500
}

.ep-nft-single-item-wraper .ep-asset-detail-item span {
    word-break: break-word;
    max-width: 75%
}

.ep-nft-single-item-wraper .ep-content {
    display: block
}

.ep-nft-single-item-wraper .ep-content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5
}

.ep-nft-single-item-wraper .ep-toggle:checked+.ep-title+.ep-content {
    display: none;
    background: transparent
}

.ep-nft-single-item-wraper .ep_nft_content .ep_nft_price_wrapper {
    display: flex
}

.ep-nft-single-item-wraper .ep-toggle+.ep-title:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    text-indent: -9999px;
    border-top: 2px solid #bfbfbf;
    border-left: 2px solid #bfbfbf;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
    right: 15px;
    top: 50%;
    transform: rotate(45deg) translate(-20%, -5%)
}

.ep-nft-single-item-wraper .ep-toggle:checked+.ep-title:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    text-indent: -9999px;
    border-top: 2px solid #bfbfbf;
    border-left: 2px solid #bfbfbf;
    transition: all 250ms ease-in-out;
    text-decoration: none;
    color: transparent;
    right: 15px;
    top: 50%;
    transform: rotate(225deg) translate(80%, 20%)
}

.ep-nft-single-item-wraper .ep-toggle:checked+.ep-title:after {
    display: none
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items .ep_nft_item .ep_nft_button span.ep-nft-rank {
    pointer-events: none
}

.ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-nft-single-item-wraper.ep-grid .ep_nft_content {
    margin-bottom: 20px
}

.elementor-widget-container .ep-nft-gallery-wrapper .ep-loadmore-wrapper button,
.embedpress-gutenberg-wrapper .ep-nft-gallery-wrapper .ep-loadmore-wrapper button {
    display: none
}

@media screen and (max-width: 1024px) {

    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper,
    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft_list {
        grid-template-columns: repeat(1, 1fr) !important
    }
}

@media screen and (max-width: 991px) {

    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper,
    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft_list {
        grid-template-columns: repeat(1, 1fr) !important
    }

    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item {
        align-items: unset;
        flex-direction: column
    }

    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_thumbnail {
        width: 100%
    }

    .ep-nft-single-item-wraper.ep_nft_content_wrap.ep_nft__wrapper.nft_items.ep-list .ep_nft_item .ep_nft_content {
        width: 100%
    }
}

@media screen and (max-width: 537px) {
    .ep-nft-single-item-wraper sub.ep-usd-price {
        margin-bottom: 15px;
        display: block
    }

    .ose-google-drive iframe {
        height: 250px !important
    }

    .ose-nrk-radio iframe {
        height: 400px !important
    }
}

.emebedpress-unit-percent iframe {
    width: 100% !important
}

.password-form-container {
    width: 350px;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #f4eded;
    background-color: #f9f9ff;
    max-width: 100%;
    margin: auto
}

.password-form-container h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: system-ui
}

.password-form-container p {
    font-size: 12px;
    font-family: sans-serif;
    line-height: 1.4em;
    margin-bottom: 15px
}

form.password-form {
    margin-bottom: 2px
}

.password-form-container input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 12px;
    font-size: 20px;
    color: #6354a5;
    outline: none;
    border: 1px solid #ddd;
    outline: 0;
    padding-left: 50px;
    font-family: sans-serif;
    height: 42px
}

.password-form-container input[type="password"]::placeholder {
    color: #e0d1d1;
    font-size: 14px
}

.password-field {
    position: relative
}

.password-field span {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 40px;
    background: #DED7FC;
    border-radius: 4px
}

.password-field svg {
    width: 22px
}

.password-form-container input[type="submit"] {
    padding: 12px 20px;
    background-color: #6354a5;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    font-family: sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: initial;
    white-space: normal;
    word-break: break-all;
    min-height: 42px
}

.password-form-container button:hover {
    background-color: #0062cc;
    box-shadow: 0px 0px 10px #007bff
}

.password-form-container .error-message {
    color: #f00;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.4em
}

.password-form-container .error-message.hidden {
    display: none
}

p.need-access-message {
    margin-bottom: 2px;
    margin-top: 13px
}

.wp-block-embed__wrapper {
    display: inline-block;
    width: 100%;
    max-width: 100% !important
}

.wp-block-embed__wrapper.position-right-wraper,
.wp-block-embed__wrapper.position-right-wraper {
    max-width: calc(100% - 40px) !important
}

.ep-elementor-content {
    position: relative;
    display: inline-block;
    max-width: 100%
}

.ep-elementor-content.source-opensea {
    display: block
}

.wp-block-embedpress-embedpress>div,
.ep-gutenberg-content {
    position: relative;
    clear: both
}

.gutenberg-pdf-wraper {
    position: relative;
    width: 100%
}

.presentationModeEnabledIosDevice {
    position: fixed;
    left: 0;
    top: 0;
    border: 0;
    height: 100% !important;
    width: 100% !important;
    z-index: 999999;
    min-width: 100% !important;
    min-height: 100% !important
}

.ep-embed-content-wraper {
    width: 100%
}

.embedpress-gutenberg-wrapper.popup_button,
.embedpress-elements-wrapper.popup_button {
    display: none !important
}

.elementor-element-edit-mode .embedpress-elements-wrapper.popup_button {
    display: block !important
}

.ep-content-share-enabled .ep-embed-content-wraper {
    display: flex !important
}

.ep-content-share-enabled .ep-embed-content-wraper.hidden {
    display: none !important
}

.ep-share-position-right .ep-embed-content-wraper {
    flex-direction: row
}

.ep-content-share-enabled .ep-embed-content-wraper>div:first-child {
    width: 100%
}

.ep-share-position-left .ep-embed-content-wraper {
    flex-direction: row-reverse
}

.ep-share-position-bottom .ep-embed-content-wraper {
    flex-direction: column
}

.ep-share-position-top .ep-embed-content-wraper {
    flex-direction: column-reverse
}

.ep-fixed-width .gutenberg-pdf-wraper {
    display: inline-block
}

.ep-percentage-width .embedpress-inner-iframe {
    width: 100%
}

.ep-social-share {
    display: flex;
    align-items: center
}

.ep-social-share.share-position-right {
    right: -40px;
    top: 0;
    flex-direction: column
}

.ep-social-share.share-position-left {
    left: 0px;
    top: 0;
    flex-direction: column
}

.ep-social-share.share-position-bottom,
.ep-social-share.share-position-top {
    justify-content: center
}

.embedpress-gutenberg-wrapper .ep-social-share.share-position-left,
.ep-elementor-content .ep-social-share.share-position-left {
    left: -40px
}

.ep-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-size: 20px
}

.ep-social-icon:hover {
    opacity: 0.8
}

.ep-social-share svg {
    width: 20px;
    height: auto
}

a.ep-social-icon.pinterest svg {
    height: 25px
}

.ep-social-share .facebook {
    background-color: #3b5998
}

.ep-social-share .facebook svg {
    width: 40px
}

.ep-social-share .twitter {
    background-color: #55acee
}

.ep-social-share .pinterest {
    background-color: #bd081c
}

.ep-social-share .linkedin {
    background-color: #0077b5
}

.ep-social-share .reddit {
    background-color: #ff4500
}

.ep-social-icon i {
    margin-right: 0
}

.ep-content-locked .watermark {
    display: none !important
}

.ep-content-protection-enabled .watermark {
    display: none !important
}

.embedpress-pro-control.not-active {
    pointer-events: none
}

.pro__alert__wrap .pro__alert__card h2 {
    font-size: 32px;
    font-weight: 450;
    color: #131f4d;
    margin-bottom: 15px
}

.pro__alert__wrap .pro__alert__card p {
    font-size: 14px;
    font-weight: 400;
    color: #7c8db5;
    margin-top: 10px
}

.pro__alert__wrap .pro__alert__card p a {
    text-decoration: underline;
    font-weight: 700;
    color: #131f4d
}

.emebedpress-unit-percent,
.ep-elementor-content.ep-percentage-width {
    width: 100%
}

[data-theme-mode='dark'] {
    --viewer-primary-color: #343434;
    --viewer-icons-hover-bgcolor: #453838
}

[data-theme-mode='light'] {
    --viewer-primary-color: #f2f2f6;
    --viewer-icons-color: #343434;
    --viewer-icons-hover-bgcolor: #e5e1e9
}

@media (prefers-color-scheme: dark) {
    :root {
        --viewer-primary-color: #343434;
        --viewer-icons-color: #f2f2f6;
        --viewer-icons-hover-bgcolor: #453838
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --viewer-primary-color: #f2f2f6;
        --viewer-icons-color: #343434;
        --viewer-icons-hover-bgcolor: #e5e1e9
    }
}

.ep-file-download-option-masked::after,
.ep-external-doc-icons {
    background: var(--viewer-primary-color)
}

.ep-external-doc-icons svg path {
    fill: var(--viewer-icons-color)
}

.ep-doc-draw-icon svg path {
    fill: var(--viewer-primary-color);
    stroke: var(--viewer-icons-color)
}

.ep-external-doc-icons svg:hover svg path {
    fill: var(--viewer-icons-color);
    stroke: var(--viewer-icons-color)
}

.ep-external-doc-icons svg:hover {
    background-color: var(--viewer-icons-hover-bgcolor)
}

.ep-file-download-option-masked {
    position: relative
}

.ep-file-download-option-masked {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.ep-file-download-option-masked .overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 15px);
    height: calc(100% - 45px);
    background-color: rgb(66 23 23 / 0%);
    pointer-events: unset;
    z-index: 1;
    user-select: none;
    max-width: 800px;
    margin: 0 auto
}

.ep-file-download-option-masked.ep-file-xls .overlay {
    height: calc(100% - 78px)
}

.ep-file-download-option-masked iframe {
    width: 100%;
    height: 100%;
    pointer-events: auto
}

.ep-file-download-option-masked.enabled-text-copy {
    pointer-events: all
}

.embed-download-disabled {
    width: 200px;
    height: 22px;
    background: #444;
    position: absolute;
    right: 2px;
    bottom: 8px;
    opacity: 0
}

.cui-toolbar-button-right {
    display: none !important
}

.ndfHFb-c4YZDc-Wrql6b {
    display: none
}

.ep-external-doc-icons {
    position: absolute;
    display: flex;
    flex-direction: revert;
    background: var(--viewer-primary-color);
    border-radius: 6px;
    z-index: 2;
    bottom: -18px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px
}

.ep-external-doc-icons svg {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
    border-radius: 4px
}

.block-editor-block-list__block .ep-gutenberg-file-doc .ep-external-doc-icons svg {
    width: 22px;
    height: 22px
}

.block-editor-block-list__block .ep-gutenberg-file-doc .ep-doc-download-icon svg,
.block-editor-block-list__block .ep-gutenberg-file-doc .ep-doc-fullscreen-icon svg {
    width: 20px !important
}

.ep-doc-minimize-icon svg,
.ep-doc-fullscreen-icon svg {
    padding: 6px
}

.ep-external-doc-icons svg:hover {
    border-radius: 4px
}

.ep-doc-draw-icon.active svg {
    background: var(--viewer-icons-hover-bgcolor)
}

.ep-doc-download-icon,
.ep-doc-print-icon,
.ep-doc-fullscreen-icon,
.ep-doc-popup-icon,
.ep-doc-draw-icon,
.ep-doc-minimize-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px
}

.elementor .elementor-element.elementor-element .embedpress-document-embed .fullscreen-enabled iframe,
.embedpress-document-embed .fullscreen-enabled iframe {
    width: 100% !important;
    height: 100% !important
}

.ep-file-download-option-masked.ep-file-link.fullscreen-enabled iframe {
    margin-left: 22%
}

.ep-file-download-option-masked::after {
    position: absolute;
    width: 100%;
    height: 30px;
    background: var(--viewer-primary-color);
    z-index: 1;
    bottom: 0;
    content: '';
    left: 0
}

.ep-file-download-option-masked.ep-file-docx::after {
    bottom: 0
}

.ep-file-download-option-masked.ep-file-docx.ep-powered-by-enabled::after {
    bottom: 0px;
    background: white;
    height: 22px
}

.ep-file-download-option-masked.ep-file-docx.ep-powered-by-enabled.fullscreen-enabled::after {
    bottom: 0
}

canvas.ep-doc-canvas {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    clear: both;
    margin: auto;
    display: none
}

:root {
    --plyr-control-icon-size: 15px;
    --plyr-range-track-height: 3px;
    --plyr-range-thumb-height: 10px
}

.plyr--audio .plyr--full-ui input[type=range] {
    color: red !important
}

.ep-embed-content-wraper input[type=range]::-webkit-slider-runnable-track {
    box-shadow: none
}

.ep-embed-content-wraper input[type=range]::-moz-range-track {
    box-shadow: none
}

a.plyr__controls__item.plyr__control {
    border-radius: inherit;
    color: inherit !important
}

.plyr-initialized button:focus {
    background-color: var(--plyr-color-main)
}

.custom-player-preset-1 .plyr__controls {
    background: var(--plyr-color-main) !important;
    padding: 0 !important
}

.custom-player-preset-1 button.plyr__control {
    border-radius: 0
}

.custom-player-preset-1 a.plyr__controls__item.plyr__control {
    border-radius: inherit
}

.custom-player-preset-1 button.plyr__control.plyr__control--overlaid[data-plyr="play"],
.custom-player-preset-2 button.plyr__control.plyr__control--overlaid[data-plyr="play"] {
    width: 100px !important;
    text-align: center;
    display: flex;
    align-items: center !important;
    justify-content: center;
    height: 60px
}

.custom-player-preset-1 button.plyr__control.plyr__control--overlaid[data-plyr="play"] svg,
.custom-player-preset-2 button.plyr__control.plyr__control--overlaid[data-plyr="play"] svg {
    width: 22px;
    height: 22px
}

.custom-player-preset-1 .plyr__control:focus {
    border: none
}

.custom-player-preset-2 a.plyr__controls__item.plyr__control,
.custom-player-preset-2 button.plyr__control.plyr__control--overlaid[data-plyr="play"],
.preset-default a.plyr__controls__item.plyr__control {
    border-radius: 4px
}

.custom-player-preset-3 .plyr__controls,
.custom-player-preset-4 .plyr__controls {
    background: var(--plyr-color-main) !important;
    padding: 0 !important
}

.custom-player-preset-4 button.plyr__control.plyr__control--overlaid {
    display: none !important
}

figure .plyr--full-ui .plyr__video-embed>.plyr__video-embed__container {
    padding-bottom: inherit !important
}

.plyr {
    background-color: black
}

.pip-mode {
    position: fixed !important;
    width: 320px !important;
    height: 180px !important;
    top: calc(100% - 200px) !important;
    left: calc(100% - 340px) !important;
    z-index: 9999;
    border-radius: 15px !important
}

.plyr [data-plyr="pip"] {
    display: block !important
}

.pip-mode .plyr__video-wrapper {
    pointer-events: none
}

.pip-mode .pip-play {
    display: none
}

.pip-mode .pip-play,
.pip-mode .pip-pause {
    opacity: 0 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0000004a;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    cursor: pointer
}

.pip-mode .pip-close {
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #0000004a;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    cursor: pointer
}

.pip-mode:hover .pip-play,
.pip-mode:hover .pip-close,
.pip-mode:hover .pip-pause {
    opacity: 1 !important
}

.pip-mode .overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.pip-mode iframe {
    pointer-events: none !important
}

[data-playerid] {
    opacity: 0
}

[data-playerid].audio.plyr-initialized {
    opacity: 1
}

.plyr--paused.plyr__poster-enabled .plyr__poster {
    display: block !important;
    opacity: 1
}

@media only screen and (max-width: 767px) {

    .plyr__controls [data-plyr="restart"],
    .plyr__controls [data-plyr="rewind"],
    .plyr__controls [data-plyr="fast-forward"],
    .plyr__controls [data-plyr="pip"] {
        display: none !important
    }

    .plyr__video-wrapper iframe {
        max-height: 100% !important
    }

    .plyr__controls .plyr__volume input[type=range] {
        max-width: 40px;
        min-width: 40px
    }
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #ddd;
    justify-content: center;
    gap: 30px;
    padding-bottom: 30px
}

.posts-tab-options {
    text-align: center;
    margin: 0
}

.posts-tab-options .tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    border-radius: 5px;
    gap: 25px;
    padding: 0
}

.posts-tab-options .tabs svg {
    width: 15px;
    height: 15px
}

li[data-media-type="ALL"] svg {
    width: 12px;
    height: 12px
}

.posts-tab-options .tabs li {
    margin-right: 15px;
    cursor: pointer;
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.posts-tab-options .tabs li:last-child {
    margin-right: 0
}

.posts-tab-options .tabs li.active {
    position: relative;
    color: rgb(115, 115, 115)
}

.posts-tab-options .tabs li svg {
    border-radius: 2px
}

.posts-tab-options .tabs li.active svg {
    color: rgb(115, 115, 115)
}

.posts-tab-options .tabs li:hover,
.posts-tab-options .tabs li:hover svg,
.posts-tab-options .tabs li:hover .fill-color {
    color: rgb(115, 115, 115)
}

.posts-tab-options .tabs li:hover .fill-color,
.posts-tab-options .tabs li.active .fill-color {
    fill: rgb(115, 115, 115) !important
}

.posts-tab-options .tabs li.active::after {
    content: '';
    position: absolute;
    top: -1px;
    height: 1px;
    width: 100%;
    background-color: rgb(115, 115, 115);
    left: 0;
    right: 0
}

.profile-image {
    margin-right: 16px
}

.posts-count {
    margin-right: 15px
}

.profile-image img {
    width: 120px;
    height: 120px !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: 3px solid #037bff
}

.change-photo-button {
    background-color: transparent;
    border: none;
    cursor: pointer
}

.change-photo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover
}

.username-section {
    display: flex;
    align-items: center;
    margin-bottom: 8px
}

.profile-link {
    text-decoration: none
}

.username {
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px
}

.edit-profile-link {
    text-decoration: none;
    color: #3897f0;
    font-weight: bold
}

.profile-stats {
    display: flex;
    margin-bottom: 8px
}

.stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex
}

.stats-list li {
    margin-right: 24px;
    font-size: 14px
}

.bio-section {
    margin-bottom: 12px;
    text-align: left
}

section.profile-details div:last-child {
    margin: 0
}

.bio {
    font-size: 14px
}

a.edit-profile-link {
    padding: 8px 15px;
    background: #efefef;
    text-decoration: none !important;
    border-radius: 7px;
    color: #222;
    font-size: 12px;
    font-weight: 500
}

span.count {
    font-weight: 600
}

a.followers-link {
    text-decoration: none !important
}

a.profile-link,
a.profile-link h2 {
    font-size: 20px;
    text-decoration: none !important;
    margin: 0;
    margin-right: 15px
}

.embedpress-insta-container {
    overflow: hidden;
    position: relative
}

.ose-instagram-feed {
    max-height: 100% !important;
    height: 100% !important
}

.insta-grid .embedpress-insta-container .insta-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    grid-auto-flow: row
}

.insta-carousel .embedpress-insta-container .insta-gallery {
    grid-auto-columns: calc(25% + 0px);
    gap: 0px;
    left: 0px
}

.insta-masonry .embedpress-insta-container .insta-gallery {
    column-count: 3;
    gap: .5em;
    margin: auto;
    width: 100%;
    display: inherit
}

.insta-grid .embedpress-insta-container .insta-gallery-item {
    position: relative;
    color: #fff;
    cursor: pointer;
    height: 350px
}

.embedpress-insta-container .insta-gallery-item:hover {
    cursor: pointer
}

.insta-masonry .embedpress-insta-container .insta-gallery .insta-gallery-item {
    height: auto;
    margin-bottom: .5em
}

.insta-masonry .embedpress-insta-container .insta-gallery .insta-gallery-item video.insta-gallery-image {
    height: 550px;
    margin-bottom: -13px
}

.embedpress-insta-container .insta-gallery-item .insta-gallery-item-info,
.embedpress-insta-container .insta-gallery-item .insta-gallery-item-info {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden
}

.insta-masonry .embedpress-insta-container .insta-gallery-item .insta-gallery-item-info {
    height: calc(100% + 4px)
}

.embedpress-insta-container .insta-gallery-item:hover .insta-gallery-item-info,
.embedpress-insta-container .insta-gallery-item:hover .insta-gallery-item-info {
    opacity: 1;
    visibility: visible
}

.embedpress-insta-container .insta-gallery-item-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    height: 100%
}

.embedpress-insta-container .insta-gallery-item-info li {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 600;
    gap: 5px
}

.embedpress-insta-container .insta-gallery-item-likes {
    margin-right: 2.2rem
}

.embedpress-insta-container .insta-gallery-item-type {
    position: absolute;
    right: 1rem;
    top: 1rem;
    text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, .1)
}

.embedpress-insta-container .insta-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px
}

.insta-masonry .embedpress-insta-container .insta-gallery-image {
    margin-bottom: -13px
}

.insta-gallery-item-info svg {
    width: 40px;
    height: 40px
}

.insta-item-reaction-count {
    display: flex
}

.insta-item-reaction-count .insta-gallery-item-likes,
.insta-item-reaction-count .insta-gallery-item-comments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    font-weight: bold;
    color: #fff
}

.insta-gallery-item-info .insta-item-reaction-count svg {
    width: 25px;
    height: 25px
}

.insta-gallery-item-type svg {
    width: 25px;
    height: 25px
}

.insta-gallery-item-type svg.insta-video-icon {
    width: 22px;
    height: 22px
}

.cg-carousel__btns.hidden {
    display: none
}

.cg-carousel__btns {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 100%
}

.ep-embed-content-wraper.insta-carousel .cg-carousel__btns {
    top: calc(50% - 16px)
}

.ep-embed-content-wraper.insta-carousel .insta-gallery-item-permalink {
    display: flex;
    align-content: center
}

.cg-carousel__btns button {
    background: #262323;
    border: 0;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    display: inline-grid;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0
}

button#js-carousel__prev-1 {
    position: absolute;
    left: 30px;
    z-index: 1;
    padding: 8px 15px
}

button#js-carousel__next-1 {
    position: absolute;
    right: 30px;
    z-index: 1;
    padding: 8px 15px
}

.embedpress-popup-block.embedpress-popup-img {
    position: relative;
    height: 100%;
    display: flex;
    background: #000
}

.popup-carousel,
.cg-carousel__track {
    height: 100%
}

.popup-container .popup-carousel .cg-carousel__track {
    align-items: center;
    background-color: #000
}

.popup-container .popup-carousel {
    background-color: #000
}

button.js-carousel__prev-1 {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

button.js-carousel__next-1 {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.cg-carousel__btn svg {
    width: 16px;
    height: 16px
}

.load-more-button-container,
.load-more-button-container button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.load-more-button-container button {
    border-style: solid;
    border-top-width: 0;
    border-right-width: 0;
    border-left-width: 0;
    border-bottom-width: 0;
    color: #fff;
    border-color: #037bff;
    background-color: #037bff;
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 30px
}

.popup-container {
    display: flex;
    width: 100%
}

.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999
}

.popup {
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    max-width: 100%
}

.popup-container .popup-md-9.white {
    width: 60%;
    overflow: hidden
}

.popup-md-3.red {
    width: 40%
}

.embedpress-popup-img img {
    width: 100%;
    height: auto;
    object-fit: contain
}

video.popup-media-image {
    height: auto;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

img.popup-media-image {
    height: auto
}

.embedpress-popup-header,
.embedpress-hashtag-header {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    justify-content: space-between;
    border-bottom: 1px solid #f4e9e9
}

.hashtag-container {
    border-bottom: 1px solid #f4e9e9
}

.embedpress-hashtag-header {
    border: none;
    max-width: 350px;
    margin: auto
}

.embedpress-hashtag-username {
    font-weight: bold
}

.embedpress-popup-header-img img,
.embedpress-hashtag-header-img img {
    border-radius: 50% !important;
    margin-right: 10px;
    width: 30px;
    height: 30px !important;
    object-fit: cover;
    border: 2px solid #037bff !important
}

.embedpress-popup-header-img a,
.embedpress-hashtag-header-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important
}

.embedpress-popup-username {
    color: #005293;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none !important
}

img.embedpress-hashtag-round {
    border-radius: 50px !important
}

.insta-followbtn a {
    text-decoration: none !important;
    padding: 6px 15px;
    background: #007bff;
    border-radius: 5px;
    color: #fff !important;
    font-size: 14px;
    font-weight: normal
}

.embedpress-popup-block.embedpress-popup-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    height: 100%;
    background-color: #fff
}

.embedpress-popup-text {
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    letter-spacing: 0.04em;
    line-height: 1.8rem;
    padding: 10px;
    flex: auto;
    border-bottom: 1px solid #f4e9e9;
    text-align: left;
    max-height: calc(100vh - 235px);
    overflow: auto;
    word-break: break-all
}

.embedpress-popup-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px
}

.embedpress-popup-stats .embedpress-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    position: relative
}

.embedpress-popup-stats .embedpress-inline a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    text-decoration: none;
    font-weight: 400
}

.embedpress-popup-stats .embedpress-inline a svg {
    width: 20px;
    height: 20px
}

.embedpress-popup-share-buttons {
    padding: 10px;
    background-color: #fafafa;
    display: flex;
    align-items: center
}

.embedpress-popup-share-buttons a {
    color: #007bff
}

.embedpress-href.embedpress-popup-share {
    cursor: pointer;
    color: #ca379d;
    display: flex;
    align-items: center;
    gap: 6px
}

.embedpress-popup-share-buttons {
    background: #f4f9ff;
    position: absolute;
    top: -50px;
    left: -55px;
    gap: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    margin-bottom: -10px;
    transition: 0.3s
}

.embedpress-popup-share-buttons.show {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0
}

.embedpress-popup-share-buttons::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #f4f9ff transparent transparent transparent
}

.embedpress-popup-share-buttons::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #f4f9ff transparent transparent transparent;
    z-index: 1 !important
}

.embedpress-popup-share-buttons::after {
    content: "";
    position: absolute;
    bottom: -16.1px;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #e7eaef transparent transparent transparent
}

.embedpress-popup-share-buttons span {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center
}

.embedpress-popup-share-buttons span svg {
    width: 16px !important;
    height: 16px !important
}

.embedpress-popup-share-buttons span.dashicons.dashicons-linkedin {
    color: #0077b5
}

.embedpress-popup-share-buttons span.dashicons.dashicons-facebook {
    color: #1877F2
}

.embedpress-popup-share-buttons span.dashicons.dashicons-pinterest {
    color: #E60023
}

span.tag-wrapper a {
    font-weight: bold;
    text-decoration: none !important
}

.embedpress-href.embedpress-popup-share svg {
    width: 20px;
    height: 20px
}

.embedpress-popup-instagram-buttons svg {
    width: 18px !important;
    height: 20px !important
}

.embedpress-popup-stats .embedpress-inline {
    transition: 0.3s
}

.embedpress-popup-stats .embedpress-inline:hover svg,
.embedpress-popup-stats .embedpress-inline a:hover,
.embedpress-popup-stats .embedpress-inline:hover,
.embedpress-href:hover svg .st0 {
    color: rgb(115, 115, 115) !important
}

.embedpress-inline.embedpress-popup-instagram-buttons a:hover svg path {
    stroke: rgb(115, 115, 115)
}

.embedpress-inline.popup-like-button a:hover svg {
    color: rgb(115, 115, 115);
    fill: rgb(115, 115, 115)
}

.embedpress-href.embedpress-popup-share:hover svg {
    fill: rgb(115, 115, 115)
}

.date-post {
    padding: 10px;
    font-size: 12px;
    color: #8e8e8e
}

div.popup-close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: white;
    z-index: 15566555655;
    cursor: pointer;
    padding: 15px;
    background: #643535;
    border-radius: 50px;
    height: 10px;
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer
}

.load-spin {
    width: 100px;
    height: 100px;
    background-color: #f00;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader {
    margin: auto;
    border: 5px solid #EAF0F6;
    border-radius: 50%;
    border-top: 5px solid #FF7A59;
    width: 30px;
    height: 30px;
    animation: spinner 4s linear infinite
}

.sponsored-youtube-video {
    height: 100%
}

@keyframes spinner {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media screen and (max-width: 1200px) {
    .popup-container .popup-md-9.white {
        width: 50%
    }

    .popup-container .popup-md-3 {
        width: 50%
    }
}

@media screen and (max-width: 991px) {
    .popup-container {
        flex-direction: column
    }

    .popup-container .popup-md-9.white {
        width: 100%
    }

    .popup-container .popup-md-3 {
        width: 100%
    }

    .embedpress-popup-text {
        max-height: 300px
    }
}

@media screen and (max-width: 768px) {
    .insta-grid .embedpress-insta-container .insta-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important
    }

    .embedpress-popup-text {
        max-height: 250px
    }
}

@media screen and (max-width: 420px) {
    .insta-grid .embedpress-insta-container .insta-gallery {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important
    }

    .profile-header {
        flex-direction: column
    }

    .embedpress-popup-text {
        max-height: 200px
    }

    .insta-followbtn {
        display: none
    }
}

.ep-player-wrap .hide {
    display: none
}

.ep-gdrp-content {
    background: #222;
    padding: 50px 30px;
    color: #fff
}

.ep-gdrp-content a {
    color: #fff
}

.ep-youtube__content__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px
}

.ep-loader-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center
}

.ep-youtube__content__pagination .ep-prev,
.ep-youtube__content__pagination .ep-next {
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 30px;
    padding: 0 20px;
    height: 40px;
    transition: .3s;
    display: flex;
    align-items: center
}

.ep-youtube__content__pagination .ep-prev:hover,
.ep-youtube__content__pagination .ep-next:hover {
    background-color: #5B4E96;
    color: #fff
}

.ep-youtube__content__pagination .ep-page-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.ep-youtube__content__pagination .ep-page-numbers>span {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 30px;
    display: inline-block;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center
}

.active__current_page {
    background: #5B4E96;
    color: #fff
}

.ep-youtube__content__block .youtube__content__body .content__wrap:not(.youtube-carousel) {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

[data-source-id] .layout-list .ep-youtube__content__block .youtube__content__body .content__wrap {
    grid-template-columns: repeat(auto-fit, minmax(calc(100% - 30px), 1fr)) !important
}

[data-youtube-channel-carousel].ep-youtube__content__block {
    position: relative
}

.ep-youtube__content__block .item {
    cursor: pointer;
    white-space: initial
}

.ep-youtube__content__block .youtube-carousel .item {
    margin: 10px
}

.ep-youtube__content__block .item:hover .thumb .play-icon {
    opacity: 1;
    top: 50%
}

.ep-youtube__content__block .item:hover .thumb:after {
    opacity: .4;
    z-index: 0
}

.ep-youtube__content__block .thumb {
    padding-top: 56.25%;
    margin-bottom: 5px;
    position: relative;
    background-color: #222;
    background-size: contain !important;
    border-radius: 12px;
    overflow: hidden
}

figure .ep-youtube__content__block .thumb {
    background-color: #222 !important
}

.ep-youtube__content__block .thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: #000;
    opacity: 0;
    transition: opacity .3s ease
}

.ep-youtube__content__block .thumb:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: #222;
    z-index: -1
}

.ep-youtube__content__block .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ep-youtube__content__block .thumb .play-icon {
    width: 50px;
    height: auto;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease;
    z-index: 2
}

.ep-youtube__content__block .thumb .play-icon img {
    width: 100
}

.ep-youtube__content__block .body p {
    margin-bottom: 0;
    font-size: 15px;
    text-align: left;
    line-height: 1.5;
    font-weight: 400
}

.ep-youtube__content__block.loading .ep-youtube__content__pagination {
    display: none
}

.ep-youtube__content__block .ep-loader {
    display: none
}

.ep-youtube__content__block.loading .ep-loader {
    display: block
}

.ep-loader img {
    width: 20px
}

.is_mobile_device {
    display: none !important
}

.is_mobile_devic.ep-page-numbers {
    gap: 5px
}

@media only screen and (max-width: 480px) {
    .is_desktop_device {
        display: none !important
    }

    .ep-youtube__content__pagination .ep-page-numbers>span {
        width: 35px;
        height: 35px
    }

    .ep-youtube__content__pagination .ep-prev,
    .ep-youtube__content__pagination .ep-next {
        height: 35px
    }

    .is_mobile_device {
        display: flex !important;
    }

    .ep-youtube__content__pagination .ep-page-numbers {
        gap: 5px
    }
}

.embedded-youtube-channel .ose-youtube {
    height: 100% !important;
    max-height: 100% !important
}

.ose-youtube .channel-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px
}

.ose-youtube .profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px
}

.ose-youtube .channel-info {
    flex-grow: 1;
    text-align: left
}

.ose-youtube .info-description {
    margin-bottom: 20px
}

.ose-youtube .channel-name {
    font-size: 24px;
    margin: 0
}

.ose-youtube .channel-details {
    margin: 5px 0
}

.ose-youtube .more-info {
    text-decoration: none
}

.ose-youtube .subscribe-button {
    background-color: red;
    border: none;
    padding: 10px 20px 10px 12px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    color: white;
    font-weight: 600
}

.ose-youtube .subscribe-button svg {
    height: 20px;
    width: 20px;
    margin-right: 5px
}

.ose-youtube .subscribe-button:hover {
    background-color: #ff6868
}

.video-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95)
}

.video-popup-content {
    position: absolute;
    left: 50%;
    top: calc(50% + 30px);
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center
}

.video-popup-inner-content {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    overflow: auto !important;
    border: 1px solid #333;
    border-radius: 8px;
    background: #000;
    box-sizing: border-box;
    padding: 20px
}

.video-popup-content iframe {
    width: 700px !important;
    height: 420px !important;
    max-width: 100%;
    max-height: 100%
}

.video-popup .close {
    position: absolute;
    top: -25px;
    right: -30px;
    color: #fff;
    font-size: 35px
}

.video-popup .close:hover,
.video-popup .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer
}

.video-popup .popup-controls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none
}

.video-popup .nav-icon {
    pointer-events: auto;
    color: white;
    font-size: 50px;
    cursor: pointer;
    user-select: none
}

.video-popup .prev-icon {
    position: absolute;
    left: -60%;
    top: 50%;
    transform: translate(0, -50%);
    padding: 10px
}

.video-popup .next-icon {
    position: absolute;
    right: -60%;
    top: 50%;
    transform: translate(0, -50%);
    padding: 10px
}

#videoDescription {
    color: #fff;
    font-size: 14px
}

.youtube-video-description {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    bottom: no;
    max-width: 700px;
    text-align: left
}

.youtube-video-header h1 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #fff
}

.youtube-video-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px
}

.youtube-video-meta span {
    margin-right: 10px
}

.youtube-video-body {
    max-height: 200px;
    overflow: auto
}

.youtube-video-body p {
    font-size: 15px;
    margin: 0 0 20px 0;
    color: #ddd
}

.youtube-video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px
}

.youtube-video-link {
    font-size: 16px;
    color: #0073aa;
    text-decoration: none
}

.youtube-video-link:hover {
    text-decoration: underline
}

.youtube-video-stats {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 18px
}

.youtube-video-stats svg {
    height: 12px;
    width: 14px
}

.youtube-video-stats span {
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dad2d2
}

.youtube-video-stats i {
    margin-right: 5px
}

.youtube-body-content .description-container {
    display: flex;
    border-radius: 4px;
    max-width: 600px;
    text-align: left;
    margin-top: 10px
}

.youtube-body-content.body {
    width: 100%
}

.youtube-body-content .thumbnail {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin-right: 10px
}

.youtube-body-content .thumbnail img {
    border-radius: 50%;
    margin-right: 10px;
    width: 30px;
    height: 30px
}

.youtube-body-content .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 30px)
}

.youtube-body-content .title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.4
}

.youtube-body-content .channel,
.youtube-body-content .views,
.youtube-body-content .time {
    font-size: 14px;
    color: #606060
}

.youtube-body-content .channel {
    margin-bottom: 4px
}

.ep-player-wrap.layout-gallery .ep-first-video iframe {
    border-radius: 15px
}

.ep-player-wrap.layout-list .ep-youtube__content__block .item {
    display: flex;
    width: 100%;
    gap: 20px
}

.ep-player-wrap.layout-list .ep-youtube__content__block .thumb {
    padding-top: 20.25%;
    min-width: 250px;
    max-width: 300px
}

[data-youtube-channel-carousel] .youtube-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden
}

[data-youtube-channel-carousel] .youtube-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out
}

[data-youtube-channel-carousel] .youtube-carousel .item {
    min-width: calc(33.3333% - 20px);
    box-sizing: border-box
}

[data-youtube-channel-carousel] button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    box-shadow: none;
    background-color: #000000ba;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center
}

[data-youtube-channel-carousel] button.preview {
    left: -100px
}

.carousel-controls button.next {
    right: -100px
}

.fc-list-table .fc-event,
.fc-list-table .fc-event:hover {
    color: inherit !important;
    text-decoration: none !important
}

.fc-list-table .fc-event,
.fc-list-table .fc-event-dot {
    background-color: transparent !important
}

.fc table.fc-list-table {
    table-layout: inherit !important
}

.fc-list-table .fc-event {
    display: table-row !important
}

@media screen and (max-width: 1400px) {
    .ose-youtube .video-popup-content iframe {
        height: 305px !important
    }

    .ose-youtube .prev-icon {
        left: -50%
    }

    .ose-youtube .next-icon {
        right: -50%
    }
}

@media screen and (max-width: 1200px) {
    .ose-youtube .video-popup-content iframe {
        height: 305px !important
    }

    .ose-youtube .prev-icon {
        left: -40%
    }

    .ose-youtube .next-icon {
        right: -40%
    }
}

@media screen and (max-width: 992px) {
    .ose-youtube .video-popup-content iframe {
        height: 305px !important
    }

    .ose-youtube .prev-icon {
        left: -40%
    }

    .ose-youtube .next-icon {
        right: -40%
    }
}

@media screen and (max-width: 576px) {
    .ose-youtube .prev-icon {
        left: -26%
    }

    .ose-youtube .next-icon {
        right: -26%
    }
}

@media screen and (max-width: 580px) {
    .ose-youtube .prev-icon {
        left: -18%
    }

    .ose-youtube .next-icon {
        right: -18%
    }
}

.youtube-video-body {
    display: none
}

.video-popup-content {
    width: 100%;
    max-width: 720px;
    margin: auto
}

@media (max-width: 1024px) {
    .youtube-carousel .item {
        min-width: calc(50% - 20px) !important
    }
}

@media (max-width: 768px) {
    .youtube-carousel .item {
        min-width: calc(100% - 20px) !important
    }

    [data-youtube-channel-carousel] button.preview {
        left: 0 !important
    }

    [data-youtube-channel-carousel] button.next {
        right: 0
    }

    .video-popup-content {
        width: calc(100% - 40px);
        margin: auto
    }

    .video-popup-content iframe {
        max-height: 300px
    }

    .video-popup .close {
        top: -25px;
        transform: translate(0%, -50%);
        right: unset
    }
}

@media (max-width: 580px) {
    .ep-first-video {
        margin-bottom: 20px
    }

    .video-popup-content iframe {
        max-height: 220px
    }

    .ep-player-wrap .ep-youtube__content__block .item {
        gap: 15px
    }

    .ep-embed-content-wraper .ep-youtube__content__block .youtube__content__body .content__wrap {
        gap: 30px !important
    }

    .ose-youtube .profile-picture {
        width: 80px;
        height: 80px
    }

    .ose-youtube .channel-header {
        gap: 10px;
        align-items: start;
        padding: 0
    }

    .description-container {
        margin-top: 0px
    }

    .description-container p.description {
        display: none
    }

    .ep-player-wrap.layout-list .ep-youtube__content__block .item {
        flex-direction: column
    }

    .ep-player-wrap.layout-list .ep-youtube__content__block .thumb {
        min-width: 100%;
        min-height: 200px
    }
}

#wordfenceBox,
#wfboxOverlay,
#wfboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 16777271;
    overflow: hidden
}

#wfboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%
}

#wfboxMiddleLeft,
#wfboxBottomLeft {
    clear: left
}

#wfboxContent {
    position: relative
}

#wfboxLoadedContent {
    overflow: auto
}

#wfboxTitle {
    margin: 0
}

#wfboxLoadingOverlay,
#wfboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

#wfboxPrevious,
#wfboxNext,
#wfboxClose,
#wfboxSlideshow {
    cursor: pointer
}

.wfboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block
}

.wfboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0
}

#wfboxOverlay {
    background: #777;
    background: -webkit-radial-gradient(rgba(120, 120, 120, 0.8), rgba(100, 100, 100, 0.8) 50%, rgba(70, 70, 70, 1));
    background: -moz-radial-gradient(rgba(120, 120, 120, 0.6), rgba(100, 100, 100, 0.8) 20%, rgba(70, 70, 70, 1))
}

#wordfenceBox {
    color: #444;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1.4em
}

#wfboxContent {
    background: #fff;
    overflow: hidden;
    padding: 0 0 8px;
    margin: 20px;
    -webkit-border-radius: 3px 3px 2px 2px;
    -moz-border-radius: 3px 3px 2px 2px;
    border-radius: 3px 3px 2px 2px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    -webkit-background-clip: padding-box
}

#wfboxError {
    padding: 50px;
    border: 1px solid #ccc
}

#wfboxLoadedContent {
    margin: 10px 20px 28px 20px;
    font-family: Arial;
    color: #333;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0
}

#wfboxTitle {
    position: absolute;
    bottom: 8px;
    left: 5px;
    text-align: center;
    width: 100%;
    color: #949494
}

#wfboxCurrent {
    position: absolute;
    bottom: 8px;
    left: 63px;
    color: #949494;
    text-indent: -9999px
}

#wfboxSlideshow {
    position: absolute;
    bottom: 8px;
    right: 35px;
    color: #0092ef
}

#wfboxPrevious {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: url(/wp-content/plugins/wordfence/images/lightbox-controls.png) no-repeat -75px 0;
    width: 25px;
    height: 25px;
    text-indent: -9999px
}

#wfboxPrevious.hover {
    background-position: -75px -25px
}

#wfboxNext {
    position: absolute;
    bottom: 5px;
    left: 32px;
    background: url(/wp-content/plugins/wordfence/images/lightbox-controls.png) no-repeat -50px 0;
    width: 25px;
    height: 25px;
    text-indent: -9999px
}

#wfboxNext.hover {
    background-position: -50px -25px
}

#wfboxLoadingOverlay {
    background: url(/wp-content/plugins/wordfence/images/loading_background.png) no-repeat center center
}

#wfboxLoadingGraphic {
    background: url(/wp-content/plugins/wordfence/images/loading.gif) no-repeat center center
}

#wfboxClose {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: url(/wp-content/plugins/wordfence/images/lightbox-controls.png) no-repeat -25px 0;
    width: 25px;
    height: 25px;
    text-indent: -9999px
}

#wfboxClose.hover {
    background-position: -25px -25px
}

.wfboxIE #wfboxTopLeft,
.wfboxIE #wfboxTopCenter,
.wfboxIE #wfboxTopRight,
.wfboxIE #wfboxBottomLeft,
.wfboxIE #wfboxBottomCenter,
.wfboxIE #wfboxBottomRight,
.wfboxIE #wfboxMiddleLeft,
.wfboxIE #wfboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF)
}

#wordfenceBox,
#wordfenceBox:before,
#wordfenceBox:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

#wordfenceBox h1,
#wordfenceBox h2,
#wordfenceBox h3,
#wordfenceBox h4,
#wordfenceBox h5,
#wordfenceBox h6 {
    display: block;
    font-weight: 600
}

#wordfenceBox h1 {
    font-size: 2em;
    margin: .67em 0
}

#wordfenceBox h2,
#wordfenceBox h3 {
    font-size: 1.3em;
    margin: 1em 0
}

#wordfenceBox h1,
#wordfenceBox h2,
#wordfenceBox h3 {
    color: #23282d
}

#wordfenceBox p {
    font-size: 13px;
    line-height: 1.5;
    margin: 1em 0
}

#wordfenceBox .textright {
    text-align: right
}

#wordfenceBox .button,
#wordfenceBox .button-primary,
#wordfenceBox .button-secondary {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 26px;
    height: 28px;
    margin: 0;
    padding: 0 10px 1px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#wordfenceBox .button,
#wordfenceBox .button-secondary {
    color: #555;
    border-color: #ccc;
    background: #f7f7f7;
    -webkit-box-shadow: 0 1px 0 #ccc;
    box-shadow: 0 1px 0 #ccc;
    vertical-align: top
}

#wordfenceBox p .button {
    vertical-align: baseline;
    font-family: Arial, san-serif;
    font-weight: normal;
    text-transform: none
}

#wordfenceBox p code {
    padding: 3px 5px 2px;
    margin: 0 1px;
    background: #eaeaea;
    background: rgba(0, 0, 0, .07);
    font-size: 13px
}

#wordfenceBox .button-secondary:focus,
#wordfenceBox .button-secondary:hover,
#wordfenceBox .button.focus,
#wordfenceBox .button.hover,
#wordfenceBox .button:focus,
#wordfenceBox .button:hover {
    background: #fafafa;
    border-color: #999;
    color: #23282d
}

#wordfenceBox a.wfboxhelp {
    float: left;
    background-image: url(/wp-content/plugins/wordfence/images/help.png);
    width: 12px;
    height: 12px;
    background-position: 0 0;
    background-repeat: no-repeat;
    padding: 0;
    margin: 9px 0px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle
}

/*!
Theme Name: Chicago 1924
Theme URI: http://underscores.me/
Author: Pilot Digital
Author URI: http://pilotdigital.com
Description: first aerial circumnavigation of the world
Version: 1.1.5
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: chicago-1924
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Chicago 1924 is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both
}

p {}

dfn,
cite,
em,
i {
    font-style: italic
}

blockquote {
    margin: 0 1.5em
}

address {
    margin: 0 0 1.5em
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none
}

big {
    font-size: 125%
}

html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

body {
    background: #fff
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em
}

ul,
ol {
    margin: 0 0 1.5em 3em
}

ul {
    list-style: disc
}

ol {
    list-style: decimal
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em
}

dt {
    font-weight: bold
}

dd {
    margin: 0 1.5em 1.5em
}

img {
    height: auto;
    max-width: 100%
}

figure {
    margin: 1em 0
}

table {
    margin: 0 0 1.5em;
    width: 100%
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb
}



.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%
}

.main-navigation ul ul a {
    width: 200px
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {}

.main-navigation li {
    float: left;
    position: relative
}

.main-navigation a {
    display: block;
    text-decoration: none
}

.menu-toggle,
.main-navigation.toggled ul {
    display: block
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none
    }

    .main-navigation ul {
        display: block
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

#content[tabindex="-1"]:focus {
    outline: 0
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both
}

.widget {
    margin: 0 0 1.5em
}

.widget select {
    max-width: 100%
}

.sticky {
    display: block
}

.post,
.page {
    margin: 0 0 1.5em
}

.updated:not(.published) {
    display: none
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0
}

.page-links {
    clear: both;
    margin: 0 0 1.5em
}

.comment-content a {
    word-wrap: break-word
}

.bypostauthor {
    display: block
}

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none
}

.infinity-end.neverending .site-footer {
    display: block
}

#pilot_name_notice {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    opacity: 0
}

#pilot_name_notice.isVisible {
    position: fixed;
    top: 20vh;
    left: 10vw;
    height: 100%;
    width: 80vw;
    z-index: 100;
    opacity: 100;
    transition: all 1s;
    cursor: pointer
}

.blocker.isVisible {
    z-index: -1;
    background: #000;
    opacity: .3;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer
}

#pilot_name_notice.isVisible>div.noticecontent {
    width: 100%;
    z-index: 1;
    margin: auto
}

#pilot_name_notice .section-cta {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    top: 0
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

embed,
iframe,
object {
    max-width: 100%
}

.custom-logo-link {
    display: inline-block
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0
}

.wp-caption-text {
    text-align: center
}

.gallery {
    margin-bottom: 1.5em
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%
}

.gallery-columns-2 .gallery-item {
    max-width: 50%
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%
}

.gallery-columns-4 .gallery-item {
    max-width: 25%
}

.gallery-columns-5 .gallery-item {
    max-width: 20%
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%
}

.gallery-caption {
    display: block
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

ul.menu li,
ul.menu,
ul.sub-menu li,
ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.main-navigation a {
    text-decoration: none
}

.wrapper {
    max-width: 1400px;
    margin: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.content-width,
.main-width {
    margin: auto
}

.content-block-container>.content-block {
    max-width: var(--maxWidth);
    margin: auto
}

.content-block.hasbkg,
.content-block-container.hasbkg {
    overflow: hidden;
    position: relative;
    clear: both
}

.content-block.hasbkg>img.bkgimg,
.content-block-container.hasbkg>img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    z-index: -1
}

.wall-to-wall {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw
}

.mk-clk {
    cursor: pointer
}

.topBarContainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end
}

.topBarContainer .menu-top-left-container,
.topBarContainer .menu-top-right-container {
    flex: 1 1 50%
}

.topBarContainer .menu-top-right-container {
    text-align: right
}

.topBarContainer .menu-top-left-container ul li,
.topBarContainer .menu-top-right-container ul li {
    display: inline-block
}

.site-branding .site-title {
    display: none;
    visibility: hidden
}

.site-header {
    position: relative
}

header.site-header.didScroll {
    background: white
}

.searchIcon::after {
    content: '\e8b6';
    transition: all 0.3s ease
}

.search-toggle.active .searchIcon::after {
    content: '\e5cd'
}

@media screen and (min-width:769px) {
    .search-toggle {
        float: right;
        width: 2em;
        text-align: right;
        cursor: pointer;
        line-height: 1
    }

    .search-toggle:hover,
    .search-toggle.active {
        color: var(--accent)
    }

    .search-toggle .screen-reader-text {
        top: 0;
        right: 0
    }
}

.search-box-wrapper {
    z-index: 2;
    width: 100%;
    background: var(--neutral-100);
    padding: 1rem;
    position: absolute
}

@media screen and (max-width:768px) {
    .search-box-wrapper {
        bottom: var(--height-of-thumb-menu)
    }
}

.search-form {
    display: flex;
    margin-bottom: 0
}

.search-form label {
    flex: 1 1 auto
}

.search-form .search-submit {
    flex: 0 1 auto;
    display: inline-block;
    margin: 0
}

.search-form .search-field {
    border: 0;
    padding: .75rem;
    width: 99%;
    -webkit-appearance: none;
    -moz-appearance: none
}

.hide {
    display: none
}

@media screen and (max-width: 600px) {
    .search-toggle {}
}

.blog .content-area .blog-categories ul {
    display: inline;
    text-align: center;
    padding: 0;
    margin: 0 auto
}

.blog .content-area .blog-categories ul>li {
    display: inline
}

input#sa_submit {
    text-indent: 100%;
    overflow: hidden;
    width: 2em;
    padding: 0;
    margin-left: 2em;
    background-size: 80% auto;
    background-position: center center;
    background-filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="search" class="svg-inline--fa fa-search fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path></svg>')
}

input#sa_submit::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: .5rem;
    content: '\f002'
}

.page-template-template-wall-to-wall #content.site-content.wrapper {
    max-width: 100% !important
}

.page-template-template-two-column .site-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap
}

.page-template-template-two-column .site-content .content-area {
    flex: 1 1 50%;
    box-sizing: border-box;
    margin-right: 1em
}

.page-template-template-two-column .site-content .widget-area {
    flex: 1 1 50%
}

.single .entry-header,
.page .site-main>article>.entry-header {
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 0;
    padding-left: calc((100vw - var(--maxWidth))/2 + 1em);
    padding-right: calc((100vw - var(--maxWidth))/2 + 1em)
}

.single .entry-header img.headerImage,
.page .site-main>article>.entry-header img.headerImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1
}

.single .entry-header>*,
.page .site-main>article>.entry-header>* {
    z-index: 3
}

.page .site-main>article>.entry-header img.headerImage[src*=".svg"] {
    width: 50%;
    left: auto;
    top: auto;
    right: 0;
    z-index: 0
}

.page article.hide-entry-header>header.entry-header {
    height: auto !important;
    margin-bottom: 0 !important;
    ;
    display: none;
    visibility: hidden
}

.page-header {
    position: relative;
    overflow: hidden;
    z-index: 0
}

.page-header>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    object-fit: cover
}

.page-header>* {
    z-index: 1
}

@supports (display: grid) {
    .page .page-header {
        padding: 0;
        color: white;
        display: -ms-grid;
        display: grid;
        gap: 0 1rem;
        -ms-grid-columns: 1fr 195px 195px 195px 195px 195px 195px 1fr;
        grid-template-columns:
            [full-start] calc((100vw - var(--maxWidth))/2) [main-start] repeat(6, minmax(0, 9.5rem)) [main-end] calc((100vw - var(--maxWidth))/2) [full-end]
    }

    .page-header>* {
        grid-column: 2 / span 6
    }

    .page-header>img {
        position: relative;
        grid-column: 1 /span 8;
        grid-row: 1 / -1;
        width: 100%;
        z-index: 0;
        object-fit: cover
    }
}

.slick-slider .slick-prev {
    text-indent: 100%;
    color: var(--neutral-500);
    overflow: hidden;
    padding: 0;
    background: none
}

.slick-slider .slick-next {
    text-indent: 100%;
    color: var(--neutral-500);
    overflow: hidden;
    padding: 0;
    background: none
}

.slick-slider {
    padding: 0
}

.wall-to-wall.slick-slider li {
    list-style: none
}

.wall-to-wall.slick-slider .slick-slide a {
    width: 100%;
    text-decoration: none;
    border: none
}

.wp-block-gallery.wall-to-wall.slick-slider .blocks-gallery-item img {
    width: 100%
}

ul.slick-slider li::before {
    content: ''
}

.wp-block-group__inner-container .slick-slider,
.carousel .slick-slider,
.wall-to-wall.slick-slider {
    display: -ms-grid;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 4em 1fr 4em;
    -ms-grid-columns: 4em 1fr 4em;
    -ms-grid-rows: 1fr
}

.wp-block-group__inner-container .slick-slider button.slick-prev,
.carousel .slick-slider button.slick-prev,
.wall-to-wall.slick-slider button.slick-prev {
    grid-row: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    z-index: 5
}

.wp-block-group__inner-container .slick-slider div.slick-list,
.carousel .slick-slider div.slick-list,
.wall-to-wall.slick-slider div.slick-list {
    grid-row: 1;
    grid-column: 1 / span 3;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3
}

.wp-block-group__inner-container .slick-slider button.slick-next,
.carousel .slick-slider button.slick-next,
.wall-to-wall.slick-slider button.slick-next {
    grid-row: 1;
    grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    z-index: 5
}

.wp-block-group__inner-container .slick-slider ul.slick-dots,
.carousel .slick-slider ul.slick-dots,
.wall-to-wall.slick-slider ul.slick-dots {
    grid-row: 1;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-align: center;
    -ms-grid-row-align: end;
    align-self: end;
    margin: 0;
    justify-self: center;
    z-index: 6
}

.wp-block-group__inner-container .slick-slider ul.slick-dots>li,
.carousel .slick-slider ul.slick-dots>li,
.wall-to-wall.slick-slider ul.slick-dots>li {
    display: inline-block;
    margin: 0
}

.wp-block-group__inner-container .slick-slider ul.slick-dots>li>button,
.carousel .slick-slider ul.slick-dots>li>button,
.wall-to-wall.slick-slider ul.slick-dots>li>button {
    background: none;
    background-image: none;
    border: solid 1px black;
    border-radius: 1em;
    margin: .25em;
    height: 1rem;
    width: 1rem;
    line-height: 1rem;
    padding: 0;
    overflow: hidden;
    text-indent: 3em
}

.wp-block-group__inner-container .slick-slider ul.slick-dots>li>button:hover,
.carousel .slick-slider ul.slick-dots>li>button:hover,
.wall-to-wall.slick-slider ul.slick-dots>li>button:hover {
    background: var(--primary)
}

.slick-slider .slick-next::after {
    content: "\f105"
}

.slick-slider .slick-prev::after {
    content: "\f104"
}

.slick-slider .slick-prev::after,
.slick-slider .slick-next::after {
    display: block;
    margin: 0;
    font-family: 'Font Awesome\ 5 Free';
    font-size: 5em;
    text-indent: 0;
    font-weight: 900
}

.slick-initialized .slick-slide.flex-50 {
    display: flex;
    flex-flow: row no-wrap
}

.slick-initialized .slick-slide.flex-50>img {
    flex: 0 1 400px;
    object-fit: contain;
}

.slick-initialized .slick-slide.flex-50>div.slide-content {
    flex: 1 1 50%;
}
.wall-to-wall.section-testimonials .slick-slide.wp-block-columns .wp-block-column {
   margin-left: 0;
}
.section-testimonials .wp-block-columns.slick-slide {
    flex-direction: column;
	
}
.flex>.wall-to-wall {
    flex: 1 1 100%
}

.flex>.wall-to-wall:last-of-type {
    break-before: always
}

#secondary.widget-area {
    display: flex;
    flex-flow: row wrap
}

#secondary.widget-area>section {
    flex: 1 1 33%
}

.gform_wrapper div.validation_error,
.gform_wrapper li.gfield.gfield_error,
.gform_confirmation_wrapper {
    font-size: .9rem !important;
    font-weight: normal !important;
    padding: .5rem !important;
    background: var(--neutral-300) !important;
    border: 0 !important;
    border-radius: 6px
}

.flex {
    display: flex;
    flex-flow: row wrap
}

ul.flex>li {
    flex: 1 1 33%;
    list-style-image: none
}

.wp-block-columns.has-1-columns>.wp-block-column {
    flex: 1 1 100%
}

.list-of-posts>h2,
.list-of-posts>div,
.related-list>h2,
.list-of-posts>h2,
.related-list>h3,
.list-of-posts>h3,
.related-list>h4,
.list-of-posts>h4,
.related-list>h5,
.list-of-posts>h5 {
    flex: 0 0 100%
}

.list-of-posts>article,
.related-list>article {
    flex: 1 1 31%;
    margin: 1%;
    box-sizing: border-box
}

.related-list.columns-six>article {
    flex: 1 1 15%
}

.footer-widget-order-row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

.footer-widget-order-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.footer-widget-order-rows>div {
    flex: 1 1 100%
}

a.social {
    text-indent: -10rem;
    width: auto;
    overflow: hidden;
    display: inline-flex;
    margin: 0 .3rem;
    text-decoration: none
}

.social::after {
    font-family: "Font Awesome 5 Brands";
    display: block;
    text-indent: 0;
    font-size: 1.2rem;
    line-height: 1
}

.social.facebook::after {
    content: "\f09a"
}

.social.twitter::after {
    content: "\f09a"
}

.social.twitter::after {
    content: "\f081"
}

.social.youtube::after {
    content: "\f167"
}

.social.instagram::after {
    content: "\f16d"
}

.social.linkedin::after {
    content: "\f08c"
}

.social.gplaceid::after {
    content: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDIwMCAyMDAiPjxwYXRoIGQ9Ik0xNTEgMmE0NS43NiA0NS43NiAwIDAgMC01IC4yNGMtLjQ2IDAtLjkxLjE4LTEuMzYuMjUtMS4xOS4xNS0yLjM4LjM3LTMuNTQuNjItLjQ0LjA5LS43OC4xMy0xLjIzLjI0LTEuMTQuMjctMi4zMS42MS0zLjQxIDEtLjM4LjEyLS43NC4yMy0xLjExLjM4LTEuMTguNDItMi40MS45NC0zLjU1IDEuNDUtLjI3LjEyLS40NS4yNC0uNzMuMzgtMS4yMS41OC0yLjM5IDEuMTUtMy41NCAxLjgyLS4xOS4xMi0uNDMuMjgtLjYxLjM4YTQwLjA4IDQwLjA4IDAgMCAwLTMuNTUgMi4zMmMtLjA5LjA4LS4xNS4xNy0uMjQuMjRhNDUuODcgNDUuODcgMCAwIDAtMy41NSAzaC0uMTJhNDAuODIgNDAuODIgMCAwIDAtMy4zIDMuNDFBNDYuODQgNDYuODQgMCAwIDAgMTA0LjA5IDQ5YzAgMTYuMjIgOC4zNiAyNy4zNSAxNy4yNSAzOS4xMyAzLjIxIDQuMjggNi42NSA4Ljc4IDkuOSAxMy44MiA3IDguNzYgMTMuNDMgMTkuMDkgMTcgMzIuNzYuNTUgMi4xMy41MyAzLjggMS40NyA0LjU0YTYuMyA2LjMgMCAwIDAgMS4zNC4xMiA3LjA2IDcuMDYgMCAwIDAgMS4zNS0uMTJjLjk0LS43NC45Mi0yLjQxIDEuNDctNC41NCAzLjU2LTEzLjY3IDEwLTI0IDE3LTMyLjc2IDMuMjMtNSA2LjY3LTkuNTUgOS45LTEzLjgyLjU0LS43MiAxLjA2LTEuNDggMS41OS0yLjIxLjgzLTEuMTEgMS42NC0yLjE4IDIuNDQtMy4yOS4zOC0uNTMuNzMtMS4wOCAxLjExLTEuNTkuNjEtLjg4IDEuMjMtMS43IDEuODMtMi41OC40My0uNjQuODEtMS4zIDEuMjItMnMxLjEyLTEuNSAxLjU5LTIuMzEuODMtMS40OCAxLjIzLTIuMjEuODMtMS41NCAxLjIxLTIuMzEuNzYtMS42NCAxLjExLTIuNDQuNjgtMS41NyAxLTIuMzQuNTYtMS43Ni44NS0yLjY4Yy4yMy0uNzUuNTMtMS40Ni43My0yLjIuMjktMS4xMS40Mi0yLjI4LjYyLTMuNDMuMTEtLjY0LjI5LTEuMTguMzctMS44M0E0OC42MiA0OC42MiAwIDAgMCAxOTggNDlhNDcgNDcgMCAwIDAtNDctNDd6TTM1IDE3LjY1YTE3IDE3IDAgMCAwLTE3IDE3VjE2NWExNS40MiAxNS40MiAwIDAgMCAuMjQgMi41NkExNy4wNiAxNy4wNiAwIDAgMCAzNSAxODJoMTMwLjM1YTE2LjgyIDE2LjgyIDAgMCAwIDIuNTctLjI0IDE3IDE3IDAgMCAwIDE0LjMxLTE1LjQxaC4xMlY5OWMtMS42NCAyLjI0LTMuMjkgNC42MS00LjkgNy4wOWwtLjQ4LjczYy03LjkzIDEwLTEyLjc1IDE5LjE3LTE1LjUzIDI5Ljg0LS4xMi40NS0uMTcuODMtLjI0IDEuMjNhMTMuMDggMTMuMDggMCAwIDEtMi43IDYuMjNsMTYgMTZWMTY1YTkuMjEgOS4yMSAwIDAgMS05LjE4IDkuMTdoLTQuODlsLTU1LTU0LjlMMTE5LjUgMTA1bDEzLjk0IDE0YTk0Ljc3IDk0Ljc3IDAgMCAwLTguMzItMTIuMjRsLS41LS43M2MtMi4yNy0zLjUzLTQuNTctNi42MS02LjgzLTkuNjZsLTc3LjkgNzcuNzdIMzVhOS4yMSA5LjIxIDAgMCAxLTkuMTgtOS4xNHYtNC44OGw4MC4xMS04MC4yM2MtNS41Mi04LjczLTkuNjctMTguNDgtOS42Ny0zMC45M2E1NC4zNiA1NC4zNiAwIDAgMSA5LjkxLTMxLjMxem0yMi42MiAxNS42NmEyMy41OSAyMy41OSAwIDAgMSAxNiA2LjIzbC02LjcyIDYuNzJhMTQuMTIgMTQuMTIgMCAwIDAtOS4yOS0zLjQxIDE0LjQzIDE0LjQzIDAgMSAwIDAgMjguODUgMTMgMTMgMCAwIDAgMTMtOS41M2gtMTNWNTNoMjIuNWMyIDkuMzMtMS41OSAyOC4xMy0yMi41IDI4LjEzYTIzLjkxIDIzLjkxIDAgMSAxIDAtNDcuODF6TTE1MSAzNy4yMkExMS43NCAxMS43NCAwIDEgMSAxMzkuMyA0OSAxMS43NCAxMS43NCAwIDAgMSAxNTEgMzcuMjJ6bTAgMCIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);
    width: 1.2rem;
    height: 1.2rem
}

@media screen and (min-width: 768px) {
    .footer-widget-order-column.columns-2>div {
        flex: 1 1 50%
    }

    .footer-widget-order-column.columns-3>div {
        flex: 1 1 33%
    }

    .footer-widget-order-column.columns-4>div {
        flex: 1 1 25%
    }

    .footer-widget-order-column.columns-5>div {
        flex: 1 1 20%
    }
}

@media screen and (max-width: 767px) {
    .footer-widget-order-column>div {
        flex: 1 1 50%
    }
}

@media screen and (max-width: 480px) {
    .footer-widget-order-column>div {
        flex: 1 1 100%
    }
}

@supports (display: grid) {}

.devnote {
    display: block;
    height: 0;
    float: right;
    clear: both;
    margin-top: -1em;
    line-height: 1em;
    top: 0;
    left: 0;
    border: dashed red 1px
}

.devnote.index.current-template {
    margin-top: -2em;
    border: dashed green 1px
}

:root {
    --height-of-thumb-menu: 3em
}

body.blockScrolling {
    position: fixed;
    top: 0
}

body.admin-bar.blockScrolling {
    position: fixed;
    top: 46px
}

body.admin-bar.blockScrolling div#wpadminbar {
    top: -46px
}

.site-header>.wrapper {
    position: relative
}

header.site-header.didScroll {
    position: fixed;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 9999;
    border-bottom: solid 1px var(--neutral-300)
}

.admin-bar header.site-header.didScroll {
    top: 32px
}

.admin-bar header.site-header.nav-up,
header.site-header.nav-up {
    top: -100px
}

header.nav-up~div.search-box-wrapper[style] {
    display: none !important
}

@media screen and (max-width: 600px) {
    .admin-bar header.site-header.didScroll {
        top: 0
    }

    .admin-bar header.site-header.nav-up,
    header.site-header.nav-up {
        top: -80px
    }
}

.main-navigation #primary-menu {
    display: flex;
    position: relative
}

.site-header.menu-left .main-navigation>div>ul {
    justify-content: flex-start
}

.site-header.menu-center .main-navigation>div>ul {
    justify-content: center
}

.site-header.menu-right .main-navigation>div>ul {
    justify-content: flex-end
}

.main-navigation #primary-menu.hasMegaMenu>li {
    margin-right: 1em
}

.main-navigation #primary-menu.hasMegaMenu>li:last-of-type {
    margin-right: 0
}

.hasMegaMenu .main-navigation #primary-menu li {
    position: static;
    line-height: 1.8;
    padding: 0 .25rem
}

.main-navigation ul li>a {
    display: inline
}

.main-navigation #primary-menu li a,
.main-navigation #primary-menu li::after,
.main-navigation .hasRobustSub li .sub-menu li,
.main-navigation li .sub-menu li a,
.main-navigation li .sub-menu li::after {
    pointer-events: all
}

.main-navigation .hasRobustSub li .sub-menu li.menu-header,
.main-navigation .hasRobustSub li.menu-header,
.main-navigation .hasRobustSub li.menu-header a,
.main-navigation li .sub-menu li {
    pointer-events: none
}

.main-navigation #primary-menu li::after {
    cursor: pointer
}

.main-navigation li .sub-menu li {
    position: static
}

.main-navigation li .sub-menu li.default-men.menu-item-has-children {
    position: relative
}

.main-navigation .hasRobustSub li .menuBox:not(.featured-menu) .sub-menu li:not(.menu-header):hover,
.main-navigation li .sub-menu li::after {
    cursor: pointer
}

.main-navigation .menu-item .menuBox {
    float: left;
    position: absolute;
    top: 100%;
    ;
    left: -999em;
    z-index: 99999;
    width: auto;
    margin: auto;
    background: white;
    display: flex;
    box-sizing: border-box;
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .10), 0 1px 1px 0 rgba(0, 0, 0, .12)
}

.main-navigation .menu-item .menuBox.featured-menu,
.main-navigation .menu-item .menuBox.robust-menu {
    width: 100%
}

.main-navigation .noMegaMenu .menu-item>ul.sub-menu:not(.isVisible),
.main-navigation .menu-item .menuBox:not(.isVisible) {
    opacity: 0
}

.main-navigation .noMegaMenu .menu-item>ul.sub-menu.isVisible,
.main-navigation .menu-item .menuBox.isVisible {
    opacity: 1;
    transition-property: opacity;
    transition-duration: .2s;
    transition-delay: .1s
}

#primary-menu>li>.menuBox {
    display: flex
}

#primary-menu>li>.isVisible {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    visibility: visible;
    left: 0
}

.main-navigation #primary-menu.noMegaMenu>li>.isVisible {
    left: 0;
    display: block;
    opacity: 100
}

.main-navigation li {
    float: none
}

.main-navigation ul.hasMegaMenu .menuBox.featured-menu>ul,
.main-navigation ul.hasMegaMenu .menuBox.robust-menu>ul,
.main-navigation ul.hasMegaMenu .menuBox.mega-menu>ul {
    position: static;
    box-shadow: none
}

.main-navigation .menu-item.menu-item-has-children.default-menu,
.main-navigation .menu-item.menu-item-has-children.default-menu .sub-menu .menu-item.menu-item-has-children {
    position: relative !important;
    pointer-events: all
}

.main-navigation .menu-item.menu-item-has-children>ul.sub-menu {
    background: white;
    width: 200%;
    padding: 1em
}

.main-navigation .menu-item.menu-item-has-children.menu-open>ul.sub-menu {
    left: 0;
    opacity: 100
}

.main-navigation .menu-item.menu-item-has-children.menu-open>ul.sub-menu>li.menu-item.menu-item-has-children.menu-open>ul.sub-menu {
    left: 100%;
    ;
    top: -1em;
    opacity: 100
}

.main-navigation .menu-item .menuBox .sub-menu li.has-content,
.main-navigation .menu-item .menuBox .sub-menu li.menu-item-has-children,
.main-navigation .menu-item .menuBox .sub-menu li .sub-menu li {
    position: relative !important
}

.main-navigation .menu-item .menuBox .sub-menu>li .sub-menu>li {
    display: block
}

.main-navigation .menu-item .menuBox .sub-menu li.has-content::after,
.main-navigation .menu-item .menuBox .sub-menu li.menu-item-has-children::after {
    font-family: 'Font Awesome 5 Free';
    color: black;
    content: '\f107';
    right: 5%;
    position: relative;
    float: right;
    font-weight: 900
}

.main-navigation .menu-item .menuBox .sub-menu li.has-content::after {
    content: '\f5d2'
}

.main-navigation .hasRobustSub .menu-item .menuBox .sub-menu li.has-content::after {
    content: ''
}

.main-navigation .menu-item .menuBox .sub-menu li.menu-item-has-children::after {
    content: '\f107'
}

.main-navigation .menu-item .menuBox .sub-menu li .sub-menu {
    display: none;
    visibility: hidden
}

.main-navigation .menu-item .menuBox .sub-menu li .sub-menu.isVisible {
    position: absolute;
    display: block;
    visibility: visible;
    left: 100%;
    top: 0;
    background: var(--neutral-100)
}

.main-navigation #primary-menu>li.menu-item-has-children::after,
.main-navigation #primary-menu.noMegaMenu>li.menu-item-has-children .sub-menu>li.menu-item-has-children::after {
    font-family: 'Font Awesome 5 Free';
    color: black;
    content: '\f107';
    right: 0;
    top: 1px;
    position: absolute;
    float: right;
    font-weight: 900
}

.main-navigation #primary-menu>li.menu-item-has-children.menu-open::after,
.main-navigation #primary-menu>li.menu-item-has-children.menu-open .sub-menu li.menu-open::after {
    transform: rotate(180deg)
}

.main-navigation #primary-menu>li.menu-item-has-children.menu-open .sub-menu li.menu-open::after {
    position: absolute;
    top: 0
}

.menuBox .sub-menu {
    flex: 1 1 60%
}

.menuBox .inner-menu-content {
    flex: 1 1 40%
}

.menuBox.featured-menu .inner-menu-content,
.main-navigation .menu-item .menuBox.featured-menu .sub-menu>li.menu-item-has-children::after {
    display: none;
    visibility: hidden
}

.menuBox.featured-menu>.sub-menu {
    flex: 1 1 100%;
    display: flex;
    z-index: 1;
    padding: 0 !important
}

.hasMegaMenu .menuBox.featured-menu>.sub-menu>li {
    flex: 1 1 50%;
    display: flex;
    padding: 0
}

.main-navigation .hasMegaMenu li {
    position: static
}

.menuBox.featured-menu>.sub-menu>li>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem
}

.main-navigation ul .menuBox.featured-menu ul a {
    width: auto
}

.hasRobustSub .menuBox.featured-menu.menu-items-3>.sub-menu>li {
    flex: 0 0 33%
}

.hasRobustSub .menuBox.featured-menu.menu-items-4>.sub-menu {
    flex-direction: row;
    flex-wrap: wrap
}

.hasRobustSub .menuBox.featured-menu.menu-items-4>.sub-menu>li {
    flex: 0 0 50%
}

.menuBox.featured-menu>.sub-menu>li>div {
    flex: 1 1 50%;
    display: block;
    background: var(--neutral-300);
    padding: 1rem
}

.menuBox.featured-menu>.sub-menu>li>div>a:first-of-type {
    font-size: 1.3em;
    font-weight: bold
}

.menuBox.featured-menu>.sub-menu>li>div>a.btn-outline {
    display: inline-block;
    margin-top: 1rem
}

.main-navigation .menu-item .menuBox.featured-menu>.sub-menu>li>.sub-menu {
    display: flex;
    float: right;
    flex: 0 0 50%;
    visibility: visible;
    flex-direction: column
}

.menuBox .sub-menu,
.menuBox .inner-menu-content {
    padding: 1rem
}

.menuBox {
    text-align: left
}

.menuBox.mega-align-right {
    flex-direction: row
}

.menuBox.mega-align-left {
    flex-direction: row-reverse
}

#primary-menu .sub-menu li.menu-header {
    text-transform: uppercase;
    flex: 1 1 100%;
    max-height: 3em;
    padding-top: 0;
    padding-bottom: .5rem
}

.hasRobustSub .inner-menu-content {
    flex: 0 1 25%
}

.hasRobustSub .menuBox.robust-menu.isVisible .sub-menu {
    flex: 1 1 75%
}

#primary-menu.hasRobustSub li .sub-menu li span {
    color: var(--neutral-700);
    display: block;
    font-weight: normal;
    line-height: 1.25;
    font-size: .8rem;
    padding-top: .3rem
}

.hasRobustSub .menuBox.robust-menu.isVisible>.sub-menu {
    display: flex;
    flex-flow: row wrap
}

.hasRobustSub .menuBox.robust-menu.isVisible>.sub-menu>li {
    flex: 1 1 33%
}

.main-navigation #primary-menu .sub-menu li:not(.menu-header):hover {
    background: var(--neutral-100)
}

.main-navigation #primary-menu .menuBox.featured-menu>.sub-menu li:hover {
    background: none
}

.main-navigation #primary-menu .sub-menu li:not(.menu-header):hover a {
    color: var(--primary)
}

.main-navigation #primary-menu .sub-menu li a:not(.btn-outline):hover {
    text-decoration: underline
}

.main-navigation #primary-menu .sub-menu li.menu-header a:hover {
    text-decoration: none
}

.main-navigation .menuBox.robust-menu>.sub-menu {
    flex-flow: row wrap;
    display: flex;
    flex-direction: riow
}

.main-navigation .menuBox.robust-menu>.sub-menu>li {
    flex: 1 1 33%
}

#chicagoFixedFooterMenu {
    display: none;
    visibility: hidden
}

@media screen and (min-width: 769px) {
    .menu-toggle {
        display: none
    }

    .menu-center {
        text-align: center
    }

    .menu-center ul.nav-menu>li {
        display: inline-block;
        position: relative
    }

    .menu-primary-menu-container .menu>li:before {
        display: inline-block;
        margin-right: .1em
    }

    .main-navigation #primary-menu>li.menu-item-has-children::after {
        position: relative;
        margin-left: .75em
    }

    .main-navigation #primary-menu.noMegaMenu>li.menu-item-has-children.default-menu .sub-menu>li.menu-item-has-children::after {
        position: relative;
        margin-left: .75em
    }

    .main-navigation #primary-menu.noMegaMenu>li.menu-item-has-children.default-menu.menu-open .sub-menu>li.menu-item-has-children.menu-open::after {
        position: absolute;
        top: .3em
    }

    .main-navigation .close-mega-menu {
        display: none;
        visibility: hidden;
        z-index: 10
    }

    .main-navigation .isVisible .close-mega-menu {
        position: absolute;
        display: block;
        visibility: visible;
        right: 1rem;
        top: .5rem;
        color: black;
        font-size: .8rem;
        cursor: pointer
    }
}

@media screen and (max-width: 768px) {
    .main-navigation {
        width: auto
    }

    .main-navigation.hide-toggle.at-footer {
        position: fixed;
        bottom: 5em
    }

    .main-navigation.hide-toggle button.menu-toggle {
        display: none;
        visibility: hidden
    }

    .main-navigation.toggled.isFixed.tallerThanScreen .menu-primary-menu-container {
        overflow-y: scroll;
        height: calc(100vh - var(--height-of-thumb-menu))
    }

    .admin-bar .main-navigation.toggled.isFixed.tallerThanScreen .menu-primary-menu-container {
        height: calc(100vh - var(--height-of-thumb-menu) - 46px)
    }

    .noThumbMenu .main-navigation.toggled.isFixed.tallerThanScreen .menu-primary-menu-container {
        height: 100vh
    }

    .admin-bar.noThumbMenu .main-navigation.toggled.isFixed.tallerThanScreen .menu-primary-menu-container {
        height: calc(100vh - 46px)
    }

    .admin-bar .main-navigation #primary-menu>li.menu-item-has-children::after {}

    #primary-menu li .isVisible {
        top: 0;
        box-shadow: none
    }

    .main-navigation #primary-menu>li.menu-item-has-children.menu-open {
        background: transparent
    }

    .main-navigation #primary-menu>li.menu-item-has-children.menu-open::after,
    .main-navigation #primary-menu>li.menu-item-has-children::after {
        padding: 0 .3rem
    }

    .main-navigation #primary-menu>li.menu-item-has-children::after {
        top: auto
    }

    .main-navigation #primary-menu>li.menu-item-has-children.menu-open::after {
        background: white;
        color: var(--neutral-700)
    }

    .blockScrolling #chicagoFixedFooterMenu li button:not(.is-showing-now) {
        opacity: .35
    }

    #primary-menu.hasRobustSub .menuBox.isVisible>.sub-menu {
        font-size: 1rem
    }

    .menuBox.featured-menu>.sub-menu {
        flex-direction: column
    }

    .menuBox.featured-menu>.sub-menu>li .sub-menu {
        flex: 1 1 100%
    }

    .menuBox.featured-menu>.sub-menu>li>div {
        flex: 1 1 100%
    }

    .hasRobustSub .menuBox.featured-menu.menu-items-3>.sub-menu>li,
    .hasRobustSub .menuBox.featured-menu.menu-items-4>.sub-menu>li,
    .hasRobustSub .menuBox.featured-menu>.sub-menu>li {
        flex-direction: column
    }

    .hasRobustSub .menuBox.featured-menu>.sub-menu>li {
        flex-direction: column-reverse;
        cursor: auto
    }

    .main-navigation #primary-menu>li {
        border-bottom: 1px solid var(--neutral-300);
        font-size: 1.5rem
    }

    #primary-menu.hasRobustSub .menuBox.isVisible .inner-menu-content,
    #primary-menu.hasRobustSub li .sub-menu li span {
        display: none
    }

    #chicagoFixedFooterMenu {
        background: var(--neutral-100);
        z-index: 9999
    }

    #chicagoFixedFooterMenu>ul>li:nth-child(n+2) {
        border-left: 1px solid var(--neutral-300)
    }

    .main-navigation {}

    .main-navigation button.menu-toggle {
        display: none
    }

    .menu,
    #primary-menu>li>.isVisible {
        flex-direction: column
    }

    .hasRobustSub .menuBox.robust-menu.isVisible .sub-menu,
    .hasRobustSub .menuBox.robust-menu.isVisible .inner-menu-content {
        flex: 1 1 100%;
        max-width: 100%
    }

    .main-navigation #primary-menu li {
        padding: .5rem
    }

    .menu-center {
        text-align: center
    }

    .menu-center ul.nav-menu>li {
        display: block
    }

    .menu-center .menu-toggle {
        margin: 0;
        width: 100%
    }

    .menu-center .menu-toggle #nav-icon {
        float: left
    }

    .main-navigation.toggled {
        width: 100%;
        background: var(--neutral-100)
    }

    .main-navigation.toggled.isFixed {
        position: fixed;
        bottom: var(--height-of-thumb-menu);
        left: 0;
        height: calc(100vh - var(--height-of-thumb-menu));
        z-index: 1000
    }

    .noThumbMenu .main-navigation.toggled.isFixed {
        height: 100vh;
        bottom: 0
    }

    .hasRobustSub .menuBox.robust-menu.isVisible>.sub-menu,
    .main-navigation .menu-item .menuBox.featured-menu>.sub-menu>li>.sub-menu {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }

    #primary-menu.hasRobustSub .menuBox:not(.featured-menu)>.sub-menu .menu-header {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / span 2
    }

    .admin-bar .main-navigation.toggled.isFixed {
        position: fixed;
        bottom: var(--height-of-thumb-menu);
        height: calc(100vh - var(--height-of-thumb-menu) - 46px)
    }

    .admin-bar.noThumbMenu .main-navigation.toggled.isFixed {
        bottom: 0;
        height: calc(100vh - 46px)
    }

    .menu-primary-menu-container {
        display: none;
        visibility: hidden
    }

    .main-navigation.toggled .menu-primary-menu-container {
        display: block;
        visibility: visible;
        padding: 5rem 1.5rem 0
    }

    .main-navigation .close-mega-menu {
        display: none;
        visibility: hidden
    }

    ul#primary-menu li .isVisible {
        right: 0;
        position: relative;
        left: 0;
        top: 100%;
        width: 100%;
        padding: .5rem 0
    }

    ul#primary-menu li.default-menu .isVisible {
        top: 0
    }

    .search-in-menu.search-box-wrapper {
        position: relative
    }

    #nav-icon {
        width: 18px;
        height: 20px;
        position: relative;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        margin-right: .5rem;
        float: left
    }

    #nav-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: black;
        border-radius: 1px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: .25s ease-in-out
    }

    #nav-icon span:nth-child(1) {
        top: 0
    }

    #nav-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 8px
    }

    #nav-icon span:nth-child(4) {
        top: 16px
    }

    .toggled #nav-icon span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%
    }

    .toggled #nav-icon span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .toggled #nav-icon span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .toggled #nav-icon span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%
    }

    #chicagoFixedFooterMenu {
        position: fixed;
        display: block;
        visibility: visible;
        bottom: 0;
        text-align: center;
        margin: 0;
        padding: .2rem;
        height: var(--height-of-thumb-menu);
        max-height: var(--height-of-thumb-menu);
        width: 100%;
        border: 1px solid var(--neutral-500)
    }

    #chicagoFixedFooterMenu ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: no-wrap;
        -ms-flex-wrap: no-wrap;
        -webkit-justify-content: space-around;
        flex-flow: row no-wrap;
        color: white
    }

    #chicagoFixedFooterMenu ul li {
        flex: 1 1 25%;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center
    }

    #chicagoFixedFooterMenu>ul>li:nth-child(n+2) {
        border-left: 1px solid var(--neutral-500)
    }

    #chicagoFixedFooterMenu li button {
        background: none;
        border: none;
        color: black;
        margin: 0;
        font-size: .7rem;
        line-height: 1;
        padding: 0 .2rem
    }

    #chicagoFixedFooterMenu li button::before {
        content: "\f059";
        display: block;
        font-family: 'Material Icons';
        font-weight: normal;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        margin: .25rem auto 0;
        height: 1rem
    }

    #chicagoFixedFooterMenu li button.eval::before {
        content: "\f46c"
    }

    #chicagoFixedFooterMenu li button.home::before {
        content: '\e88a'
    }

    #chicagoFixedFooterMenu li button.search::before {
        content: '\e8b6'
    }

    #chicagoFixedFooterMenu li button.mainmenu::before {
        content: '\e5d2'
    }

    #chicagoFixedFooterMenu li button.is-showing-now::before {
        content: '\e5cd'
    }

    #chicagoFixedFooterMenu li button.location::before {
        content: '\e0c8'
    }

    #chicagoFixedFooterMenu li button.treatment::before {
        content: '\e548'
    }

    .footer-menu-item-box {
        position: fixed;
        bottom: 5em;
        background: var(--neutral-100);
        width: 100%;
        left: 0;
        height: 0;
        opacity: 0;
        transition: opacity 0s ease-out, height 0s .15s ease-out;
        z-index: -1;
        visibility: hidden;
        padding: 0 1em;
        box-sizing: border-box
    }

    .footer-menu-item-box.isVisibile {
        height: calc(100vh - 2em);
        z-index: 1;
        visibility: visible;
        opacity: 1;
        transition: opacity .10s ease-in, height 0s ease-in;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: no-wrap;
        -ms-flex-wrap: no-wrap;
        -webkit-justify-content: center;
        -webkit-align-content: center;
        flex-flow: row no-wrap;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center
    }

    .admin-bar .footer-menu-item-box.isVisibile {
        height: calc(100vh - 4em)
    }

    .main-navigation {
        justify-self: end
    }
}

.content-area.after-loop-second-menu.second-menu-container>.site-main,
.content-area.before-loop-second-menu.second-menu-container>.site-main {
    display: flex;
    flex-direction: row;
    flex-flow: no-wrap
}

.content-area.after-loop-second-menu.second-menu-container>.site-main>article,
.content-area.before-loop-second-menu.second-menu-container>.site-main>article {
    flex: 1 1 75%
}

.content-area.after-loop-second-menu.second-menu-container>.site-main>aside,
.content-area.before-loop-second-menu.second-menu-container>.site-main>aside {
    flex: 1 1 25%
}

/*!
Theme Name: Streamline Healthcare Solutions, LLC 2022
Theme URI: https://pilotdigital.com/themes/chicago-1924
Author: Pilot Digital
Author URI: http://pilotdigital.com
Description: first aerial circumnavigation of the world
Version: 1.0.0
Template: chicago-1924
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: chicago-1924
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Chicago 1924 is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
:root {
    --primary: #4a0661;
    --accent: #4a0661;
    --accent-dark: #F6F7F5;
    --neutral-100: #F6F7F5;
    --neutral-300: #EFEFF0;
    --neutral-500: #C8C9C7;
    --neutral-700: #808194;
    --neutral-900: #000;
    font-size: 1.188rem
}

body {
    color: black;
    font-style: normal;
    font-weight: normal;
    line-height: 1.6;
    overflow-x: hidden
}

body.blockScrolling {
    max-width: 100vw
}

.notice-btn {
    border: 1px solid #fff !important;
    padding: .6rem 1rem !important
}

.notice-btn:hover {
    background: #fff !important;
    color: #4a0661 !important
}

body,
select option,
::placeholder {
    font-family: montserrat, calibri, sans-serif
}

h1,
h2,
h3,
h4,
button,
input[type=submit],
input[type=button],
a.wp-block-button__link,
.main-navigation #primary-menu,
.arrow-link,
.arrow-link-back a,
blockquote,
.site-footer p,
.site-footer ul,
.wp-block-post-terms,
.section-testimonials,
form label,
.team-role,
.p-cat,
.byline,
.entry-meta,
.h-intro-txt,
.blog main>ul.main-width li {
    font-style: normal
}

h1,
h4,
button,
input[type=submit],
input[type=button],
a.wp-block-button__link,
.main-navigation #primary-menu,
.arrow-link,
.arrow-link-back a,
.wp-block-query .wp-block-post-terms {}

.main-navigation #primary-menu>li.menu-item-has-children::after,
ul.checklist li::marker,
a.arrow-link::after,
.arrow-link a::after,
.arrow-link-back a::before,
.slick-slider .slick-prev::after,
.slick-slider .slick-next::after {
    font-family: monsterrat, 'Material Icons'
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    line-height: calc(2px + 2ex + 2px);
    margin-top: 1em;
    margin-bottom: 0.65em
}

h2,
h3 {
    color: #000
}

h1,
.h-intro-txt {
    color: var(--neutral-900)
}

h1 {
    font-size: clamp(1.5rem, 1.19rem + 1.29vw, 2.4rem)
}

h2,
.single-post h1 {
    font-size: clamp(1.4rem, 1.09rem + 1vw, 1.8rem)
}

h3 {
    font-size: clamp(1.2rem, 1rem + 0.71vw, 1.5rem)
}

h4,
h5,
h6,
h2.entry-title {
    font-size: clamp(.9rem, 1rem + 0.18vw, 1.1rem)
}

p {
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
    overflow-wrap: break-word
}

p.h-intro-txt {
    font-size: 0.9rem;
    line-height: 1.5
}

blockquote {
    margin: 1.5em 0
}

blockquote p {
    font-style: italic;
    margin: 0;
    position: relative
}

blockquote p:first-of-type::before {
    color: inherit;
    content: '\201C';
    display: inline-block;
    font-size: inherit;
    font-style: normal;
    text-indent: -0.5em
}

blockquote cite {
    font-size: 0.9rem;
    font-style: normal;
    margin-top: 1rem
}

::selection {
    background: white;
    color: white
}

a {
    color: inherit;
    text-decoration: underline var(--accent)
}

a:hover {
    color: var(--accent)
}

a:focus {
    outline: max(0px, 0.0rem) solid var(--neutral-900);
    outline-offset: 0px
}

.site-footer :focus {
    outline-color: white
}

a:focus,
a:active,
a.arrow-link,
.arrow-link a,
.arrow-link-back a,
.wp-block-query a,
.entry-title a {
    text-decoration: none
}

a:not(.custom-logo-link):active {
    background: white;
    color: white
}

a.arrow-link,
.arrow-link a,
.arrow-link-back a {
    color: var(--accent);
    line-height: normal;
    position: relative
}

.has-bg-dark .arrow-link a {
    color: white
}

a.arrow-link::after,
.arrow-link a::after,
.arrow-link-back a::before {
    content: '';
    display: inline-block;
    font-size: 1.1rem;
    line-height: 0;
    transform: translateX(30%);
    transition: transform 0.2s ease-in-out;
    vertical-align: middle;
    margin-bottom: 0.2rem;
    background: url(/wp-content/uploads/2023/04/Elements-051.png) no-repeat center center;
    background-size: contain;
    height: 20px;
    width: 19px
}

.arrow-link-back a::before {
    content: '\f1e6';
    transform: translateX(-30%)
}

a.arrow-link:hover::after,
.arrow-link a:hover::after {
    transform: translateX(60%)
}

button,
input[type=submit],
input[type=button],
a.wp-block-button__link,
.main-navigation #primary-menu>li:last-child a {
    border: 0;
    border-radius: 1.5rem;
    color: white;
    cursor: pointer;
    display: block;
    font-size: 0.95rem;
    line-height: 1;
    padding: 1rem 1.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.2s ease-out;
    width: max-content
}

.wp-block-button.aligncenter a.wp-block-button__link {
    display: inline-block
}

button,
input[type=submit],
input[type=button],
a.wp-block-button__link,
.main-navigation #primary-menu>li:last-child a {
    background: var(--accent);
    color: white
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover,
a.wp-block-button__link:hover,
.main-navigation #primary-menu>li:last-child a:hover {
    background: #820232;
    color: white
}

.btn-outline,
.is-style-outline>a.wp-block-button__link:not(.has-text-color) {
    background: white;
    border: 2px solid var(--accent);
    box-shadow: none;
    color: var(--accent)
}

.btn-outline:hover,
.is-style-outline>a.wp-block-button__link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white
}

.site-footer a.wp-block-button__link,
.section-callout-dark .is-style-outline a.wp-block-button__link {
    background: none;
    border: 1px solid white;
    color: white
}

.site-footer a.wp-block-button__link:hover,
.section-callout-dark .is-style-outline a.wp-block-button__link:hover {
    background: white;
    border-color: white;
    color: var(--primary)
}

.is-style-outline-dark a.wp-block-button__link {
    background: var(--primary);
    border: 1px solid white;
    color: white
}

.is-style-outline-dark a.wp-block-button__link:hover {
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary)
}

.main-navigation #primary-menu .sub-menu li:not(.menu-header):hover {
    background: none
}

.main-navigation #primary-menu>li.menu-item-has-children::after {
    color: inherit;
    margin-left: 0.2rem;
    content: '';
    display: inline-block;
    font-size: 1.1rem;
    line-height: 0;
    transform: translateX(30%);
    transition: transform 0.2s ease-in-out;
    vertical-align: middle;
    margin-bottom: 0.2rem;
    background: url(/wp-content/uploads/2023/04/Elements-051-1.png) no-repeat center center;
    background-size: contain;
    height: 25px;
    width: 15px
}

.main-navigation #primary-menu>li.menu-item-has-children.menu-open:after {
    transform: rotate(180deg)
}

.search-toggle .searchIcon,
.search-box .search-field {
    font-size: inherit
}

.search-form {
    display: flex;
    margin-bottom: 0
}

.search-form label {
    flex: 1 1 auto
}

.search-form .search-submit {
    flex: 0 1 auto;
    display: inline-block;
    margin: 0
}

.search-form .search-field {
    border: 1px solid var(--primary);
    padding: 1em;
    width: 99%;
    -webkit-appearance: none;
    -moz-appearance: none
}

.content-width,
.single main>article .entry-content,
.single main>article .post-thumbnail,
.single main>article .entry-footer {
    max-width: 768px;
    max-width: var(--contentWidth)
}

.main-width,
.site-info-block,
.site-info-block.wrapper,
.wall-to-wall .wp-block-group__inner-container,
.blog .progressive-grid,
.archive .progressive-grid {
    max-width: 1178px;
    max-width: var(--mainWidth)
}

.section-testimonials .wp-block-group__inner-container {
    max-width: 1400px
}

.content-width,
.main-width,
.wall-to-wall .wp-block-group__inner-container,
.site-info-block,
.single main>article .entry-content,
.single main>article .post-thumbnail,
.single main>article .entry-footer {
    padding-left: clamp(1rem, 5%, 2rem);
    padding-right: clamp(1rem, 5%, 2rem)
}

.site-info-block .site-info {
    padding-left: 0;
    padding-right: 0
}

.content-width,
.main-width,
.wall-to-wall .wp-block-group__inner-container,
.site-info-block,
.single main>article .entry-content,
.single main>article .post-thumbnail {
    margin: auto
}

.flex,
.site-header .wrapper,
#primary-menu,
.posts-numeric-navigation ul {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem
}

.site-branding,
.site-search {
    flex: 0 1 auto
}

.main-navigation {
    flex: 1 1 auto
}

.site-header .wrapper {
    align-items: center
}

main>header,
main .page-header,
main>article>.entry-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[8];
    grid-template-columns:
        [full-start] minmax(0, 1fr) [main-start] repeat(6, minmax(0, 8rem)) [main-end] minmax(0, 1fr) [full-end];
    gap: 0 1.5rem
}

main>header h1,
main .page-header h1,
main>article>.entry-header h1,
main>article>.entry-header .h-intro-txt,
main>article>.entry-header .entry-meta,
main>article>.entry-header .post-header-author,
#breadcrumbs,
.single-post main>article>.entry-header img,
.single-post main>article>.entry-header .p-cat,
.single-streamline-team .team-role,
.single-streamline-team main>article>.entry-header img.headerImage {
    -ms-grid-column-span: 6;
    -ms-grid-column: 2;
    grid-column: 2 / span 6
}

.single-streamline-team main>article>.entry-header h1,
.single-streamline-team main>article>.entry-header p {
    -ms-grid-column-span: 3;
    -ms-grid-column: 2;
    grid-column: 2 / span 3
}

.single-streamline-team main>article>.entry-header img.headerImage {
    -ms-grid-column-span: 3;
    -ms-grid-column: 5;
    grid-column: 5 / span 3;
    -ms-grid-row-span: 2;
    -ms-grid-row: 1;
    grid-row: 1 / span 2
}

main>article .entry-header h1 {
    -ms-grid-row-span: 1;
    -ms-grid-row: 1
}

main>article>.entry-header .h-intro-txt {
    -ms-grid-row-span: 1;
    -ms-grid-row: 2
}

.single-post main>article>.entry-header img,
main .page-header>* {
    -ms-grid-row-span: 1;
    -ms-grid-row: 1;
    grid-row: 1
}

.single-post main>article>.entry-header .p-cat {
    -ms-grid-row-span: 1;
    -ms-grid-row: 2;
    grid-row: 2
}

.single-post main>article .entry-header h1 {
    -ms-grid-row-span: 1;
    -ms-grid-row: 3;
    grid-row: 3
}

.single-post main>article .entry-header .post-header-author {
    -ms-grid-row-span: 1;
    -ms-grid-row: 4;
    grid-row: 4
}

main>article .entry-header>h1 {
    -ms-grid-row-align: end;
    align-self: end
}

main>article .entry-header.center-align-heading>h1,
.blog main>header h1,
.category main>.page-header h1 {
    -ms-grid-row-align: center;
    align-self: center
}

body:not(.category) main .page-header h1,
main>article .entry-header>h1:only-child {
    -ms-grid-row-align: center;
    -ms-grid-column-align: center;
    place-self: center
}

hr,
.wp-block-separator {
	color:#ffffff;
    background-color: #C8C9C7;
    border: none;
	max-width:710px;
	margin: .5rem auto 1.5rem auto;
}

.is-style-default {
    max-width: 50%
}

ul,
ol,
article form ul {
    list-style: none;
    margin: 0 0 1.5rem 0
}

article ul {
    list-style-type: disc
}

article ul ul {
    list-style-type: circle
}

article ol {
    list-style-type: decimal
}

article ol ol {
    list-style-type: lower-alpha
}

ul li,
ol li {
    line-height: 1.3;
    margin: 0 0 1.25rem 0
}

li::marker {
    color: #4a0661
}

ul.checklist li {
    padding-left: 0.5rem;
    margin-left: -0.25rem
}

ul.checklist li::marker {
    background: white;
    border-radius: 50%;
    color: var(--accent);
    content: '\e5ca'
}

table {
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 1rem 0;
    width: 100%
}

table caption {
    font-size: 1.1rem;
    margin-bottom: 0.75rem
}

thead th {
    background: var(--neutral-100);
    color: var(--primary)
}

tr {
    border-bottom: 0.125em solid var(--neutral-300);
    line-height: 2
}

th,
td {
    line-height: 1.5;
    padding: 0.5em;
    text-align: left
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--neutral-100)
}

form ul {
    padding: 0
}

form label,
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.5
}

input {
    accent-color: #4a0661;
    line-height: normal
}

input,
textarea,
fieldset,
select {
    border-radius: 0.5em;
    font-family: roboto, sans-serif;
    font-size: max(16px, 0.8rem);
    padding: 0.8em;
    border: 1px solid #4a0661;
    transition: border-color 0.3s ease
	background-color:#ffffff;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 0.1rem var(--accent)
}

textarea {
    width: 100%
}

select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path fill="slategray" d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 0.5rem) center;
    background-size: 1rem;
    background-color: white;
    color: var(--neutral-700);
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2em
}

::placeholder {
    color: var(--neutral-700);
    font-weight: normal
}

body .gform_wrapper ul li.gfield {
    margin-bottom: 0
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper select {
    border: 1px solid var(--neutral-700) !important;
    padding: 0.5rem !important;
    line-height: normal !important;
    margin-top: 0 !important
}

.gform_wrapper select {
    margin-bottom: 0 !important
}

.page,
.post {
    margin: 0
}

main .page-header {
    margin-bottom: 2rem
}

.entry-content>.wall-to-wall:not(.has-bg-light)+.wall-to-wall:not(.has-bg-dark),
.entry-content>.wall-to-wall:first-of-type:not(.section-callout-dark):not(.has-bg-dark),
.page-child .entry-content .section-testimonials,
.entry-content>h2,
.entry-content>p:first-of-type {
    margin-top: 2rem
}

.wall-to-wall .wp-block-group__inner-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.wall-to-wall.has-bg-dark .wp-block-group__inner-container,
.wall-to-wall.has-bg-light .wp-block-group__inner-container {
    padding-top: 2.5rem;
    padding-bottom: 2rem
}

.wall-to-wall.has-bg-light .wp-block-group__inner-container>.wp-block-columns,
.wall-to-wall.has-bg-dark .wp-block-group__inner-container>.wp-block-columns,
.wall-to-wall.section-callout .wp-block-group__inner-container>.wp-block-columns,
.parent-pageid-6409 .entry-content>.wall-to-wall:first-of-type .wp-block-group__inner-container>.wp-block-columns {
    margin-bottom: 0
}

.wall-to-wall.has-bg-light .wp-block-group__inner-container>h2,
.wall-to-wall.has-bg-dark .wp-block-group__inner-container>h2 {
    margin-top: 0
}

.wall-to-wall .wp-block-columns figure {
    border-radius: 0.5rem
}

.edit-link,
.cat-links,
.byline {
    display: block
}

.edit-link {
    margin-top: 1rem
}

.has-bg-light {
    background: #E7E5E9
}

.has-bg-dark {
    background: linear-gradient(to right, #4a0661, #830232)
}

.has-bg-dark,
.has-bg-dark h2,
.has-bg-dark h3 {
    color: white
}

.has-border-left {
    border-left: 2px solid var(--neutral-700)
}

.has-bg-light.wp-block-column {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    align-self: flex-start
}

.site-header .custom-logo,
.site-footer img {
    height: 70px;
    width: auto
}

.site-header .custom-logo {
    margin-top: 0.25rem
}

.site-header,
main>header,
main .page-header,
.site-main>article>.entry-header {
    border-bottom: 1px solid var(--neutral-300)
}

.custom-logo-link {
    line-height: 0
}

main>header,
main .page-header,
.site-main>article>.entry-header {
    background: var(--neutral-100);
    background: linear-gradient(to bottom, rgba(239, 239, 240, 1) 0%, rgba(246, 247, 245, 1) 100%);
    min-height: 200px
}

.blog main>header {
    background: none;
    position: relative;
    overflow: hidden;
    z-index: 0
}

.blog main>header h1 {
    z-index: 2
}

.blog main>header img {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1
}

.category main>.page-header img {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1
}

.featured-image.grid-container{
	width: 100vw;
	margin: 0 !important;
	max-height: 500px !important;
	max-width:100% !important;
	position:relative;
}

.featured-image img{
    object-fit: cover;
    object-position: right center;
	width: 100vw; !important;
	max-height: 500px !important;
}

.featured-image::before,
.blog main>header::before,
.category main>.page-header::before {
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 15%, rgba(200, 201, 199, 0) 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

main>article.has-post-thumbnail>.entry-header .h-intro-txt {
    color: var(--neutral-900)
}

.page .site-main>article>.entry-header a {
    width: max-content
}

.home .has-bg-dark .wp-block-column>h2,
.home .has-border-left.wp-block-column>p {
    margin-top: 0
}

.home .has-border-left.wp-block-column>p {
    margin-bottom: 0
}

.section-img-tiles .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem
}

.section-img-tiles .wp-block-group__inner-container>h2 {
    grid-column: 1 / -1;
    max-width: 36ch
}

.section-img-tiles .wp-block-columns {
    display: contents
}

.section-img-tiles .wp-block-column {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, max-content) minmax(0, max-content) 1fr;
    align-content: start;
    margin: 0 auto !important;
    min-height: 330px;
    transition: 0.3s ease-in-out
}

.section-img-tiles .wp-block-column>* {
    grid-column: 1 / 2
}

.section-img-tiles .wp-block-column figure {
    grid-row: 1 / 4;
    margin: 0;
    position: relative
}

.section-img-tiles .wp-block-column h3 {
    grid-row: 1 / 2
}

.section-img-tiles .wp-block-column p {
    grid-row: 2 / 3;
    line-height: normal;
    display: none;
    transition: 0.3s ease-in-out
}

.section-img-tiles .wp-block-column:hover p {
    display: block
}

.section-img-tiles .wp-block-column h3,
.section-img-tiles .wp-block-column p {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    z-index: 1
}

.section-img-tiles .wp-block-column h3{
    margin-top: 1em;
    margin-bottom: 0.65em
}


.section-img-tiles .wp-block-column h3 a,
.section-img-tiles .wp-block-column p {
    color: white
}

.section-img-tiles .wp-block-column figure::before {
    content: '';
    background: linear-gradient(to bottom, rgba(83, 86, 90, 1) 0%, rgba(83, 86, 90, 0.2) 100%);
    border-radius: inherit;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.95;
    transition: 0.3s ease-in-out
}

.section-img-tiles .wp-block-column:hover figure::before {
    background: linear-gradient(to bottom, rgba(83, 86, 90, 1) 35%, rgba(83, 86, 90, 0.7) 100%);
    opacity: 1
}

.section-img-tiles .wp-block-column figure img {
    object-fit: cover;
    height: 100%;
    z-index: -1
}

.section-about .wp-block-columns>.wp-block-column:last-child {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
    border-top: 2px solid var(--neutral-700);
    padding-top: 1rem
}

.section-about .wp-block-columns>.wp-block-column:last-child h3 {
    font-size: 1rem
}

.section-about .partner-gallery {
    display: contents
}

.section-about .partner-gallery figure {
    background: white;
    border-radius: 0.5rem;
    height: 100%;
    padding: 0.5rem;
    display: flex;
    align-items: center
}

.partner-gallery.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: 100%;
    margin-right: 0
}

.partner-gallery.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) img {
    margin: 0;
    max-width: 140px;
    max-height: 80px
}

.section-testimonials .wp-block-columns.slick-slide {
    display: flex;
	flex-flow:row wrap;

}

.section-testimonials .wp-block-columns>.wp-block-column:first-child {
    flex-basis: auto !important
}

.section-testimonials .wp-block-columns>.wp-block-column:last-child {
    flex: 1 1 auto;
    margin-left: 0
}

.section-testimonials .wp-block-columns>.wp-block-column:first-child::before {
    content: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI1IDE4Ij48cGF0aCBkPSJNLjUtM2gyNHYyNEguNVoiIHN0eWxlPSJmaWxsOm5vbmUiLz48cGF0aCBkPSJNMTkuMzYgMTAuNzFoNS4xNFYuNDNIMTQuMjF2MTAuMjhsMy40MyA2Ljg2aDUuMTVabS0xMy43MiAwaDUuMTVWLjQzSC41djEwLjI4bDMuNDMgNi44Nmg1LjE0WiIgc3R5bGU9ImZpbGw6IzUzNTY1YTtvcGFjaXR5Oi4xIi8+PC9zdmc+);
    display: block;
    height: 100px;
    width: 140px;
    margin-bottom: 0.5rem
}

.section-testimonials .wp-block-columns>.wp-block-column:first-child p {
    font-size: 0.9rem;
    line-height: normal
}

.section-posts .wp-block-group__inner-container>.wp-block-columns:first-of-type h2 {
    margin-top: 0;
    max-width: 20ch
}

.wp-block-columns {
        flex-wrap: nowrap !important;
    }
:where(.wp-block-columns.is-layout-flex){
	gap:2em;
}

.section-posts .wp-block-query {
    margin: 1rem 0 2rem
}

.section-posts .wp-block-query ul>li,
.rel-post>article {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column
}

.section-posts .wp-block-post-featured-image,
.rel-post>article a.post-thumbnail {
    margin-top: 0
}

.section-posts .wp-block-post-featured-image a,
.rel-post>article a.post-thumbnail {
    display: block
}

.section-posts .wp-block-post-featured-image img,
.rel-post>article img {
    border-radius: 0.5rem;
    object-fit: cover;
    width: 100%
}

.wp-block-query h3.wp-block-post-title {
    font-size: 1rem;
    margin-bottom: 1.5rem
}

.wp-block-post-terms {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: auto
}

.section-cta .wp-block-group__inner-container .wp-block-columns {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: 1rem;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 2rem;
    position: relative
}

.section-cta .wp-block-columns .wp-block-column {
    z-index: 1
}

.section-cta .wp-block-columns::before {
    content: '';
    background: linear-gradient(90deg, rgba(246, 247, 245, 1) 0%, rgba(200, 201, 199, 1) 100%);
    border-radius: 0.5rem 0 0 0.5rem;
    clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
    width: 40%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0
}

.section-cta .wp-block-columns .wp-block-column>figure {
    line-height: 0;
    margin: 0
}

.section-cta .wp-block-columns .wp-block-column>figure iframe {
    border-radius: 0.75rem
}

.section-callout .wp-block-group__inner-container {
    background: var(--neutral-100);
    padding-left: clamp(5rem, 10%, 7rem)
}

.section-callout .wp-block-group__inner-container h3 {
    position: relative
}

.section-callout .wp-block-group__inner-container h3::before {
    content: '';
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PGRlZnM+PHN0eWxlPi5ie2ZpbGw6I2ViMDYwMX08L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iYiIgZD0iTTk0Ljk1IDExLjY4YTQ0Ni40ODkgNDQ2LjQ4OSAwIDAgMC00NC4yOSA0MS41OWMtNS4yOS00Ljc2LTEwLjY0LTkuNDYtMTYuMTQtMTMuOTctLjM1LS4zMS0xLjIzLjA2LTEuOTguODFzLTEuMTUgMS42NS0uODIgMS45OWwuMDguMWM1LjMxIDYuNTIgMTAuOCAxMi44NyAxNi40NiAxOS4wNWEzLjYzIDMuNjMgMCAwIDAgMi41NCAxLjE5Yy45Ny4wNSAxLjkyLS4zIDIuNjQtLjk1bC4yNS0uMjRhNDQ0LjA4MyA0NDQuMDgzIDAgMCAwIDQ0LjItNDYuNzdjLjI4LS4zOC0uMDktMS4yNy0uODUtMi4wNHMtMS42Ni0xLjE1LTIuMDQtLjg1bC0uMDUuMDhaIi8+PHBhdGggY2xhc3M9ImIiIGQ9Ik0yLjg3IDY0LjM0YTUwLjg1MSA1MC44NTEgMCAwIDAgNy41NSAxNC44NiA0OS4yMzkgNDkuMjM5IDAgMCAwIDU5LjMgMTYuMjlBNDkuMjQgNDkuMjQgMCAwIDAgOTMuNyA3My40M2E0OC40NyA0OC40NyAwIDAgMCA0Ljc3LTMxLjM1IDIuMTI3IDIuMTI3IDAgMCAwLTIuMy0xLjkzYy0uNTMuMTUtLjk4LjUtMS4yNy45Ny0uMjkuNDctLjQgMS4wMy0uMyAxLjU3di4zNWMuOTcgOS42Ni0xLjIzIDE5LjM3LTYuMjcgMjcuNjdBNDMuNTMzIDQzLjUzMyAwIDAgMSA2Ni45IDg4LjU3YTQzLjEzNCA0My4xMzQgMCAwIDEtMjcuNTEgMS4wNkE0Mi4yNzUgNDIuMjc1IDAgMCAxIDE3LjEgNzMuODZDNS44MiA1OC45NCA2LjQ5IDM2LjUgMTguNiAyMkE0NC4xMiA0NC4xMiAwIDAgMSA0Mi4yMSA3LjE0YTQ0LjUzIDQ0LjUzIDAgMCAxIDI4LjMxIDIuNzNjLjUuMjUgMS4wNy4zIDEuNjEuMTZhMi4yOCAyLjI4IDAgMCAwIDEuMzItLjkzYy4yMy0uNTMuMjQtMS4xNC4wMi0xLjY4cy0uNjQtLjk3LTEuMTctMS4ybC0uMzItLjE3YTQ4LjQwOCA0OC40MDggMCAwIDAtMzEuMzMtNC43NCA0OS4xMiA0OS4xMiAwIDAgMC0yOC4xIDE2LjI3QTQ5LjA4IDQ5LjA4IDAgMCAwIC43NiA0Ny44NGMtLjE5IDUuNTguNTIgMTEuMTUgMi4xMSAxNi41WiIvPjwvc3ZnPg==) no-repeat;
    width: 3rem;
    height: 3rem;
    margin-left: -4rem;
    margin-right: 1rem;
    position: absolute;
    top: -0.5rem
}

.section-callout ul.checklist {
    max-width: 80ch;
    padding-left: 1.2rem
}

.section-callout .wp-block-group__inner-container,
.section-callout-dark .wp-block-group__inner-container {
    border-radius: 1rem
}

.section-callout-dark {
    margin-top: 2rem;
    position: relative;
    z-index: 3
}

.section-callout-dark .wp-block-group__inner-container {
    background: var(--primary);
    padding: 0.5rem 2rem 1.5rem;
    max-width: 900px
}

.section-callout-dark h2 {
    color: white
}

.img-gallery-collage.wp-block-gallery.has-nested-images:not(.is-cropped)>figure.wp-block-image:not(#individual-image):first-child {
    margin-top: 1rem
}

.img-gallery-collage.wp-block-gallery.has-nested-images:not(.is-cropped)>figure.wp-block-image:not(#individual-image):nth-of-type(2) {
    align-self: end;
    margin-bottom: 1rem
}

.img-gallery-collage.wp-block-gallery.has-nested-images:not(.is-cropped)>figure.wp-block-image:not(#individual-image):nth-child(4),
.img-gallery-collage.wp-block-gallery.has-nested-images:not(.is-cropped)>figure.wp-block-image:not(#individual-image):nth-child(4) {
    margin-top: -1rem
}

.img-gallery-collage.wp-block-gallery.has-nested-images>figure.wp-block-image img {
    margin: 0
}

.search .flex article {
    flex: 0 1 33%;
    padding-bottom: 1rem;
    border-bottom: 0.125em solid var(--neutral-300)
}

.archive .flex article {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column
}

@supports (display: grid) {

    .flex.progressive-grid,
    .section-posts .wp-block-post-template.is-flex-container.is-flex-container.columns-3,
    .section-team-grid .wp-block-post-template.is-flex-container {
        display: grid
    }

    .flex.progressive-grid,
    .section-posts .wp-block-post-template.is-flex-container.is-flex-container.columns-3 {
        grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
        gap: 1.5rem
    }

    .section-team-grid .wp-block-post-template.is-flex-container {
        grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
        gap: 1rem
    }

    .flex.progressive-grid>h3 {
        grid-column: 1 / -1
    }

    .section-posts .wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,
    .section-team-grid .wp-block-post-template.is-flex-container.is-flex-container.columns-4>li {
        width: auto
    }
}

.blog main>ul.main-width {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem
}

.blog main>ul.main-width li {
    font-size: 0.9rem
}

.blog main>ul.main-width li:not(:last-child) {
    margin-right: 1rem
}

.blog .progressive-grid,
.archive:not(.post-type-archive-streamline-team) .progressive-grid {
    display: block
}

.blog .progressive-grid>article,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article {
    background: #e7e5e9;
    border: 2px solid #e7e5e9;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    margin: 2rem 0
}

.blog .progressive-grid>article,
.blog .progressive-grid>article .post-thumbnail img,
.archive .progressive-grid>article,
.archive .progressive-grid>article .post-thumbnail img {
    border-radius: 0.5rem
}

.blog .progressive-grid>article .post-thumbnail,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article .post-thumbnail {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center
}

.blog .progressive-grid>article .entry-header,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-header {
    grid-column: 1;
    grid-row: 1;
    align-self: end
}

.blog .progressive-grid>article .entry-content,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-content {
    grid-row: 2;
    padding: 0 1.5rem;
    font-size: 0.9rem
}

.blog .progressive-grid>article .entry-header,
.blog.logged-in .progressive-grid>article .entry-footer,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-header,
.archive:not(.post-type-archive-streamline-team).logged-in .progressive-grid>article .entry-footer {
    padding: 1.5rem
}

.blog .progressive-grid>article .entry-footer,
.archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-footer {
    grid-row: 3;
    margin-left: 0
}

.progressive-grid>article .entry-content>p:first-of-type {
    margin-top: 0
}

.posts-numeric-navigation ul {
    margin: 3rem auto;
    padding: 0;
    justify-content: center
}

.posts-numeric-navigation ul li {
    border-radius: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem
}

.posts-numeric-navigation ul li.active {
    background: var(--accent)
}

.posts-numeric-navigation ul li.active a {
    color: white
}

.posts-numeric-navigation ul li a,
.blog main>ul.main-width li a,
.BambooHR-ATS-board a {
    text-decoration: none
}

.posts-numeric-navigation ul li:not(.arrow-link):not(.arrow-link-back) a:hover,
.blog main>ul.main-width li a:hover {
    text-decoration: underline
}

.site-main .posts-navigation {
    width: 100%
}

.single-post main>article>.entry-header {
    background: linear-gradient(180deg, #e7e5e9 0%, rgba(246, 247, 245, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
    border-bottom: 0
}

.single-post main>article>.entry-header img.headerImage {
    position: static;
    border-radius: 0.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    max-height: 450px;
    aspect-ratio: 4 / 2;
    object-fit: cover
}

.single main>article>.entry-header,
.single main>article>.entry-footer,
.single-post .rel-post {
    margin-bottom: 3rem
}

.single-post main>article>.entry-footer {
    border-bottom: 1px solid var(--neutral-500);
    padding-bottom: 2rem
}

.single-post main>article>.entry-header h1 {
    margin-top: 1rem
}

.single .tags-links {
    font-size: 0.9rem
}

.byline a,
.p-cat a {
    text-decoration: none
}

.p-cat a {
    background: white;
    border-radius: .25rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase
}

.single-post main>article>.entry-header .p-cat a {
    margin-top: 0.5rem;
    padding: 0
}

.single-post .rel-post article a.post-thumbnail,
.single-post .rel-post article .entry-header .entry-title {
    order: 1
}

.single-post .rel-post article .entry-header,
.single-post .rel-post article .entry-header .p-cat {
    order: 2
}

.single-post .rel-post article .entry-footer {
    order: 3
}

.single-post .rel-post article .entry-header {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%
}

.single-post .rel-post article .entry-header .p-cat {
    display: block;
    margin-top: auto
}

.single-streamline-team main>article>.entry-header img.headerImage {
    position: static;
    max-height: 450px;
    width: auto;
    margin: auto;
    padding: 1rem
}

.team-role,
.p-cat,
.byline,
.entry-meta {
    font-size: 0.85rem;
    margin: 0;
    color: #9d96a8
}

.wp-block-query .streamline-team h3.wp-block-post-title {
    margin-bottom: 0.25rem
}

.single-streamline-team main>article>.entry-header img.headerImage,
.wp-block-query .streamline-team img {
    border-radius: 0.5rem
}
.section-testimonials .wp-block-columns.slick-slide {
    border: 2px solid lightgray;
    border-radius: 30px;
    padding: 25px;
    display: flex;
    flex-flow: row wrap;
}

.section-testimonials .wp-block-columns > .wp-block-column:first-child {
    transform: translateY(-76px);
}
.section-testimonials .slick-list {
    padding-top: 76px;
}




.section-testimonials .wp-block-quote{
	width:100% !important;
}
.wall-to-wall.section-testimonials .wp-block-group__inner-container {
	max-width:none !important;
}


.section-testimonials .wp-block-columns > .wp-block-column:first-child::before {
    background-color: #fff;
    padding: 10px;
}

.make-slick .slick-slider {
    display: -ms-grid;
    -ms-grid-columns: 4rem 1fr 4rem;
    display: grid;
    grid-template-columns: 4rem 1fr 4rem;
    grid-template-rows: 1fr auto;
    align-items: center
}

.make-slick .slick-slider div.slick-list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    margin: 1rem
}

.make-slick .slick-slider button.slick-prev,
.make-slick .slick-slider button.slick-next {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    align-self: center
}

.make-slick .slick-slider button.slick-prev {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1
}

.make-slick .slick-slider button.slick-next {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3;
    -ms-grid-column-align: end;
    justify-self: end
}

.make-slick .slick-slider ul.slick-dots {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2;
    margin-bottom: 0
}

.make-slick .slick-slider button.slick-prev,
.make-slick .slick-slider button.slick-next {
    background: var(--neutral-100);
    border: 0;
    line-height: 0;
    height: 3rem;
    width: 3rem;
    margin: 0;
    text-indent: -9999px
}

.make-slick .slick-slider .slick-prev::after,
.make-slick .slick-slider .slick-next::after {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 600;
    margin: 0
}

.slick-slider .slick-prev::after {
    content: '\e408'
}

.slick-slider .slick-next::after {
    content: '\e409'
}

.make-slick .slick-slider ul.slick-dots {
    list-style-type: none;
    justify-self: center;
    padding: 0
}

.slick-slider ul.slick-dots>li {
    display: inline-block;
    margin: 0
}

.slick-slider ul.slick-dots>li:only-child {
    display: none
}

.make-slick .slick-slider ul.slick-dots>li>button {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    line-height: 1;
    width: 0.9rem;
    height: 0.9rem;
    padding: 0;
    overflow: hidden;
    text-indent: 100%;
    margin: 0.25rem
}

.make-slick .slick-slider ul.slick-dots>li.slick-active button,
.make-slick .slick-slider ul.slick-dots>li>button:hover {
    background: var(--primary)
}

.make-slick .slick-track {
    display: flex;
    align-items: center
}




.css-toggle-block {
    background: white;
    border-radius: 0.5rem;
    padding: 1em;
    margin-bottom: 1rem
}

.css-toggle-block .css-toggle-question {
    background: none;
    padding: 0 1em 0 0
}

.css-toggle-block label.css-toggle-question {
    color: var(--neutral-900);
    font-size: calc(1.15rem + 0.25vw)
}

.css-toggle-block label::after {
    color: var(--neutral-700);
    font-size: 1.5rem;
    top: 0.1rem;
    right: -0.5rem;
    transition: none;
    padding: 0
}

.css-toggle-block input[type="checkbox"]:not(:checked)+label:after {
    transform: none !important
}

.css-toggle-block input[type="checkbox"]:checked+label:after {
    transform: rotate(180deg) !important
}

.css-toggle-block .css-tab-answer {
    color: inherit;
    max-height: 0;
    overflow: hidden
}

.css-toggle-block .css-tab-answer .css-tab-content {
    padding: 0.5em 0 0
}

.has-primary-color {
    color: var(--primary)
}

.has-primary-background-color {
    background-color: var(--primary)
}

.has-accent-color {
    color: var(--accent)
}

.has-accent-background-color {
    background-color: var(--accent)
}

.site-footer {
    background: var(--primary);
    padding-top: 3rem;
    padding-bottom: 1rem
}

.site-footer,
.site-footer a,
.site-footer a:hover {
    color: white
}

.site-footer p,
.site-footer ul:not(.wp-block-social-links) {
    font-size: 0.9rem
}

.site-footer .site-info p,
.site-footer .site-info ul {
    font-size: 0.8rem
}

.site-footer ul a {
    text-decoration: none
}

.site-footer ul a:hover {
    text-decoration: underline
}

.site-info p:first-of-type {
    flex: 0 1 auto
}

.site-footer img {
    filter: brightness(0) invert(1)
}

.site-footer .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg {
    fill: white
}

#block-6 {
    margin-top: auto;
    margin-bottom: 0
}

.site-footer ul li {
    display: inline-block;
    line-height: 1.5;
    padding-left: 0.5em
}

ul#menu-privacy-policy {
    border-left: 1px solid var(--neutral-100);
    padding-left: 0.3rem;
    margin-left: 0.5rem
}

ul#menu-footer-menu>li:nth-child(n+2) {
    border-left: 0.125em solid var(--neutral-100)
}

#menu-footer-links {
    margin-left: auto;
    width: max-content
}

@media screen and (max-width: 1160px) {

    .section-callout .wp-block-group__inner-container,
    .section-callout-dark .wp-block-group__inner-container {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        max-width: 100%
    }
}

@media (min-width: 600px) and (max-width: 781px) {
    .wall-to-wall:not(.section-testimonials) .wp-block-columns:not(.is-not-stacked-on-mobile) {
        flex-wrap: nowrap
    }

    .section-img-tiles .wp-block-column img {
        aspect-ratio: 3/1
    }

    .section-careers .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
        margin-left: var(--wp--style--block-gap, 2em)
    }
}

@media screen and (max-width: 768px) {
    .main-navigation:not(.toggled) {
        display: none
    }

    .main-navigation.toggled .menu-primary-menu-container {
        padding-top: 4rem
    }

    .main-navigation.toggled.isFixed.tallerThanScreen .menu-primary-menu-container {
        height: 100%
    }

    .main-navigation.toggled #primary-menu {
        flex-direction: column;
        gap: 0
    }

    .main-navigation #primary-menu li {
        padding: 1rem 0
    }

    .main-navigation #primary-menu>li {
        border-bottom-color: var(--neutral-500)
    }

    .main-navigation #primary-menu>li a {
        font-size: 1rem
    }

    .main-navigation #primary-menu>li.menu-item-has-children.menu-open::after {
        color: var(--accent)
    }

    .main-navigation #primary-menu li .isVisible {
        border-top: 2px solid var(--accent);
        margin-top: 1rem;
        padding: 0
    }

    .main-navigation #primary-menu li .sub-menu li {
        padding: 0.25rem 1rem
    }

    .main-navigation #primary-menu li .sub-menu>li:last-child {
        padding-bottom: 0.5rem
    }

    #chicagoFixedFooterMenu a {
        text-decoration: none
    }

    #chicagoFixedFooterMenu ul {
        height: 100%
    }

    .custom-logo {
        margin-left: -0.5rem
    }

    .page main>article.has-post-thumbnail>.entry-header h1,
    .page main>article.has-post-thumbnail>.entry-header .h-intro-txt {
        grid-column: 2 / span 5
    }

    .page main>article.has-post-thumbnail>.entry-header::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 20%, rgba(200, 201, 199, 0.2) 90%)
    }

    .single-streamline-team main>article>.entry-header img.headerImage {
        max-height: 350px
    }

    .entry-content>.wall-to-wall:first-of-type:not(.section-callout-dark) .wp-block-group__inner-container h2 {
        margin-top: 0
    }

    .wall-to-wall.section-about .wp-block-columns .wp-block-column,
    .wall-to-wall.section-cta .wp-block-columns .wp-block-column,
    .wall-to-wall.section-testimonials .slick-slide.wp-block-columns .wp-block-column {
        margin-left: 0
    }

    .wall-to-wall .wp-block-columns,
    .section-testimonials .wp-block-columns.slick-slide {
        flex-direction: column
    }

    .wall-to-wall:not(.section-testimonials) .wp-block-group__inner-container {
        max-width: 90%
    }

    .wall-to-wall .wp-block-columns>.wp-block-column {
        margin-left: 0 !important
    }

    h2.entry-title {
        font-size: clamp(.9rem, 1rem + 0.18vw, 1.1rem)
    }

    .section-cta .wp-block-columns::before {
        width: 70%;
        height: 50%;
        min-height: 430px
    }

    .section-cta .wp-block-columns>.wp-block-column:last-child {
        margin-top: 1.5rem
    }

    .has-border-left.wp-block-column {
        border-left: 0;
        padding-left: 0;
        margin-left: inherit
    }

    .blog .progressive-grid>article .entry-header,
    .blog .progressive-grid>article .entry-footer {
        padding: 1rem
    }

    .flex-order-swap.wp-block-columns>.wp-block-column:first-child,
    .section-platform-features .wp-block-columns:nth-of-type(odd)>.wp-block-column:first-child {
        order: 2
    }

    .flex-order-swap.wp-block-columns>.wp-block-column:last-child,
    .section-platform-features .wp-block-columns:nth-of-type(odd)>.wp-block-column:last-child {
        order: 1
    }
}

@media screen and (max-width: 600px) {

    .entry-content p a,
    .entry-content li a {
        text-decoration: underline;
        color: #941bbd
    }

    .entry-content h3 a {
        text-decoration: none
    }

    .single-streamline-team main>article>.entry-header {
        padding-bottom: 1rem
    }

    .single-streamline-team main>article>.entry-header h1,
    .single-streamline-team main>article>.entry-header p,
    .single-streamline-team main>article>.entry-header img.headerImage {
        -ms-grid-column-span: 6;
        -ms-grid-column: 2;
        grid-column: 2 / span 6;
        text-align: center
    }

    .single-streamline-team main>article>.entry-header img.headerImage {
        -ms-grid-row-span: 1;
        -ms-grid-row: 1;
        grid-row: 1 / 2
    }

    .single-streamline-team main>article>.entry-header h1 {
        -ms-grid-row-span: 1;
        -ms-grid-row: 2;
        grid-row: 2
    }

    .single-streamline-team main>article>.entry-header p {
        -ms-grid-row-span: 1;
        -ms-grid-row: 3;
        grid-row: 3
    }

    .wall-to-wall.section-cta .wp-block-columns {
        padding: 1.5rem
    }

    .make-slick .slick-slider div.slick-list {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 4
    }

    .make-slick .slick-slider button.slick-prev,
    .make-slick .slick-slider button.slick-next {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2 / 3;
        width: 2rem;
        height: 2rem;
        display: block
    }

    .section-posts .wp-block-columns p.arrow-link {
        text-align: left
    }

    .section-posts .wp-block-query {
        margin-top: 0
    }

    .section-img-tiles .wp-block-column p {
        display: block
    }

    .section-img-tiles .wp-block-column figure::before {
        background: linear-gradient(to bottom, rgba(83, 86, 90, 1) 35%, rgba(83, 86, 90, 0.7) 100%);
        opacity: 1
    }

    .wall-to-wall:not(.section-testimonials) .wp-block-group__inner-container {
        max-width: 100%
    }

    .section-callout .wp-block-group__inner-container {
        padding-left: 1.5rem
    }

    .section-callout .wp-block-group__inner-container h3::before {
        width: 2rem;
        height: 2rem;
        margin-left: 0;
        top: -2.9rem;
        left: calc(50% - 1.9rem)
    }

    .blog main>ul.main-width {
        justify-content: center
    }

    .blog .progressive-grid>article,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article {
        grid-template-columns: 1fr
    }

    .blog .progressive-grid>article .post-thumbnail,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .post-thumbnail {
        grid-row: 1 / 2
    }

    .blog .progressive-grid>article .post-thumbnail,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .post-thumbnail,
    .blog .progressive-grid>article .entry-header,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-header,
    .blog .progressive-grid>article .entry-content,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-content,
    .blog .progressive-grid>article .entry-footer,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-footer {
        grid-column: 1
    }

    .blog .progressive-grid>article .entry-header,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-header {
        grid-row: 2;
        padding-bottom: 0.5rem
    }

    .blog .progressive-grid>article .entry-content,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-content {
        grid-row: 3
    }

    .blog .progressive-grid>article .entry-footer,
    .archive:not(.post-type-archive-streamline-team) .progressive-grid>article .entry-footer {
        font-size: 0.9rem;
        grid-row: 4
    }

    #menu-footer-links {
        margin-left: 0
    }

    #block-4 .wp-block-buttons,
    #block-6 ul {
        justify-content: flex-start
    }
}

@media screen and (max-width: 480px) {
    .page main>article.has-post-thumbnail>.entry-header::before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.2) 100%)
    }
}