html {
	scroll-behavior: smooth;
}

body {
	--theme-font-heading: var(--wp--preset--font-family--secondary);
	--theme-font-body: var(--wp--preset--font-family--primary);
	--theme-font-accent: var(--wp--preset--font-family--tertiary);
	
	--theme-color-hover: var(--wp--preset--color--secondary);
	--theme-color-active: var(--wp--preset--color--tertiary);
	
	--theme-color-heading: var(--wp--preset--color--dark);
	--theme-color-body: var(--wp--preset--color--mid);
	--theme-color-link: var(--wp--preset--color--primary);
	--theme-color-border: var(--wp--preset--color--trans-black);
	
	--swiper-theme-color: var(--theme-color-link);
	--swiper-pagination-color: var(--theme-color-heading);
	--swiper-navigation-size: 60px;
	
	--scroll-bar-half-width: 0px;
	
	font-family: var(--theme-font-body);
	font-size: 19px;
	color: var(--theme-color-body);
	letter-spacing: normal;
	line-height: 1.7;
	background-color: var(--wp--preset--color--white);
	width: 100%;
	overflow-x: hidden;
}

/********************************************************************************
* General :: Links & Buttons
*********************************************************************************/

/* Links
----------------------------------------------- */

a, .nav-link {
	text-decoration: none;
	color: var(--theme-color-link);
	transition: all 0.2s ease-in;
}

a:hover, a:active, a:focus, .nav-link:hover, .nav-link:active, .nav-link:focus {
	color: var(--theme-color-hover);
	text-decoration: none;
}

/* Paragraph Only Links */
.main a:not([class]){
	background: linear-gradient(to right,var(--theme-color-link),var(--theme-color-link)),linear-gradient(to right,var(--theme-color-hover),var(--theme-color-hover));
	background-size: 100% 2px, 0 2px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
}
.main a:not([class]):hover, .main a:not([class]):active, .main a:not([class]):focus {
	color: var(--theme-color-link);
	background-size: 0 2px, 100% 2px;
}

.link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

/* Buttons
----------------------------------------------- */

.btn, .vfbp-form .btn-primary, .wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	font-family: var(--theme-font-accent);
	text-transform: uppercase;
	border-radius: 0;
	border: none;
	font-size: .85em;
	line-height: 1;
	letter-spacing: .1em;
	padding: 1.25em 2em;
	text-shadow: none;
	font-weight: 900;
	box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%), 0 2px 5px 0 rgb(0 0 0 / 26%);
	transition: all 0.3s ease-in-out;
}

.btn:hover, .btn:active, .btn:focus, .vfbp-form .btn-primary:hover, .vfbp-form .btn-primary:focus, .vfbp-form .btn-primary.focus, .vfbp-form .btn-primary:active, .vfbp-form .btn-primary.active, .vfbp-form .open  > .dropdown-toggle.btn-primary, .wp-block-button__link:hover, .wp-block-button__link:active, .wp-block-button__link:focus, .btn-outline:hover, .btn-outline:active, .btn-outline:focus, .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:active, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button__link.is-style-outline:hover, .wp-block-button__link.is-style-outline:active, .wp-block-button__link.is-style-outline:focus {
	color: var(--wp--preset--color--white);
	background-color: var(--theme-color-hover);
	border-color: var(--theme-color-hover);
}

.btn:active, .vfbp-form .btn-primary:active, .wp-block-button__link:active, .wp-block-button.is-style-outline .wp-block-button__link:active, .wp-block-button__link.is-style-outline:active {
	position: relative;
	top: 1px;
	box-shadow: none;
}

.btn-small, .btn-sm {
	font-size: .75em;
}

.btn-large, .btn-lg {
	font-size: 1.25em;
}

.btn-xlarge, .btn-xl {
	font-size: 1.75em;
	padding: 1.2rem 2.2rem;
}

/* Buttons :: Secondary
----------------------------------------------- */

.btn-secondary {
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--tertiary);
}

.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
	color: var(--wp--preset--color--white);
	background-color: var(--theme-color-hover);
}

/* Buttons :: Outline
----------------------------------------------- */

.btn-outline, .wp-block-button.is-style-outline .wp-block-button__link, .wp-block-button__link.is-style-outline {
	box-shadow: none;
	border: 3px solid var(--theme-color-link);
	color: var(--theme-color-body);
	padding: calc(1.25em - 3px) calc(2em - 3px);
}

.btn-outline:not(:hover):not(:focus):not(:active), .wp-block-button.is-style-outline .wp-block-button__link:not(:hover):not(:focus):not(:active), .wp-block-button__link.is-style-outline:not(:hover):not(:focus):not(:active) {
	background: none;
}

/* Buttons :: Text
----------------------------------------------- */

.btn-text, .wp-block-button.is-style-text .wp-block-button__link, .wp-block-button__link.is-style-text {
	background: none;
	box-shadow: none;
	color: var(--theme-color-link);
	padding: 0;
	position: relative;
	z-index: 1;
}

.btn-text:hover, .btn-text:active, .btn-text:focus, .wp-block-button.is-style-text .wp-block-button__link:hover, .wp-block-button.is-style-text .wp-block-button__link:active, .wp-block-button.is-style-text .wp-block-button__link:focus, .wp-block-button__link.is-style-text:hover, .wp-block-button__link.is-style-text:active, .wp-block-button__link.is-style-text:focus {
	color: var(--theme-color-hover);
	background-color: transparent;
}

/* Buttons :: Underline
----------------------------------------------- */

.btn-underline, .wp-block-button.is-style-underline .wp-block-button__link, .wp-block-button__link.is-style-underline {
	background: none;
	box-shadow: none;
	color: var(--theme-color-heading);
	padding: 0 0 .25em 0;
	position: relative;
	z-index: 1;
	border-bottom: 2px solid var(--theme-color-link);
}

.btn-underline:hover, .btn-underline:active, .btn-underline:focus, .wp-block-button.is-style-underline .wp-block-button__link:hover, .wp-block-button.is-style-underline .wp-block-button__link:active, .wp-block-button.is-style-underline .wp-block-button__link:focus, .wp-block-button__link.is-style-underline:hover, .wp-block-button__link.is-style-underline:active, .wp-block-button__link.is-style-underline:focus {
	color: var(--theme-color-hover);
	background-color: transparent;
	border-bottom-color: var(--theme-color-hover);
}

.btn-readmore {
	font-weight: 700;
}

/********************************************************************************
* General :: Headings
*********************************************************************************/

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--theme-color-heading);
	font-family: var(--theme-font-heading);
	letter-spacing: normal;
	font-weight: normal;
	margin-bottom: 1rem;
}

h1, .h1 {
	font-size: 3em;
}

h2, .h2 {
	font-size: 2.5em;
}

h3, .h3 {
	font-size: 2em;
}

h4, .h4 {
	font-size: 1.5em;
}

h5, .h5 {
	font-size: 1.25em;
}

h6, .h6 {
	font-size: 1em;
}

.subtitle, .is-style-subtitle {
	font-family: var(--theme-font-accent);
	color: var(--theme-color-heading);
	text-transform: none;
	font-weight: normal;
	font-size: 1.2em;
	line-height: 1;
}

/********************************************************************************
* General :: Elements
*********************************************************************************/

p {
	margin-bottom: var(--wp--preset--spacing--20);
}

/* Elements :: Horizontal Rules
----------------------------------------------- */

hr, .wp-block-separator.has-background:not(.is-style-dots):not(.is-style-styled):not(.is-style-tribal) {
	color: var(--theme-color-border);
	border: none;
	border-bottom: 2px solid currentcolor;
	margin-top: var(--wp--preset--spacing--20);
	margin-bottom: var(--wp--preset--spacing--20);
	opacity: 1 !important;
	height: auto;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.is-style-styled):not(.is-style-tribal) {
	width: 75px !important;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.is-style-styled):not(.is-style-tribal):not(.aligncenter) {
	margin-left: 0;
}

/* HR :: Dots */

.wp-block-separator.is-style-dots::before {
	font-size: 24px;
	letter-spacing: 1em;
	padding-left: 1em;
}

/* HR :: Styled */

hr.is-style-styled, hr.wp-block-separator.is-style-styled {
	overflow: visible;
	margin-top: var(--wp--preset--spacing--20);
	margin-bottom: var(--wp--preset--spacing--20);
	color: var(--wp--preset--color--dark);
	position: relative;
	width: 100% !important;
	background-color: var(--wp--preset--color--trans) !important;
	border-bottom: 2px solid var(--theme-color-border) !important;
}

hr.wp-block-separator.is-style-styled.has-background{
	border-bottom: 2px solid var(--theme-color-border) !important;
}

hr.is-style-styled.alignfull, hr.wp-block-separator.is-style-styled.alignfull {
	width: auto !important;
}

