:root{
	--theme-color-primary:#063057;
	--theme-color-secondary:#67a75a;
	--theme-color-tertiary:#ff911b;
	--theme-color-warning:#a33319;
	--theme-color-white:#FFF;
	--theme-color-light:#f0f3f2;
	--theme-color-mid:#4a5653;
	--theme-color-dark:#25413a;
	--theme-color-black:#1f2423;
	--theme-color-hover:#ffb11b;
	--theme-color-active:#67a75a;
	--swiper-theme-color:#ff911b;
}

@font-face {
    font-family: 'cysanregular';
    src: url('../webfonts/cysan-regular-webfont.woff2') format('woff2'),
         url('../webfonts/cysan-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html{
	scroll-behavior: smooth;
}
body{
    font-family: 'Poppins', sans-serif;
	font-size: 18px;
	color: var(--theme-color-mid);
	letter-spacing: .025em;
	line-height: 1.6;
	background-color: var(--theme-color-white);
	width: 100%;
	overflow-x: hidden;
	font-weight: 500;
}

/********************************************************************************
* General :: Links & Buttons
*********************************************************************************/
/* Links
----------------------------------------------- */
a{
	color: var(--theme-color-tertiary);
	transition: all .2s ease-in;
}

a:hover, a:active, a:focus{
	color: var(--theme-color-hover);
	text-decoration: none;
}

.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, .forminator-ui#forminator-module-15325.forminator-design--default .forminator-button-submit {
	color: var(--theme-color-white);
	background-color: var(--theme-color-tertiary);
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	border-radius: .5rem;
	font-size: .9em;
	line-height: 1;
	letter-spacing: .1em;
	border: none;
	padding: 20px 30px;
	text-shadow: none;
	font-weight: 700;
  	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16),0px 2px 5px 0 rgba(0, 0, 0, 0.26);

	transition: all 0.2s ease-in-out;
}
.forminator-button-submit { 
	background-color: var(--theme-color-tertiary) !important;
} 
.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(--theme-color-white);
	background-color: var(--theme-color-hover);
	border-color: var(--theme-color-hover);
}
.forminator-button-submit:focus, .forminator-button-submit:active, .forminator-button-submit:hover { 
	color: var(--theme-color-white) !important;
	background-color: var(--theme-color-hover) !important;
	border-color: var(--theme-color-hover) !important;
} 
.btn:active{
	position:relative;
	top: 1px;
}
.btn-small, .btn-sm{
	font-size: .75em;	
}
.btn-large, .btn-lg{
	font-size: 1.25em;
	padding: 15px 40px;
}
.btn-xlarge, .btn-xl{
	font-size: 1.75em;
	padding: 20px 50px;
}

.btn-secondary{
	color: var(--theme-color-white);
	background-color: var(--theme-color-secondary);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus{
	color: var(--theme-color-white);
	background-color: var(--theme-color-hover);
}

.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-tertiary);
	padding: 17px 27px;
}
.btn-outline:not(:hover),
.wp-block-button.is-style-outline .wp-block-button__link:not(:hover),
.wp-block-button__link.is-style-outline:not(:hover){
	background-color: transparent;
	color: var(--theme-color-tertiary);
}

.btn-text,
.wp-block-button.is-style-text .wp-block-button__link,
.wp-block-button__link.is-style-text{
	background: none;
	box-shadow: none;
	border: none;
	color: var(--theme-color-tertiary);
	padding: 0;
}
.btn-text:not(:hover),
.wp-block-button.is-style-text .wp-block-button__link:not(:hover),
.wp-block-button__link.is-style-text:not(:hover){
	color: var(--theme-color-tertiary);
	background-color: transparent;
}
.btn-text:hover,
.wp-block-button.is-style-text .wp-block-button__link:hover,
.wp-block-button__link.is-style-text:hover{
	background-color: transparent;
	color: var(--theme-color-hover);
}

/* Buttons :: Button Bar
----------------------------------------------- */
.btn-bar .row > div:not(:last-child){
	border-right: 2px solid rgba(255,255,255,.1);
}
.btn-bar .btn{
	background: none;
	box-shadow: none;
	border: none;
	padding: 0;
	color: var(--theme-color-white);
	width: 100%;
}
.btn-bar .btn i{
	color: var(--theme-color-secondary);
	font-size: 2.5em;
	display: block;
	margin-bottom: .5rem;
}
.btn-bar .btn:hover{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.footer-wrapper .btn-bar{
	background-color: var(--theme-color-light) !important;
}
.footer-wrapper .btn-bar .col:not(:last-child){
	border-right-color: rgba(37,65,58,.1);
}
.footer-wrapper .btn-bar .btn{
	color: var(--theme-color-mid);
}

/********************************************************************************
* General :: Headings
*********************************************************************************/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
	color: var(--theme-color-primary);
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	letter-spacing: normal;
}
h1, .h1{
	font-size: 2.70em;
}
h2, .h2{
	font-size: 2.4em;
}
h3, .h3{
	font-size: 2.2em;
}
h4, .h4{
	font-size: 1.7em;
}
h5, .h5{
	font-size: 1.35em;
	text-transform: uppercase;
	letter-spacing: .025em;
}
h6, .h6{
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: .025em;
}

.subtitle{
	text-transform: uppercase;
	font-size: 1.05em;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .025em;
	color: var(--theme-color-secondary);
}

/********************************************************************************
* General :: Elements
*********************************************************************************/
p{
	margin-bottom: 1.5em;
}

strong{
	font-weight: 700;
}

i.fal{
	font-weight: 300;
}
i.far, i.fab{
	font-weight: 400;
}

/* Elements :: Horizontal Rules
----------------------------------------------- */
hr, .wp-block-separator, .wp-block-separator.is-style-wide{
	border: none;
	height: 2px;
	background-color: rgba(37,65,58,.1);
	margin-top: 2rem;
	margin-bottom: 2rem;
	opacity: 1;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots){
	width: 100px !important;
}
hr.hr-styled, .wp-block-separator.is-style-wide{
	width: 100%;
	z-index: 0;
	position: relative;
	margin: 2rem 0;
}
hr.hr-styled:before, .wp-block-separator.is-style-wide:before{
	content: '';
	height: 4px;
	background-color: var(--theme-color-secondary);
	border: none;
	width: 65px;
	position: absolute;
	z-index: 1;
	top: -1px;
	left: 0;
}
.text-center hr.hr-styled:before, .wp-block-separator.is-style-wide:before{
	left: 50%;
	-webkit-transform: translate(-50%);
	-ms-transform: translate(-50%);
	transform: translate(-50%);
}
.text-right hr.hr-styled:before{
	right: 0;
	left: auto;
}
.wp-block-separator.is-style-dots::before {
	font-size: 24px;
	color: rgba(0,0,0,.15);
	letter-spacing: 1em;
	padding-left: 1em;
}
/* Elements :: Blockquotes
----------------------------------------------- */
blockquote, .wp-block-quote{
	border-radius: 0;
	display:block;
	background: var(--theme-color-light);
	padding: 1em 2em 1em 3.5em;
	margin: 0 0 1.5em;
	position: relative;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: normal;
	border-left: 12px solid var(--theme-color-primary);
}
blockquote::before, .wp-block-quote::before{
	content: "\201C";
	font-family: 'cysanregular';
	font-size: 2em;
	font-weight: normal;
	color: var(--theme-color-secondary);
	position: absolute;
	left: 10px;
	top:5px;
}
blockquote > :last-child, .wp-block-quote > :last-child{
	margin-bottom: 0;
}
.blockquote-footer, .wp-block-quote cite{
	font-family: 'Poppins', sans-serif;
	font-size: .9em;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--theme-color-white);
}

