/*
	Theme Name: Addis Woods
	Description: Sledgehammer Base Theme w/ Bootstrap 5.3.3
	Version: 3.2.0
	Author: Sledgehammer Creative
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* ----------BASE STYLES---------- */
:root {
	--bgcolor: #232323;
	--black: #111111;
  --gray: #cccccc;
  --smoke: #4f4f4f;
  --blue: #87becb;
  --dkblue: #6995a1;
  --green: #b8c834;
  --dkgreen: #95a12a;
  --space: #2a3b3f;
  --text: #e2e2e2;
  --inputs: #e2e2e2;
  --labels: #e2e2e2;
  --ls: 8px;
}
body {
	background-color: var(--bgcolor);
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: "proxima-nova", Tahoma, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.6;
}
p, ul, ol {
  font-size: 1rem;
	margin-bottom: 1.125rem;
}
a, a:link, a:visited {
	color: var(--blue);
	font-weight: 300;
	text-decoration: none;
	transition: all 0.4s ease !important;
}
a:hover, a:active, a:focus {
	color: var(--green);
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1.25rem 0;
	font-family: 'baskerville-urw', Georgia, serif;
	font-weight: 400;
	color: var(--text);
	text-transform: uppercase;
	line-height: 1.1;
}
h1 {font-size: 1rem; margin: 0}
h2 {font-size: 2.25rem;}
h3 {font-size: 2rem;}
h4 {font-size: 1.5rem;}
h5 {font-size: 1.25rem;}
h6 {font-size: 1rem;}
@media (min-width : 992px) {
	h1, h2, h3, h4, h5, h6 {
		margin: 0 0 1.5rem 0;
	}
	h1 {
		font-size: 1.25rem;
	}
	h2 {font-size: 3.25rem;}
}

/* ---Buttons--- */
button, a.btn-primary, a.btn-secondary {
  display: inline-block;
  margin: 7px 0;
	padding: 14px;
  vertical-align: middle;
  border: 1px solid var(--gray);
	border-radius: 0;
  font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
  transition: all 0.4s ease;
}
button:hover, button:active, button:focus,
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus,
a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
  box-shadow: none;
}
button, a.btn-primary {
	background-color: transparent;
	color: #fff;
}
button:hover, button:active, button:focus,
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus {
	background-color: var(--gray);
	color: var(--bgcolor);
}
a.btn-secondary {
	background-color: var(--gray);
	color: var(--bgcolor);
}
a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
	background-color: transparent;
	color: #fff;
}
.btn-small {
	padding: 10px 20px;
	font-size: 1rem;
}
.btn-close {
	background-color: transparent;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23ccc' d='M15.76 15.77c-.31.31-.82.31-1.13 0L8 9.13l-6.63 6.64c-.31.31-.82.31-1.13 0a.803.803 0 0 1 0-1.13l6.63-6.63L.23 1.36a.803.803 0 0 1 0-1.13c.32-.31.82-.31 1.14 0L8 6.87 14.63.23c.31-.31.82-.31 1.13 0 .31.32.31.82 0 1.13L9.13 7.99l6.63 6.64c.31.31.31.82 0 1.13Z'/%3e%3c/svg%3e");
	background-size: 16px;
	background-repeat: no-repeat;
	border: 1px solid var(--gray);
  border-radius: 0;
	opacity: 1;
}
.btn-close:hover {
	background-color: var(--bgcolor);
	opacity: .7;
}
@media (min-width : 768px) {
	button, a.btn-primary, a.btn-secondary {
	  font-size: 1.125rem;
	}
}

/* ---Misc Sitewide--- */
.overlay {
  position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.01) 50%, rgba(17, 17, 17, 0.5) 100%);
	z-index: 9;
}
.border {
	border: 15px solid var(--gray) !important;
}
/* Image Placeholders */
.ratio > * {
	/*bootstrap overrides */
  top: auto;
  left: auto;
  width: auto;
	height: auto;
}
.ratio {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--black);
}
.ratio .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
.ratio img.ph {
	background-color: transparent;
  width: 60px;
  height: auto;
  opacity: .6;
  transition: all 0.4s ease;
}
.ratio img.ph:hover {
  opacity: 1;
}
figcaption {
	font-size: .875rem;
	text-transform: uppercase;
}
.filter {
  display: block;
  margin: 2rem 0;
}
.filter label {
	font-weight: 400;
  color: #fff;
}
.filter select {
  background: var(--bgcolor);
  color: var(--text);
  border: 1px solid #5a5a5a;
  padding: 8px;
  border-radius: 7px;
}
::placeholder {
	color:var(--gray) !important;
	opacity: .7;
	font-style: italic;
}
/* Increase side padding */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding-left: calc(var(--bs-gutter-x) * 1);
	padding-right: calc(var(--bs-gutter-x) * 1);
}
@media (min-width : 992px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 660px;
	}
}
@media (min-width : 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 860px;
	}
}
@media (min-width : 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1040px;
	}
}

