  /*
   * 
   * Smooth scrolling to on-page anchors
   * updated by BSD/aphouston
   * last update 2023-06-07
   * 
   */

html {
	scroll-behavior: smooth;
}

/*********************************************************
*
*	header arrow bar
*
*********************************************************/

.header-arrow-bar:after {
	display: none;
}

/*********************************************************
*
*	breadcrumbs
*
*********************************************************/

.breadcrumbs a {
	color: #55565a;
}

/*********************************************************
*
*	alert box at top of header
*
*********************************************************/



  /*
   * 
   * Code for alert banner
   * updated by BSD/aphouston
   * last update 2023-04-17
   * 
   */

.alertBox {
	font-size: 12px;
	background: #f6f6f6;
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	cursor: pointer;
	padding: 0px 40px 0px 8px;
	white-space: normal;
	max-height: none;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	transition: all .4s ease-out;
}


.alertBox > .inner {
	box-sizing: border-box;
	text-overflow: ellipsis;
	width: 1200px;
	position: relative;
	margin: 0px;
	padding: 0px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 0;
	max-width: 100%;
	gap: 8px;
	overflow: visible;
	transition: all .3s ease-out;
}

.alertBox label {
	letter-spacing: 1px;
	font-weight: bold;
	background-color: #ff6319;
	color: #fff;
	cursor: pointer;
	padding: 3px 7px 4px 8px;
	white-space: nowrap;
	font-size: .75rem;
	line-height: .75rem;
	display: block;
	flex: none;
	margin: 6px 0;
	text-transform: uppercase;
}


.alertBox.showAlert {
	max-height: 50%;
	text-overflow: initial;
	white-space: initial;
	overflow: auto;
	padding-top: 8px;
	padding-bottom: 8px;
}
.alertBox.showAlert > .inner {
	white-space: normal;
	min-height: 80px;
	transition: all .6s ease;
}
  
.alertBox > .inner:after {
	content: ' ';
	width: 12px;
	height: 12px;
	border-right: 1.5px solid #4d4f53;
	border-bottom: 1.5px solid #4d4f53;
	transform: scaleY(1) rotate(45deg);
	transition: all .2s ease-out;
	position: absolute;
	top: 6px;
	left: calc(100% + 15px);
	cursor: pointer;
}
.alertBox.showAlert > .inner:after {
	top: 11px;
	transform: scaleY(-1) rotate(45deg);
}


.alertBox #alert_list {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	flex: 1;
	gap: 8px;
	max-width: 100%;
  min-width: 0;
}

.alertBox.showAlert #alert_list {
	gap: 8px;
}

.alertBox #alert_list > li {
	padding: 6px 0 6px 20px;
  list-style: none;
	position: relative;
	min-width: 0;
	flex: 1;
}
.alertBox #alert_list > li.priority {
	flex: 1.5;
	background-color: transparent;
  animation-name: priority-pulse;
  animation-duration: .667s;
  animation-iteration-count: 6;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
	animation-delay: 1s;
}
.alertBox.showAlert #alert_list > li {
	overflow: visible;
	min-width: auto;
	flex: auto !important;
}
.alertBox #alert_list > li::before {
  content: '';
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 7px;
	border: 5px solid transparent;
	border-left-color: #ff6319;
	border-left-width: 8px;
}

.alertBox #alert_list .alert-text {
	margin: 0;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-height: 20px;
}
.alertBox.showAlert #alert_list .alert-text {
	max-height: 500px;
	white-space: normal;
	transition: all .8s ease-in-out;
}

.alertBox #alert_list .alert-heading {
	display: inline;
	position: relative;
	padding: 0;
	margin-right: 3px;
	text-overflow: ellipsis;
}
.alertBox.showAlert #alert_list .alert-heading {
	display: block;
	margin-bottom: 4px;
}

/* animate pulsing yellow background for priority alerts */
@keyframes priority-pulse {
	0% {
	  background-color: transparent;
	}
	100% {
	  background-color: #fff480;
	}
}



/*********************************************************
*
*	column headers
*
*********************************************************/

.column-text h3.blue {
	color: #001d77;
}
.column-text h3.orange {
	color: #ff6319;
}
.column-text h3.light-blue {
	color: #00a1de;
}
.column-text h3.green {
	color: #00b092;
}

/*********************************************************
*
*	events list page
*
*********************************************************/

#tribe-events-header {
	display: block;
	position: absolute;
	width: 100%;
}
#tribe-events-footer {
	display: block;
	width: 100%;
}

ul.tribe-events-sub-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	height: 24px;
}

ul.tribe-events-sub-nav li {
	margin: 0 !important;
	padding: 0;
}
ul.tribe-events-sub-nav li:first-child {
	position: absolute;
	left: 0;
}
ul.tribe-events-sub-nav li:last-child {
	position: absolute;
	right: 0;
}

.type-tribe_events .single-event-content .buttonset.bottom-buttonset {
	clear: none;
}

.type-tribe_events .single-event-content .buttonset.bottom-buttonset .button {
	width: auto;
	padding: 15px 17px;
}