blockquote.has-fancy-style, .wp-block-quote.has-fancy-style{
	border-top: 3px solid var(--theme-color-primary);
	border-left: 3px solid var(--theme-color-primary);
	border-right: 3px solid var(--theme-color-primary);
	padding: 3rem;
	font-family: 'cysanregular';
	font-size: 2.75em;
	background: none;
	max-width: 70%;
}
blockquote.has-fancy-style em, .wp-block-quote.has-fancy-style em{
	color: var(--theme-color-secondary);
	font-style: normal;
}
blockquote.has-fancy-style::before, .wp-block-quote.has-fancy-style::before{
	position: absolute;
	left: -50px;
	top: 10px;
	font-size: 4em;
}
blockquote.has-fancy-style .blockquote-footer, .wp-block-quote.has-fancy-style cite{
	font-size: .4em;
	text-align: right;
	display: grid;
	grid-template-columns: 1fr auto 15px;
	grid-template-rows: 10px 0;
	grid-gap: 10px;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -14px;
	align-items: center;
	justify-content: center;
}
blockquote.has-fancy-style .blockquote-footer:after, blockquote.has-fancy-style .blockquote-footer:before {
	content: " ";
	display: block;
	border-bottom: 3px solid var(--theme-color-primary);
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large{
	margin: 0 0 1.5em;
	padding: 1em 2em 1em 3.5em;
	border-left: 12px solid var(--theme-color-primary);
}

.wp-block-pullquote{
	border-top: 4px solid var(--theme-color-light);
	border-bottom: 4px solid var(--theme-color-light);
	padding: 2em 0;
	color: var(--theme-color-mid);
	margin: 0 0 1.5em;
}
.wp-block-pullquote blockquote{
	background-color: transparent;
	margin: 0;
	padding: 0;
	border-left: none;
}
.wp-block-pullquote blockquote::before{
	display: none;
}
.wp-block-pullquote__citation, .wp-block-pullquote cite, .wp-block-pullquote footer{
	color: rgba(0, 0, 0, .5);
}

/* Elements :: Tables
----------------------------------------------- */
.table, .wp-block-table{
	margin-bottom: 1.5em;
}
.table td, .table th,
.wp-block-table td, .wp-block-table th{
	padding: .75rem;
	vertical-align: top;
	border: 2px solid var(--theme-color-light);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(2n+1){
	background-color: rgba(37,65,58,.1);
}
.wp-block-table figcaption, .wp-block-video figcaption {
    color: rgba(0, 0, 0, .5);
}

/* Elements :: Images
----------------------------------------------- */
.alignright{
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;	
}
.alignleft{
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;	
}
.aligncenter{
	float: none;
	margin: 0 auto 30px auto;
}
.alignfull{
	margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
	width: auto;
    max-width: 1000%;
}

.main .alignleft, .main .alignright, .main .aligncenter, .main .alignnone{
	max-width: 100%;
	height: auto;
}
.img-thumbnail, .is-style-styled-img figure{
	border: none;
	border-radius: .75rem;
	padding: 0;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19),0px 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.thumbnail > img{
	max-width: 100%;
	height: auto;
	display: block;
}
.thumbnail > .caption{
	padding: 10px 15px;
	font-size: 12px;
	font-style: italic;
	background-color: var(--theme-color-light);
}
.blocks-gallery-caption, .wp-block-image figcaption {
	color: var(--theme-color-primary);
	opacity: .6;
	font-weight: 600;
	font-style: italic;
	letter-spacing: normal;
}
/********************************************************************************
* General :: Lists
*********************************************************************************/

/* Lists :: Unordered
----------------------------------------------- */
ul.styled-list, ul.is-style-styled-list{
	list-style: none;
	margin: 0 0 1.5rem 1.5rem;
	padding: 0;
	text-align: left;
}
ul.styled-list li, ul.is-style-styled-list li{
    display: block;
	list-style: none outside none;
	padding: 0 0 1em 2.5rem;
	position: relative;
	line-height: normal;
}
ul.styled-list > li:last-child, ul.is-style-styled-list > li:last-child{
	padding-bottom: 0;
}
ul.styled-list li:before, ul.is-style-styled-list li:before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content:"\f138";
	color: var(--theme-color-secondary);
    display: block;
    font-size: 1.25em;
    position: absolute;
    top: 0;
    left: 0;
}
ul.styled-list li ul, ul.is-style-styled-list li ul{
    padding-left: 0;
}
ul.styled-list li ul li, ul.is-style-styled-list 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{
	content:"\f054";
	font-size: 1em;
	left: 0;
	top: .5em;
}

/* Lists :: Ordered
----------------------------------------------- */
ol.styled-list, ol.is-style-styled-list {
    list-style-type: none;
     
    margin: 0 0 1.5rem 1.5rem;
    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: 600;
	line-height: 1;
    text-align: center;
    color: var(--theme-color-secondary);
 
    content: counter(li-counter);
    counter-increment: li-counter;
}

/* Lists :: Multi-Column
----------------------------------------------- */
.two-column-list {
    -webkit-column-count: 2;
    -webkit-column-gap: 30px;
	-moz-column-count: 2;
    -moz-column-gap: 30px;
	-ms-column-count: 2;
    -ms-column-gap: 30px;
     column-count: 2;
     column-gap: 30px;
}
.three-column-list {
    -webkit-column-count: 3;
    -webkit-column-gap: 30px;
	-moz-column-count: 3;
    -moz-column-gap: 30px;
    -ms-column-count: 3;
    -ms-column-gap: 30px;
     column-count: 3;
     column-gap: 30px;
}
.two-column-list li, .three-column-list li, .two-column-list.styled-list li, .three-column-list.styled-list li{
	display: inline-block;
	width: 100%;
}
.two-column-list.styled-list li, .three-column-list.styled-list li{
	border: none;
}

/********************************************************************************
* General :: Forms
*********************************************************************************/
.form-control, .vfbp-form .vfb-form-control {
	padding: .75rem 1rem;
	background: var(--theme-color-white);
	border-color: rgba(37,65,58,.1);
	border-radius: 0;
	border-style: solid;
	border-width: 2px;
	box-shadow: none;
	height: auto;

	transition: all 0.36s ease 0s;
}
.form-control:focus, .vfbp-form .vfb-form-control:focus {
	border-color: var(--theme-color-tertiary);
	box-shadow: none;
}

.form-control.rounded{
	border-radius: 6em !important;
}

select.form-control:not([size]):not([multiple]){
	height: auto;
}

::-webkit-input-placeholder {
	color: #818d8a;
}
::-moz-placeholder {
	color: #818d8a;
}
:-ms-input-placeholder {
	color: #818d8a;
}
:-moz-placeholder {
	color: #818d8a;
}

.form-check-label{
	line-height: 1;
}

/* Forms :: Visual Form Builder Only
----------------------------------------------- */
.vfbp-form{
	margin-left: -15px;
	margin-right: -15px;
}
.vfbp-form .btn-primary{
	width: 100%;	
}

/********************************************************************************
* General :: Backgrounds/Colors
*********************************************************************************/
/* Backgrounds :: Depths
----------------------------------------------- */
.depth-0{
	box-shadow: none;
}
.depth-1{
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16),0px 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.depth-2{
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19),0px 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.depth-3{
	box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19),0px 12px 15px 0 rgba(0, 0, 0, 0.24);
}
.depth-4{
	box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21),0px 16px 28px 0 rgba(0, 0, 0, 0.22);
}
.depth-5{
	box-shadow: 0 40px 70px 0 rgba(0, 0, 0, 0.22),0px 27px 24px 0 rgba(0, 0, 0, 0.2);
}

/* Backgrounds :: Borders
----------------------------------------------- */
.border-top, .border-bottom, .border-left, .border-right, .border {
    border-color: rgba(37,65,58,.1) !important;
	border-width: 2px !important;
}
.border-none{
	border: none !important;
}

/* Backgrounds :: Primary
----------------------------------------------- */
.has-primary-color, .text-primary {
	color: var(--theme-color-primary) !important;
}
.section-primary, .has-primary-background-color {
	background-color: var(--theme-color-primary);
}
.wp-block-separator.has-background:not(.is-style-dots).has-primary-background-color{
	border-bottom: 2px solid var(--theme-color-primary);
}

/* Backgrounds :: Secondary
----------------------------------------------- */
.has-secondary-color, .text-secondary {
	color: var(--theme-color-secondary) !important;
}
.section-secondary, .has-secondary-background-color {
	background-color: var(--theme-color-secondary);
}
.section-secondary hr.hr-styled:before{
	background-color: var(--theme-color-white);
}
.wp-block-separator.has-background:not(.is-style-dots).has-secondary-background-color{
	border-bottom: 2px solid var(--theme-color-secondary);
}