/* ---Carousels--- */
.carousel button {
	margin: 0;
	padding: 10px;
	width: auto;
	background-color: transparent;
	border: 1px solid var(--text);
	border-radius: 5px;
	opacity: 1;
	transition: all 0.4s ease;
}
.carousel button:hover  {
	background-color: var(--blue);
	opacity: 1;
}
.carousel .carousel-control-prev, .carousel .carousel-control-next {
	position: absolute;
	top: auto;
	bottom: -55px;
	left: auto;
	right: 55px;
}
.carousel .carousel-control-next {
	right: 0;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3e%3cpath fill='%23e8e8e8' d='M21.56 10.52H1.62l8.02-7.67c.18-.18.2-.48.04-.68a.42.42 0 0 0-.63-.04l-8.9 8.51v.01c-.03.03-.06.07-.08.11 0 .02-.02.03-.03.04-.02.06-.04.12-.04.19s.01.13.04.19c0 .02.02.03.03.04.02.04.05.08.08.11v.01l8.9 8.52c.08.08.19.12.29.12.12 0 .25-.06.33-.16.16-.2.14-.51-.04-.68l-8.01-7.66h19.93c.25 0 .44-.22.44-.48s-.2-.48-.44-.48Z'/%3e%3c/svg%3e");
  background-size: 22px;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3e%3cpath fill='%23e8e8e8' d='M.44 11.48h19.93l-8.01 7.67c-.18.18-.2.48-.04.68s.44.22.63.04l8.9-8.52v-.01c.03-.03.06-.07.08-.11 0-.02.02-.03.03-.04.02-.06.04-.12.04-.19s-.01-.13-.04-.19c0-.02-.02-.03-.03-.04a.4.4 0 0 0-.08-.11v-.01l-8.9-8.53a.42.42 0 0 0-.29-.12c-.12 0-.25.06-.33.16-.16.2-.14.51.04.68l8.01 7.67H.44c-.25 0-.44.22-.44.48s.2.48.44.48Z'/%3e%3c/svg%3e");
  background-size: 22px;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}

/* ----------HEADER---------- */
header.main {
	position: absolute;
	width: 100%;
}
header.main .wrapper {
	opacity: 1;
  transition: opacity 0.3s ease-out;
}
.navbar-brand {
	position: relative;
	padding-top: 1.5rem;
	z-index: 9999;
}
@media (min-width : 992px) {
	header.main {
		width: auto;
	}
 	header.main .wrapper {
		padding: 1rem 2rem;
	}
}

/* ----------NAVIGATION---------- */
#menu-main-navigation {
	margin-top: 80px;
	text-align: center;
	text-transform: uppercase;
}
#menu-main-navigation > li {
	margin-bottom: 20px;
}
#menu-main-navigation > li > a {
	padding-bottom: 0;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited {
	display: inline-block;
	font-family: 'richmond-text', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 400;
	color: #e2e2e2;
	text-align: center;
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
	color: var(--green);
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	display: inline-block;
	font-size: .875rem;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
	background-color: transparent;
	color: var(--green);
}
.dropdown-menu {
	position: static !important;
	padding-top: 0;
	padding-bottom: 0;
	background-color: transparent;
	border-radius: 0;
	border: none;
	transform: none !important;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.dropdown-toggle::after {
	display: none;
}
.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.navbar .navbar-toggler {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0;
	padding: 7px 14px;
	background-color: transparent;
	border: none;
  border-radius: 0;
	z-index: 99999;
}
.navbar .navbar-toggler:focus {
	box-shadow: none;
}
.offcanvas {
	padding-top: 6rem;
	background-color: var(--bgcolor);
}
.offcanvas .dropdown-menu {
  display: block;
  position: static;
  float: none;
  transform: none !important;
}
@media (min-width : 992px) {
	.navbar > div {
		right: auto;
	}
}

/* ----------HOME---------- */
#home-loader {
  position: fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  background-color: var(--bgcolor);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  z-index:9999;
}
#home-loader .loader-content h1 {
	font-size: 2rem;
	letter-spacing: var(--ls);
}
#home-loader .loader-content h1 {
  color: var(--text);
}
#home-loader .loader-content p {
  color: var(--blue);
}
#home-loader.fade-out {
    animation: fadeOut 1s forwards;
}
[data-aos="zoom-in"] {
  transform: scale(0.9);
}
@keyframes fadeOut {
    to {
        opacity:0;
        visibility:hidden;
    }
}
@media (min-width : 576px) {
	#home-loader .loader-content h1 {
		font-size: 3rem;
	}
}
#home #carousel {
	background-color: var(--black);
}
#home #carousel,
#home #carousel .carousel-inner,
#home #carousel .carousel-item {
  height: 100vh;
}
#home #carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#home .carousel-item {
  transition: opacity 2.6s ease-in-out !important;
}
#home .carousel-fade .active.carousel-item-start,
#home .carousel-fade .active.carousel-item-end {
  transition: opacity 0s 2.6s;
}

