body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #3C4144; /* charcoal */
}

p {
    margin: 0 0 20px 0;
}

/* Nav */
li.menu-btn a {
    display: inline-block;
    padding: 13px 40px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    transition: 0.3s;
    text-transform: uppercase;
    color: white;
    background-color: #E95D49;
}

li.menu-btn a:hover {
    color: white!important;
    background-color: #D64D3A;
}

/* Mobile */
.mobile-btn {
    z-index: 10000; 
}
.mobile-btn--border {
    border-bottom: solid 3px;
}
.js-main-nav {
    z-index:1000;
}

/* Accordion */
.accordion-heading.activeFilter {
    background-color: #f3f3f3;
}
.accordion-heading:before {
    content: "-";
    font-size: 24px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    transition: all 0.6s ease;
}

.accordion-heading.activeFilter:before {
    display: none;
    transition: all 0.6s ease;
}
.accordion-heading.activeFilter:after {
    content: "+";
    font-size: 24px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    transition: all 0.6s ease;
}
.accordion-content {
    display: none;
}

/* ONE CLICK ACCESSIBILITY */
#pojo-a11y-toolbar {
	bottom: 0!important;
	top: unset!important;
}
#pojo-a11y-toolbar.pojo-a11y-toolbar-right {
	bottom: 0;
}

#pojo-a11y-toolbar.pojo-a11y-toolbar-right .pojo-a11y-toolbar-toggle {
    right: 186px;
    bottom: 6px;
}

#pojo-a11y-toolbar.pojo-a11y-toolbar-right .pojo-a11y-toolbar-toggle,
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    border-radius: 100px;
}

/* CONTAINER */
.container {
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1300px) {
    .container {
        max-width: 1440px!important;
    }
}
.container-sm {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 850px!important;
}
.container-md {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px!important;
}
.container-lg {
    margin: 0 auto;
    max-width: 2000px!important;
}


/* FONTS */
strong, b {
    font-weight: 700;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #3C4144;
    margin-bottom: 20px;
}

.fancy-heading {
    font-family: 'Nunito Sans', sans-serif;
}

.display-hero {  font-size: 3rem; }
.display-2xl {  font-size: 5.5rem; }
.display-xl {   font-size: 3.2rem; }
.display-lg {   font-size: 2.5rem; }
.display-md {   font-size: 2rem; }
.display-sm {   font-size: 1.5rem; }
.display-xs {   font-size: 1rem; }

@media screen and (max-width:1024px) {
    .display-hero {  font-size: 2rem; }
    .display-2xl {  font-size: 4.5rem; }
    .display-xl {   font-size: 2.8rem; }
    .display-lg {   font-size: 2.1rem; }
    .display-md {   font-size: 1.6rem; }
    .display-sm {   font-size: 1.4rem; }
    .display-xs {   font-size: 1rem; }
}

/* DOTS */
.dots-heading,
.dots-heading-center {
    position: relative;
}
.dots-heading:after,
.dots-heading-center:after {
    position: absolute;
    content: url(../../assets/images/dots-blue.svg);
    bottom: -35px;
}
.dots-heading:after {
    left: 0;
}
.dots-heading-center:after {
    left: 50%;
    transform: translateX(-50%); 
}

/* DASHES */
.dashes {
   background-image: url(../../assets/images/dashes.svg);
   background-repeat: no-repeat;
   background-size:contain;
}

/* IMAGES */
.img-40 { padding-bottom: 40% }
.img-50 { padding-bottom: 50% }
.img-60 { padding-bottom: 60% }
.img-70 { padding-bottom: 70% }
.img-80 { padding-bottom: 80% }
.img-90 { padding-bottom: 90% }
.img-100 { padding-bottom: 100% }
.img-110 { padding-bottom: 110% }
.img-120 { padding-bottom: 120% }
.img-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.img-contain {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
}

/* CARDS */
.card {
    padding-bottom: 60%;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 13px 40px 12px;
    border-radius: 5px;
    /* text-transform: uppercase; */
    font-weight: 600;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    transition: 0.3s;
    text-transform: uppercase;
}

.button__orange {
    color: white;
    background-color: #E95D49;
}

.button__orange--sm {
    font-size: 0.8em;
    padding: 12px 30px;
    background-color: #E95D49;
}

.button__orange--sm:hover,
.button__orange:hover {
    color: white!important;
    background-color: #D64D3A;
}

.button__outline {
    color: #3C4144;
    border: solid 1px #E95D49;
}
.button__outline-white {
    color: #ffffff;
    border: solid 1px #E95D49;
}
.button__outline:hover,
.button__outline-white:hover {
    color: #ffffff;
    background-color: #E95D49;
}

.button__plain {
    position: relative;
    padding-right: 20px;
    font-size: 0.8em;
    font-weight: bold;
    transition: all ease-in .2s;
    text-decoration: none!important;
}
.button__plain:hover {
    opacity: .8;
}
.button__plain:after {
    position: absolute;
    content: "";
    width: 14px;
    height: 9px;
    top: 4px;
    right: 0;
    opacity: .8;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../assets/images/btn-arrow-red.svg);
    transition: all ease-in .2s;
}
.button__plain:hover:after {
    transform: translateX(2px);
    
}

/* Timeline */
.timeline {
    left: 7px;
}

/* EMBED VIDEO */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* SLIDER */
.slick-dots {
    bottom: 20px!important;
}
@media screen and (max-width:1024px) {
    .slick-dots {
        bottom: 10px!important;
    }
}

/* PANELS */
.panel-1 {
    height: 48%;
    margin-bottom: 4%;
}
.panel-2 {
    height: 48%;
}