hr.is-style-styled:after {
	content: '';
	height: 5px;
	width: 75px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

hr.is-style-styled.aligncenter:after {
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

hr.is-style-styled.alignright:after {
	left: auto;
	right: 0;
}

/* HR :: Tribal */
hr.is-style-tribal, hr.wp-block-separator.is-style-tribal {
	position: relative;
	width: 100% !important;
	height: 22px;
	background-color: transparent !important;
	border-bottom: none !important;
	background-image: url('../img/divider.svg');
	background-repeat: repeat-x;
	background-size: auto 100%;
}

/* Elements :: Blockquotes
----------------------------------------------- */

.wp-block-quote {
	border-radius: 0;
	display: block;
	border-top: 2px solid var(--theme-color-border);
	border-bottom: 2px solid var(--theme-color-border);
	padding: 2em 0;
	margin: 4em 0;
	position: relative;
	line-height: 1.2;
	letter-spacing: normal;
	border-left: none;
	text-align: center;
}

.wp-block-quote:before {
	content: "\201C";
	font-family: "Times New Roman", serif;
	font-size: 6em;
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	position: absolute;
	left: 50%;
	top: -.5em;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.wp-block-quote > :last-child {
	margin-bottom: 0;
}

.blockquote-footer, .wp-block-quote cite, .wp-block-quote footer, .wp-block-pullquote__citation, .wp-block-pullquote cite, .wp-block-pullquote footer, .wp-block-quote.is-large:not(.is-style-plain) cite, .wp-block-quote.is-large:not(.is-style-plain) footer, .wp-block-quote.is-style-large:not(.is-style-plain) cite, .wp-block-quote.is-style-large:not(.is-style-plain) footer {
	text-decoration: none;
	text-align: center;
	font-family: var(--theme-font-accent);
	color: var(--theme-color-heading);
	text-transform: none;
	font-weight: normal;
	font-size: .9em;
	line-height: 1;
}

.wp-block-quote p {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: .75em;
}

.wp-block-quote.is-large:not(.is-style-plain), .wp-block-quote.is-style-large:not(.is-style-plain) {
	margin-bottom: 4em;
	padding: 2em;
}

.wp-block-quote.is-large:not(.is-style-plain) p, .wp-block-quote.is-style-large:not(.is-style-plain) p {
	font-size: 2em;
	font-style: normal;
}

.wp-block-pullquote {
	border-top: none;
	border-bottom: none;
	padding: 0;
	color: var(--wp--preset--color--dark);
	margin: 0 0 1.5em;
}

.wp-block-pullquote blockquote {
	color: inherit;
	border-top: 3px solid var(--wp--preset--color--primary);
	border-bottom: 3px solid var(--wp--preset--color--primary);
	padding: 2rem;
}

.wp-block-pullquote blockquote:before {
	display: none;
}

.wp-block-pullquote blockquote p {
	font-weight: normal;
	font-size: 3em;
	line-height: 1;
}

.wp-block-pullquote__citation, .wp-block-pullquote cite, .wp-block-pullquote footer {
	font-size: 1.25em;
}

/* Elements :: Tables
----------------------------------------------- */

.table-bordered {
	border-color: var(--theme-color-border);
}

.table-bordered td, .table-bordered th {
	border-color: var(--theme-color-border);
}

/* Elements :: Images
----------------------------------------------- */

.alignfull {
	margin-right: calc( calc(-100vw / 2 + 100% / 2) + var(--scroll-bar-half-width) ) !important;
	margin-left: calc( calc(-100vw / 2 + 100% / 2) + var(--scroll-bar-half-width) ) !important;
	width: auto;
	max-width: 100vw;
	padding-left: 0;
	padding-right: 0;
}

img.alignleft, img.alignright, img.aligncenter, img.alignnone {
	max-width: 100%;
	height: auto;
	display: block;
}

.img-thumbnail, .is-style-styled-img figure {
	border: none;
	padding: 0;
	box-shadow: 0 6px 20px 0 rgb(0 0 0 / 19%), 0 8px 17px 0 rgb(0 0 0 / 20%);
}

.thumbnail > img {
	max-width: 100%;
	height: auto;
	display: block;
}

.thumbnail > .caption {
	padding: .75em 1em;
	font-size: .75em;
	font-style: italic;
	background-color: var(--theme-color-border);
}

/********************************************************************************
* General :: Lists
*********************************************************************************/

/* Lists :: Unordered
----------------------------------------------- */

ul.styled-list, ul.is-style-styled-list, ul.is-style-styled-list-two-column, ul.is-style-styled-list-three-column,
ul.checked-list, ul.is-style-checked-list, ul.is-style-checked-list-two-column{
	list-style: none;
	margin: 0 0 var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
	padding: 0;
	text-align: left;
}

ul.styled-list li, ul.is-style-styled-list li, ul.is-style-styled-list-two-column li, ul.is-style-styled-list-three-column li,
ul.checked-list li, ul.is-style-checked-list li, ul.is-style-checked-list-two-column li{
	display: block;
	list-style: none outside none;
	padding: 0 0 1em 2.5rem;
	position: relative;
	line-height: normal;
}

ul.styled-list li:before, ul.is-style-styled-list li:before, ul.is-style-styled-list-two-column li:before, ul.is-style-styled-list-three-column li:before,
ul.checked-list li:before, ul.is-style-checked-list li:before, ul.is-style-checked-list-two-column li:before{
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	content: "\f138";
	color: var(--wp--preset--color--primary);
	display: block;
	font-size: 1.25em;
	position: absolute;
	left: 0;
}

ul.styled-list li ul, ul.is-style-styled-list li ul, ul.is-style-styled-list-two-column li ul, ul.is-style-styled-list-three-column li ul,
ul.checked-list li ul, ul.is-style-checked-list li ul, ul.is-style-checked-list-two-column li ul{
	padding-left: 0;
}

ul.styled-list li ul li, ul.is-style-styled-list li ul li, ul.is-style-styled-list-two-column li ul li, ul.is-style-styled-list-three-column li ul li,
ul.checked-list li ul li, ul.is-style-checked-list li ul li, ul.is-style-checked-list-two-column li ul li{
	padding-bottom: 0;
	padding-top: .5em;
	padding-left: 1.5em;
	font-size: .8em;
}

ul.styled-list li ul li:before, ul.is-style-styled-list li ul li:before, ul.is-style-styled-list-two-column li ul li:before, ul.is-style-styled-list-three-column li ul li:before,
ul.checked-list li ul li:before, ul.is-style-checked-list li ul li:before, ul.is-style-checked-list-two-column li ul li:before{
	content: "\f054";
	font-size: 1em;
	left: 0;
	top: .65em;
}

/* Lists :: Unordered :: Checked  */
ul.checked-list li:before, ul.is-style-checked-list li:before, ul.is-style-checked-list-two-column li:before{
	content: "\f058";
}

/* Lists :: Ordered
----------------------------------------------- */

ol.styled-list, ol.is-style-styled-list {
	list-style-type: none;
	margin: 0 0 var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
	padding: 0;
	counter-reset: li-counter;
}

ol.styled-list > li, ol.is-style-styled-list > li {
	position: relative;
	padding: 0 0 1em 2.5rem;
}

ol.styled-list > li:last-child, ol.is-style-styled-list > li:last-child {
	padding-bottom: 0;
}

ol.styled-list > li:before, ol.is-style-styled-list > li:before {
	position: absolute;
	top: .125em;
	left: 0;
	font-size: 1.25em;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	color: var(--wp--preset--color--primary);
	content: counter(li-counter);
	counter-increment: li-counter;
}

/* Lists :: Multi-Column
----------------------------------------------- */

.two-column-list, ul.is-style-styled-list-two-column, ul.is-style-checked-list-two-column {
	-webkit-column-count: 2;
	-webkit-column-gap: var(--wp--preset--spacing--20);
	-moz-column-count: 2;
	-moz-column-gap: var(--wp--preset--spacing--20);
	-ms-column-count: 2;
	-ms-column-gap: var(--wp--preset--spacing--20);
	column-count: 2;
	column-gap: var(--wp--preset--spacing--20);
}

.three-column-list, ul.is-style-styled-list-three-column {
	-webkit-column-count: 3;
	-webkit-column-gap: var(--wp--preset--spacing--20);
	-moz-column-count: 3;
	-moz-column-gap: var(--wp--preset--spacing--20);
	-ms-column-count: 3;
	-ms-column-gap: var(--wp--preset--spacing--20);
	column-count: 3;
	column-gap: var(--wp--preset--spacing--20);
}

.two-column-list li, .three-column-list li, .two-column-list.styled-list li, ul.is-style-styled-list-two-column li, .three-column-list.styled-list li, .two-column-list.checked-list li, ul.is-style-checked-list-two-column li, .three-column-list.checked-list li, ul.is-style-styled-list-three-column li{
	display: inline-block;
	width: 100%;
}

.two-column-list.styled-list li, ul.is-style-styled-list-two-column li, .three-column-list.styled-list li, .two-column-list.checked-list li, ul.is-style-checked-list-two-column li, .three-column-list.checked-list li, ul.is-style-styled-list-three-column li{
	border: none;
}

/********************************************************************************
* General :: Forms
*********************************************************************************/

.form-control,
.main .forminator-ui.forminator-design--default .forminator-input, .main .forminator-ui.forminator-design--default .forminator-input:hover, .main .forminator-ui.forminator-design--default .forminator-input:focus, .main .forminator-ui.forminator-design--default .forminator-input:active, .main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-textarea{
	padding: .75rem 1rem !important;
	background: var(--wp--preset--color--white) !important;
	border-radius: 0 !important;
	border: 2px solid var(--theme-color-border) !important;
	color: var(--theme-color-body) !important;
	box-shadow: none !important;
	transition: all 0.35s ease 0s !important;
}

.form-control:focus,
.main .forminator-ui.forminator-design--default .forminator-input:focus, .main .forminator-ui.forminator-design--default .forminator-input:active, .main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-textarea:focus, .main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-textarea:active{
	box-shadow: none !important;
	border-color: var(--theme-color-hover) !important;
	color: var(--theme-color-body) !important;
}

.input-group-text {
	border-radius: 0;
	border-color: var(--theme-color-border);
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
}

select.form-control:not([size]):not([multiple]) {
	height: auto;
	padding: .9rem 1rem;
}

.form-check-input:checked {
	background-color: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
}
.form-check-input:focus {
	border-color: var(--theme-color-border);
	outline: 0;
	box-shadow: 0 0 0 .25rem var(--theme-color-active);
}

/* Forms :: Forminator Forms Only
----------------------------------------------- */
.main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-radio:not(.forminator-radio-inline), .main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-checkbox:not(.forminator-checkbox-inline) {
	margin: 10px 0 !important;
}
.main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-radio:not(.forminator-radio-inline):first-of-type, .main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-checkbox:not(.forminator-checkbox-inline):first-of-type{
	margin-top: 0 !important;
}

.main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button{
	font-family: var(--theme-font-accent) !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	border: none !important;
	font-size: .9em !important;
	line-height: 1 !important;
	letter-spacing: .15em !important;
	padding: 1em 2em .9em 2em !important;
	text-shadow: none !important;
	font-weight: 600 !important;
	background-color: var(--theme-color-link) !important;
	box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%), 0 2px 5px 0 rgb(0 0 0 / 26%) !important;
	transition: all 0.3s ease-in-out !important;
}
.main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:hover{
	background-color: var(--theme-color-hover) !important;
}
.main .forminator-ui.forminator-custom-form[data-design="default"] .forminator-label, .form-label, .col-form-label{
	font-size: .9em !important;
	line-height: 1.2 !important;
	font-weight: normal !important;
	font-family: var(--theme-font-accent) !important;
	color: var(--theme-color-heading) !important;
	display: inline-block !important;
}

/********************************************************************************
* General :: Backgrounds/Colors
*********************************************************************************/

/* Backgrounds :: Masking
----------------------------------------------- */

.mask-fadeout-y {
	-webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.mask-fadeout-y-top {
	-webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 100%);
}

.mask-fadeout-y-btm {
	-webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.mask-fadeout-x {
	-webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
}

.mask-fadeout-x-left {
	-webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 100%);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 100%);
}

.mask-fadeout-x-right {
	-webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

/* Backgrounds :: Depths
----------------------------------------------- */

.depth-0 {
	box-shadow: none;
}

.depth-1 {
	box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%), 0 2px 5px 0 rgb(0 0 0 / 26%);
}

.depth-2 {
	box-shadow: 0 6px 20px 0 rgb(0 0 0 / 19%), 0 8px 17px 0 rgb(0 0 0 / 20%);
}

.depth-3 {
	box-shadow: 0 17px 50px 0 rgb(0 0 0 / 19%), 0 12px 15px 0 rgb(0 0 0 / 24%);
}

.depth-4 {
	box-shadow: 0 25px 55px 0 rgb(0 0 0 / 21%), 0 16px 28px 0 rgb(0 0 0 / 222%);
}

.depth-5 {
	box-shadow: 0 40px 70px 0 rgb(0 0 0 / 22%), 0 27px 24px 0 rgb(0 0 0 / 20%);
}

/* Backgrounds :: Borders
----------------------------------------------- */

.border-top, .border-bottom, .border-start, .border-end, .border {
	border-color: var(--theme-color-border) !important;
	border-width: 2px !important;
}

.border-none {
	border: none !important;
}

.border-tribal-top, .border-tribal-bottom{
	position: relative;
}
.border-tribal-top:after, .border-tribal-bottom:after{
	content: '';
	width: 100%;
	height: 33px;
	position: absolute;
	left: 0;
	background-image: url('../img/border-tribal.svg');
}
.border-tribal-top:after{
	top: 0;
}
.border-tribal-bottom:after{
	bottom: 0;
}

.edge-distress-top, .edge-distress-bottom{
	position: relative;
}
.edge-distress-top:before, .edge-distress-bottom:after{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 29px;
	background-size: auto 100%;
	background-repeat: repeat-x;
	z-index: 1;
}
.edge-distress-top:before{
	bottom: 100%;
	background-image: url('../img/edge-distress-top-white.svg');
}
.edge-distress-bottom:after{
	top: 100%;
	background-image: url('../img/edge-distress-bottom-white.svg');
}

/* Backgrounds :: Primary
----------------------------------------------- */
.has-primary-background-color, 
.has-blue-to-yellow-gradient-background{
	--theme-color-link: var(--wp--preset--color--white);
}
.has-primary-background-color ul.styled-list li::before, .has-primary-background-color ul.is-style-styled-list li::before, .has-primary-background-color ul.is-style-styled-list-two-column li::before,
.has-blue-to-yellow-gradient-background ul.styled-list li::before, .has-blue-to-yellow-gradient-background ul.is-style-styled-list li::before, .has-blue-to-yellow-gradient-background ul.is-style-styled-list-two-column li::before{
	color: var(--wp--preset--color--white);
}

.has-primary-background-color.edge-distress-top:before,
.has-blue-to-yellow-gradient-background.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-primary.svg');
}
.has-primary-background-color.edge-distress-bottom:after,
.has-blue-to-yellow-gradient-background.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-primary.svg');
}