.type-tribe_events .single-event-content {
	overflow: hidden;
}

@media (max-width: 1000px) {
	#tribe-events-content-wrapper .tribe-events-list .tribe-events-loop .tribe-events-content {
		display: block;
	}

	#tribe-events-content-wrapper .tribe-events-loop .tribe-events-event-meta {
		width: 100%;
		display: block;
	}

	body #tribe-events-content-wrapper .tribe-event-schedule-details,
	body #tribe-events-content-wrapper .tribe-events-venue-details {
		width: 48%;
		display: inline-block;
	}
}

@media (max-width: 800px) {
	body #tribe-events-content-wrapper .tribe-event-schedule-details,
	body #tribe-events-content-wrapper .tribe-events-venue-details {
		width: 100%;
		display: block;
	}
}

@media (max-width: 600px) {
	.type-tribe_events .single-event-image {
		float: none;
		width: 50vw;
		height: 50vw;
	}

	#tribe-events-header {
		position: relative;
	}
	ul.tribe-events-sub-nav li {
		margin: 0 10px !important;
	}
	ul.tribe-events-sub-nav li:first-child {
		position: relative;
		left: auto;
	}
	ul.tribe-events-sub-nav li:last-child {
		position: relative;
		right: auto;
	}
}

@media (max-width: 500px) {
	#tribe-events-content-wrapper .tribe-events-list .tribe-events-loop .tribe-events-content {
		display: none;
	}
}



/*********************************************************
*
*	instagram carousel
*
*********************************************************/

body #sb_instagram .sbi_follow_btn .fa,
body #sb_instagram .sbi_follow_btn svg {
	position: relative;
	top: 3px;
	font-size: 25px;
}

body #sb_instagram .sbi_follow_btn a {
  padding: 10px 17px 15px 17px;
}

body .sbi_owl-theme .sbi_owl-controls .sbi_owl-buttons div {
	padding: 10px;
}

body .sbi_owl-theme .sbi_owl-controls .sbi_owl-buttons .sbi_owl-next {
	right: 10px;
}
body .sbi_owl-theme .sbi_owl-controls .sbi_owl-buttons .sbi_owl-prev {
	left: 10px;
}

/*********************************************************
*
*	events detail page
*
*********************************************************/

#tribe-events-pg-template hr {
	display: none;
}

#tribe-events-pg-template .columns-inner > div {
	position: relative;
}

#tribe-events-pg-template .tribe-events-schedule {
	margin-top: 20px;
	margin-bottom: 10px;
}

.event-is-recurring {
	display: none;
}

#tribe-events-pg-template .tribe-events-cost {
	margin-left: 10px;
}

/*********************************************************
*
*	header menu
*
*********************************************************/

@media (max-width: 1000px) {
	header ul#menu-header-menu > li.active > a {
		border-top: none;
	}
}

/*********************************************************
*
*	poppers
*
*********************************************************/

.popper h1 {
	position: relative;
}

.popper h1::after {
	top: 16px;
}

.popper.open h1::after {
	top: 16px;
}

.module.center.popper h1 {
	width: calc(100% - 80px);
}

/*********************************************************
*
*	simple module
*
*********************************************************/

.module.simple .inner h2 {
	font-size: 34px;
	margin-top: 0;
}

/*********************************************************
*
*	button-grid module
*
*********************************************************/

.module.button-grid h2 {
	font-size: 34px;
}

/*********************************************************
*
*	to make accessibility checker happy
*
*********************************************************/

.footer-1 {
	color: #fff;
}
.footer-2 {
	color: #55565a;
}

/*********************************************************
*
*	get rid of dots under state in tribe events
*
*********************************************************/

abbr[title] {
	text-decoration: none;
}

/*********************************************************
*
*	get rid of dots under state in tribe events
*
*********************************************************/

.wsp-pages-list,
.wsp-posts-list {
	margin-top: 20px;
	margin-bottom: 20px;
}

.wsp-pages-list li,
.wsp-posts-list li {
	margin-bottom: 6px;
}

.wsp-pages-title {
	display: none;
}

/*********************************************************
*
*	fix events filter bar problem
*
*********************************************************/

input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
	box-sizing: border-box;
}

/*********************************************************
*
*	faq module
*
*********************************************************/

.question {
	font-weight: bold;
}

/*********************************************************
*
*	faq module
*
*********************************************************/

.header-video video {
	width: 100vw;
	height: 56.25vw;
}

/*********************************************************
*
*	tabs page
*
*********************************************************/

.module.tabs-top .inner {
	width: 900px;
	padding: 32px 0;
}

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

.example-tabs-tabs__item {
	display: inline-block;
}

[aria-hidden="true"].tabs__content {
	display: none;
}

.module-tabs .inner {
	width: 900px;
	text-align: left;
	padding-top: 0;
}

.js-tablist {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	list-style: none;
	margin: 0 0 30px 0;
	padding: 0;
}

