html {
	scroll-behavior: smooth;
}

body {
	--theme-font-heading: "Marcellus", serif;
	--theme-font-body: "Open Sans", sans-serif;
	--theme-font-subheading: "Open Sans", sans-serif;
	
	--theme-color-hover: var(--wp--preset--color--success);
	--theme-color-active: var(--wp--preset--color--tertiary);
	
	--theme-color-heading: var(--wp--preset--color--primary);
	--theme-color-body: var(--wp--preset--color--mid);
	--theme-color-link: var(--wp--preset--color--secondary);
	--theme-color-border: var(--wp--preset--color--trans-primary);
	
	--scroll-bar-half-width: 0px;
		
	--swiper-theme-color: var(--wp--preset--color--secondary);
	
	font-family: var(--theme-font-body);
	font-size: 18px;
	color: var(--theme-color-body);
	letter-spacing: normal;
	line-height: 1.7;
	background-color: var(--wp--preset--color--primary);
	width: 100%;
	overflow-x: hidden;
}

.wrap{
	background-color: var(--wp--preset--color--white);
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

/********************************************************************************
* General :: Links & Buttons
*********************************************************************************/

/* Links
----------------------------------------------- */

a, .nav-link {
	text-decoration: none;
	color: var(--theme-color-link);
	outline: none;
	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;
}
a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.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--secondary);
	color: var(--wp--preset--color--white);
	font-family: var(--theme-font-body);
	text-transform: uppercase;
	border-radius: 0;
	border: none;
	font-size: .8em;
	line-height: 1;
	letter-spacing: .15em;
	padding: 1.25em 2.5em;
	text-shadow: none;
	font-weight: 700;
	box-shadow: none;
	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: 2px solid var(--theme-color-link);
	color: var(--theme-color-link);
}

.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 & Underline
----------------------------------------------- */

.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;
}

.btn-readmore {
	font-weight: 700;
}

/********************************************************************************
* General :: Headings
*********************************************************************************/

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
	color: var(--theme-color-heading);
	font-family: var(--theme-font-heading);
	letter-spacing: normal;
	font-weight: normal;
	margin-bottom: 1.5rem;
}

h1, .h1 {
	font-size: 3em;
}

h2, .h2 {
	font-size: 2.25em;
}

h3, .h3 {
	font-size: 2em;
}

h4, .h4 {
	font-size: 1.75em;
}

h5, .h5 {
	font-size: 1.5em;
}

h6, .h6 {
	font-family: var(--theme-font-body);
	color: var(--theme-color-heading);
	font-size: 1.2em;
	font-weight: 700;
	text-transform: uppercase;
}