/* Backgrounds :: Tertiary
----------------------------------------------- */
.has-tertiary-color, .text-tertiary {
	color: var(--theme-color-tertiary) !important;
}
.section-tertiary, .has-tertiary-background-color {
	background-color: var(--theme-color-tertiary);
}
.section-tertiary a:not(:hover):not(:focus), .has-tertiary-background-color a:not(:hover):not(:focus){
	color: var(--theme-color-white);
}
.wp-block-separator.has-background:not(.is-style-dots).has-tertiary-background-color{
	border-bottom: 2px solid var(--theme-color-tertiary);
}

/* Backgrounds :: Warning
----------------------------------------------- */
.has-warning-color, .text-warning {
	color: var(--theme-color-warning) !important;
}
.section-warning, .has-warning-background-color {
	background-color: var(--theme-color-warning);
}
.wp-block-separator.has-background:not(.is-style-dots).has-warning-background-color{
	border-bottom: 2px solid var(--theme-color-warning);
}

/* Backgrounds :: White
----------------------------------------------- */
.has-white-color, .text-white {
	color: var(--theme-color-white) !important;
}
.section-none, .section-white, .has-white-background-color {
	background-color: var(--theme-color-white);
}
.wp-block-separator.has-background:not(.is-style-dots).has-white-background-color{
	border-bottom: 2px solid var(--theme-color-white);
}

/* Backgrounds :: Light
----------------------------------------------- */
.has-light-color, .text-light {
	color: var(--theme-color-light) !important;
}
.section-light, .has-light-background-color {
	background-color: var(--theme-color-light);
}
.wp-block-separator.has-background:not(.is-style-dots).has-light-background-color{
	border-bottom: 2px solid var(--theme-color-light);
}

/* Backgrounds :: Mid
----------------------------------------------- */
.has-mid-color, .text-mid {
	color: var(--theme-color-mid) !important;
}
.section-mid, .has-mid-background-color {
	background-color: var(--theme-color-mid);
}
.wp-block-separator.has-background:not(.is-style-dots).has-mid-background-color{
	border-bottom: 2px solid var(--theme-color-mid);
}

/* Backgrounds :: Dark
----------------------------------------------- */
.has-dark-color, .text-dark {
	color: var(--theme-color-dark) !important;
}
.section-dark, .has-dark-background-color {
	background-color: var(--theme-color-dark);
}
.wp-block-separator.has-background:not(.is-style-dots).has-dark-background-color{
	border-bottom: 2px solid var(--theme-color-dark);
}

/* Backgrounds :: Black
----------------------------------------------- */
.has-black-color, .text-black {
	color: var(--theme-color-black) !important;
}
.section-black, .has-black-background-color {
	background-color: var(--theme-color-black);
}
.wp-block-separator.has-background:not(.is-style-dots).has-black-background-color{
	border-bottom: 2px solid var(--theme-color-black);
}

/* Backgrounds :: Common
----------------------------------------------- */
.section-primary, .has-primary-background-color,
.section-secondary, .has-secondary-background-color,
.section-tertiary, .has-tertiary-background-color,
.section-warning, .has-warning-background-color,
.section-mid, .has-mid-background-color,
.section-dark, .has-dark-background-color,
.section-black, .has-black-background-color{
	color: var(--theme-color-white);
}

.section-primary h1, .section-primary h2, .section-primary h3, .section-primary h4, .section-primary h5, .section-primary h6,
.section-primary .h1, .section-primary .h2, .section-primary .h3, .section-primary .h4, .section-primary .h5, .section-primary .h6,
.has-primary-background-color h1, .has-primary-background-color h2, .has-primary-background-color h3, .has-primary-background-color h4, .has-primary-background-color h5, .has-primary-background-color h6,
.has-primary-background-color .h1, .has-primary-background-color .h2, .has-primary-background-color .h3, .has-primary-background-color .h4, .has-primary-background-color .h5, .has-primary-background-color .h6,
.section-secondary h1, .section-secondary h2, .section-secondary h3, .section-secondary h4, .section-secondary h5, .section-primary h6,
.section-secondary .h1, .section-secondary .h2, .section-secondary .h3, .section-secondary .h4, .section-secondary .h5, .section-secondary .h6, .section-secondary .subtitle,
.has-secondary-background-color h1, .has-secondary-background-color h2, .has-secondary-background-color h3, .has-secondary-background-color h4, .has-secondary-background-color h5, .has-secondary-background-color h6,
.has-secondary-background-color .h1, .has-secondary-background-color .h2, .has-secondary-background-color .h3, .has-secondary-background-color .h4, .has-secondary-background-color .h5, .has-secondary-background-color .h6, .has-secondary-background-color .subtitle,
.section-tertiary h1, .section-tertiary h2, .section-tertiary h3, .section-tertiary h4, .section-tertiary h5, .section-tertiary h6,
.section-tertiary .h1, .section-tertiary .h2, .section-tertiary .h3, .section-tertiary .h4, .section-tertiary .h5, .section-tertiary .h6, .section-tertiary .subtitle,
.has-tertiary-background-color h1, .has-tertiary-background-color h2, .has-tertiary-background-color h3, .has-tertiary-background-color h4, .has-tertiary-background-color h5, .has-tertiary-background-color h6,
.has-tertiary-background-color .h1, .has-tertiary-background-color .h2, .has-tertiary-background-color .h3, .has-tertiary-background-color .h4, .has-tertiary-background-color .h5, .has-tertiary-background-color .h6, .has-tertiary-background-color .subtitle,
.section-warning h1, .section-warning h2, .section-warning h3, .section-warning h4, .section-warning h5, .section-warning h6,
.section-warning .h1, .section-warning .h2, .section-warning .h3, .section-warning .h4, .section-warning .h5, .section-warning .h6, .section-warning .subtitle,
.has-warning-background-color h1, .has-warning-background-color h2, .has-warning-background-color h3, .has-warning-background-color h4, .has-warning-background-color h5, .has-warning-background-color h6,
.has-warning-background-color .h1, .has-warning-background-color .h2, .has-warning-background-color .h3, .has-warning-background-color .h4, .has-warning-background-color .h5, .has-warning-background-color .h6, .has-warning-background-color .subtitle,
.section-mid h1, .section-mid h2, .section-mid h3, .section-mid h4, .section-mid h5, .section-mid h6,
.section-mid .h1, .section-mid .h2, .section-mid .h3, .section-mid .h4, .section-mid .h5, .section-mid .h6, .section-mid .subtitle,
.has-mid-background-color h1, .has-mid-background-color h2, .has-mid-background-color h3, .has-mid-background-color h4, .has-mid-background-color h5, .has-mid-background-color h6,
.has-mid-background-color .h1, .has-mid-background-color .h2, .has-mid-background-color .h3, .has-mid-background-color .h4, .has-mid-background-color .h5, .has-mid-background-color .h6, .has-mid-background-color .subtitle,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6,
.section-dark .h1, .section-dark .h2, .section-dark .h3, .section-dark .h4, .section-dark .h5, .section-dark .h6, .section-dark .subtitle,
.has-dark-background-color h1, .has-dark-background-color h2, .has-dark-background-color h3, .has-dark-background-color h4, .has-dark-background-color h5, .has-dark-background-color h6,
.has-dark-background-color .h1, .has-dark-background-color .h2, .has-dark-background-color .h3, .has-dark-background-color .h4, .has-dark-background-color .h5, .has-dark-background-color .h6, .has-dark-background-color .subtitle,
.section-black h1, .section-black h2, .section-black h3, .section-black h4, .section-black h5, .section-black h6,
.section-black .h1, .section-black .h2, .section-black .h3, .section-black .h4, .section-black .h5, .section-black .h6,
.has-black-background-color h1, .has-black-background-color h2, .has-black-background-color h3, .has-black-background-color h4, .has-black-background-color h5, .has-black-background-color h6,
.has-black-background-color .h1, .has-black-background-color .h2, .has-black-background-color .h3, .has-black-background-color .h4, .has-black-background-color .h5, .has-black-background-color .h6{
	color: var(--theme-color-white);
}