/* Backgrounds :: Secondary
----------------------------------------------- */
.has-secondary-background-color{
	--theme-color-link: var(--wp--preset--color--white);
}
.has-secondary-background-color .btn:not(.btn-secondary):not(:hover):not(:active):not(:focus) {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--secondary);
	box-shadow: none;
}

.has-secondary-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-secondary.svg');
}
.has-secondary-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-secondary.svg');
}

/* Backgrounds :: Tertiary
----------------------------------------------- */
.has-tertiary-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-tertiary.svg');
}
.has-tertiary-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-tertiary.svg');
}

/* Backgrounds :: Success
----------------------------------------------- */

/* Backgrounds :: Warning
----------------------------------------------- */

/* Backgrounds :: Danger
----------------------------------------------- */

/* Backgrounds :: White
----------------------------------------------- */

/* Backgrounds :: Light
----------------------------------------------- */
.has-light-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-light.svg');
}
.has-light-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-light.svg');
}

/* Backgrounds :: Mid
----------------------------------------------- */
.has-mid-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-mid.svg');
}
.has-mid-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-mid.svg');
}

/* Backgrounds :: Dark
----------------------------------------------- */
.has-dark-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-dark.svg');
}
.has-dark-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-dark.svg');
}
.has-dark-background-color.has-tribal-bg, .has-dark-background-color.is-style-tribal-bg{
	background-image: url('../img/bg-tribal.png');
}

/* Backgrounds :: Black
----------------------------------------------- */
.has-black-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-black.svg');
}
.has-black-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-black.svg');
}
.has-black-background-color.has-tribal-bg, .has-black-background-color.is-style-tribal-bg{
	background-image: url('../img/bg-tribal.png');
}

/* Backgrounds :: Transparent
----------------------------------------------- */

/* Backgrounds :: Transparent White
----------------------------------------------- */
.has-trans-white-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-trans-white.svg');
}
.has-trans-white-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-trans-white.svg');
}

/* Backgrounds :: Transparent Black
----------------------------------------------- */
.has-trans-black-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-trans-black.svg');
}
.has-trans-black-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-trans-black.svg');
}

/* Backgrounds :: Transparent Primary
----------------------------------------------- */
.has-trans-primary-background-color.edge-distress-top:before{
	background-image: url('../img/edge-distress-top-trans-primary.svg');
}
.has-trans-primary-background-color.edge-distress-bottom:after{
	background-image: url('../img/edge-distress-bottom-trans-primary.svg');
}

/* Backgrounds :: Common :: Darks
-----------------------------------------------*/
.has-primary-background-color:not(hr), .has-blue-to-yellow-gradient-background:not(hr), .has-secondary-background-color:not(hr), .has-tertiary-background-color:not(hr), .has-success-background-color:not(hr), .has-warning-background-color:not(hr), .has-danger-background-color:not(hr), .has-mid-background-color:not(hr), .has-dark-background-color:not(hr), .has-black-background-color:not(hr){
	--theme-color-heading: var(--wp--preset--color--white);
	--theme-color-body: var(--wp--preset--color--light);
	--theme-color-border: var(--wp--preset--color--trans-white);
	--swiper-pagination-color: var(--theme-color-heading);
	
	color: var(--theme-color-body);
}

/* Backgrounds :: Overlays
----------------------------------------------- */

[class*="overlay-opacity-"]::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: inherit;
	z-index: 1;
	opacity: 0;
}