.is-style-lined{
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.is-style-lined:before, .is-style-lined:after {
	flex: 1 0 20%;
	height: 1px;
	content: "";
	background-color: var(--theme-color-border);
}
.is-style-lined::before {
	margin-right: 1rem;
}
.is-style-lined::after {
	margin-left: 1rem;
}
.is-style-lined.has-text-align-left {
	text-align: left;
}
.is-style-lined.has-text-align-left::before {
	flex: 0;
	margin-right: 0;
}
.is-style-lined.has-text-align-right {
	text-align: left;
}
.is-style-lined.has-text-align-right::after {
	flex: 0;
	margin-left: 0;
}

.subtitle, .is-style-subtitle {
	font-family: var(--theme-font-subheading);
	font-weight: 700;
	color: var(--theme-color-heading);
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 1;
	font-size: .9em;
}
p.is-style-subtitle{
	margin-bottom: .5rem;
}
.subtitle-small {
	font-size: .75em;
}
.subtitle-large {
	font-size: 2em;
}

/********************************************************************************
* General :: Elements
*********************************************************************************/

p {
	margin-bottom: var(--wp--preset--spacing--20);
}

.has-small-font-size {
	font-size: .8em !important;
}

.has-large-font-size {
	font-size: 1.25em !important;
}

.has-huge-font-size {
	font-size: 1.75em !important;
}

.em{
	font-style: italic;
}
.strong{
	font-weight: bold;
}

/* Elements :: Horizontal Rules
----------------------------------------------- */

hr, .wp-block-separator.has-background:not(.is-style-dots):not(.is-style-styled) {
	color: var(--theme-color-border);
	border: none;
	border-bottom: 3px 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) {
	width: 75px !important;
}

/* 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: 1px solid var(--theme-color-border) !important;
}
hr.wp-block-separator.is-style-styled.has-background{
	border-bottom: 1px  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;
}

/* 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;
	font-size: .8em;
	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 {
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .75em;
	text-align: center;
	color: var(--theme-color-body);
	font-family: var(--theme-font-heading);
}

.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: 2px solid var(--wp--preset--color--primary);
	border-bottom: 2px 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
----------------------------------------------- */
.rounded-more{
	border-radius: 1.25rem;
}

.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 :: Typography
----------------------------------------------- */

.styled-list h1, .styled-list h2, .styled-list h3, .styled-list h4, .styled-list h5, .styled-list h6 {
	margin-bottom: .5em;
	margin-top: 0;
}

.styled-list p {
	margin-bottom: 1em;
}

/* Lists :: Unordered
----------------------------------------------- */

ul.styled-list, ul.is-style-styled-list, ul.is-style-styled-list-two-column, ul.is-style-styled-list-three-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 {
	display: block;
	list-style: none outside none;
	padding: 0 0 2em 2.5em;
	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 {
	/*font-family: "Font Awesome 5 Pro";
	font-weight: 700;
	content: "\f138";
	color: var(--wp--preset--color--primary);*/
	content: '';
	width: 1.75em;
	height: 1.75em;
	background-image: url('../img/emblem.svg');
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	display: block;
	font-size: 1.25em;
	position: absolute;
	top: -.4em;
	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 {
	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 {
	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 {
	content: "\f054";
	font-size: 1em;
	left: 0;
	top: .65em;
}

/* 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 2em 2.5em;
}

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: 400;
	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 {
	-webkit-column-count: 2;
	-webkit-column-gap: 2rem;
	-moz-column-count: 2;
	-moz-column-gap: 2rem;
	-ms-column-count: 2;
	-ms-column-gap: 2rem;
	column-count: 2;
	column-gap: 2rem;
}

.three-column-list, ul.is-style-styled-list-three-column {
	-webkit-column-count: 3;
	-webkit-column-gap: 2rem;
	-moz-column-count: 3;
	-moz-column-gap: 2rem;
	-ms-column-count: 3;
	-ms-column-gap: 2rem;
	column-count: 3;
	column-gap: 2rem;
}

.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, ul.is-style-styled-list-three-column li {
	display: inline-block;
	width: 100%;
}

/********************************************************************************
* General :: Forms
*********************************************************************************/

.form-control, .vfbp-form .vfb-form-control {
	padding: .75rem 1rem;
	background: var(--wp--preset--color--white);
	border-color: var(--theme-color-border);
	border-radius: 0;
	border-style: solid;
	border-width: 1px;
	color: var(--wp--preset--color--mid);
	box-shadow: none;
	height: auto;
	transition: all 0.35s ease 0s;
}


.form-control:focus, .vfbp-form .vfb-form-control:focus {
	background: none;
	box-shadow: 0 0 25px var(--theme-color-hover);
	border-color: var(--theme-color-hover);
	color: var(--wp--preset--color--mid);
}

.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;
}

/* Forms :: Visual Form Builder Only
----------------------------------------------- */

.vfbp-form {
	position: relative;
}

.vfbp-form .btn-primary {
	width: 100%;
}

.vfb-well {
	background-color: var(--wp--preset--color--light);
	border-radius: 0;
	border: none;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
	display: block;
	float: none;
}

.vfbp-form .vfb-form-group {
	margin-bottom: 1.25rem;
}

.form-hide-labels .vfbp-form label {
	display: none;
}

.vfbp-form label {
	font-size: .8em;
	text-transform: uppercase;
	letter-spacing: .075em;
	margin-bottom: .1rem;
	color: var(--theme-color-heading);
}

.vfbp-form .vfb-help-block {
	margin-top: .1rem;
	margin-bottom: 1.25rem;
	color: var(--theme-color-body);
	font-size: .85em;
	font-style: italic;
}

.vfbp-form .btn-file {
	font-size: .75em;
}

.vfb-address-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: stretch;
	margin: 0 -5px;
}

.vfb-address-block .vfb-form-group {
	flex: 1 1 auto !important;
	margin: 0 5px;
}

.vfb-address-block > div:first-child {
	width: 100%;
	align-self: stretch;
	margin-bottom: .25rem;
}

.vfb-address-block select.vfb-form-control {
	height: 48px;
}

/********************************************************************************
* 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: 1px !important;
}

.border-none {
	border: none !important;
}

.border-distress-top, .border-distress-bottom{
	position: relative;
}
.border-distress-top:before, .border-distress-bottom:after{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 29px;
	background-size: auto 100%;
	background-repeat: repeat-x;
	z-index: 2;
}
.border-distress-top:before{
	top: 0;
	background-image: url('../img/border-distress-top-white.svg');
}
.border-distress-bottom:after{
	bottom: 0;
	background-image: url('../img/border-distress-bottom-white.svg');
}

/* Backgrounds :: Primary
----------------------------------------------- */
.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-primary-background-color .wsp-container > ul li::before {
	color: var(--wp--preset--color--white);
}

/* Backgrounds :: Secondary
----------------------------------------------- */
.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 ul.styled-list li::before, .has-secondary-background-color ul.is-style-styled-list li::before, .has-secondary-background-color ul.is-style-styled-list-two-column li::before, .has-secondary-background-color ul.is-style-styled-list-three-column li::before {
	color: var(--wp--preset--color--white);
}

/* Backgrounds :: Tertiary
----------------------------------------------- */
.has-tertiary-background-color ul.styled-list li::before, .has-tertiary-background-color ul.is-style-styled-list li::before, .has-tertiary-background-color ul.is-style-styled-list-two-column li::before, .has-tertiary-background-color ul.is-style-styled-list-three-column li::before {
	color: var(--wp--preset--color--white);
}

/* Backgrounds :: Success
----------------------------------------------- */
.has-success-background-color ul.styled-list li::before, .has-success-background-color ul.is-style-styled-list li::before, .has-success-background-color ul.is-style-styled-list-two-column li::before, .has-success-background-color ul.is-style-styled-list-three-column li::before {
	color: var(--wp--preset--color--white);
}

/* Backgrounds :: Warning
----------------------------------------------- */
.has-warning-background-color ul.styled-list li::before, .has-warning-background-color ul.is-style-styled-list li::before, .has-warning-background-color ul.is-style-styled-list-two-column li::before, .has-warning-background-color ul.is-style-styled-list-three-column li::before {
	color: var(--wp--preset--color--white);
}

/* Backgrounds :: White
----------------------------------------------- */

/* Backgrounds :: Light
----------------------------------------------- */

/* Backgrounds :: Mid
----------------------------------------------- */

/* Backgrounds :: Dark
----------------------------------------------- */

/* Backgrounds :: Black
----------------------------------------------- */

/* Backgrounds :: Transparent
----------------------------------------------- */

/* Backgrounds :: Transparent White
----------------------------------------------- */

/* Backgrounds :: Transparent Black
----------------------------------------------- */

/* Backgrounds :: Transparent Primary
----------------------------------------------- */

/* Backgrounds :: Common :: Darks
-----------------------------------------------*/
.has-primary-background-color:not(.wp-block-separator):not(.card), .has-secondary-background-color:not(.wp-block-separator):not(.card), .has-tertiary-background-color:not(.wp-block-separator):not(.card), .has-success-background-color:not(.wp-block-separator):not(.card), .has-warning-background-color:not(.wp-block-separator):not(.card), .has-mid-background-color:not(.wp-block-separator):not(.card), .has-dark-background-color:not(.wp-block-separator):not(.card), .has-black-background-color:not(.wp-block-separator):not(.card){
	--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);
	
	color: var(--theme-color-body);
}
.has-secondary-background-color, .has-tertiary-background-color, .has-success-background-color, .has-warning-background-color, .has-mid-background-color{
	--theme-color-link: var(--wp--preset--color--white);
}

/* Backgrounds :: Overlays
----------------------------------------------- */

[class*="overlay-opacity-"]::before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: var(--wp--preset--color--black);
	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: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 1px solid var(--wp--preset--color--success);
	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-grunge-background-pattern{
	background-image: url('../img/bg-grunge.png');
}
.has-fruits-background-pattern{
	background-image: url('../img/bg-pattern-fruits-primary.png');
}
/********************************************************************************
* General :: Cards
*********************************************************************************/

/* Card :: Default
----------------------------------------------- */

.card {
	--theme-color-heading: var(--wp--preset--color--primary);
	--theme-color-body: var(--wp--preset--color--mid);
	--theme-color-border: var(--wp--preset--color--trans-primary);
	--theme-color-link: var(--wp--preset--color--secondary);
	
	border: 1px solid var(--theme-color-border);
	border-radius: 0;
	background-color: var(--wp--preset--color--trans);
	color: var(--theme-color-body);
	font-size: .9em;
	padding: 0;
	transition: all 0.3s ease-in;
}

.card-img, .card-img-top, .card-img-bottom {
	position: relative;
	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-icon {
	width: 60px;
	height: 60px;
	font-size: 1.25em;
	position: relative;
	line-height: 54px;
	text-align: center;
	color: var(--wp--preset--color--secondary);
	border: 2px solid var(--wp--preset--color--secondary);
	border-radius: 50%;
	transition: all 0.3s ease-in;
}

.card-subtitle{
	font-weight: 500;
}

.card-body {
	padding: 2rem 1.75rem;
}

.card a:not(:hover):not(:focus):not(:active):not(.btn), .card a.btn-text:not(:hover):not(:focus):not(:active) {
	color: var(--theme-color-link);
}

.card-body hr {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.card-body >  :last-child, .card-text >  :last-child {
	margin-bottom: 0;
}

.card-footer {
	background-color: transparent;
	border-top: 1px solid var(--theme-color-border);
	padding-left: 0;
	padding-right: 0;
}

.card-meta.card-list {
	font-size: .9em;
	font-weight: 500;
}
.card-meta.card-list .list-inline-item:not(:last-child) {
	margin: 0;
	padding: 0;
}
.card-meta.card-list .list-inline-item:not(:last-child):after{
	content: "\2022";
	color: var(--wp--preset--color--primary);
	padding: 0 .5rem;
	font-size: 1.25em;
	display: inline-block;
}

/* Hover */

.card:hover {
	border-color: var(--theme-color-hover);
}

.card:hover .card-icon {
	color: var(--theme-color-hover);
	border-color: var(--theme-color-hover);
}

/*.card:hover .card-img, .card:hover .card-img-top, .card: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:not(.card-animated) {
	height: 100%;
}

/* Card :: Animated
----------------------------------------------- */
.card-animated{
	font-size: .8em;
	height: 220px;
	
	transition: all .5s ease-in-out;
}
.card-animated .card-img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding: 1rem;
	z-index: 0;
	position: absolute;
	left: 50%;
	
	transform: translateX(-50%);
	margin: 2rem auto 4rem auto;
	
	transition: all .5s ease-in-out;
}
.card-animated .card-img img{
	object-fit: contain;
	object-position: center;
	
	transition: all .5s ease-in-out;
}

.card-animated .card-body{
	z-index: 1;
	position: relative;
}
.card-animated .card-title {
	margin-bottom: 0;
	padding-top: calc(100px + 1rem);
	
	transition: all .25s ease-in-out;
}
.card-animated .card-text, .card-animated .btn{
	max-height: 0;
	opacity: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	
	transition: all .25s ease-in-out;
}

.card-animated:not(:hover){
	background-color: var(--wp--preset--color--trans) !important;
}
.card-animated:hover{
	border-color: transparent;
}
.card-animated:hover .card-img{
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	margin: 0 auto;
}
.card-animated:hover .card-img img{
	opacity: .15;
}
.card-animated:hover .card-title{
	padding-top: 0;
}
.card-animated:hover .card-text, .card-animated:hover .btn{
	max-height: 220px;
	opacity: 1;
	margin-top: .75rem;
}

.card-animated:not(.has-tertiary-background-color):hover .card-title{
	color: #FFF;
}
.card-animated:not(.has-tertiary-background-color):hover .card-text{
	color: #FFF;
}

/* Card :: Menu Item
----------------------------------------------- */
.card-menu-item .menu-item-header{
	line-height: 1;
	overflow: hidden;
}


/* Card :: Capsule
----------------------------------------------- */

.card-capsule {
	border: none;
	background-color: var(--wp--preset--color--dark);
	color: var(--wp--preset--color--white);
	transition: all 0.3s ease-in;
}

.card-capsule .card-body {
	position: absolute;
	padding: 1.25rem;
	text-align: center;
	height: 100%;
	width: 100%;
}

.card-capsule .card-img > * {
	opacity: .6;
	transition: all 0.3s ease-in;
}

.card-capsule .card-body .card-content {
	max-height: 0;
	opacity: 0;
	transition: all 0.3s ease-in;
}
.card-capsule .card-body .card-content :last-child{
	margin-bottom: 0;
}

/* Hover */
.card-capsule:hover{
	background-color: var(--theme-color-hover);
}
.card-capsule:hover .card-img > * {
	opacity: .25;
}

.card-capsule:hover .card-body .card-content {
	max-height: 300px;
	opacity: 1;
}

/********************************************************************************
* General :: Swipers
*********************************************************************************/
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active){
	background: var(--theme-color-heading);
}

.swiper-button-next::after, .swiper-button-prev::after {
	display: none;
}

/* Swipers :: Buttons Styled
----------------------------------------------- */

.swiper.swiper-buttons-styled .swiper-button-prev, .swiper.swiper-buttons-styled .swiper-button-next {
	background-color: var(--wp--preset--color--white);
	color: var(--theme-color-link);
	font-size: 1.5em;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	top: 50%;
	margin-top: -40px;
	z-index: 1000;
}

.swiper.swiper-buttons-styled .swiper-button-prev, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-next {
	left: -40px;
	text-align: right;
	justify-content: end;
	padding-right: 20px;
}

.swiper.swiper-buttons-styled .swiper-button-next, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-prev {
	right: -40px;
	text-align: left;
	justify-content: start;
	padding-left: 20px;
}

.swiper.swiper-buttons-styled .swiper-button-prev:hover, .swiper.swiper-buttons-styled .swiper-button-next:hover {
	color: var(--theme-color-hover);
}

.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;
}

/********************************************************************************
* Header
*********************************************************************************/

header.header-wrapper {
	z-index: 1001;
}

header.header-wrapper .masthead-logo img{
	max-width: 415px;
}

/* Header :: Navbar Top
----------------------------------------------- */

.section-header-top {
	font-size: .9em;
	line-height: 1;
}

/* Header :: Contact
----------------------------------------------- */

.section-header-top .list-contact .list-inline-item:not(:last-child) {
	margin-right: 1.5rem;
}

/********************************************************************************
* 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: .9em;
	color: var(--theme-color-heading);
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: .1rem 0;
	border-top: 2px solid var(--wp--preset--color--trans);
	border-bottom: 2px solid var(--wp--preset--color--trans);
}

.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 {
	border-bottom-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: bottom;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	content: "\f107";
	border: none;
	color: var(--theme-color-link);
}

/* Primary Navigation :: 2nd Level
----------------------------------------------- */

.navbar-primary .navbar-nav > li > .dropdown-menu {
	border-radius: 0;
	text-align: left;
	border: none;
	background-color: var(--wp--preset--color--primary);
}

.navbar-primary .navbar-nav > li > .dropdown-menu:after {
	bottom: 100%;
	left: 1.5em;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: var(--wp--preset--color--trans);
	border-bottom-color: var(--wp--preset--color--primary);
	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;
}

.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
----------------------------------------------- */
#navbar-primary-offcanvas{
	z-index: 9999;
	max-width: 90vw;
	width: 300px;
}
#navbar-primary-offcanvas .offcanvas-header{
	font-size: .8em;
}