.section-primary .border-top, .section-primary .border-bottom, .section-primary .border-left, .section-primary .border-right, .section-primary .border,
.has-primary-background-color .border-top, .has-primary-background-color .border-bottom, .has-primary-background-color .border-left, .has-primary-background-color .border-right, .has-primary-background-color .border,
.section-secondary .border-top, .section-secondary .border-bottom, .section-secondary .border-left, .section-secondary .border-right, .section-secondary .border,
.has-secondary-background-color .border-top, .has-secondary-background-color .border-bottom, .has-secondary-background-color .border-left, .has-secondary-background-color .border-right, .has-secondary-background-color .border,
.section-tertiary .border-top, .section-tertiary .border-bottom, .section-tertiary .border-left, .section-tertiary .border-right, .section-tertiary .border,
.has-tertiary-background-color .border-top, .has-tertiary-background-color .border-bottom, .has-tertiary-background-color .border-left, .has-tertiary-background-color .border-right, .has-tertiary-background-color .border,
.section-warning .border-top, .section-warning .border-bottom, .section-warning .border-left, .section-warning .border-right, .section-warning .border,
.has-warning-background-color .border-top, .has-warning-background-color .border-bottom, .has-warning-background-color .border-left, .has-warning-background-color .border-right, .has-warning-background-color .border,
.section-dark .border-top, .section-dark .border-bottom, .section-dark .border-left, .section-dark .border-right, .section-dark .border,
.has-dark-background-color .border-top, .has-dark-background-color .border-bottom, .has-dark-background-color .border-left, .has-dark-background-color .border-right, .has-dark-background-color .border,
.section-black .border-top, .section-black .border-bottom, .section-black .border-left, .section-black .border-right, .section-black .border,
.has-black-background-color .border-top, .has-black-background-color .border-bottom, .has-black-background-color .border-left, .has-black-background-color .border-right, .has-black-background-color .border{
    border-color: rgba(255,255,255,.1) !important;
}

.section-primary ul.styled-list li:before, .section-primary ul.is-style-styled-list li::before, .has-primary-background-color ul.styled-list li:before, .has-primary-background-color ul.is-style-styled-list li::before,
.section-secondary ul.styled-list li:before, .section-secondary ul.is-style-styled-list li::before, .has-secondary-background-color ul.styled-list li:before, .has-secondary-background-color ul.is-style-styled-list li::before,
.section-tertiary ul.styled-list li:before, .section-tertiary ul.is-style-styled-list li::before, .has-tertiary-background-color ul.styled-list li:before, .has-tertiary-background-color ul.is-style-styled-list li::before,
.section-warning ul.styled-list li:before, .section-warning ul.is-style-styled-list li::before, .has-warning-background-color ul.styled-list li:before, .has-warning-background-color ul.is-style-styled-list li::before,
.section-mid ul.styled-list li:before, .section-mid ul.is-style-styled-list li::before, .has-mid-background-color ul.styled-list li:before, .has-mid-background-color ul.is-style-styled-list li::before{
	color: var(--theme-color-white);
}

.section-primary blockquote.has-fancy-style, .section-primary .wp-block-quote.has-fancy-style, .has-primary-background-color blockquote.has-fancy-style, .has-primary-background-color .wp-block-quote.has-fancy-style,
.section-secondary blockquote.has-fancy-style, .section-secondary .wp-block-quote.has-fancy-style, .has-secondary-background-color blockquote.has-fancy-style, .has-secondary-background-color .wp-block-quote.has-fancy-style,
.section-tertiary blockquote.has-fancy-style, .section-tertiary .wp-block-quote.has-fancy-style, .has-tertiary-background-color blockquote.has-fancy-style, .has-tertiary-background-color .wp-block-quote.has-fancy-style,
.section-warning blockquote.has-fancy-style, .section-warning .wp-block-quote.has-fancy-style, .has-warning-background-color blockquote.has-fancy-style, .has-warning-background-color .wp-block-quote.has-fancy-style,
.section-mid blockquote.has-fancy-style, .section-mid .wp-block-quote.has-fancy-style, .has-mid-background-color blockquote.has-fancy-style, .has-mid-background-color .wp-block-quote.has-fancy-style,
.section-dark blockquote.has-fancy-style, .section-dark .wp-block-quote.has-fancy-style, .has-dark-background-color blockquote.has-fancy-style, .has-dark-background-color .wp-block-quote.has-fancy-style,
.section-black blockquote.has-fancy-style, .section-black .wp-block-quote.has-fancy-style, .has-black-background-color blockquote.has-fancy-style, .has-black-background-color .wp-block-quote.has-fancy-style{
	border-top: 3px solid var(--theme-color-white);
	border-left: 3px solid var(--theme-color-white);
	border-right: 3px solid var(--theme-color-white);
}
.section-primary blockquote.has-fancy-style .blockquote-footer:after, .section-primary blockquote.has-fancy-style .blockquote-footer:before, 
.section-secondary blockquote.has-fancy-style .blockquote-footer:after, .section-secondary blockquote.has-fancy-style .blockquote-footer:before, 
.section-tertiary blockquote.has-fancy-style .blockquote-footer:after, .section-tertiary blockquote.has-fancy-style .blockquote-footer:before, 
.section-warning blockquote.has-fancy-style .blockquote-footer:after, .section-warning blockquote.has-fancy-style .blockquote-footer:before, 
.section-mid blockquote.has-fancy-style .blockquote-footer:after, .section-mid blockquote.has-fancy-style .blockquote-footer:before, 
.section-dark blockquote.has-fancy-style .blockquote-footer:after, .section-dark blockquote.has-fancy-style .blockquote-footer:before, 
.section-black blockquote.has-fancy-style .blockquote-footer:after, .section-black blockquote.has-fancy-style .blockquote-footer:before {
	border-bottom: 3px solid var(--theme-color-white);
}

/* Backgrounds :: Images
----------------------------------------------- */
.bg-img{
	background-image: url('../img/bg-img.png');
	background-size: cover;
	background-repeat: no-repeat;
}
.bg-topo{
	background-image: url('../img/bg-topo.png');
}

/********************************************************************************
* General :: Cards
*********************************************************************************/
/* Card :: Default
----------------------------------------------- */
.card {
	border: none;
	font-size: 16px;
	color: var(--theme-color-mid);
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19),0px 8px 17px 0 rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border-radius: .75rem;
	
	transition: all 0.3s ease-in-out;
}

.card-img, .card-img-top, .card-img-bottom{
	position: relative;
	background-color: var(--theme-color-black);
	
	transition: all 0.3s ease-in-out;
}
.card-img{
	border-radius: calc(.75rem - 1px);
}
.card-img-left {
	height: 100%;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
.card-img-left img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.card-img-overlay, .card-body{
	padding: 2rem;
}

.card-subtitle{
	margin-top: 0;
	font-size: .9em;
	font-weight: 600;
	letter-spacing: normal;
}

.card-body > :last-child{
	margin-bottom: 0;
}

.card-footer {
    background-color: transparent;
	border: none;
	padding-left: 2rem;
	padding-right: 2rem;
}

.card-meta .list-inline-item:not(:last-child):after {
    content: '\2022';
	margin: 0 0 0 10px;
	font-size: 1.25em;
	line-height: 0;
	color: rgba(37,65,58,.2);
}

.card-links .card-link{
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .2em;
	font-weight: 700;
	border-left: 2px solid rgba(34,34,34,.1);
	margin-left: 10px;
	padding-left: 10px;
}
.card-links .card-link:first-child{
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}

/* Hover */
.card:hover{
	border-color: var(--theme-color-hover);
}

/* Card :: Capsule
----------------------------------------------- */
.card-capsule .card-img-overlay{
	top: auto;
	z-index: 1;
}
.card-capsule:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: 0;
	background: -moz-linear-gradient(top,  rgba(33,46,43,0.01) 0%, rgba(33,46,43,0.95) 82%, rgba(33,46,43,0.95) 100%);
	background: -webkit-linear-gradient(top,  rgba(33,46,43,0.01) 0%,rgba(33,46,43,0.95) 82%,rgba(33,46,43,0.95) 100%);
	background: linear-gradient(to bottom,  rgba(33,46,43,0.01) 0%,rgba(33,46,43,0.95) 82%,rgba(33,46,43,0.95) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03212e2b', endColorstr='#f2212e2b',GradientType=0 );
	
	transition: all 0.2s ease-in-out;
}
.card-capsule .card-img{
	opacity: .8;
}

/* Hover */
.card-capsule:hover{
	box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19),0px 12px 15px 0 rgba(0, 0, 0, 0.24);
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}
.card-capsule:hover:after{
	height: 100%;
}
.card-capsule:hover .card-img{
	opacity: .5;
}