.overlay-opacity-0::before {
	opacity: 0;
}

.overlay-opacity-05::before {
	opacity: .05;
}

.overlay-opacity-10::before {
	opacity: .1;
}

.overlay-opacity-15::before {
	opacity: .15;
}

.overlay-opacity-20::before {
	opacity: .2;
}

.overlay-opacity-25::before {
	opacity: .25;
}

.overlay-opacity-30::before {
	opacity: .3;
}

.overlay-opacity-35::before {
	opacity: .35;
}

.overlay-opacity-40::before {
	opacity: .4;
}

.overlay-opacity-45::before {
	opacity: .45;
}

.overlay-opacity-50::before {
	opacity: .5;
}

.overlay-opacity-55::before {
	opacity: .55;
}

.overlay-opacity-60::before {
	opacity: .6;
}

.overlay-opacity-65::before {
	opacity: .65;
}

.overlay-opacity-70::before {
	opacity: .7;
}

.overlay-opacity-75::before {
	opacity: .75;
}

.overlay-opacity-80::before {
	opacity: .8;
}

.overlay-opacity-85::before {
	opacity: .85;
}

.overlay-opacity-90::before {
	opacity: .9;
}

.overlay-opacity-95::before {
	opacity: .95;
}

.overlay-border {
	position: relative;
}

.overlay-border:after {
	content: '';
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	border: 2px solid var(--theme-color-border);
	z-index: 2;
}

.overlay-border > * {
	z-index: 3;
}

/* Backgrounds :: Images
----------------------------------------------- */

.bg-img {
	background-image: url('../img/default-header_image.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
.has-tribal-bg, .is-style-tribal-bg {
	background-image: url('../img/bg-tribal-light.png');
	background-size: auto;
	background-repeat: repeat;
}

/********************************************************************************
* General :: Cards
*********************************************************************************/

/* Card :: Default
----------------------------------------------- */

.card {
	--theme-color-heading: var(--wp--preset--color--dark);
	--theme-color-body: var(--wp--preset--color--mid);
	--theme-color-border: var(--wp--preset--color--trans-black);
	--theme-color-link: var(--wp--preset--color--primary);
	
	border: 2px solid var(--theme-color-border);
	border-radius: 0;
	background-color: var(--wp--preset--color--white);
	color: var(--theme-color-body);
	padding: 0;
	font-size: clamp(.7em, 1vw, 1.1em);
	
	transition: all 0.3s ease-in;
}

.card-img, .card-img-top, .card-img-bottom {
	position: relative;
	background-color: var(--wp--preset--color--black);
	border-radius: 0;
	transition: all 0.3s ease-in;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-img a {
	transition: all 0.3s ease-in;
}
.card-img a:hover {
	opacity: .6;
}

.card-img-tag{
	position: absolute;
	bottom: 0;
	left: 0;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 1;
	font-weight: 900;
	font-size: .6em;
	padding: 1em var(--wp--preset--spacing--30);
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
}

.card-icon {
	width: 60px;
	height: 60px;
	position: relative;
	text-align: center;
	border-radius: 50%;
	transition: all 0.3s ease-in;
}
.card-icon > i{
	font-size: 1.25em;
	line-height: 60px;
}
.card-icon > img{
	padding: 8px;
	height: 100%;
	width: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.card-body {
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
}

.card-body > :last-child {
	margin-bottom: 0;
}

.card-footer {
	background-color: transparent;
	border-top: 2px solid var(--theme-color-border);
}

.card-meta {
	font-size: .8em;
	margin-left: 0;
}
.card-meta .list-inline-item:not(:last-child) {
	border-right: 2px solid var(--theme-color-border);
	margin-right: 1rem;
	padding-right: 1rem;
}

/* Hover */

.card:not(.no-hover):hover {
	border-color: var(--theme-color-hover);
}

.card:not(.no-hover):hover .card-img, .card:not(.no-hover):hover .card-img-top, .card:not(.no-hover):hover .card-img-bottom {
	background-color: var(--theme-color-hover);
}

/* Card :: Inverted
----------------------------------------------- */

.card-inverse {
	--theme-color-heading: var(--wp--preset--color--white);
	--theme-color-body: var(--wp--preset--color--light);
	--theme-color-border: var(--wp--preset--color--trans-white);
	
	background-color: var(--wp--preset--color--dark);
}

/* Card :: Block
----------------------------------------------- */

.wp-block-column .card-block {
	height: 100%;
}

/* Card :: Capsule
----------------------------------------------- */

.card-capsule{
	position: relative;
	border: none;
	overflow: hidden;
	max-width: 100%;
	max-height: 60vh;
	font-size: 1.05em;
}

.card-capsule:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	
	width: 60%;
	height: 100%;
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 8%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 8%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 8%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=1 );

	transition: all 0.3s ease-in;
}
.card-capsule:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 0 0 100px;
	border-color: transparent;
	border-left-color: var(--wp--preset--color--primary);
	opacity: .8;

	transition: all .5s ease-in;
}
.card-capsule-secondary:after{
	border-left-color: var(--wp--preset--color--secondary);
}
.card-capsule-tertiary:after{
	border-left-color: var(--wp--preset--color--tertiary);
}

.card-capsule .card-img{
	width: 100%;
	height: 100%;
	opacity: 1;

	transition: all 0.3s ease-in;
}
.card-capsule .card-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.card-capsule .card-icon {
	transition: all 0.3s ease-in;
}

.card-capsule .card-body {
    position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
}
.card-capsule .card-body .card-title{
	font-size: 2.25em;
	writing-mode: vertical-lr;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	
	transition: all 0.3s ease-in;
}
.card-capsule .card-body .card-content{
	opacity: 0;
	margin-top: 30px;
	transition: all 0.3s ease-in 0s;
}

/* Hover */
.card-capsule:hover:after{
	border-width: 1500px 0 0 1500px;
	opacity: .9;
}
.card-capsule:hover .card-img{
	opacity: 1;
}
.card-capsule:hover .card-icon{
	width: 45px;
	height: 45px;
	background-color: var(--wp--preset--color--white) !important;
}
.card-capsule:hover .card-body .card-title{
	font-size: 1.5em;
}
.card-capsule:hover .card-body .card-content{
	margin-top: 0;
	opacity: 1;
	
	transition: all 0.3s ease-in .5s;
}

/* Card :: News & Staff
----------------------------------------------- */
.card-post, .card-staff {
	max-width: none;
}

/* Card :: Event
----------------------------------------------- */
.card-event{
	border: none;
	position: relative;
	overflow: hidden;
}
.card-event .card-body{
	position: absolute;
	bottom: 0;
	width: 100%;
}
.card-event .card-img{
	background-color: var(--theme-color-hover);
	position: relative;
	z-index: 0;
	
	transition: all .3s ease-in;
}
.card-event .card-img img{
	transition: all .3s ease-in;
}
.card-event .card-img:after{
	content: "";
	height: 35%;
	left: 0;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 1;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 85%, rgba(0,0,0,0.9) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.9) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.9) 85%,rgba(0,0,0,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=0 );
	
	transition: all .3s ease-in;
}
.card-event .card-img img{
	object-fit: cover;
}

.card-event .card-meta{
	line-height: 1;
}
.card-event .card-meta-item.truncate{
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}

/* Hover */
.card-event:hover .card-img img{
	opacity: .6;
}

/* Card :: Video
----------------------------------------------- */
.card-video{
	border: none;
	overflow: hidden;
	background-color: var(--wp--preset--color--secondary);
}
.card-video .card-img{
	mix-blend-mode: multiply;
	opacity: .7;
}
.card-video .card-img iframe{
	object-fit: cover;
}
.card-video:after{
	content: '';
	position: absolute;
	mix-blend-mode: multiply;
	width: 200%;
	height: 40%;
	background-color: var(--wp--preset--color--tertiary);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(25deg);
	-ms-transform: translate(-50%, -50%) rotate(25deg);
	transform: translate(-50%, -50%) rotate(25deg);
}
.card-video .card-body{
	position: absolute;
	text-align: center;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* Hover */
.card-video:hover .card-img{
	opacity: .25;
}

/********************************************************************************
* General :: Swipers
*********************************************************************************/

.swiper-pagination-bullet{
	background: var(--swiper-pagination-color);
}

/* Swipers :: Buttons Styled
----------------------------------------------- */
.swiper.swiper-buttons-styled{
	position: relative;
}
.swiper.swiper-buttons-styled .swiper-button-prev, .swiper.swiper-buttons-styled .swiper-button-next{
	width: auto;
	height: auto;
	top: 50%;
	margin-top: calc((var(--swiper-navigation-size) / 2) * -1);
}
.swiper.swiper-buttons-styled .swiper-button-prev::after, .swiper.swiper-buttons-styled .swiper-button-next::after{
	display: none;
}
.swiper.swiper-buttons-styled .swiper-button-prev .btn, .swiper.swiper-buttons-styled .swiper-button-next .btn {
	font-size: 1.25em;
	width: var(--swiper-navigation-size);
	height: var(--swiper-navigation-size);
	border-radius: 50%;
	
	z-index: 1000;
	padding: 5px;
	line-height: calc(var(--swiper-navigation-size) - 10px);
}
.swiper.swiper-buttons-styled .swiper-button-prev .btn.btn-outline, .swiper.swiper-buttons-styled .swiper-button-next .btn.btn-outline{
	line-height: calc(var(--swiper-navigation-size) - 16px);
} 
.swiper.swiper-buttons-styled .swiper-button-prev:focus, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-next:focus, .swiper.swiper-buttons-styled .swiper-button-next:focus, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-prev:focus {
	outline: none;
}

/********************************************************************************
* Layout :: Header
*********************************************************************************/

header.header-wrapper {
	z-index: 1050;
}
header.header-wrapper:not(.is-stuck){
	background-color: transparent !important;
}
header.header-wrapper .masthead-logo{
	position: relative;
}
header.header-wrapper .masthead-logo .logo-emblem{
	width: 28%;
}
header.header-wrapper .masthead-logo .logo-wordmark{
	width: 67%;
	padding-left: 5%;
}

/* Header :: Navbar Top
----------------------------------------------- */

.section-header-top {
	font-size: .9em;
	line-height: 1;
}
.section-header-top a:not(:hover):not(:active):not(:focus){
	color: var(--wp--preset--color--white);
}

/* Header :: Contact
----------------------------------------------- */

.section-header-top .list-contact .list-inline-item:not(:last-child) {
	margin-right: var(--wp--preset--spacing--20);
}

/* Header :: Social
----------------------------------------------- */
.nav-social .nav-link {
	padding: 0 .5rem;
	font-size: 1.2em;
}

/* Header :: Desktop Search
----------------------------------------------- */
#header-search-desktop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
	z-index: 10000;
	transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    
    opacity: 0;
}