.js-tablist .js-tablist__item {
	display: block;
	background-color: #f6f6f6;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	margin-left: 4px;
	position: relative;
	transition: all .2s ease-in-out;
}
.js-tablist .js-tablist__item:first-child {
	margin-left: 0;
}
.js-tablist .js-tablist__item.active {
	background-color: #131476;
}
.js-tablist .js-tablist__item:not(.active):hover {
	background-color: rgba(0,0,0,.06);
}

.js-tablist .js-tablist__item a {
	display: block;
	text-decoration: none;
	cursor: pointer;
	color: #55565a;
	padding: 12px 16px 16px 16px;
	border-top: solid 4px transparent;
}
.js-tablist .js-tablist__item.active a {
	color: #fff;
	cursor: default;
	border-top-color: #f76126;
}
.js-tablist .js-tablist__item h3 {
    display: inline-block;
    text-transform: uppercase;
    margin: .875rem 0 .125rem;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 1.8px;
    color: #001d77;
    border-bottom: 2px solid #001d77;
    transition: all .2s ease-in-out;
    line-height: 1.375rem;
}
.js-tablist .js-tablist__item.active h3 {
	color: #fff;
	cursor: default;
	transition: none;
}
.js-tablist .js-tablist__item:not(.active):hover h3 {
	color: #001d77;
	border-bottom-color: #f76126;
}

.js-tablist .js-tablist__item .icons {
	line-height: 0;
}
.js-tablist .js-tablist__item .icons img {
	width: 47px;
	height: 47px;
	margin: 0 6px;
	display: inline-block;
}
.js-tablist .js-tablist__item .icons img.active {
	display: none;
}
.js-tablist .js-tablist__item.active .icons img {
	display: none;
}
.js-tablist .js-tablist__item.active .icons img.active {
	display: inline-block;
}

.js-tablist .js-tablist__item.active:after {
	content: "";
	position: absolute;
	left: calc(50% - 12px);
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	width: 0;
	height: 0;
	border-top: 12px solid #001d77;
	bottom: -10px;
}




.tab-choice {
	display: flex;
	background-color: #f6f6f6;
	flex-direction: row;
	flex-wrap: nowrap;
	width: 100%;
	border-right: solid 4px #242e6a;
	margin: 0 0 16px 0;
}

.tab-choice > img {
	width: 200px;
	height: 150px !important;
}

.tab-choice .tab-choice-content {
	padding: 18px 20px;
	flex: 1;
}

.tab-choice h4 {
	margin: 0 0 2px 0;
	font-size: 22px;
	font-weight: 400;
}

.tab-choice p {
	margin: 0 0 6px 0;
	font-size: 14px;
}

.tab-choice p.subdescription {
	font-style: italic;
	margin: 0 0 0 0;
	font-size: 12px;
}

.tab-choice-button {
	margin-right: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tab-choice-button a {
	margin-top: 0;
}

@media (max-width: 760px) {
	.js-tablist .js-tablist__item {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.js-tablist .js-tablist__item .icons {
		display: none;
	}

	.js-tablist .js-tablist__item h3 {
		margin-top: 0;
		font-size: 12px;
	}

	.tab-choice {
		display: block;
	}

	.tab-choice > img {
		display: none;
	}

	.tab-choice-button {
		justify-content: flex-start;
	}

	.tab-choice-button a {
		justify-content: none;
		margin: 0 20px 20px 20px;
	}

}

/*********************************************************
*
*	pnmg - photo cta
*
*********************************************************/
.photo-cta {
	align-items: center;
	background-color: #00A1DF;
	border-bottom: 1px solid white;
	border-top: 1px solid white;
	display: flex;
    flex-direction: column;
	justify-content: center;
	padding: 1rem;
	position: relative;
	z-index: 1;
}
.photo-cta__col:first-child {
	display: flex;
	position: relative;
    top: -3.5rem;
    margin-bottom: -2.5rem;
}
.photo-cta__col {
	color: white;
	text-align: center;
}
.photo-cta h2 {
	font-size: 24px;
	font-weight: 600;
}
.photo-cta p {
	font-size: 14px;
	font-weight: 600;
}
.photo-cta .button {
	background: white;
	border: 1px solid #FC761D;
	color: #FC761D;
	font-size: 16px;
	transition-duration: 300ms;
	margin-top: 0;
}
.photo-cta .button:hover {
	background: #FC761D;
	border: 1px solid white;
	color: white;
}
.photo-cta__left .photo-cta__img {
    margin-right: -7px;
    position: relative;
	transform: rotate(-18deg);
	z-index: -1;
}
.photo-cta__img {
	border-width: 4px 4px 20px 4px;
    border-color: white;
    border-style: solid;
	box-shadow: 0 1px 10px #707070;
	width: 85px;
	height: 85px;
}

@media (min-width: 1001px) {
	.photo-cta {
		flex-direction: row;
	}
	.photo-cta__col:nth-child(2) {
		max-width: 560px;
		padding: 0 6.25rem;
	}
	.photo-cta__col:first-child {
    	top: -4rem;
    	margin-bottom: -4rem;
	}
}



