/* BANNER IMAGE STYLING */

.intBg {
    position: relative;
    margin-top: 45px;
    background-color: #2b2b2b;
}

.intBg::after {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    margin-left: -20px;
    background: url('images/decorative-leaf.svg') center center no-repeat;
    background-size: 40px 40px;
    z-index: 50;
}

.intBgImage {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-position: center center !important;
    background-size: cover !important;
}

.intBgImage::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(34, 34, 34, .4) 0, rgba(34, 34, 34, 0) 100%);
    height: 250px;
}

.intBgImage::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, .45);
    position: absolute;
    top: 0;
    left: 0;
}


.intBgImage img {
    display: inline-block;
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.intBannerTextWrapper {
    width: 94%;
    height: 300px;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1001;
}

.intBannerTextWrapper h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.76471rem;
    line-height: 2.05882rem;
    text-overflow: ellipsis;
    color: #fff;
    position: relative;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .5), 0 0 25px #000;
    transition: opacity .8s ease-in .3s;
    width: 100%;
}

@media (min-width: 480px) {
    .intBannerTextWrapper h1 {
        font-size: 2.47059rem;
        line-height: 2.76471rem;
    }

    .intBg {
        margin-top: 55px;
    }
}

@media (min-width: 768px) {
    .intBannerTextWrapper h1 {
        font-size: 2.94118rem;
        line-height: 3.23529rem;
        text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    }
}

@media (min-width: 992px) {
    .intBg {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .intBg::after {
        width: 70px;
        height: 70px;
        bottom: -30px;
        margin-left: -35px;
        background-size: 70px 70px;
    }

    .intBgImage {
        height: 500px;
    }

    .intBgImage img {
        height: 500px !important;
    }

    .intBannerTextWrapper {
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0 auto;
        padding: 88px 0 80px;
        height: 500px;
    }

    .intBannerTextWrapper h1 {
        font-size: 5.1765em;
        line-height: 3.82353rem;
    }

}

/* BREADCRUMBS & OPTIONS STYLING */

.topContentWrapper {
    display: block;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 11;
}

.topContentWrapper .ic-container-fluid {
    width: 100%;
    padding: 0 3%;
}

.actions {
    padding: 30px 0 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

#breadcrumbs {
    font-size: .8235rem;
    font-weight: 400;
    color: #2b2b2b;
    width: calc(100% - 60px);
    padding: 10px 0 0;
    overflow: hidden;
}

#breadcrumbs a, #breadcrumbs a:link, #breadcrumbs a:visited {
    font-weight: 600;
    text-decoration: none;
    color: #435369;
}

#breadcrumbs a:after, #breadcrumbs a:link:after, #breadcrumbs a:visited:after {
    display: inline-block;
    content: "/";
    margin-right: 10px;
    margin-left: 10px;
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 400;
}

#breadcrumbs a, #breadcrumbs a:link, #breadcrumbs a:visited {
    font-weight: 600;
    text-decoration: none;
    color: #435369;
}

#breadcrumbs a:focus, #breadcrumbs a:hover, #breadcrumbs a:link:focus, #breadcrumbs a:link:hover, #breadcrumbs a:visited:focus, #breadcrumbs a:visited:hover {
    text-decoration: underline;
}

.actionsInner {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid #ccc;
    padding-top: 8px;
    margin: 10px 0 0;
}

.actionsInner .resizeText, .actionsInner .print, .actionsInner .share {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.actionsInner .resizeText button:first-of-type {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.actionsInner>div>button {
    width: 20px;
    height: 20px;
    padding: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 4px;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
    background-color: transparent !important;
}

.actionsInner button img, .actionsInner button svg {
    width: 18px;
    height: 18px;
}

.actionsInner button svg * {
    fill: #6e6e6e;
}

.actionsInner .print {
    margin: 0 8px;
}

.share {
    position: relative;
    cursor: pointer;
}

.actionsInner .share {
    margin: 0 8px;
}

.share ul {
    display: none;
    margin: 0;
    padding: 0;
    font-size: .875em;
    list-style: none;
    text-align: left;
    vertical-align: middle;
    background-color: white;
    border-radius: .125rem;
    box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .2);
    position: absolute;
    top: 122%;
    right: 0;
    z-index: 5;
}

.share li {
    margin: 0;
    padding: 0;
    width: 130px;
    border-bottom: solid 1px #eae6e0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
}

.share li button {
    display: block;
    margin: 0;
    padding: .5em;
    width: 100%;
    height: auto;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
}

.share li button:focus, .share li button:hover {
    text-decoration: none;
    background-color: #efefef;
}

.share li img {
    width: 30px;
    height: 30px;
    margin-top: -3px;
    margin-right: 5px;
    vertical-align: middle;
}

.sharer-button {
    background-color: #fff;
}

#main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 3%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.content {
    overflow: hidden;
    width: 100%;
    padding: 30px 0 0;
    min-height: 400px;
    -ms-flex-order: 1;
    order: 1;
}
  
.mainContent {
    outline: none;
    padding-left: 6px;
    padding-right: 6px;
    font-size: calc(1rem * var(--text-scale, 1));
}