#header-search-desktop.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}

#header-search-desktop input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
	max-width: 1140px;
    color: var(--wp--preset--color--white);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#header-search-desktop .btn-search {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#header-search-desktop .close {
    opacity: 1;
	position: fixed;
	right: 1rem;
	top: 1rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	padding: 0;
	line-height: 44px;
    color: var(--wp--preset--color--white);
}

/********************************************************************************
* Layout :: Header :: Primary Navigation
*********************************************************************************/

/* Primary Navigation :: First Level
----------------------------------------------- */

.navbar-primary .navbar-nav > li {
	margin: 0 1.25em;
}

.navbar-primary .navbar-nav > li:first-child {
	margin-left: 0;
}

.navbar-primary .navbar-nav > li:last-child {
	margin-right: 0;
}

.navbar-primary .navbar-nav .nav-link {
	background-color: transparent;
	font-family: var(--theme-font-body);
	font-weight: 700;
	font-size: 1.05em;
	color: var(--wp--preset--color--white);
	letter-spacing: .05em;
	padding: .75rem 0;
}

.navbar-primary .navbar-nav .nav-link:focus, .navbar-primary .navbar-nav .nav-link:hover, .navbar-primary .navbar-nav .nav-link.show, .navbar-primary .navbar-nav .show > .nav-link {
	color: var(--theme-color-hover);
	background-color: transparent;
}

.navbar-primary .navbar-nav .active > .nav-link, .navbar-primary .navbar-nav .nav-link.active {
	color: var(--theme-color-active);
	background-color: transparent;
}

.navbar-primary .dropdown-toggle::after {
	display: inline-block;
	width: auto;
	height: auto;
	margin-left: .35em;
	vertical-align: -.15em;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: "\f107";
	border: none;
	font-size: 1em;
	color: var(--wp--preset--color--primary);
}
.navbar-primary .dropdown-toggle.show::after {
	content: "\f106";
}

/* Primary Navigation :: 2nd Level
----------------------------------------------- */

.navbar-primary .navbar-nav > li > .dropdown-menu {
	--bs-dropdown-min-width: 13rem;
	
	border-radius: 0;
	text-align: left;
	border: none;
	background-color: var(--wp--preset--color--dark);
	max-width: 250px;
}

.navbar-primary .navbar-nav > li > .dropdown-menu:after {
	bottom: 100%;
	left: 1.5em;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	poMontserrat-events: none;
	border-color: var(--wp--preset--color--trans);
	border-bottom-color: var(--wp--preset--color--dark);
	border-width: 7px;
	margin-left: -7px;
}

.navbar-primary .navbar-nav > li > .dropdown-menu > li > a {
	color: var(--wp--preset--color--white);
	font-size: .9em;
	line-height: normal;
	padding: .7em 1.5em;
	letter-spacing: .05em;
	white-space: normal;
}

.navbar-primary .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-primary .navbar-nav > li > .dropdown-menu > li > a:focus {
	background-color: transparent;
	color: var(--theme-color-hover);
}

.navbar-primary .navbar-nav > li > .dropdown-menu > .active > a, .navbar-primary .navbar-nav > li > .dropdown-menu > .active > a:hover, .navbar-primary .navbar-nav > li > .dropdown-menu > .active > a:focus {
	color: var(--theme-color-active);
	background-color: transparent;
}

/* Primary Navigation :: Mobile
----------------------------------------------- */
.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
	--bs-offcanvas-zindex: 9999;
	--bs-offcanvas-padding-x: 2rem;
	--bs-offcanvas-padding-y: 2rem;
}
#navbar-primary-offcanvas{
	max-width: 88vw;
}
#navbar-primary-offcanvas .offcanvas-header{
	font-size: .8em;
}
#navbar-primary-offcanvas .offcanvas-header .nav-link{
	padding: 0 .4rem;
}

#navbar-primary-offcanvas .navbar-primary .navbar-nav > li{
	margin: 0;
}
#navbar-primary-offcanvas .navbar-primary .navbar-nav .nav-link{
	font-size: 1.25em;
}

/* Mobile Toggle */
.toggle-wrapper {
	font-weight: 700;
	text-transform: uppercase;
	font-size: .8em;
	line-height: 1;
	letter-spacing: .1em;
}

.navbar-toggler {
	position: relative;
	background-color: transparent;
	border: 0 solid var(--wp--preset--color--primary);
	border-radius: 0;
	padding: .5rem 0 .5rem .75rem;
	z-index: 1;
	transition: all 0.2s ease-in;
}

.navbar-toggler:hover, .navbar-toggler:focus {
	background-color: transparent;
}

.navbar-toggler span {
	display: block;
	background-color: var(--wp--preset--color--primary);
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	position: relative;
	left: 0;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.navbar-toggler:hover span, .navbar-toggler:focus span {
	background-color: var(--theme-color-hover);
}

.navbar-toggler span:nth-child(1), .navbar-toggler span:nth-child(3) {
	transition: transform 0.35s ease-in-out;
}

#site-wrapper.toggled .navbar-toggler span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 12px;
	opacity: 0.9;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}

#site-wrapper.toggled .navbar-toggler span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}

#site-wrapper.toggled .navbar-toggler span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 12px;
	opacity: 0.9;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/********************************************************************************
* Layout :: Section :: Hero
*********************************************************************************/

/* Hero :: Common
----------------------------------------------- */

.section-hero {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.section-hero .section-hero-content-container {
	z-index: 3;
}

.section-hero .section-hero-content {
	font-size: 1.1em;
	width: 100%;
	text-shadow: 0 2px 10px rgb(0 0 0 / 16%), 0 2px 5px rgb(0 0 0 / 26%);
}

.section-hero-swiper .swiper-slide:after, .section-page-header:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 300px;
	
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 20%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 20%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=0 );
}

/* Hero :: Swiper
----------------------------------------------- */
.section-hero-swiper{
	height: 95vh;
}
.section-hero-swiper .swiper-slide img, .section-hero-swiper .swiper-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-hero-swiper .section-hero-content {
	max-width: 800px;
}

.section-hero-swiper .section-hero-content .btn-outline:not(:hover):not(:focus):not(:active) {
	background-color: rgb(0 0 0 / 30%);
}

.section-hero-swiper .section-hero-content .swiper-text :last-child {
	margin-bottom: 0;
}

.section-hero-swiper .swiper-pagination{
	width: 100%;
	bottom: var(--wp--preset--spacing--20);
}
.section-hero-swiper .swiper-pagination-bullet{
	opacity: 1;
	width: 22px;
	height: 22px;
	border: 2px solid transparent;
	position: relative;
	background: none;
}
.section-hero-swiper .swiper-pagination-bullet:after{
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--theme-color-heading);
}
.section-hero-swiper .swiper-pagination-bullet-active{
	border-color: var(--theme-color-heading);
}

/* Hero :: Page Header
----------------------------------------------- */

.section-page-header {
	text-align: center;
	height: 50vh;
	min-height: 650px;
}

.section-has-background-image.section-page-header{
	height: 60vh;
}

/* Hero :: Breadcrumbs
----------------------------------------------- */