/* ----------CONTENT---------- */
#int main {
	position: relative;
	padding: 40px 0;
	background-color: var(--bgcolor);
}
#int main.simple {
	padding-top: 200px;
}
main.simple h1 {
	display: flex;
	position: sticky;
  align-items: center;
  gap: 1rem;
  top: 0;
  padding: 1rem 0;
  background-color: var(--bgcolor);
  z-index: 10;
}
main.simple h1::before,
main.simple h1::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--text); 
}
main.simple h2 {
	font-size: 1rem;
}
main.simple .model {
	font-size: .875rem;
}
@media (min-width : 992px) {
	#int main.simple {
		padding-top: 50px;
	}
}

/* ----------CONTACT---------- */
#int main.contact.hero {
	position: relative;
  padding: 0;
  height: 100vh;
}
main.contact.hero .wrapper {
	position: absolute;
	padding: 2rem 1rem;
	background-color: var(--bgcolor);
	width: 80%;
	max-width: 500px;
	text-align: center;
	border: 5px solid var(--text);
	z-index: 99;
}
main.contact.hero .wrapper h1 {
	font-size: 1.25rem;
	letter-spacing: var(--ls);
}
main.contact.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width : 992px) {
	main.contact.hero .wrapper {
		padding: 3rem 2rem;
	}
	main.contact.hero .wrapper h1 {
		font-size: 2rem;
	}
}

/* ----------HOMES SINGLE---------- */
.single.home h1 {
	margin-bottom: 0;
	line-height: 1;
}
.single.home.hero {
	position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.single.home.banner {
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
}
main.single.home,
.banner.single.home,
footer {
    position: relative;
    z-index: 2;
    background-color: var(--bgcolor);
}
main.single.home {
    margin-top: 100vh;
}
.single.home.hero img, .single.home.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single.home h1 {
	font-size: 1.25rem;
}
.single.home .intro {
	position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9;
  width: 100%;
}
.single.home .model {
	font-size: 1rem;
	color: var(--blue);
}
.single.home.credits {
	position: relative;
	padding: 60px 0 40px;
	background-color: var(--bgcolor);
	z-index: 2;
}
.single.home.credits p {
	font-size: 1rem;
}
.single.home .sidebar-details .details {
	margin: 1rem 0 1.5rem;
	padding: 1rem 0;
	border-top: 1px solid #5a5a5a;
	border-bottom: 1px solid #5a5a5a;
	font-size: 1.125rem;
}
.single.home .sidebar-details .col-6 {
	margin: .5rem 0;
}
.single.home .sidebar-details .price {
	font-size: 2.75rem;
	font-weight: 400;
	color: var(--green);
	line-height: 1;
}
.single.home .sidebar-details a.btn-primary {
	margin: 15px 0;
}
@media (min-width : 768px) {
	.single.home .spacer {
		margin-top: 50px;
	}
	.single.home.banner {
  	height: 100vh;
	}
}
@media (min-width : 1200px) {
	.single.home .spacer {
		margin-top: 100px;
	}
}

/* ----------REQUEST INFO---------- */
.request-wrap {
	position: relative;
	padding: 40px 0;
	background-color: var(--bgcolor);
	background-image: url(/wp-content/themes/shbase26/img/sunset-sm.jpg);
	background-size: cover;
	background-position: center;
}
.request-wrap .container {
	position: relative;
	z-index: 99;
}
.request-wrap .gform_wrapper {
	max-width: 600px;
}
.request-wrap h2 {
	font-size: 2rem;
}
@media (min-width : 768px) {
	.request-wrap {
		padding: 60px 0;
		background-image: url(/wp-content/themes/shbase26/img/sunset-lg.jpg);
	}
	.request-wrap h2 {
		font-size: 3rem;
		text-align: center;
	}
}
@media (min-width : 1200px) {
	.request-wrap {
		padding: 80px 0;
	}
}

/* ----------GALLERY---------- */
main.gallery .border {
	border: 7px solid var(--gray) !important;
}
 .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
 	padding: 10px;
 	background-color: transparent !important;
	border: 1px solid var(--text);
	border-radius: 5px;
 }
  .glightbox-clean .gclose, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
 	background-color: var(--blue) !important;
 }