/* Card :: Inverted
----------------------------------------------- */
.card-inverse {
	background-color: var(--theme-color-dark);
	color: var(--theme-color-light);
}
.card-inverse h1, .card-inverse h2, .card-inverse h3, .card-inverse h4, .card-inverse h5, .card-inverse h6,
.card-inverse .h1, .card-inverse .h2, .card-inverse .h3, .card-inverse .h4, .card-inverse .h5, .card-inverse .h6, .card-inverse .subtitle{
	color: var(--theme-color-light);	
}

/* Card :: Block
----------------------------------------------- */
.wp-block-column .card-block{
	height: 100%;	
}
.card-icon{
	font-size: 48px;
	position: relative;
	line-height: 1;
	color: var(--theme-color-primary);
}

/* Card :: Event
----------------------------------------------- */
.card-event .card-img{
	position: relative;
}
.card-event .card-img .card-date{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgba(6,48,87,.9);
	border-bottom-right-radius: .75rem;
}

/* Card :: News & Staff
----------------------------------------------- */
.card-news, .card-staff, .card-project{
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
}
.card-staff .card-img, .card-project .card-img{
	overflow: hidden;
	background-color: var(--theme-color-hover);
	
	transition: all 0.3s ease 0s;
}
.card-staff:hover .card-img img, .card-project:hover .card-img img{
	opacity: .5;
	
	transition: all 0.3s ease 0s;
}
/********************************************************************************
* Site Structure
*********************************************************************************/
.sticky-top{
	top: 1rem;
}
#site-sidebar{
	min-width: 330px;
}
#site-sidebar .site-sidebar-content.sticky-top{
	height: 100vh;
	top: 0;
}
#site-sidebar.sidebar-bg-custom-image{
	background-size: cover;
	background-position: center;
}
#site-main{	
	width: 0;  /*Fix: Replaces overflow:hidden. Sticky CSS will not work with an ancestor that has an overflow of hidden. */
}
/*.site-main-content{
	overflow: hidden; May need, removing due to it breaking the sticky sidebar
}*/
.site-main-content > .section-content-padded{
	padding-left: 2rem;
	padding-right: 2rem;
}
.site-main-content > .section-content-padded .container-breakout-right > div{
	margin-right: -2rem;
}

/********************************************************************************
* Header
*********************************************************************************/
header.header-wrapper{
	z-index: 1001;
  	box-shadow: none;
	background-image: url('../img/bg-header.jpg');
	background-size: 100% auto;
	background-position: bottom center;
	background-repeat: no-repeat;
	height: 100%;
}

.section-header-center{
	flex: 1 1 auto;
    overflow-y: auto;
	overflow-x: hidden;
    height: 0;
}