.section-breadcrumbs {
	font-size: .5em;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.section-breadcrumbs span {
	padding: 0 .35em;
}

.section-breadcrumbs span:first-child {
	padding-left: 0;
}

.section-breadcrumbs span:last-child {
	padding-right: 0;
}

.section-breadcrumbs .current-item {
	flex: 1;
}
.section-breadcrumbs .current-item, .section-breadcrumbs .current-item > * {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/********************************************************************************
* Layout :: Sidebar
*********************************************************************************/

.sidebar {
	font-size: .9em;
	line-height: normal;
}

.sidebar .widget {
	margin-bottom: var(--wp--preset--spacing--20);
}

.sidebar > .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget h3 {
	margin-top: 0;
}

.sidebar .widget-content {
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
	background-color: var(--wp--preset--color--light);
}

/********************************************************************************
* Layout :: Sidebar :: Navigation
*********************************************************************************/

.sidebar ul.nav > li a {
	line-height: 1;
	padding: .5rem 1.25rem .5rem 0;
	display: block;
	position: relative;
	font-weight: 600;
	color: var(--theme-color-link);
}

.sidebar ul.nav > li.current_page_item > a, .sidebar ul.nav > li .sub-menu li.current_page_item > a, .sidebar ul.nav > li .children li.current_page_item > a {
	color: var(--theme-color-active) !important;
}

.sidebar ul.nav > li:first-child a {
	padding-top: 0;
}

.sidebar ul.nav > li:last-child a {
	padding-bottom: 0;
	border-bottom: none;
}

.sidebar ul.nav > li a:before {
	font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	content: "\f138";
	left: -1.25rem;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	transition: all 0.3s;
}

.sidebar ul.nav > li a:hover, .sidebar ul.nav > li a:focus {
	padding-left: 1.25rem;
	padding-right: 0;
	color: var(--theme-color-hover);
}

.sidebar ul.nav > li a:hover:before {
	left: 0;
	opacity: 1;
}

.sidebar ul.nav > li a .count {
	font-size: .75em;
	color: var(--wp--preset--color--mid);
}

.sidebar ul.nav > li .children {
	list-style: none;
	padding: 0 1rem .75rem 1rem;
}

.sidebar ul.nav > li .children a {
	border-left: 2px solid var(--theme-color-border);
	padding-left: 1.25rem;
	font-size: .75em;
}

/* Navigation :: 2nd Level
----------------------------------------------- */

.sidebar ul.nav.flex-column > li .sub-menu, .sidebar ul.nav.flex-column > li .children {
	list-style: none;
	padding: .25rem 0 .5rem 0;
}

.sidebar ul.nav.flex-column > li .sub-menu a, .sidebar ul.nav.flex-column > li .children a {
	border-left: 2px solid var(--wp--preset--color--primary);
	padding: .4rem 0 .4rem 1.25rem;
	font-size: .8em;
	font-weight: 600;
}

.sidebar ul.nav.flex-column > li .sub-menu a:before, .sidebar ul.nav.flex-column > li .children a:before {
	display: none;
}

.sidebar ul.nav.flex-column > li .sub-menu li:first-child a, .sidebar ul.nav.flex-column > li .children li:first-child a {
	padding-top: 0;
}

.sidebar ul.nav.flex-column > li .sub-menu li:last-child a, .sidebar ul.nav.flex-column > li .children li:last-child a {
	padding-bottom: 0;
}

/* Navigation :: 3rd Level
----------------------------------------------- */

.sidebar ul.nav.flex-column > li .sub-menu .sub-menu, .sidebar ul.nav.flex-column > li .children .children {
	padding: 0;
}

.sidebar ul.nav.flex-column > li .sub-menu .sub-menu a, .sidebar ul.nav.flex-column > li .children .children a {
	font-weight: 400;
	padding: .2rem 0 .2rem 2.25rem;
	opacity: .8;
}

/********************************************************************************
* Layout :: Sidebar :: Archives
*********************************************************************************/

.widget_archive ul {
	margin: 0;
	padding: 1.5rem 2rem;
	background-color: var(--wp--preset--color--light);
}

.widget_archive ul .year {
	display: block;
	padding: 1rem 0;
	border-bottom: 2px dotted var(--theme-color-border);
}

.widget_archive ul .year:first-child {
	padding-top: 0;
}

.widget_archive ul .year:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.widget_archive .year-hidden {
	display: none;
}

.widget_archive .year-toggle-wrapper {
	display: block;
	font-weight: 800;
	letter-spacing: .05em;
	font-size: 1em;
	color: var(--theme-color-heading);
}

.widget_archive .year-toggle {
	background-color: transparent;
	color: var(--theme-color-link);
	cursor: pointer;
	display: inline-block;
	margin-right: .5rem;
	text-align: center;
	font-size: 1em;
	font-weight: normal;
}

.widget_archive .year-toggle:hover, .widget_archive .year-toggle:focus {
	color: var(--theme-color-hover);
}

.widget_archive li {
	display: block;
	list-style: none;
	color: var(--wp--preset--color--mid);
	font-size: .9em;
}

.widget_archive li a {
	font-size: 1.25em;
	color: var(--theme-color-link);
	padding: .25rem 0 .25rem 1.5rem;
	white-space: normal;
	font-weight: 700;
	display: inline-block;
}

.widget_archive li a:hover, .widget_archive li a:focus {
	color: var(--theme-color-hover);
}

/********************************************************************************
* Layout :: Content
*********************************************************************************/

.wow {
	visibility: hidden;
}

.section-padding, .section-content-padded {
	padding-top: var(--wp--preset--spacing--50);
	padding-bottom: var(--wp--preset--spacing--50);
}

.section-content-padded.section-content-padded-extra {
	padding-top: var(--wp--preset--spacing--70);
	padding-bottom: var(--wp--preset--spacing--70);
}

.section-content-padded.section-content-padded-less {
	padding-top: var(--wp--preset--spacing--40);
	padding-bottom: var(--wp--preset--spacing--40);
}

.main > .alignfull:first-child {
	margin-top: calc(var(--wp--preset--spacing--50) * -1);
}
.main > .alignfull:last-child {
	margin-bottom: calc(var(--wp--preset--spacing--50) * -1);
}
/*.main > :last-child:not(.alignfull){
	margin-bottom: var(--wp--preset--spacing--50);
}*/
.section-content > :last-child, .main > :last-child {
	margin-bottom: 0;
}
.section-heading {
	margin-top: 0;
}

.layer-up-content{
	position: relative;
	z-index: 1;
}

/********************************************************************************
* Section :: Featured Image
*********************************************************************************/

/* Featured Image :: Parallax
----------------------------------------------- */

.section-featured-image-divider {
	background-color: var(--wp--preset--color--dark);
	height: 40vh;
	overflow: hidden;
	position: relative;
}

/* Featured Image :: Background
----------------------------------------------- */

.section-has-background-image {
	position: relative;
}

.section-background-image {
	background-color: inherit;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.section-background-image .simpleParallax {
	background-color: inherit;
	height: 100%;
}

.section-background-image img {
	width: 75%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	display: block;
}

.section-background-image.is-style-blend-multiply {
	mix-blend-mode: multiply;
	opacity: 1;
}

/********************************************************************************
* Layout :: Footer
*********************************************************************************/

footer.footer-wrapper {
	--theme-color-link: var(--wp--preset--color--white);
	
	padding-bottom: 2rem;
	font-size: .9em;
}

footer.footer-wrapper .nav-social{
	font-size: .5em;
}
footer.footer-wrapper .nav-social .nav-link{
	padding: 0;
}

footer.footer-wrapper .section-footer-contact{
	line-height: 1.2;
}

footer.footer-wrapper .nav-footer .nav-item{
	width: 50%;
}
footer.footer-wrapper .nav-footer .nav-link{
	padding-left: 0;
	font-weight: 700;
	line-height: 1.2;
}

.section-footer-bottom {
	font-size: .8em;
	letter-spacing: .075em;
	line-height: 1;
}
.section-footer-bottom .copyright > div {
	display: inline-block;
}
.section-footer-bottom .copyright > div:not(:last-child) {
	padding-right: .75rem;
	margin-right: .75rem;
	border-right: 2px solid var(--theme-color-body);
}

/********************************************************************************
* Template :: 404
*********************************************************************************/
.section-404{
	font-size: 10em;
	display: flex;
	justify-content: center;
	animation: glitch .8s linear infinite;
}
.section-404:before,
.section-404:after{
	content: '404';
	position: absolute;
	z-index: -1;
}
.section-404:before{
	color: var(--wp--preset--color--primary);
	animation: glitchTop 1s linear infinite;
	clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.section-404:after{
	color: var(--wp--preset--color--secondary);
	animation: glitchBotom 1.5s linear infinite;
	clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitch{
	2%,64%{
		transform: translate(2px,0) skew(0deg);
	}
	4%,60%{
		transform: translate(-2px,0) skew(0deg);
	}
	62%{
		transform: translate(0,0) skew(5deg); 
	}
}
@keyframes glitchTop{
	2%,64%{
		z-index: -1;
		transform: translate(2px,-2px);
	}
	4%,60%{
		z-index: -1;
		transform: translate(-2px,2px);
	}
	62%{
		z-index: 1;
		transform: translate(13px,-1px) skew(-13deg); 
	}
}
@keyframes glitchBotom{
	2%,64%{
		z-index: -1;
		transform: translate(-2px,0);
	}
	4%,60%{
		z-index: -1;
		transform: translate(-2px,0);
	}
	62%{
		z-index: 1;
		transform: translate(-22px,5px) skew(21deg); 
	}
}

/********************************************************************************
* General :: Scrolling
*********************************************************************************/

header.header-wrapper, header.header-wrapper .section-header-top, header.header-wrapper .masthead-logo, header.header-wrapper .masthead-logo img, header.header-wrapper .navbar-primary {
	transition: all 0.3s ease 0s;
}

header.header-wrapper.is-stuck .masthead-logo, header.header-wrapper.is-stuck .navbar-primary {
	padding-bottom: 1rem !important;
	padding-top: 1rem !important;
}

header.header-wrapper.is-stuck .masthead-logo img {
	max-height: 50px;
	width: auto;
}
header.header-wrapper.is-stuck .masthead-logo .logo-wordmark{
	opacity: 0;
	width: 0;
	position: absolute;
	right: 100%;
}

header.header-wrapper.is-stuck .section-header-top {
	height: 0;
	opacity: 0;
	margin: 0;
	padding: 0 !important;
	overflow: hidden;
}
/********************************************************************************
* Block :: General Default Wordpress Block Adjustments
*********************************************************************************/
.wp-block-image img {
	height: auto;
}

.wp-block-image .aligncenter img {
	margin: 0 auto;
}

.wp-block-image figure.aligncenter {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
}

.blocks-gallery-caption, .wp-block-image figcaption {
	color: var(--theme-color-body);
	opacity: .6;
	font-weight: 700;
	font-style: italic;
	letter-spacing: normal;
}

.wp-block-image .aligncenter > figcaption, .wp-block-image .alignleft > figcaption, .wp-block-image .alignright > figcaption {
	width: 100%;
}

.wp-block-cover, .wp-block-cover-image, .wp-block-media-text__media img, .wp-block-media-text__media video {
	height: auto;
}

.wp-block-cover, .wp-block-cover-image {
	padding: 1.5em;
}

.main > .alignfull:last-child {
	margin-bottom: calc(-1 * var(--wp--preset--spacing--50));
	/* Break out of the main .section-content-padded content area */
}

/* Extend responsive column stacking styling to 991px (Default is 600px) */
@media (max-width: 991px){
	main .wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-wrap: wrap !important;
	}
	main .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
	  flex-basis: 100% !important;
	}
}
@media (min-width: 992px){
	main .wp-block-columns:not(.is-not-stacked-on-mobile) {
		flex-wrap: nowrap !important;
	}
	main .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
	  flex-basis: 0;
	  flex-grow: 1;
	}
	main .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*="flex-basis"] {
		flex-grow: 0;
	}
}
/********************************************************************************
* Block :: Wordpress Gallery
*********************************************************************************/

.blocks-gallery-grid.is-cropped .blocks-gallery-image figure, .wp-block-gallery.is-cropped .blocks-gallery-item figure, .wp-block-gallery.has-nested-images figure.wp-block-image {
	background-color: var(--theme-color-hover);
	transition: all 0.3s ease-in;
}

.blocks-gallery-grid.is-cropped .blocks-gallery-image a, .blocks-gallery-grid.is-cropped .blocks-gallery-image img, .blocks-gallery-grid.is-cropped .blocks-gallery-item a, .blocks-gallery-grid.is-cropped .blocks-gallery-item img, .wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img, .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img, .wp-block-gallery.has-nested-images figure.wp-block-image img {
	transition: all 0.3s ease-in;
}

.blocks-gallery-grid.is-cropped .blocks-gallery-image:hover img, .blocks-gallery-grid.is-cropped .blocks-gallery-item:hover img, .wp-block-gallery.is-cropped .blocks-gallery-image:hover img, .wp-block-gallery.is-cropped .blocks-gallery-item:hover img, .wp-block-gallery.has-nested-images figure.wp-block-image:hover img {
	opacity: .25;
}

.blocks-gallery-grid.is-style-fixed-height .blocks-gallery-image figure, .wp-block-gallery.is-style-fixed-height .blocks-gallery-item figure, .wp-block-gallery.is-style-fixed-height figure.wp-block-image {
	height: 300px;
	overflow: hidden;
}

/********************************************************************************
* Block :: File
*********************************************************************************/

.wp-block-file .wp-block-file__button, .wp-block-file a.wp-block-file__button:visited {
	color: var(--wp--preset--color--secondary);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .05em;
	border: 3px solid var(--wp--preset--color--secondary);
	border-radius: 0;
	background-color: transparent;
	padding: .35em .75em;
	font-size: .7em;
}

.wp-block-file a.wp-block-file__button:active, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:hover {
	border-color: var(--theme-color-hover);
	background-color: var(--theme-color-hover);
	color: var(--wp--preset--color--white);
}

/********************************************************************************
* Block :: Advanced Images Slider
*********************************************************************************/

.advgb-images-slider .advgb-image-slider-item {
	background-color: var(--wp--preset--color--black);
}

.advgb-images-slider .advgb-image-slider-item img {
	object-fit: cover;
	-webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.advgb-images-slider .advgb-image-slider-item-info {
	padding: 1rem;
}

.advgb-images-slider .slick-prev {
	left: 0;
}

.advgb-images-slider .slick-next {
	right: 0;
}

.advgb-images-slider .slick-prev::before, .advgb-images-slider .slick-next::before {
	font-size: 3rem;
	opacity: 1;
	color: var(--wp--preset--color--primary);
	transition: all 0.2s ease-in;
}

.advgb-images-slider .slick-prev:hover::before, .advgb-images-slider .slick-next:hover::before {
	color: var(--theme-color-hover);
}

.advgb-images-slider .slick-dots li button::before {
	transition: all 0.2s ease-in;
}

.advgb-images-slider .slick-dots li button:hover::before, .advgb-images-slider .slick-dots li button:focus::before {
	color: var(--theme-color-hover);
}

.advgb-images-slider .slick-dots li.slick-active button::before {
	opacity: 1;
	color: var(--theme-color-active);
}

/********************************************************************************
* Block :: Advanced Tabs
*********************************************************************************/

.advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab, .advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab.ui-state-default {
	background: none !important;
	border-radius: 0 !important;
	border: 2px solid var(--wp--preset--color--secondary) !important;
	color: var(--wp--preset--color--secondary) !important;
	letter-spacing: .075em;
	font-weight: 700;
}

.advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab a {
	color: var(--theme-color-link) !important;
}

.advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab.ui-tabs-active, .advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab.advgb-tab-active {
	background-color: var(--theme-color-active) !important;
}

.advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab a:hover, .advgb-tabs-wrapper ul.advgb-tabs-panel li.advgb-tab a:focus {
	color: var(--wp--preset--color--white);
	background-color: var(--theme-color-hover) !important;
}

.advgb-tabs-wrapper .advgb-tab-body-wrapper {
	border-color: var(--theme-color-border);
	border-radius: 0;
}

.advgb-tabs-wrapper .advgb-tab-body-wrapper div.advgb-tab-body {
	padding: 1.5em;
}

/********************************************************************************
* Block :: Advanced Accordion
*********************************************************************************/

.wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header.ui-accordion-header.ui-state-default {
	padding: 1rem 1.5rem;
	transition: all 0.2s ease-in;
	background-color: transparent;
}

.wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h1.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h1, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h2.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h2, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h3.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h3, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h4.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h4, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h5.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h5, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h6.advgb-accordion-header-title, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header h6 {
	line-height: normal;
}

.advgb-accordion-header:hover, .advgb-accordion-header.ui-accordion-header.ui-state-default:hover, .advgb-accordion-header:focus, .advgb-accordion-header.ui-accordion-header.ui-state-default:focus {
	background-color: var(--theme-color-hover) !important;
	color: var(--wp--preset--color--white) !important;
}

.wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header-icon {
	margin-right: 0;
	line-height: 1;
}

.wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-body, .wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-body.ui-widget-content {
	padding: 2rem;
}

.advgb-accordion-body > :last-child, .advgb-accordion-wrapper .advgb-accordion-body.ui-widget-content > :last-child {
	margin-bottom: 0;
}

/********************************************************************************
* Block :: Events
*********************************************************************************/
.section-events-upcoming{
	z-index: 1;
	position: relative;
}

/********************************************************************************
* Block :: Posts
*********************************************************************************/
.section-posts-bottom{
	position: relative;
	z-index: 1;
	padding-top: 1px;
}
.section-posts-bottom .swiper-posts{
	position: relative;
	z-index: 1;
}

.swiper-posts .swiper-container{
	height: auto;
}
.swiper-posts .swiper-container .swiper-slide{
	height: auto;
}

.swiper-posts .swiper-button-prev, .swiper-posts .swiper-container-rtl .swiper-button-next {
	left: auto;
	right: 100%;
}
.swiper-posts .swiper-button-next, .swiper-posts .swiper-container-rtl .swiper-button-prev{
	left: 100%;
	right: auto;
}

/********************************************************************************
* Block :: Testimonials Slider
*********************************************************************************/
.block-testimonials-slider .swiper-slide .testimonial-block{
	max-width: 1000px;
	margin: 0 auto;
}

/********************************************************************************
* Block :: Staff List
*********************************************************************************/
.modal-staff{
	--bs-modal-border-radius: 0;
	--bs-modal-inner-border-radius: 0;
}
.modal-staff .modal-header .btn-close{
	background: none;
	font-size: 1.75em;
	padding: 0;
	margin: 0;
	line-height: 1;
	opacity: 1;
}
.modal-staff .modal-header .btn-close:hover{
	opacity: 1;
	color: var(--theme-color-hover) !important;
}

/********************************************************************************
* Block :: Product List
*********************************************************************************/
.swiper-product {
	width: 100%;
	height: 100%;
}

.swiper-product .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-product .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product Gallery
----------------------------------------------- */
.swiper-product-gallery {
	height: 80%;
	width: 100%;
}
.swiper-product-gallery .swiper-slide img{
	transition: all 0.3s ease-in-out;
}
.swiper-product-gallery .swiper-slide .zoom{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	
	transition: all 0.3s ease-in-out;
}
.swiper-product-gallery .swiper-slide:hover img{
	opacity: .4;
}
.swiper-product-gallery .swiper-slide:hover .zoom{
	opacity: 1;
}

/* Product Gallery Thumbs
----------------------------------------------- */
.swiper-product-gallery-thumbs {
	height: 20%;
	box-sizing: border-box;
}
.swiper-product-gallery-thumbs .swiper-slide {
	width: 20%;
	height: 100%;
	opacity: 0.4;
}
.swiper-product-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

/* Modal Popup
----------------------------------------------- */
.btn-quickshop{
	position: absolute !important;
	top: auto !important;
	bottom: -30px;
	left: .5em;
	right: .5em;
	z-index: 1001;
	opacity: 0;
}
.card-product:hover .btn-quickshop{
	opacity: 1;
	bottom: .5em;
}
.modal-product{
	--bs-modal-border-radius: 0;
	--bs-modal-inner-border-radius: 0;
}
.modal-product .modal-header .btn-close{
	background: none;
	font-size: 1.75em;
	padding: 0;
	margin: 0;
	line-height: 1;
	opacity: 1;
}
.modal-product .modal-header .btn-close:hover{
	opacity: 1;
	color: var(--theme-color-hover) !important;
}


/********************************************************************************
* Plugin :: Smashballoon Custom Facebook Feed
*********************************************************************************/
#cff.cff-masonry {
	margin-bottom: 0;
}
#cff .cff-item{
	font-size: .9em;
}
#cff .cff-shared-link{
	font-size: .8em;
}
#cff .cff-load-more{
	font-family: var(--theme-font-accent);
	text-transform: uppercase;
	border-radius: 0;
	border: none;
	font-size: .85em;
	line-height: 1;
	letter-spacing: .1em;
	padding: 1.25em 2em;
	text-shadow: none;
	font-weight: 900;
	transition: all 0.3s ease-in-out;
}