@media (min-width: 768px) {
    #breadcrumbs {
        display: block;
    }
}

@media (min-width: 992px) {
    .topContentWrapper {
        padding: 0 0 30px;
    }

    .topContentWrapper .ic-container-fluid {
        position: relative;
        width: 94%;
        padding: 0;
    }

    .actions {
        padding: 0 20px 0 30px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-align: end;
        align-items: flex-end;
        border: none;
        padding: 0;
    }

    #breadcrumbs {
        border: none;
        margin-right: 0;
    }

    .actionsInner {
        -ms-flex-pack: end;
        justify-content: flex-end;
        max-width: 318.5px;
        padding: 0;
        margin-top: 0;
        margin: 0 0 4px;
        border: none;
    }

    .actionsInner>div>button {
        margin: 0 2px;
    }

    .actionsInner>div>button:focus::before, .actionsInner>div>button:hover::before {
        content: "";
        width: 20px;
        height: 2px;
        background: #97262c;
        position: absolute;
        left: 0;
        bottom: -9px;
        z-index: 5;
    }

    .actionsInner .share {
        margin: 0 0 0 8px;
    }

    #main {
        -ms-flex-direction: row;
        flex-direction: row;
        width: 94%;
        padding: 0;
    }

    .content {
        padding: 0 0 80px 60px;
        width: 77%;
    }
}


@media (min-width: 1200px) {
    .actions {
        margin: 0 auto;
    }
}



.vc_row .wpb_wrapper>div {
    margin-bottom: 0px;
}
  
.wpb_wrapper>div>div>h2 {
    color: rgb(43, 43, 43);
    margin-top: 0px;
}

.wpb_wrapper>.vc_separator {
    margin: 20px 0;
}
  
.vc_tta-panel-heading h4 {
    font-size: 17px;
}

.vc_tta-panel-body p {
    margin: 10px 0;
}

.vc_tta-panel-body p:first-child {
    margin-top: 0;
}

.vc_tta-panel-body p:last-child {
    margin-bottom: 0;
}

.vc_tta-panel-title a:hover {
    background-color: #ebe9e5 !important;
}

.vc_tta-panel-body ul li {
    list-style: disc;
    margin-left: 1.75rem;
}

.emphasis-Primary {
    background-color: #e3cdcc;
}
.emphasis-Primary, .emphasis-Secondary, .emphasis-Tertiary {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 7px 20px;
    padding-bottom: 10px;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    color: #000;
}

.content .emphasis-Primary p, .content .emphasis-Secondary p {
    margin: 0;
}

.emphasis-Secondary {
    background-color: #d0d2d4;
}



  .vc_row .vc_tta-container .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
    box-sizing: border-box;
    margin: -1px;
  }


.vc_tta-container .vc_tta-panel-body blockquote {
    max-width: 100%;
    padding: 10px 0 10px 15px;
    margin: 0 0 25px;
    border-left: 4px solid #97262c;
    overflow: hidden;
    line-height: 1.4706;
    text-overflow: ellipsis;
    font-family: Outfit, -apple-system, BlinkMacSystemFont, avenir next, avenir, Segoe UI, lucida grande, helvetica neue, helvetica, Fira Sans, roboto, noto, Droid Sans, cantarell, oxygen, ubuntu, franklin gothic medium, century gothic, Liberation Sans, sans-serif;
    font-weight: 400;
    color: #2b2b2b;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 17px;
}


blockquote p:last-child {
    margin: 0;
}

.twoButtonsTogether {
    display: flex;
    gap: 3px;
}

.content .wpb_text_column a.defaultButton-Primary {
    margin-bottom: 5px;
}

.content .datatable {
    border: solid 1px #ccc;
}

.datatable caption {
    text-align: left;
    color: #2b2b2b;
}

.datatable iframe {
    border: solid 1px #ccc;
}

.content caption {
    font-size: 1.765em;
    font-weight: 400;
    font-family: Great Sejagad, sans-serif;
    color: inherit;
    margin: 20px 0 15px;
    padding: 0;
}

.content .vc_row ul {
    padding-left: 10px;
}

.content li {
    list-style-type: disc;
}
  
.vc_row h6 {
    font-size: 1.0588em;
    font-weight: 700;
    margin: 0;
    padding: 0;
    font-family: Outfit, -apple-system, BlinkMacSystemFont, avenir next, avenir, Segoe UI, lucida grande, helvetica neue, helvetica, Fira Sans, roboto, noto, Droid Sans, cantarell, oxygen, ubuntu, franklin gothic medium, century gothic, Liberation Sans, sans-serif;
    font-size: 1.0588em;
    font-weight: 700;
    color: inherit;
    line-height: inherit;
}

.noSidebarContent {
    font-size: 17px;
}

.content iframe, .noSidebarContent iframe {
    border: solid 1px #ccc;
}

header {
    min-height: 100px !important;
}

.eventPostWrapper .mainContent h1 {
    margin-top: 20px;
}

.vc_tta-container .vc_tta-panel-body .wpb_text_column {
    margin-bottom: 10px;
}

.vc_tta-container .vc_tta-panel-body .wpb_text_column:has(blockquote) {
    margin-bottom: 10px;
}