/* Header :: Announcement
----------------------------------------------- */
.section-announcement{
	display: none;
	border-radius: 0;
	line-height: 1.2;
}
.section-announcement button.close{
	position: absolute;
	top: 50%;
	right: 15px;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Header :: Search
----------------------------------------------- */
.form-search .btn{
	position: absolute;
	right: 0;
	top: 50%;
	padding: 0 1rem;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Header :: Social
----------------------------------------------- */
.nav-social .nav-item{
	margin: 0 .2em;
}
.nav-social .nav-link{
	font-size: 18px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	padding: 0 5px;
}
.nav-social .nav-social-item-facebook-f .nav-link:not(:hover){
	background-color: #3b5998;
}
.nav-social .nav-social-item-twitter .nav-link:not(:hover){
	background-color: #00acee;
}
.nav-social .nav-social-item-instagram .nav-link:not(:hover){
	background: rgb(253,214,117);
	background: -moz-linear-gradient(45deg,  rgba(253,214,117,1) 0%, rgba(190,68,135,1) 39%, rgba(82,96,210,1) 100%);
	background: -webkit-linear-gradient(45deg,  rgba(253,214,117,1) 0%,rgba(190,68,135,1) 39%,rgba(82,96,210,1) 100%);
	background: linear-gradient(45deg,  rgba(253,214,117,1) 0%,rgba(190,68,135,1) 39%,rgba(82,96,210,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdd675', endColorstr='#5260d2',GradientType=1 );
}
.nav-social .nav-social-item-pinterest .nav-link:not(:hover){
	background-color: #E60023;
}
.nav-social .nav-social-item-youtube .nav-link:not(:hover){
	background-color: #ff0000;
}
.nav-social .nav-social-item-vimeo .nav-link:not(:hover){
	background-color: #01B8EC;
}
.nav-social .nav-social-item-linkedin .nav-link:not(:hover){
	background-color: #2867b2;
}

/********************************************************************************
* Header :: Primary Navigation
*********************************************************************************/
/* Primary Navigation :: First Level
----------------------------------------------- */
.navbar-primary .nav .nav-item{
	max-width: 100%;
}
.navbar-primary .nav .nav-link {
	background-color: transparent;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.05em;
	color: var(--theme-color-primary);
	letter-spacing: .025em;
	padding: 10px 0;
}
.navbar-primary .nav .nav-link:focus, .navbar-primary .nav .nav-link:hover,
.navbar-primary .nav .nav-link.show, .navbar-primary .nav .show > .nav-link{
	color: var(--theme-color-hover);
	background-color: transparent;
}
.navbar-primary .nav .active > .nav-link, .navbar-primary .nav .nav-link.active{
	color: var(--theme-color-active);
	background-color: transparent;
}

/* Primary Navigation :: 2nd Level
----------------------------------------------- */
.navbar-primary .nav li .dropdown-menu{
	border-radius: 0;
	text-align: left;
	border: none;
	background-color: var(--theme-color-primary);
	position: relative;
    width: 100%;
    margin: 0;
    box-shadow: none;
	max-height: 0;
	min-width: 0;
	
	display: block;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	padding: 0;
}
.navbar-primary .nav li .dropdown-menu.show {
	top: 0;
	max-height: 280px;
	visibility: visible;
	padding: 10px 0;
}
.navbar-primary .nav li .dropdown-menu li a{
	color: var(--theme-color-white);
	font-size: .9em;
	line-height: 1;
	padding: 10px 20px;
	letter-spacing: .05em;
	white-space: normal;
}
.navbar-primary .nav li .dropdown-menu li a:hover, .navbar-primary .nav li .dropdown-menu li a:focus{
	background-color: transparent;
	color: var(--theme-color-hover);
}
.navbar-primary .nav li .dropdown-menu .active a, .navbar-primary .nav li .dropdown-menu .active a:hover, .navbar-primary .nav li .dropdown-menu .active a:focus{
	color: var(--theme-color-secondary);
	background-color: transparent;
}

/* Primary Navigation :: Scrollbars
----------------------------------------------- */
.os-theme-thin-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle::before, .os-theme-thin-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle::before{
	background-color: var(--theme-color-secondary);
}

/* Primary Navigation :: Mobile
----------------------------------------------- */
/* Mobile Navigation*/
.toggle-wrapper{
	color: var(--theme-color-dark);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1;
	letter-spacing: .1em;
}
.section-header-top .navbar-toggler{
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: transparent;
	border: 0 solid var(--theme-color-primary);
	border-radius: 0;
	padding: .5rem 0 .5rem .75rem;
	z-index: 1;

	transition: all .2s ease-in;
}
.section-header-top .navbar-toggler:hover, .section-header-top .navbar-toggler:focus{
	background-color: transparent;
}
.section-header-top .navbar-toggler span {
	display: block;
	background-color: var(--theme-color-primary);
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	position: relative;
	left: 0;
	opacity: 1;
}
.section-header-top .navbar-toggler:hover span, .section-header-top .navbar-toggler:focus span {
	background-color: var(--theme-color-secondary);
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
   transition: transform .35s ease-in-out;
}

#site-wrapper.toggled .navbar-toggler span:nth-child(1) {
    position: absolute;
    left: 12px;
    top: 12px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0.9;
}

#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;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    opacity: 0.9;
}

/********************************************************************************
* 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;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.section-hero-swiper .swiper-slide::after, .section-page-header.hero-bg-custom::before, .section-page-header.hero-bg-custom::after{
	content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
	width: 100%;
    z-index: 1;
	transition: all 0.2s ease-in-out;
}

/* Hero :: Slider
----------------------------------------------- */
.section-hero-swiper{
	height: 100vh;
}
.section-hero-swiper .swiper-slide::after{
	background: -moz-linear-gradient(top,  rgba(33,46,43,0) 0%, rgba(33,46,43,0.95) 84%, rgba(33,46,43,0.95) 100%);
	background: -webkit-linear-gradient(top,  rgba(33,46,43,0) 0%,rgba(33,46,43,0.95) 84%,rgba(33,46,43,0.95) 100%);
	background: linear-gradient(to bottom,  rgba(33,46,43,0) 0%,rgba(33,46,43,0.95) 84%,rgba(33,46,43,0.95) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212e2b', endColorstr='#f2212e2b',GradientType=0 );
}
.section-hero-swiper .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section-hero-swiper .section-hero-content-container{
	top: 0;
	height: 100%;
}
.section-hero-swiper .section-hero-content{
	bottom: 0;
	font-size: 1.5em;
	max-width: 800px;

	border: none;
	margin: 0;
	z-index: 2;
	position: absolute;
}

.swiper-home{
	position: relative;
	flex: 1 1 auto;
	overflow: hidden;
}
.swiper-home .swiper-button-prev, .swiper-home .swiper-button-next{
	background-color: var(--theme-color-white);
	font-size: 30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	top: 50%;
	margin-top: -40px;
}
.swiper-home .swiper-button-prev, .swiper-home .swiper-container-rtl .swiper-button-next{
	left: -40px;
	
	text-align: right;
	justify-content: end;
	padding-right: 20px;
}
.swiper-home .swiper-button-next, .swiper-home .swiper-container-rtl .swiper-button-prev{
	right: -40px;
	text-align: left;
	justify-content: start;
	padding-left: 20px;
}
.swiper-home .swiper-button-prev:focus, .swiper-home .swiper-container-rtl .swiper-button-next:focus, .swiper-home .swiper-button-next:focus, .swiper-home .swiper-container-rtl .swiper-button-prev:focus{
	outline: none;
}

.section-hero-swiper .section-actions{
	flex: 0 1 auto;
}

/* Hero :: Page Header
----------------------------------------------- */
.section-page-header{
	background-attachment: local;
	background-position: center bottom;
	height: 600px;
}
.section-page-header.hero-bg-custom{
	background-size: cover;
	background-repeat: no-repeat;
}
.section-page-header.hero-bg-custom::before {
	background-color: transparent;
    background-color: rgba(33,46,43, .2);
}
.section-page-header.hero-bg-custom::after{
	background: -moz-linear-gradient(top,  rgba(33,46,43,0) 0%, rgba(33,46,43,0.95) 84%, rgba(33,46,43,0.95) 100%);
	background: -webkit-linear-gradient(top,  rgba(33,46,43,0) 0%,rgba(33,46,43,0.95) 84%,rgba(33,46,43,0.95) 100%);
	background: linear-gradient(to bottom,  rgba(33,46,43,0) 0%,rgba(33,46,43,0.95) 84%,rgba(33,46,43,0.95) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212e2b', endColorstr='#f2212e2b',GradientType=0 );
}
.section-page-header .section-hero-content{
	font-size: 24px;
}
.section-page-header h1{
	line-height: 1;
}

/* Hero :: Breadcrumbs
----------------------------------------------- */
.section-breadcrumbs{
	font-size: .6em;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 600;
}
.section-breadcrumbs span{
	padding: 0 8px;
}
.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: 5rem 0;
}
.section-content-padded.section-content-padded-extra{
	padding-top: 10rem;
	padding-bottom: 10rem;
}

.section-content > :last-child, .main > :last-child{
	margin-bottom: 0;
}
.section-heading {
	margin-top: 0;
}

/********************************************************************************
* Sidebar
*********************************************************************************/
.sidebar{
    padding-left: 30px;
}
.sidebar .widget{
	margin-bottom: 1.5rem;
}
.sidebar > .widget:last-child{
	margin-bottom: 0;
}
.sidebar .widget h3{
	margin-top: 0;
}
.sidebar .widget .widget-content{
	padding: 2rem;
	background-color: var(--theme-color-light);
	font-size: .9em;
	border-radius: .75rem;
}

/********************************************************************************
* Sidebar :: Navigation
*********************************************************************************/
.sidebar ul.nav > li a{
	line-height: 1;
	padding: 8px 25px 8px 0;
	display: block;
	position: relative;
	font-weight: 600;
	color: var(--theme-color-mid);
}
.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:"\f054";
	left: -1em;
	opacity: 0;
	overflow: hidden;
	position: absolute;

	transition: all 0.3s;
}
.sidebar ul.nav > li a:hover, .sidebar ul.nav > li a:focus{
	padding-left: 1em;
	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: .8em;
	color: #d3d4d6;
}
.sidebar ul.nav > li .children {
	list-style: none;
	padding: 0 15px 10px 15px;
}
.sidebar ul.nav > li .children a{
	border-left: 2px solid rgba(0,0,0,.1);
	padding-left: 1.25em;
	font-size: .8em;
}

/* 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(--theme-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;
}

/********************************************************************************
* Sidebar :: Archives
*********************************************************************************/
.widget_archive ul{
	margin: 0;
	padding: 2rem;
	background-color: var(--theme-color-light);
	font-size: .9em;
	border-radius: .75rem;
}
.widget_archive ul .year {
	display: block;	
	padding: 12px 25px 12px 0;
	border-bottom: 2px dotted #d3d4d6;
}
.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: 14px;
}
.widget_archive .year-toggle {
	background-color: transparent;
    color: var(--theme-color-secondary);
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
	font-size: 16px;
	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;
	font-weight: 700;
	color: var(--theme-color-mid);
	font-size: 11px;
}
.widget_archive li a{
	font-size: 14px;
	color: var(--theme-color-secondary);
    padding: 8px 0 8px 25px;
    white-space: normal;
	font-weight: normal;
}
.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 :: Image Right / Left
*********************************************************************************/
.section-child-image{
	padding: 0;
}
.section-child-image .child-image{
	min-height: 400px;
	overflow: hidden;
	object-fit: cover;
}

/********************************************************************************
* Section :: Child :: Video Right / Left
*********************************************************************************/
.child-video{
	position: relative;
	background-color: var(--theme-color-secondary);
  	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16),0px 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.child-video iframe{
	opacity: .2;

	transition: all .2s ease-in;
}
.child-video-overlay{
	position: absolute;
	width: 100%;
	text-align: center;
	color: var(--theme-color-white);
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	transition: all .2s ease-in;
}
.child-video-overlay i{
	font-size: 24px;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	line-height: 54px;
	border: 3px solid var(--theme-color-white);
	padding-left: 5px;
	margin: 0 auto 10px auto;

	transition: all .2s ease-in;
}
.child-video:hover iframe{
	opacity: .1;
}
.child-video:hover .child-video-overlay{
	color: var(--theme-color-hover);
}
.child-video:hover .child-video-overlay i{
	border-color: var(--theme-color-hover);
}

/********************************************************************************
* Section :: Child :: Featured Image
*********************************************************************************/
/* Featured Image :: Parallax
----------------------------------------------- */
.section-featured-image {
	background-color: var(--theme-color-dark);
	height: 400px;
	overflow: hidden;
	position: relative;
	background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	padding-bottom: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/* Featured Image :: Background
----------------------------------------------- */
.section-has-background-image{
	position: relative;
}
.section-background-image{
	opacity: .25;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}
.section-background-image img{
	width: 100%;

	position: relative;
	top: 0;
	z-index: 0;
}

/********************************************************************************
* Section :: Child :: News
*********************************************************************************/
.swiper-news{
	position: relative;
}
.swiper-news .slider-nav-arrow{
	font-size: 1em;
}
.swiper-news .swiper-button-next, .swiper-news .swiper-button-prev{
	font-size: 3em;
	padding: 0 !important;
	width: auto;
	height: auto;
	margin-top: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.swiper-news .swiper-button-next, .swiper-news .swiper-container-rtl .swiper-button-prev{
	left: calc(100% + 15px);
	right: auto;
}
.swiper-news .swiper-button-prev, .swiper-news .swiper-container-rtl .swiper-button-next{
	right: calc(100% + 15px);
	left: auto;
}
.swiper-button-next::after, .swiper-button-prev::after{
	content: '';
	display: none;
}

/********************************************************************************
* Section :: Child :: Events
*********************************************************************************/
.section-events_featured .quote-container{
	position: relative;
	z-index: 2;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.section-events_featured .section-has-background-image{
	position: relative;
}
.section-events_featured .section-background-image{
	opacity: .9;
}
.section-events_featured .section-background-image img{
	width: 100%;
	height: 125%;
	object-fit: cover;
	top: -25%;
}

/********************************************************************************
* Section :: Child :: Instagram
*********************************************************************************/
.section-child-instagram_feed{
	position: relative;
}
.swiper-instagram{
	position: relative;
}
.swiper-instagram #sb_instagram .sbi_photo_wrap {
	border-radius: .75rem;
	overflow: hidden;
	background-color: var(--theme-color-hover);
}
.swiper-instagram #sb_instagram .sbi_photo_wrap .sbi_photo{
	transition: all .3s ease-in;
}
.swiper-instagram #sb_instagram .sbi_photo_wrap:hover .sbi_photo{
	opacity: .25 !important;
}

.swiper-instagram .swiper-button-next, .swiper-instagram .swiper-container-rtl .swiper-button-prev{
	right: -40px;
	margin-top: -40px;
	background-color: var(--theme-color-white);
	font-size: 30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	text-align: left;
	justify-content: start;
	padding-left: 20px;
}
.swiper-instagram .swiper-button-next:focus, .swiper-instagram .swiper-container-rtl .swiper-button-prev:focus{
	outline: none;
}

.section-instagram-feed-label{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 0 15px;
	text-align: center;
	display: flex;
}
.instagram-feed-label{
	writing-mode: tb-rl;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	white-space: nowrap;
	display: block;
	color: var(--theme-color-dark);
	opacity: .3;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 600;
}

/********************************************************************************
* Template :: Programs & Facilities
*********************************************************************************/
.section-gallery .filters .form-check{
	line-height: normal;
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.section-gallery .grid-item,
.section-gallery .grid-sizer {
  width: 33.33%;
}
.section-gallery .grid{
	margin-left: -15px;
	margin-right: -15px;
}
.section-gallery .card{
	margin: 30px 15px 0 15px;
}

/********************************************************************************
* Template :: Parks
*********************************************************************************/
/* Parks :: Park Finder
----------------------------------------------- */
#finderFilter .col-form-label{
	font-weight: 600;
}

#finderFilter .multiselect-container .multiselect-all:focus, #finderFilter .multiselect-container .multiselect-all:hover, #finderFilter .multiselect-container .multiselect-group:focus, #finderFilter .multiselect-container .multiselect-group:hover, #finderFilter .multiselect-container .multiselect-option:focus, #finderFilter .multiselect-container .multiselect-option:hover{
	background-color: rgba(37,65,58,.1) !important;
}