/********************************************************************************
* Plugin :: Tribe Events Calendar
*********************************************************************************/
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container, #tribe-events-pg-template, .tribe-events-pg-template{
	padding: 0;
}
#tribe-events-content{
	margin-bottom: 0;
	padding: 0;
}
#tribe-events-content a.btn:not(.btn-outline), #tribe-events-content a.wp-block-button__link:not(.is-style-outline){
	color: var(--theme-color-light);
}
#tribe-events-pg-template .tribe-common .tribe-common-h1, #tribe-events-pg-template .tribe-common .tribe-common-h2, #tribe-events-pg-template .tribe-common .tribe-common-h3, #tribe-events-pg-template .tribe-common .tribe-common-h4, #tribe-events-pg-template .tribe-common .tribe-common-h5, #tribe-events-pg-template .tribe-common .tribe-common-h6{
	font-family: var(--theme-font-heading);
}

/* View - Single */
.tribe-block__event-website a{
	background-color: var(--theme-color-link) !important;
}
.tribe-block__event-website a:hover{
	background-color: var(--theme-color-hover) !important;
}
.single-tribe_events .tribe-events-event-meta{
    background: var(--theme-color-light);
	border: none;
}
.events-list #tribe-events-footer, .single-tribe_events #tribe-events-footer, .tribe-events-day #tribe-events-footer, .tribe-events-map #tribe-events-footer, .tribe-events-photo #tribe-events-footer, .tribe-block__venue, .tribe-block__organizer__details{
	border-top: 1px solid var(--theme-color-border);
}