/* ----------MAPS---------- */
.map-wrap {
	background-color: var(--bgcolor);
	background-image: url(/wp-content/themes/shbase26/img/location-map-sm.svg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 300px;
}
#mapsvg-map-11 {
	border: 15px solid var(--gray) !important;
}
.mapsvg-controller-container.mapsvg-details-container {
	padding: 20px;
  max-width: 300px !important;
  max-height: 400px !important;
  border-right: 15px solid var(--gray) !important;
  border-bottom: 15px solid var(--gray) !important;
}
.mapsvg-popover-close {
	top: 10px !important;
	right: 10px !important;
}
h4.mapsvg-details-header {
	color: var(--gray) !important;
}
@media (min-width : 768px) {
  .map-wrap {
		background-image: url(/wp-content/themes/shbase26/img/location-map-lg.svg);
		height: 400px;
	}
}

/* ----------BUILDERS---------- */
.archive .builder-logo {
	width: 150px !important;
	height: auto !important;
}
.single .builder-logo {
	width: 100%;
	max-width: 200px;
}

/* ----------SIDEBARS---------- */
.sidebar-widget, .sidebar-form, .sidebar-details {
	background-color: var(--black);
	margin: 15px 0;
	padding: 25px 15px;
}
.sidebar-widget h3, .sidebar-form h3 {
	font-size: 1.5rem;
}
.sidebar-widget ul, .sidebar-form ul {
	margin: 0 0 15px 0;
	padding-left: 0;
	font-size: 1rem;
}
.sidebar-widget li {
	list-style: none;
	padding: 3px 0;
	line-height: 1.2;
}
.sidebar-widget li a {
	font-weight: 700;
}
.sidebar-widget .post-date {
	display: block;
	font-size: .875rem;
}
.sidebar-form .gform_wrapper input[type="submit"].gform_button {
	width: 100% !important;
}
@media (min-width : 992px) {
  .sidebar-widget, .sidebar-form, .sidebar-details {
  	margin: 0;
  }
}
@media (min-width : 1200px) {
  .sidebar-widget, .sidebar-form, .sidebar-details {
  	padding: 30px;
  }
}

/* ----------ARTICLES---------- */
.archive h2 {
	margin-bottom: 0;
	font-size: 1.5rem;
}
.archive h2 a {
	font-weight: 400;
}
.archive .meta, .single .meta {
	display: block;
	margin-bottom: 15px;
	font-size: .875rem;
}
.archive .excerpt p, .archive .excerpt {
	font-size: 1.125rem;
}
.archive .excerpt p:last-of-type {
	margin-bottom: 0;
}
.pagination {
	padding: 7px;
	background-color: var(--black);
	border-radius: 7px;
}
.page-numbers {
	margin-right: 10px;
	background-color: transparent;
	border-radius: 5px;
}
.prev.page-numbers, .next.page-numbers {
	padding: 0 5px;
	background-color: var(--bgcolor);
	border-radius: 5px;
}

/* ----------SEARCH---------- */
form.search {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.search-input {
	padding: 0 5px;
  background-color: #fff;
  width: 100%;
  height: 40px;
  color: var(--gray);
  border: none;
  border-radius: 5px;
}
.search-submit {
  position: absolute;
  top: -1px;
  right: 5px;
  padding: 8px;
  font-size: .875rem;
}
.archive.search article h2 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.archive.search .result {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--gray);
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	padding: 40px 0 80px;
	background-color: var(--bgcolor);
	color: var(--text);
}
footer .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .brand::before,
footer .brand::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--text);
}
footer a, footer a:link, footer a:visited {
	font-size: 1rem;
	color: var(--text);
	text-transform: uppercase;
	transition: all 0.4s ease !important;
}
footer a:hover, footer  a:active, footer  a:focus {
	color: var(--green);
	text-decoration: none;
}