#navbar-primary-offcanvas .navbar-primary .navbar-nav > li{
	margin: .5em 0;
}
#navbar-primary-offcanvas .navbar-primary .navbar-nav .nav-link{
	font-size: 1em;
}
#navbar-primary-offcanvas .navbar-primary .navbar-nav .active > .nav-link, .navbar-primary .navbar-nav .nav-link.active{
	border-bottom: none;
}
#navbar-primary-offcanvas .navbar-primary .navbar-nav > li > .dropdown-menu:after{
	display: none;
}

/* Mobile Toggle */
.toggle-wrapper {
	color: var(--wp--preset--color--dark);
	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);
}

/********************************************************************************
* Section :: Hero
*********************************************************************************/

/* Hero :: Common
----------------------------------------------- */

.section-hero {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.section-hero .section-hero-content-container {
	left: 50%;
	position: absolute;
	bottom: 0;
	top: 0;
	height: 100%;
	z-index: 3;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.section-hero .section-hero-content {
	font-size: 1.35em;
	width: 100%;
}

/* Hero :: Swiper
----------------------------------------------- */
.section-hero-swiper .swiper-home{
	height: 70vh;
	overflow: hidden;
}
.section-hero-swiper .swiper-slide .swiper-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-hero-swiper .section-hero-content {
	max-width: 1000px;
}
.section-hero-swiper .swiper-slide .swiper-emblem{
	max-height: 60px;
}
.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;
}

/* Hero :: Page Header
----------------------------------------------- */

.section-page-header {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
	height: 50vh;
}

/* Hero :: Breadcrumbs
----------------------------------------------- */

.section-breadcrumbs {
	font-size: .5em;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.section-breadcrumbs span {
	padding: 0 .35em;
}

.section-breadcrumbs span:first-child {
	padding-left: 0;
}

.section-breadcrumbs span:last-child {
	padding-right: 0;
}

/********************************************************************************
* General :: Content
*********************************************************************************/
.wow {
	visibility: hidden;
}

.section-padding, .section-content-padded {
	padding-top: var(--wp--preset--spacing--50);
	padding-bottom: var(--wp--preset--spacing--50);
	position: relative;
}

.section-content-padded.section-content-padded-extra {
	padding-top: 12rem;
	padding-bottom: 12rem;
}

.section-content-padded.section-content-padded-less {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.section-content >  :last-child, .main >  :last-child {
	margin-bottom: 0;
}

.section-heading {
	margin-top: 0;
}

/********************************************************************************
* Sidebar
*********************************************************************************/

.sidebar {
	font-size: .8em;
	line-height: normal;
}

.sidebar .widget {
	margin-bottom: 2.25rem;
}

.sidebar > .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget h3 a:not(:hover):not(:focus):not(:active){
	color: var(--theme-color-heading);
}

.sidebar .widget-content {
	padding: 1.5rem 2rem;
	background-color: var(--wp--preset--color--trans);
	border: 1px solid var(--theme-color-border);
}

/********************************************************************************
* Sidebar :: Navigation
*********************************************************************************/

.sidebar ul.nav > li a {
	line-height: 1;
	padding: .75rem 1.25rem .75rem 0;
	display: block;
	position: relative;
	font-weight: 500;
	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: 500;
}

.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;
}

/********************************************************************************
* 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: 700;
	letter-spacing: .05em;
	font-size: 1em;
	color: var(--wp--preset--color--black);
}

.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);
}

/********************************************************************************
* Section :: Child :: Content
*********************************************************************************/

.section-child-content-main >  :last-child {
	margin-bottom: 0;
}

/********************************************************************************
* Section :: Child :: 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: .7;
}

/* Home Template Only */
.page-template-template-home .section-background-image img {
	height: auto !important;
}

/********************************************************************************
* Section :: Child :: Image Right / Left
*********************************************************************************/

.section-child-image {
	padding: 0;
}

.section-child-image .child-image {
	min-height: 40vh;
	overflow: hidden;
}

.section-child-image .child-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/********************************************************************************
* Section :: Child :: Video Right / Left
*********************************************************************************/

.section-child-video .card-capsule-video:hover .card-img > * {
	opacity: .5;
}

/********************************************************************************
* Section :: Child :: Menu
*********************************************************************************/
.swiper-menu-control{
	border-color: var(--theme-color-border);
	border-width: 1px;
}
.swiper-menu{
	position: relative;
	overflow: hidden;
}
.swiper-menu .swiper-slide {
	width: 33.33%;
}
.swiper-menu.not-active .swiper-slide{
	padding-left: 15px;
	padding-right: 15px;
}

.swiper-menu .swiper-slide img {
	display: block;
	width: 100%;
}

.card-menu:hover{
	-webkit-transform: scale(0.93, 0.93);
	-ms-transform: scale(0.93, 0.93);
	transform: scale(0.93, 0.93);
}

/********************************************************************************
* Section :: Child :: Map
*********************************************************************************/
.section-child-map{
	position: relative;
}
.section-child-map .map-container{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section-child-map .map-container .wpgmza_map, .section-child-map .map-container iframe{
	height: 100% !important;
}

/********************************************************************************
* Footer
*********************************************************************************/

footer.footer-wrapper {
	font-size: .9em;
	font-weight: 600;
	text-shadow: -1px -1px 0 var(--wp--preset--color--primary), 1px -1px 0 var(--wp--preset--color--primary), -1px 1px 0 var(--wp--preset--color--primary), 1px 1px 0 var(--wp--preset--color--primary);
	
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
}
footer.footer-wrapper a:not(:hover):not(:active):not(:focus){
	color: var(--theme-color-body);
}

.section-footer-content .nav-social .nav-link {
	font-size: 1.4em;
}

.footer-copyright {
	font-size: .8em;
	line-height: 1;
}

/********************************************************************************
* Section :: Footer :: Instagram
*********************************************************************************/
.section-instagram{
}
.section-instagram-heading{
	line-height: 1;
}
.section-instagram-heading i{
	font-weight: normal;
	font-size: 1.2em;
}

.section-instagram #sb_instagram #sbi_images .sbi_photo_wrap{
	background: var(--theme-color-hover);
	overflow: hidden;
}
.section-instagram #sb_instagram #sbi_images .sbi_photo_wrap .sbi_photo{
	opacity: 1;

	transition: all .2s ease-in;
}
.section-instagram #sb_instagram #sbi_images .sbi_photo_wrap .sbi_photo:hover{
	opacity: .1 !important;
}
#sb_instagram #sbi_images{
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/********************************************************************************
* General :: Scrolling
*********************************************************************************/