/********************************************************************************
* Plugin :: WP Page Navi
*********************************************************************************/
.wp-pagenavi{
	color: var(--theme-color-body);
}
.wp-pagenavi a, .wp-pagenavi span {
    border: 1px solid var(--theme-color-border);
	font-weight: 600;
	font-size: 14px;
	padding: 6px 8px;
}
.wp-pagenavi a.last, .wp-pagenavi a.first{
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 5px;
	line-height: 1;
	margin-bottom: 0;
	top: -1px;
	position: relative;
	letter-spacing: .1em;
}
.wp-pagenavi a:hover{
	border-color: var(--theme-color-hover);
}
.wp-pagenavi span.current {
    border-color: var(--theme-color-active);
	color: var(--theme-color-active);
	font-weight: 600;
}

/********************************************************************************
* Media Queries
*********************************************************************************/
@media (max-width: 1599px) {
	header.header-wrapper {
		font-size: .9em;
	}
	header.header-wrapper .masthead-logo{
		max-width: 300px;
	}
}
@media (max-width: 1399px){
	body{
		--wp--style--global--content-size: 1116px;
		
		font-size: 18px;
	}
}
@media (max-width: 1299px) {
	header.header-wrapper {
		font-size: .8em;
	}
	.navbar-primary .navbar-nav > li {
		margin: 0 1em;
	}
}

@media (max-width: 1199px) {
	body {
		--wp--style--global--content-size: 936px;
	}
	header.header-wrapper .masthead-logo{
		max-width: 250px;
	}
	.card-capsule{
		font-size: .8em;
		line-height: 1.2;
	}
}

@media (max-width: 991px) {
	body {
		--wp--style--global--content-size: 696px;
		--swiper-navigation-size: 48px;
		font-size: 16px;
	}
	
	header.header-wrapper .masthead-logo{
		max-width: 170px;
	}
	.section-header-top .nav-link{
		padding: .5rem;
	}
	.navbar-primary .navbar-nav > li {
		margin: 0 .8em;
	}
	.navbar-primary .navbar-nav .nav-link{
		letter-spacing: normal;
	}
	.swiper-posts .swiper-button-prev, .swiper-posts .swiper-container-rtl .swiper-button-next {
		left: -10px;
		right: auto;
	}
	.swiper-posts .swiper-button-next, .swiper-posts .swiper-container-rtl .swiper-button-prev {
		right: -10px;
		left: auto;
	}
	.card-capsule {
		font-size: 1.25em;
		line-height: 1.5;
	}
}

@media (max-width: 767px) {
	body {
		--wp--style--global--content-size: 516px;
	}
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  		--bs-gutter-x: 3rem;
	}
	.btn {
		white-space: normal;
	}
	header.header-wrapper {
		font-size: 1em;
	}
	header.header-wrapper .masthead-logo{
		max-width: 220px;
	}
	
	.card{
		font-size: clamp(.9em, 3vw, 1.1em);
	}
	
	.section-footer-top .border-end{
		border-right: none !important;
	}
	.section-footer-top-left{
		padding-bottom: var(--wp--preset--spacing--20);
	}
	.section-footer-top-right{
		padding-top: var(--wp--preset--spacing--20);
	}
	
	body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (max-width: 585px) {
	body{
		--wp--preset--spacing--20: 1rem;
		--wp--preset--spacing--30: 1.5rem;
		--wp--preset--spacing--40: 2rem;
		--wp--preset--spacing--50: 4rem;
		--wp--preset--spacing--60: 6rem;
		--wp--preset--spacing--70: 8rem;
		--wp--preset--spacing--80: 12rem;
		
		font-size: 15px;
	}
	
	.two-column-list, ul.is-style-styled-list-two-column, ul.is-style-checked-list-two-column,.three-column-list, ul.is-style-styled-list-three-column {
		-webkit-column-count: 1;
		-webkit-column-gap: 0;
		-moz-column-count: 1;
		-moz-column-gap: 0;
		-ms-column-count: 1;
		-ms-column-gap: 0;
		column-count: 1;
		column-gap: 0;
	}

	.has-global-padding.is-layout-constrained.wp-block-group.alignfull.has-background,
	.wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax, .wp-block-cover__image-background.has-parallax, video.wp-block-cover__video-background.has-parallax{
		padding-left: var(--wp--preset--spacing--30) !important;
		padding-right: var(--wp--preset--spacing--30) !important;
	}
	
	.section-hero .section-hero-content{
		font-size: .7em;
		line-height: 1.2;
	}
	.section-has-background-image.section-page-header {
		height: 50vh;
	}
	
	.block-testimonials-slider .swiper-slide .testimonial-block{
		font-size: .75em;
	}
	.block-testimonials-slider .swiper-slide .testimonial-block .testimonial-img{
		max-width: 100px;
	}
}