/* Types Control */
#locationType-checkbox-list-container .multiselect-container.checkbox-list {
	position: static;
}
#locationType-checkbox-list-container .multiselect-container .multiselect-option{
	display: inline-block;
}

/* Features Control */
.form-group-features .multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback), .form-group-features .multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active, .form-group-features .multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback), .form-group-features .multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active, .form-group-features .multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback), .form-group-features .multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active {
	background-color: var(--theme-color-white);
	color: var(--theme-color-mid);
}
.form-group-features .btn-group{
	width: 100%;
}
.custom-select {
	border-color: rgba(37,65,58,.1);
	border-radius: 0;
	border-style: solid;
	border-width: 2px;
	box-shadow: none;
	text-align: left !important;
	padding: .75rem 1rem;
	height: auto;

	transition: all 0.36s ease 0s;
}
.custom-select:focus {
	border-color: var(--theme-color-tertiary);
	box-shadow: none;
}

/* Results */
#mapResultsList .btn-maplink{
	display: block;
	position: relative;
	font-weight: 600;
	color: var(--theme-color-mid);
	text-transform: none;
	letter-spacing: normal;
}

/* Parks :: Single
----------------------------------------------- */
.widget-posts-list .widget-title{
	position: relative;
}
.widget-posts-list .widget-title i{
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.widget-posts-list .widget-title .collapsed .fa-minus-circle::before{
	content: "\f055";
}
.widget-posts-list .widget-content .nav-wrapper{
	overflow: hidden;

	max-height: 280px;
	visibility: visible;
}

/********************************************************************************
* Template :: Park Finder
*********************************************************************************/
.section-park_finder-map{
	height: 100vh;
	width: 100%;
}
.section-park_finder-map iframe{
	height: 100%;
}
/********************************************************************************
* Template :: Single Location
*********************************************************************************/
#mapCanvasSingle { 
	min-height: 400px;
} 

/********************************************************************************
* Template :: Staff & Projects
*********************************************************************************/
.modal-staff, .modal-project{
	font-size: 14px;
}
.modal-staff .modal-header, .modal-project .modal-header{
	border-radius: 0;
}
.modal-staff .modal-header .close, .modal-project .modal-header .close{
	color: var(--theme-color-white);
}
.modal-staff .modal-content, .modal-project .modal-content{
	border-radius: .75rem;
	overflow: hidden;
	background: none;
	border: none;
}

.nav-tabs.nav-pills .nav-link{
	text-transform: uppercase;
	font-weight: 700;
	border-radius: .5rem;
	font-size: .9em;
	line-height: 1;
	letter-spacing: .1em;
	padding: .75rem 1rem;
	border: none;
}
.nav-tabs.nav-pills .nav-link.active, .nav-tabs.nav-pills .show > .nav-link{
	background-color: var(--theme-color-secondary);
}

/********************************************************************************
* Footer
*********************************************************************************/
footer.footer-wrapper{
	font-size: .75em;
}
footer.footer-wrapper a:not(:hover):not(.btn){
	color: var(--theme-color-white);
}

.footer-logo img{
	max-height: 75px;
}

.footer-contact .list-inline-item:not(:last-child){
	margin-right: 3rem;
}
.footer-contact i{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--theme-color-secondary);
	color: var(--theme-color-secondary);
	line-height: 35px;
	font-size: 19px;
	margin-right: .5rem;
	text-align: center;
}

.copyright{
	letter-spacing: .05em;
	font-size: .9em;
	text-transform: uppercase;
	font-weight: 600;
}

/********************************************************************************
* Block :: General Default Wordpress Block Adjustments
*********************************************************************************/
.wp-block-buttons .wp-block-button, .wp-block-image, .wp-block-cover, .wp-block-cover-image{
	margin-bottom: 1.5rem;
}

p.has-drop-cap:not(:focus):first-letter {
	color: var(--theme-color-primary);
}

.wp-block-image img {
    height: 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;
}
.wp-block-image .aligncenter img{
	margin: 0 auto;
}

.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;
}

.wp-block-column > :last-child{
	margin-bottom: 0;
}
.wp-block-column.has-background{
	padding: 1.5em;
}
.wp-block-column.has-background > :last-child{
	margin-bottom: 0;
}
.wp-block-group.has-background, .wp-block-columns.has-background {
    padding-top: 3rem;
	padding-bottom: 3rem;
}

/* 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 :: File
*********************************************************************************/
.wp-block-file .wp-block-file__button, .wp-block-file a.wp-block-file__button:visited{
	color: var(--theme-color-secondary);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .05em;
	border: 3px solid var(--theme-color-secondary);
	border-radius: 0;
	background-color: transparent;
	padding: .35em .75em;
}
.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(--theme-color-white);
}