/* COLUMNS */
.two-col {
    column-gap: 40px;
    columns: 2;
}
.three-col {
    column-gap: 40px;
    columns: 3;
}
@media screen and (max-width:1024px) {
    .two-col,
    .three-col {
        columns: 1;
    }
}

/* LIST */
ul.list-bullet {
    list-style: none; /* Remove default bullets */
  }
  
ul.list-bullet li::before {
    content: "\2022";
    color: #E6A211;
    font-size: 1.75em;
    line-height: 0em;
    line-height: 0.9em;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

ul.list-bullet li {
    padding-left: 2em;
}

/* PAGINATION */
.pagination li a {
    padding: 6px 13px;
}
.pagination li a:hover {
    background-color: #EEE9E2;
}

.pagination .current {
    padding: 6px 13px;
    color: white;
    background-color: #0F77AD;
}

/* WIDGET */
.widget h2 {
    font-size: 1.25rem;
}
.widget li {
    padding: 8px 0;
    border-bottom:solid 1px #D8D8D8;
}

.widget li a {
    position: relative;
    padding-left: 15px;
    transition: all ease-in .1s;
}

.widget li a:before {
    content: '>';
    position: absolute;
    left: 0;
    top: -2px;
}

.widget li a:hover {
    color: #0F77AD;
}

.wp-block-search__button {
    background-color: #E95D49;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.wp-block-search__input {
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.wp-block-search__label {
    display: none;
}

/* SEARCH */

.search-field {
	background-color: transparent;
	background-image: url(../../assets/images/icon-search.svg);
	background-position: 7px center;
	background-repeat: no-repeat;
	background-size: 15px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 0;
    opacity: 0.7;
}

.search-field:focus {
	background-color: #fff;
    background-image: url(../../assets/images/icon-search.svg);
	border: 1px solid #B7B7BC;
	cursor: text;
	outline: 0;
	width: 230px;
    border-radius: 5px;
    opacity: 1;
}

.search-submit {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

/* BLOCKQUOTE */
.wp-block-pullquote {
    padding: 20px 0;
}
blockquote {
    text-align: left;
    border-left: solid 3px #E6A211;
    padding-left: 30px;
    font-style: italic;
    font-size: 20px;
}

/* WYSIWYG */
.wysiwyg ul {
	display: block;
    list-style-type: disc;
    margin-left: 1em;
    margin-bottom: 20px;
    padding-left: 20px;
}

.wysiwyg a,
.wysiwyg p a {
	text-decoration: underline;
    transition: all .2s ease-in;
}

.wysiwyg a:hover,
.wysiwyg p a:hover {
	color: #E95D49;
}

.wysiwyg a.button,
.wysiwyg p a.button {
	text-decoration: none;
}

.wysiwyg h2 {   font-size: 2.5rem; }
.wysiwyg h3 {   font-size: 2rem; }
.wysiwyg h4 {   font-size: 1.5rem; }
.wysiwyg h5 {   font-size: 1rem; }

@media screen and (max-width:1024px) {
    .wysiwyg h2 {   font-size: 2.1rem; }
    .wysiwyg h3 {   font-size: 1.6rem; }
    .wysiwyg h4 {   font-size: 1.4rem; }
    .wysiwyg h5 {   font-size: 1rem; }
}

/* BORDER */
.border-1 {
    border-width: 1px;
}
.border-t-1 {
    border-top-width: 1px;
}
.border-b-1 {
    border-bottom-width: 1px;
}
.border-l-1 {
    border-left-width: 1px;
}
.border-r-1 {
    border-right-width: 1px;
}

/* EVENT MANAGER */
.wpem-event-listing-list-view.wpem-event-listings .wpem-event-layout-wrapper:hover .event_listing, .wpem-event-listings .wpem-event-layout-wrapper:hover .wpem-event-action-url {
	border-width:0px!important;
}

.event_registration.registration {
	display:none!important;
}

.search_events.search-form-container,
.wpem-main.wpem-event-listings-header,
.wpem-event-organizer,
.wpem-event-organizer-name {
    display: none!important;
}

h2.wpem-heading-text {
    display: none;
}

.wpem-event-listings .wpem-event-layout-wrapper .event_listing {
    background-color: white;
}

.wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date {
    display: inline-block;
    float: left;
    text-align: center;
    background: #EC5A25;
    color: white;
    padding: 10px 15px;
    width: auto;
    height: auto;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 4px;
    box-shadow: 5px 3px 15px rgba(0, 0, 0, .2);
}

.wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-title .wpem-heading-text {
    color: #EC5A25;
}

.wpem-event-listings .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-date-time::before,
.wpem-event-listings .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-location::before {
    color: #EC5A25;
    opacity: .5;
}

/* event date box: day */
.wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date .wpem-date {
    font-size: 23px;
    line-height: 23px;
    font-weight: 600;
    color: white;
}

/* event date box: month */
.wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date .wpem-month {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 15px;
    color: white;
}

.wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date {
    top: auto;
    left: auto;
    bottom: 15px;
    right: 15px;
    border-radius: 2px;
}

#load_more_events_loader {
    display: none;
}

.wpem-single-event-page .wpem-single-event-wrapper .wpem-single-event-body .wpem-single-event-left-content .wpem-single-event-short-info .wpem-viewed-event {
    display: none;
}

.wpem-single-event-page .wpem-heading-text,
.wpem-single-event-page .wpem-single-event-wrapper .wpem-single-event-body .wpem-single-event-body-sidebar .wpem-heading-text {
    color: #3C4144;
}

.wpem-event-listing-box-view .no_event_listings_found, .wpem-event-listing-calendar-view .no_event_listings_found, .wpem-event-listing-list-view .no_event_listings_found {
    color: #3C4144;
}

.wpem-alert-danger {
    background-color: #D6E6EB;
    border-color: #9CB6BE;
}