header.header-wrapper, header.header-wrapper .masthead-logo, header.header-wrapper .masthead-logo img {
	transition: all 0.3s ease 0s;
}

header.header-wrapper.is-stuck{
	border-bottom: 1px solid var(--theme-color-border);
}
header.header-wrapper.is-stuck .masthead-logo{
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}
header.header-wrapper.is-stuck .masthead-logo img {
	max-height: 50px;
	width: auto;
}

/********************************************************************************
* Block :: General Default Wordpress Block Adjustments
*********************************************************************************/
.wp-block-image img {
	height: auto;
}

.wp-block-image.aligncenter {
	margin-left: auto;
	margin-right: 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 */
}

/* Create an option to have a full-width group's inner container function like a bootstrap container */

.wp-block-group.is-style-fixed-width-content, .wp-block-cover.is-style-fixed-width-content {
	padding: 4rem 0;
}

.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.wp-block-group.is-style-fixed-width-content .wp-block-group__inner-container, .wp-block-cover.is-style-fixed-width-content .wp-block-cover__inner-container {
		max-width: 1340px;
	}
}

/* Extend responsive column styling to 767px (Default is 600px) */
@media (max-width: 767px) {
	.section-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
		flex-basis: 100% !important;
		margin-left: 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(--theme-color-link);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .05em;
	border: 2px solid var(--theme-color-link);
	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(--theme-color-link);
	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(--theme-color-link) !important;
	color: var(--theme-color-link) !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 {
	margin-bottom: 1.5rem;
}

.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;
}