/* ----------FORMS---------- */
form .small {font-size: .875rem}
.grecaptcha-badge {z-index: 9 !important;}
.gform_required_legend {margin: 0 !important;}
.gform-theme--framework .gform_validation_errors { border-color: #FAAF9E !important;}
.gform-theme--framework .gform_validation_errors .gform_submission_error, .gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gform-field-label > .gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework.gform_editor legend.gform-field-label > span > .gfield_required:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	color: #FAAF9E !important;
}
.gform-theme--framework .gform_validation_errors:focus {
	outline: #FAAF9E !important;
}
 .gform-theme--foundation .gform_fields { grid-row-gap: 10px !important; }
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--labels) !important;
}
.gform-field-label--type-sub {
	color: var(--labels) !important;
}
.gform_wrapper input, .gform_wrapper textarea {
	background-color: var(--inputs) !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  color: var(--gray) !important;
}
.gform_wrapper select {
	background-color: var(--inputs) !important;
	border: none !important;
  box-shadow: none !important;
  border-radius: 3px !important;
  color: var(--gray) !important;
}
.gform-theme--framework .gform-field-label--type-inline:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	color: var(--labels) !important;
}
.gform-theme--framework input[type="radio"]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	background-color: var(--blue) !important;
}
.gform-theme--framework input[type="checkbox"]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
	color: var(--blue) !important;
}
.gform_wrapper .datepicker {
	color: var(--labels) !important;
}
.gform_wrapper .charleft {
	color: var(--labels) !important;
}
.gform_wrapper input[type="submit"].gform_button {
	padding: 14px !important;
	background-color: var(--dkblue) !important;
	border: none !important;
	font-size: 1.125rem !important;
	font-weight: 400 !important;
	color: #fff !important;
}
.gform_wrapper input[type="submit"].gform_button:hover, .gform_wrapper input[type="submit"].gform_button:active, .gform_wrapper input[type="submit"].gform_button:focus {
	background-color: var(--green) !important;
}

/* ----------WP CORE---------- */
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.size-auto,.size-full,.size-large,.size-medium,.size-thumbnail {
	max-width: 100%;
	height: auto;
}
.wp-block-image {
	margin:25px 0;
}
.wp-block-image img {
	height: auto;
}
 .wp-block-buttons {
   margin-bottom: 15px;
 }
.wp-block-button__link {
	margin: 7px 0;
	padding: 14px;
	background-color: var(--dkblue);
	font-size: 1.125rem;
	font-weight: 400 !important;
	color: #fff !important;
	line-height: 1;
	border: none;
	border-radius: 3px;
}
.wp-block-button__link:hover {
	background-color: var(--green);
	color: #fff;
}
.wp-block-search__button {
	margin: 0 0 0 5px;
}

/* ----------MENU ANIMATIONS---------- */
@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}
/*menu toggle*/
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; 
}
.hamburger-box {
  width: 28px;
  height: 26px;
  display: inline-block;
  position: relative; 
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 1px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; 
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; 
}
.hamburger-inner::before {
  top: -6px; 
}
.hamburger-inner::after {
  bottom: -6px; 
}
.hamburger--squeeze .hamburger-inner {
transition-duration: 0.075s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease; 
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}
.hamburger--squeeze.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease; 
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}
/*offcanvas*/
.offcanvas-start,
.offcanvas-end,
.offcanvas-top,
.offcanvas-bottom {
	transform: none !important;
}
.offcanvas {
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease-in-out, visibility 0s linear .25s;
}
.offcanvas.show {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}
.offcanvas-backdrop {
	background-color: transparent;
}
.offcanvas-backdrop.show {
	opacity: 0;
}
.offcanvas.offcanvas-start {
	border: none;
}

/* ----------ACCESSIBILITY---------- */
@media screen and (prefers-reduced-motion) {
* {transition:none !important; transition-duration: 0s !important;}
}
* a:focus-visible, * button:focus-visible {
  outline: 3px solid #0000ff !important;
}
.skip-link {
  display: block;
  position: absolute !important;
  transform: translateY(-100%);
  overflow: hidden;
  margin-left: -100px;
  padding: 5px 0;
  background-color: var(--bgcolor);
  width: 200px !important;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  left: 50%;
  z-index: 999;
}
.skip-link:focus {
  transform: translateY(0%);
}

/* ----------PRINT---------- */
@media print {
	blockquote,img,pre,tr{page-break-inside:avoid}*{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]::after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]::after,a[href^="#"]::after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}
}