/********************************************************************************
* Block :: Wordpress Gallery
*********************************************************************************/
.blocks-gallery-grid.is-cropped .blocks-gallery-image figure, .wp-block-gallery.is-cropped .blocks-gallery-item figure{
	background-color: var(--theme-color-hover);
}
.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{
	transition: all .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 {
	opacity: .25;
}
.is-style-fixed-height .blocks-gallery-grid .blocks-gallery-image, .is-style-fixed-height .blocks-gallery-grid .blocks-gallery-item, .is-style-fixed-height.wp-block-gallery .blocks-gallery-image, .is-style-fixed-height.wp-block-gallery .blocks-gallery-item{
	height: 300px;
}
/********************************************************************************
* 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: .5rem 1.5rem;
	transition: all .2s ease-in;
}
.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;
}
.wp-block-advgb-accordions.advgb-accordion-wrapper .advgb-accordion-header-icon{
	margin-right: 0;
}

.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;
}

/********************************************************************************
* 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: #FFF;
}

/* View - Single */
.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: 2px solid var(--theme-color-light);
}

/********************************************************************************
* Miscellaneous Plugin Styles
*********************************************************************************/

/* Plugin :: WP Page Navi
----------------------------------------------- */
.wp-pagenavi{
	color: var(--theme-color-mid);
}
.wp-pagenavi a, .wp-pagenavi span {
    border: 1px solid var(--theme-color-light);
	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;
}

/********************************************************************************
* General :: Bootstrap Helpers
*********************************************************************************/

.container-breakout-left, .container-breakout-right {
	max-width: 100%;
	padding: 0;
}

@media (min-width: 992px){
	.container-breakout-left, .container-breakout-right {
		width: calc( 930px + ((100% - 930px) / 2));
	}
	.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: 1700px){
	.container-breakout-left, .container-breakout-right {
		width: calc( 1210px + ((100% - 1210px) / 2));
	}
}

/********************************************************************************
* Media Queries
*********************************************************************************/
@media (max-height: 930px){
	.section-header-btns{
		display: none;
	}
}
@media (max-width: 1800px){
	.swiper-news .slider-nav-arrow{
		font-size: .8em;
	}
	.swiper-news .swiper-button-next{
		left: auto;
		right: 0;
	}
	.swiper-news .swiper-button-prev{
		right: auto;
		left: 0;
	}
	.swiper-news {
		padding: 0 1.5rem;
	}
	
	blockquote.has-fancy-style, .wp-block-quote.has-fancy-style {
		font-size: 2.25em;
	}
	.section-events_featured .section-background-image img{
		height: 150%;
	}

	.section-instagram-feed-label{
		display: none;
	}
}
@media (max-width: 1699px){
	body{
		font-size: 16px;
	}
	
	blockquote.has-fancy-style, .wp-block-quote.has-fancy-style {
		font-size: 1.9em;
		padding: 2.5rem;
	}
	blockquote.has-fancy-style::before, .wp-block-quote.has-fancy-style::before {
		left: -35px;
	}
	
	.section-page-header{
		height: 500px;
	}
	.section-page-header .section-hero-content{
		font-size: 20px;
	}
	.card{
		font-size: 14px;
	}
}
@media (max-width: 1499px){
	body{
		font-size: 15px;
	}
	
	blockquote.has-fancy-style, .wp-block-quote.has-fancy-style {
		font-size: 1.75em;
	}
	
	.card{
		font-size: 12px;
	}
	
	.navbar-primary .nav .nav-link{
		padding-top: 8px;
		padding-bottom: 8px;
	}
	
	.section-page-header .section-hero-content{
		font-size: 18px;
	}
	
	.site-main-content > .section-content-padded {
		padding-left: 0;
		padding-right: 0;
	}
	.site-main-content > .section-content-padded .container-breakout-right > div {
		margin-right: 0;
	}
	
	footer.footer-wrapper {
	  font-size: .7em;
	}
}

@media (max-width: 1499px) and (min-width: 1199px){
	#finderFilter .col-form-label {
		max-width: 100%;
		flex: 0 0 100%;
		padding-top: 0;
	}
	#finderFilter .offset-3 {
		margin-left: 0;
	}
}

@media (max-width: 1199px){
	/* Switch from sidebar style header to standard header */
	#site-sidebar {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1030;
	}
	#site-sidebar .site-sidebar-content.sticky-top{
		height: 100%;
	}
	#site-main{
		width: 100%;
	}
	header.header-wrapper{
		height: auto;
		background-image: none;
	}
	.section-header-center{
		height: auto;
	}
	header.header-wrapper .masthead-logo img, header.header-wrapper .section-header-btm{
		transition: all 0.3s ease 0s;
	}
	header.header-wrapper .masthead-logo img{
		max-width: 215px;
	}

	.site-sidebar-content.is-stuck header.header-wrapper .masthead-logo img{
		max-height: 50px;	
		width: auto;
	}
	.site-sidebar-content.is-stuck header.header-wrapper .section-header-btm{
		height: 0;
		opacity: 0;
		display: none;
		padding: 0 !important;
	}
	
	.section-hero-swiper{
		height: calc(100vh - 300px);
	}
	
	.section-page-header {
		height: 400px;
	}
	.section-page-header.hero-bg-custom{
		background-position: center;
	}
}

@media (max-width: 1199px) and (min-width: 992px){
	/* Switch from slide out menus to absolute positioned on mid-size screens only */
	.navbar-primary .nav .nav-link{
		padding: 10px;
	}
	.navbar-primary .nav li .dropdown-menu{
		display: none;
	}
	.navbar-primary .nav li .dropdown-menu.show{
		position: absolute;
		top: auto;
		max-height: none;
		min-width: 230px;
		display: block;
	}
}

@media (max-width: 991px){
	.sidebar{
		padding-left: 15px;
		margin-top: 50px;
	}
	
	.section-park_finder-map {
  		height: 75vh;
	}
	
	.section-gallery .grid-item, .section-gallery .grid-sizer {
		width: 50%;
	}
}
@media (max-width: 767px){
	.btn{
		white-space: normal;
	}
	
	.img-thumbnail, .thumbnail, .img-thumbnail.alignleft, .thumbnail.alignleft {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		margin: 30px auto;
	}
	
	.two-column-list, .three-column-list {
		-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;
		display: block;
	}
	
	.section-hero-swiper{
		font-size: 11px;
		height: calc(100vh - 200px);
	}
	.section-hero-swiper .section-hero-content{
		left: 0;
	}
	
	.btn-bar .row > div:not(:last-child){
		border: none;
	}
	
	/* Park Finder Mobile Usability Adjustments */
	.section-park_finder-map{
		height: calc(100vh - 200px);
	}
	.multiselect-container button.dropdown-item {
		pointer-events:none;
	}
	.multiselect-container span.form-check input {
		pointer-events: all;
	}
	.multiselect-container span.form-check label  {
		pointer-events: all;
	}

}
@media (max-width: 575px){
	body{
		font-size: 14px;
	}
	
	header.header-wrapper .masthead-logo img {
		max-width: 175px;
	}
	
	.section-padding, .section-content-padded {
		padding: 3rem 0;
	}
	
	.section-hero-swiper{
		font-size: 9px;
		height: calc(100vh - 100px);
	}
	.swiper-home .swiper-button-prev, .swiper-home .swiper-button-next {
		font-size: 24px;
		width: 70px;
		height: 70px;
		margin-top: -35px;
	}
	.swiper-home .swiper-button-prev, .swiper-home .swiper-container-rtl .swiper-button-next{
		left: -35px;
		padding-right: 15px;
	}
	.swiper-home .swiper-button-next, .swiper-home .swiper-container-rtl .swiper-button-prev {
		right: -35px;
		padding-left: 15px;
	}
	
	.section-page-header .section-hero-content{
		font-size: 16px;
	}
	
	.section-gallery .grid-item, .section-gallery .grid-sizer {
		width: 100%;
	}
	
	.swiper-instagram .swiper-button-next, .swiper-instagram .swiper-container-rtl .swiper-button-prev {
		right: -35px;
		margin-top: -35px;
		font-size: 24px;
		width: 70px;
		height: 70px;
		padding-left: 15px;
	}
}