/********************************************************************************
* General :: Bootstrap Helpers
*********************************************************************************/
.tooltip-inner {
    background-color: var(--theme-color-link);
    box-shadow: 0px 0px 4px var(--theme-color-link);
	font-weight: 600;
    opacity: 1 !important;
}
.tooltip.bs-tooltip-auto .arrow::before,
.tooltip.bs-tooltip-top .arrow::before, 
.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before{
	border-top-color: var(--theme-color-link) !important;
}
.tooltip.bs-tooltip-bottom .arrow::before, 
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{
	border-bottom-color: var(--theme-color-link) !important;
}
.tooltip.bs-tooltip-right .arrow::before, 
.tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before{
	border-right-color: var(--theme-color-link) !important;
}
.tooltip.bs-tooltip-left .arrow::before, 
.tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before{
	border-left-color: var(--theme-color-link) !important;
}

@media (min-width: 992px) {
	.container-breakout-left, .container-breakout-right {
		width: calc( 930px + ((100% - 930px) / 2));
		max-width: 100%;
		padding: 0;
	}
	.container-breakout-right {
		margin-right: 0;
		padding-right: 0;
	}
	.container-breakout-left {
		margin-left: 0;
		padding-left: 0;
	}
	.container-breakout-left > .row, .container-breakout-right > .row {
		margin: 0;
	}
	.container-breakout-left > .row > div:last-child {
		padding-right: 0;
	}
	.container-breakout-right > .row > div:first-child {
		padding-left: 0;
	}
}

@media (min-width: 1200px) {
	.container-breakout-left, .container-breakout-right {
		width: calc( 1110px + ((100% - 1110px) / 2));
	}
}

@media (min-width: 1400px) {
	.container-breakout-left, .container-breakout-right {
		width: calc( 1310px + ((100% - 1310px) / 2));
	}
}

/********************************************************************************
* Media Queries
*********************************************************************************/
@media (max-width: 1399px) {
	header.header-wrapper .masthead-logo img {
		max-width: 290px;
	}
	.navbar-primary .navbar-nav > li{
		margin: 0 .8em;
	}
}

@media (max-width: 1199px) {
	body {
		font-size: 16px;
	}
	header.header-wrapper .masthead-logo img {
		max-width: 250px;
	}
}

@media (max-width: 991px) {
	header.header-wrapper.is-stuck .masthead-logo {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}
	.col-masthead-nav{
		border: none !important;
	}
	.three-column-list, ul.is-style-styled-list-three-column {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		-ms-column-count: 1;
		column-count: 1;
	}
}

@media (max-width: 767px) {
	.btn {
		white-space: normal;
	}

	.section-child-map{
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	.section-child-map .map-container {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: 300px;
	}
	
	.swiper-menu.not-active .swiper-wrapper{
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.swiper-menu.not-active .swiper-slide {
		width: 100%;
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

@media (max-width: 585px) {
	h1, h2, .h1, .h2{
		line-height: 1;
	}
	.is-style-lined:before, .is-style-lined:after {
		display: none;
	}
	
	.two-column-list, ul.is-style-styled-list-two-column,.three-column-list, ul.is-style-styled-list-three-column {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		-ms-column-count: 1;
		column-count: 1;
	}
	
	.swiper.swiper-buttons-styled .swiper-button-prev, .swiper.swiper-buttons-styled .swiper-button-next {
		width: 60px;
		height: 60px;
		margin-top: -40px;
	}
	.swiper.swiper-buttons-styled .swiper-button-next, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-prev {
		right: -30px;
		padding-left: 15px;
	}
	.swiper.swiper-buttons-styled .swiper-button-prev, .swiper.swiper-buttons-styled .swiper-container-rtl .swiper-button-next {
		left: -30px;
		padding-right: 15px;
	}
	
	.wp-block-group.is-style-fixed-width-content, .wp-block-cover.is-style-fixed-width-content {
		padding-left: calc(var(--bs-gutter-x) * .5) !important;
		padding-right: calc(var(--bs-gutter-x) * .5) !important;
	}

	.overlay-border::after {
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
	.section-hero{
		font-size: .7em;
	}
}
@media (max-width: 415px) {
	header.header-wrapper .masthead-logo img {
		max-width: 160px;
	}
}