/*
	Theme Name: Base Theme
	Description: Sledgehammer Base Theme w/ Bootstrap 5.3.3
	Version: 3.3.0
	Author: Sledgehammer Creative

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/* ----------FONTS---------- */
/* https://gwfh.mranftl.com/fonts */
/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/wp-content/themes/shbase/fonts/open-sans-v35-latin-regular.woff2') format('woff2');
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('/wp-content/themes/shbase/fonts/open-sans-v35-latin-italic.woff2') format('woff2');
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/wp-content/themes/shbase/fonts/open-sans-v35-latin-700.woff2') format('woff2');
}
/* open-sans-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url('/wp-content/themes/shbase/fonts/open-sans-v35-latin-700italic.woff2') format('woff2');
}

/* ----------BASE STYLES---------- */
:root {
	--bg-color: #ffffff;
  --gray: #e5e5e5;
  --primary-color: #ed6323;
  --accent-color: #e49f24;
  --text: #231f20;
  --logo: url('/wp-content/themes/shbase/img/sledgehammer-creative.svg');
  --divider: #ffffff;
  --inputs: #f2f2f2;
  --labels: #231f20;
}
:root.dark-theme {
	--bg-color: #231f20;
  --gray: #555555;
  --primary-color: #ed6323;
  --accent-color: #e49f24;
  --text: #ffffff;
  --logo: url('/wp-content/themes/shbase/img/sledgehammer-creative-alt.svg');
  --divider: #231f20;
  --inputs: #000000;
  --labels: #ffffff;
}
@media (prefers-color-scheme: dark) {
  /* defaults to dark theme */
  :root {
    --bg-color: #231f20;
	  --gray: #555555;
	  --primary-color: #ed6323;
	  --accent-color: #e49f24;
	  --text: #ffffff;
	  --logo: url('/wp-content/themes/shbase/img/sledgehammer-creative-alt.svg');
	  --divider: #231f20;
	  --inputs: #000000;
	  --labels: #ffffff;
  }
  :root.light-theme {
		--bg-color: #ffffff;
	  --gray: #e5e5e5;
	  --primary-color: #ed6323;
	  --accent-color: #e49f24;
	  --text: #231f20;
	  --logo: url('/wp-content/themes/shbase/img/sledgehammer-creative.svg');
	  --divider: #ffffff;
	  --inputs: #f2f2f2;
	  --labels: #231f20;
  }
}

body {
	background-color: var(--bg-color);
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', 'Trebuchet MS', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.6;
}
p, ul, ol {
  font-size: 1rem;
	margin-bottom: 1rem;
}
a, a:link, a:visited {
	color: var(--primary-color);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s ease !important;
}
a:hover, a:active, a:focus {
	color: var(--accent-color);
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .heading {
	margin: 0 0 1rem 0;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
}
h1 {font-size:2rem;}
h2 {font-size:1.5rem;}
h3 {font-size:1.375rem;}
h4 {font-size:1.125rem;}
h5 {font-size:1rem;}
h6 {font-size:.875rem;}
@media (min-width : 768px) {
	h1 {font-size:3.25rem;}
	h2 {font-size:2rem;}
	h3 {font-size:1.5rem;}
	h4 {font-size:1.375rem;}
	h5 {font-size:1.125rem;}
	h6 {font-size:1rem;}
	p, ul, ol {font-size: 1.125rem;}
}

/* ---Buttons--- */
button, a.btn-primary, a.btn-secondary, a.btn-outline {
  display: inline-block;
  margin: 7px 0;
	padding: 14px;
  vertical-align: middle;
  border: none;
	border-radius: 5px;
  font-size: 1rem;
	font-weight: 700;
	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,
a.btn-outline:hover, a.btn-outline:active, a.btn-outline:focus {
  box-shadow: none;
}
button, a.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
}
button:hover, button:active, button:focus,
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus {
	background-color: var(--accent-color);
	color: #fff;
}
a.btn-secondary {
	background-color: var(--accent-color);
	color: #fff;
}
a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
	background-color: var(--primary-color);
	color: #fff;
}
a.btn-outline {
	background-color: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}
a.btn-outline:hover, a.btn-outline:active, a.btn-outline:focus {
	background-color: var(--primary-color);
	color: #fff;
}
.btn-close {
	background-color: var(--gray);
	opacity: 1;
}
.btn-close:hover {
	opacity: 1;
}

/* ---Dividers--- */
.divider {
	position: absolute;
	left: 0;
	bottom: -1px;
  width: 100%;
  height: 125px;
	z-index: 99;
}
.divider path {
	fill: var(--divider);
}
@media (min-width : 1200px) {
  .divider {
    height: auto;
  }
}
@media all and (-ms-high-contrast:none) {
	.divider { /*remove unsupported svg in IE11*/
		display: none;
	}
}

/* ---Misc Sitewide--- */
.overlay {
  position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	z-index: 1;
}
.corners {
	border-radius: 5px;
}
/* Image Placeholders */
.ratio > * {
	/*bootstrap overrides */
  top: inherit;
  left: inherit;
  width: inherit;
	height: inherit;
}
.ratio {
  position: relative;
  aspect-ratio: 3 / 2;
}
.ratio .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
.ratio .wrapper {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--gray);
}
.ratio .wrapper img {
  width: 110px;
  height: auto;
  opacity: .6;
  transition: all 0.4s ease;
}
.ratio .wrapper img:hover {
  opacity: 1;
}
/* Theme Toggle */
button.theme-toggler {
  position: absolute;
	top: 70px;
	right: 1rem;
  margin: 0;
  padding: 6px;
  background-color: var(--gray);
  border: none;
  border-radius: 0;
  z-index: 99;
}
.theme-toggler-icon {
  display: block;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath fill='%23231f20' d='M22.55 20.44c-.38 1.75-4.96 3.9-7.21 3.59-5.58-.79-7.71-5.51-7.3-8.81.67-5.38 5.32-7.63 8.84-7.14-1.14 2.5-1.2 5.03-.05 7.53 1.15 2.48 3.1 4.07 5.72 4.84Zm9.41-9.02c-2.57 1.35-4.76.46-6-.94-1.19-1.34-1.78-3.36-.58-5.67-2.45-.11-4.5.67-6.07 2.54-1.38 1.65-1.92 3.56-1.62 5.7.45 3.23 3.65 6.93 8.55 5.99 3.68-.71 6.07-4.15 5.73-7.62Zm-6.83 11.43c-.34-.35-.71-.56-1.17-.5-.74-.05-1.22.27-1.49.88-.25.56-.2 1.28.35 1.81.75.73 1.48 1.48 2.23 2.22.73.72 1.62.62 2.28 0 .61-.57.64-1.59-.03-2.25-.73-.72-1.46-1.44-2.17-2.18Zm-17.01-.51c-.39-.01-.76.01-1.06.31-.78.79-1.57 1.57-2.36 2.36-.44.44-.6 1.02-.42 1.56.4 1.21 1.72 1.6 2.65.7.77-.75 1.5-1.54 2.29-2.27.45-.41.53-1.1.36-1.63-.23-.69-.74-1.04-1.47-1.03Zm6.33-19.2v1.72c-.01.7.46 1.25 1 1.45 1.03.37 2.12-.35 2.16-1.46.04-1.12.03-2.25 0-3.37-.02-.79-.79-1.51-1.7-1.47-.73.03-1.48.66-1.47 1.49v1.65ZM6.41 15.99c0-.87-.55-1.55-1.56-1.59-1.1-.04-2.19-.03-3.29 0C.51 14.42.01 15.22 0 16c0 .74.54 1.57 1.54 1.58h1.61c.56 0 1.12.02 1.68 0 .96-.03 1.58-.72 1.58-1.58Zm11.12 10.78c-.14-.79-1-1.26-1.71-1.17-.7.09-1.33.54-1.37 1.4-.03.59 0 1.17 0 1.76 0 .61-.03 1.23.02 1.83.02.28.16.59.33.82.38.49 1.14.7 1.67.51.65-.23 1.14-.85 1.15-1.51.01-.99.01-1.97 0-2.96 0-.23-.04-.46-.08-.69ZM6.87 9.11c.52.53 1.1.7 1.81.43 1.06-.39 1.29-1.85.61-2.51-.73-.72-1.45-1.44-2.17-2.17-.34-.35-.72-.58-1.24-.54-.23.04-.48.03-.68.13-.94.47-1.23 1.75-.43 2.57.69.7 1.4 1.39 2.08 2.1Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 32px;
	height: 32px;
}
@media (min-width : 992px) {
    button.theme-toggler {
    top: 10px;
    right: 70px;
  }
  .theme-toggler-icon {
    width: 20px;
  	height: 20px;
  }
}

/* ---Bootstrap Carousel--- */
.carousel-control-next, .carousel-control-prev {
	top: 50%;
	bottom: 50%;
	margin: 0;
	padding: 22px 14px;
	background-color: var(--primary-color);
	width: auto;
	opacity: 1;
	transition: all 0.4s ease;
}
.carousel-control-prev {
	left: 20px;
}
.carousel-control-next {
	right: 20px;
}
.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 16 16'%3e%3cpath fill='%23fff' d='M4.19 7.51 10.73.24a.728.728 0 1 1 1.08.98L5.7 8l6.11 6.79c.27.3.24.76-.05 1.03-.3.27-.76.24-1.03-.05L4.18 8.54c-.25-.32-.25-.74 0-1.02Z'/%3e%3c/svg%3e");
  height: 16px;
  width: 16px;
}
.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 16 16'%3e%3cpath fill='%23fff' d='m11.81 8.49-6.55 7.27a.728.728 0 1 1-1.08-.98L10.29 8l-6.1-6.79c-.27-.3-.24-.76.05-1.03.3-.27.76-.24 1.03.05l6.55 7.23c.25.32.25.74 0 1.02Z'/%3e%3c/svg%3e");
  height: 16px;
  width: 16px;
}
.carousel-indicators [data-bs-target] {
	width: 16px;
	height: 16px;
	border-radius: 50%;
}

/* ---Slick Carousels--- */
/*
.slick-arrow {
	display: block;
	position: absolute;
	top: 35%;
  margin: 0;
  padding: 0;
  background-size: 32px;
  width: 32px;
  height: 32px;
  transform: translate(0, -40%);
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
  border-radius: 50%;
  outline: none;
  z-index: 999;
  cursor: pointer;
}
.slick-prev {
	left: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath d='M19.13 21.44c.58.59.58 1.54 0 2.12-.59.58-1.54.59-2.12 0l-6.5-6.49a1.49 1.49 0 0 1 0-2.12l6.5-6.5a1.49 1.49 0 0 1 2.12 0c.58.59.58 1.53 0 2.12L13.69 16l5.44 5.44Z' style='fill:%23231f20'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  border:none;
}
.slick-next {
	right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath d='M12.57 10.56c-.58-.59-.58-1.54 0-2.12.59-.58 1.54-.59 2.12 0l6.5 6.49c.59.59.59 1.53 0 2.12l-6.5 6.5c-.58.59-1.54.59-2.12 0-.58-.59-.58-1.53 0-2.12L18.01 16l-5.44-5.44Z' style='fill:%23231f20'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  border:none;
}
.slick-autoplay-toggle-button {
	position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 999;
}
.slick-autoplay-toggle-button .btn-pause, .slick-autoplay-toggle-button .btn-play {
  background-size: 32px;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
.slick-autoplay-toggle-button .btn-pause {
	display: block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 32 32'%3e%3cdefs%3e%3cstyle%3e.cls-1%7bfill:%23231f20%7d%3c/style%3e%3c/defs%3e%3cpath d='M14 12v8c0 1.11-.89 2-2 2s-2-.89-2-2v-8c0-1.11.89-2 2-2s2 .89 2 2ZM22 12v8c0 1.11-.89 2-2 2s-2-.89-2-2v-8c0-1.11.89-2 2-2s2 .89 2 2Z' class='cls-1'/%3e%3c/svg%3e");
}
.slick-autoplay-toggle-button .btn-play {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath d='M22.89 15.99c0 .53-.28 1.01-.72 1.29l-9 5.5c-.47.28-1.05.29-1.52.03-.48-.27-.77-.77-.77-1.31v-11c0-.54.29-1.04.77-1.31.47-.27 1.06-.26 1.52.02l9 5.5c.44.28.72.76.72 1.28Z' style='fill:%23231f20'/%3e%3c/svg%3e");
}
.slick-dots {
  position: absolute;
  bottom: 25%;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  z-index: 999;
}
.slick-dots li {
  display: inline-block;
  line-height: 1;
  margin: 0 3px;
}
.slick-dots li button {
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background-color: var(--accent-color);
}
@media (min-width : 768px) {
  .slick-prev, .slick-next {
    top: 40%;
  }
  .slick-dots, #slider .slick-autoplay-toggle-button {
    bottom: 15%;
  }
}
*/

/* ---Builder--- */
.builder .row {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.builder .row:first-of-type {
	margin-top: 0;
}
.builder .row:last-of-type {
	margin-bottom: 0;
}
@media (min-width : 768px) {
	.builder .row {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}
}
@media (min-width : 992px) {
	.builder .row {
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
}
@media (min-width : 1200px) {
	.builder .row {
		margin-top: 5rem;
		margin-bottom: 5rem;
	}
}

/* ----------HEADER---------- */
header .container {
	position: relative;
	background-color: var(--bg-color);
}
.navbar-brand .brand {
	display: block;
	width: 150px;
	height: 114px;
	background-image: var(--logo);
	background-size: 150px 114px;
	background-repeat: no-repeat;
}
.phone-wrap {
	position: absolute;
	top: 15px;
	right: 74px;
	padding: 6px;
	background-color: var(--gray);
	z-index: 99;
}
.icon-phone {
  display: block;
	width: 32px;
	height: 32px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 32 32'%3e%3cpath fill='%23231f20' d='M26 3v26c0 1.66-1.34 3-3 3H9c-1.66 0-3-1.34-3-3V3c0-1.66 1.34-3 3-3h14c1.66 0 3 1.34 3 3Zm-3 .75c0-.41-.34-.75-.75-.75H9.75c-.41 0-.75.34-.75.75v19.5c0 .41.34.75.75.75h12.5c.41 0 .75-.34.75-.75V3.75ZM18 28c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2Z'/%3e%3c/svg%3e");
  background-size: 32px;
}
.int-header {
	position: relative;
	aspect-ratio: 16 / 3;
}
.int-header .img-header {
	position: absolute;
	object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
.int-header h1 {
  position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
  color: #fff;
  z-index: 99;
}
@media (min-width : 992px) {
	.phone-wrap {
		top: 15px;
		right: 115px;
		padding: 0;
		background-color: transparent;
	}
}

/* ----------NAVIGATION---------- */
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited {
	font-size: 1.125rem;
	color: var(--text);
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
	color: var(--text);
	opacity: .7;
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	font-size: 1rem;
	color: var(--text);
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
	background-color: transparent;
	color: var(--text);
	opacity: .7;
}
.dropdown-menu {
	position: static !important;
	background-color: transparent;
	border-radius: 0;
	border: none;
	transform: none !important;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.dropdown-toggle::after {
  transition: transform 0.4s ease;
}
.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.navbar .navbar-toggler {
	position: absolute;
	top: 15px;
	right: 1rem;
	margin: 0;
	padding: 6px;
	background-color: var(--gray);
	border: none;
  border-radius: 0;
	z-index: 99;
}
.navbar .navbar-toggler:focus {
	background-color: #e5e5e5;
  box-shadow: none;
}
.navbar-toggler-icon {
	display: block;
	width: 32px;
	height: 32px;
	background-repeat: no-repeat;
  background-size: 32px;
}
.navbar .navbar-toggler.collapsed .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath fill='%23231f20' d='M0 4.57A2.57 2.57 0 0 1 2.57 2h26.86a2.57 2.57 0 1 1 0 5.14H2.57A2.57 2.57 0 0 1 0 4.57ZM0 16a2.57 2.57 0 0 1 2.57-2.57h26.86a2.57 2.57 0 1 1 0 5.14H2.57A2.57 2.57 0 0 1 0 16Zm0 11.43a2.57 2.57 0 0 1 2.57-2.57h26.86a2.57 2.57 0 1 1 0 5.14H2.57A2.57 2.57 0 0 1 0 27.43Z'/%3e%3c/svg%3e");
}
.navbar .navbar-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath fill='%23231f20' d='m20.02 16 9.61-9.61c.49-.49.49-1.29 0-1.79L27.4 2.37c-.49-.49-1.29-.49-1.79 0L16 11.98 6.39 2.37c-.49-.49-1.29-.49-1.79 0L2.37 4.6c-.49.49-.49 1.29 0 1.79L11.98 16l-9.61 9.61c-.49.49-.49 1.29 0 1.79l2.23 2.23c.49.49 1.29.49 1.79 0L16 20.02l9.61 9.61c.49.49 1.29.49 1.79 0l2.23-2.23c.49-.49.49-1.29 0-1.79L20.02 16Z'/%3e%3c/svg%3e ");
}
.offcanvas {
	background-color: var(--bg-color);
}
@media (min-width : 992px) {
  .dropdown-menu {
		position: absolute !important;
		background-color: var(--bg-color);
		transform: none !important;
	}
}

/* ----------HERO IMAGE---------- */
.hero-wrap {
	aspect-ratio: 3 / 2;
}
.hero-wrap > div {
	position: absolute;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	z-index: 9;
}
@media (min-width : 768px) {
  .hero-wrap {
		aspect-ratio: 16 / 7;
	}
}
/* ----------END HERO IMAGE---------- */

/* ----------HERO SLIDER---------- */
/*.hero-wrap img.hero {
  width: 100%;
  height: auto;
}
*/
/* ----------END HERO SLIDER---------- */

/* ----------CONTENT---------- */
main {
	position: relative;
	padding: 40px 0;
	background-color: var(--bg-color);
}
main ul.wp-block-list {
  list-style: none;
}
main ul.wp-block-list li {
  line-height: 1;
  padding: 5px 0 5px 10px;
}
main ul.wp-block-list li::marker {
  content: url("/wp-content/themes/shbase/img/icons/bullet.svg");
}

/* ----------BLOCKS---------- */
.blocks-wrap {
	position: relative;
	padding: 40px 0;
	background-color: var(--bg-color);
}
.block .icon {
	display: block;
	width: 48px;
	height: 48px;
}

/* ----------FAQ---------- */
.faq #accordion {
	max-width: 960px;
}
.faq .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}
.faq .accordion-header {
  padding: 0;
  margin-bottom: 0;
  border-bottom: none;
  border-radius: 0;
  line-height: 1;
}
.faq .accordion-header button { /* minus */
  width: 100%;
  border-radius: 0;
  margin: 0;
  padding: 14px 40px 14px 14px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: left;
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 24 24'%3e%3cpath fill='%23231f20' d='M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm7.9-1.1a1.1 1.1 0 1 0 0 2.2H16a1.1 1.1 0 1 0 0-2.2H8Z'/%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  background-position: center right 15px;
  background-size: 20px;
}
.faq .accordion-header button.collapsed { /* plus */
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 24 24'%3e%3cpath fill='%23231f20' d='M0 12a12 12 0 1 1 24 0 12 12 0 0 1-24 0Zm12 5.3c.6 0 1.1-.6 1.1-1.2v-3h3a1.1 1.1 0 1 0 0-2.2h-3v-3a1.1 1.1 0 1 0-2.2 0v3h-3a1.1 1.1 0 1 0 0 2.2h3v3c0 .6.5 1.1 1.1 1.1Z'/%3e%3c/svg%3e ");
  background-repeat: no-repeat;
}
.faq .accordion-body {
  background: var(--bg-color);
  padding: 14px;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
}
.faq .accordion-body p {
  font-size: 1.125rem;
}
.faq .accordion-body p:last-of-type {
  margin-bottom: 0;
}

/* ----------SIDEBARS---------- */
.sidebar-wrap {
	background-color: var(--gray);
	padding: 20px;
	color: var(--text);
}
.sidebar-wrap .heading {
	display: block;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	color: var(--text);
}
.sidebar-wrap a {
	color: var(--primary-color);
}
.sidebar-wrap a:hover, .sidebar-wrap a:active, .sidebar-wrap a:focus {
	color: var(--accent-color);
}
.sidebar-wrap ul {
	margin: 0;
	padding: 0;
	font-size: 1.125rem;
}
.sidebar-wrap li {
	display: block;
	padding: 10px 0;
	list-style: none;
	line-height: 1.2;
}
.sidebar-wrap li a {
	display: inline-block;
}
.sidebar-wrap .count {
	display: block;
	font-size: .875rem;
	color: var(--text);
}
.sidebar-wrap.categories .count {
	display: inline-block;
	padding-left: 0;
	font-size: 1rem;
}
.sidebar-wrap.cta, .sidebar-wrap.search {
	background-color: var(--gray);
}
.sidebar-wrap.cta .heading {
	font-size: 1.25rem;
	color: var(--text);
}
@media (min-width : 1200px) {
  .sidebar-wrap {
		padding: 30px;
	}
}

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

/* ----------SEARCH---------- */
button.search-toggler {
  position: absolute;
	top: 15px;
	right: 132px;
  margin: 0;
  padding: 6px;
  background-color: var(--gray);
  border: none;
  border-radius: 0;
  z-index: 99;
}
.search-toggler-icon {
  display: block;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3e%3cpath fill='%23231f20' d='M31.27 31.27c-.98.98-2.56.98-3.53 0l-7.48-7.48c-2.52 1.7-5.68 2.54-9.04 2.09C5.49 25.12.84 20.43.11 14.7-.97 6.19 6.19-.97 14.7.11c5.72.73 10.41 5.38 11.18 11.1.45 3.36-.39 6.52-2.09 9.04l7.48 7.48c.98.97.98 2.56 0 3.54ZM12.95 21c4.41 0 8-3.59 8-8s-3.59-8-8-8-8 3.59-8 8 3.59 8 8 8Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 32px;
	height: 32px;
}
.search-wrap {
	display: none;
	padding: .5rem;
  background-color: var(--gray);
}
form.search {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 5px;
  width: 100%;
  background-color: var(--inputs);
  border-radius: 3px;
}
.search-input {
  background-color: transparent;
  width: 100%;
  border: none;
  color: var(--text);
}
.search-submit {
	margin: 0;
  font-size: .875rem;
}
.archive.search article {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--gray);
}
.archive.search article h2 {
  margin-bottom: 5px;
}
@media (min-width : 992px) {
    button.search-toggler {
    top: 10px;
    right: 30px;
  }
  .search-toggler-icon {
    width: 20px;
  	height: 20px;
  }
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	padding: 40px 0;
	background-color: var(--gray);
	color: var(--text);
}
#menu-footer-navigation {
	padding: 0;
	margin: 0;
}
#menu-footer-navigation li {
	padding: 0;
	display: inline-block;
	list-style: none;
}
#menu-footer-navigation a, #menu-footer-navigation a:link, #menu-footer-navigation a:visited {
	font-size: .875rem;
	color: var(--text);
	transition: all 0.4s ease !important;
}
#menu-footer-navigation a:hover, #menu-footer-navigation a:active, #menu-footer-navigation a:focus {
	color: var(--text);
	opacity: .7;
	text-decoration: none;
}
#menu-footer-navigation .nav-link {
  padding: 0 5px;
}
.credit-wrap {
	padding: 10px 0;
	font-size: .75rem;
	color: var(--text);
}
.credit-wrap a, .credit-wrap a:link, .credit-wrap a:visited {
	color: var(--text);
}
.credit-wrap a:focus, .credit-wrap a:hover, .credit-wrap a:active {
	color: var(--text);
	opacity: .7;
}

/* ----------FORMS---------- */
form .small {font-size: .875rem}
.grecaptcha-badge {z-index: 9 !important;}
.gform-theme--foundation .gform_fields {row-gap: 20px !important;}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
	font-size: 1rem !important;
	font-weight: 700 !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: 5px !important;
  color: var(--labels) !important;
}
.gform_wrapper select {
	background-color: var(--inputs) !important;
	border: none !important;
  box-shadow: none !important;
  border-radius: 5px !important;
  color: var(--labels) !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(--primary-color) !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(--primary-color) !important;
}
.gform_wrapper .datepicker {
	color: var(--labels) !important;
}
.gform_wrapper .charleft {
	color: var(--labels) !important;
}
.gform_wrapper input[type="submit"].gform_button {
	padding: 14px 21px !important;
	background-color: var(--primary-color) !important;
	border: none !important;
	font-size: 1rem !important;
	font-weight: 700 !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(--accent-color) !important;
}
/* Form Placeholders */
::placeholder {
	color: var(--gray);
	opacity: 1;
}

/* ----------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 figcaption {
	text-align: left;
	font-size: .875em;
}
.wp-block-image img {
	height: auto;
}
 .wp-block-buttons {
   margin-bottom: 15px;
 }
.wp-block-button__link {
	margin: 7px 0;
	padding: 14px;
	background-color: var(--primary-color);
	font-size: 1rem;
	font-weight: 700;
	color: #fff !important;
	line-height: 1;
	border: none;
	border-radius: 5px;
}
.wp-block-button__link:hover {
	background-color: #ed8555;
	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;
}

/* ----------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(--bg-color);
  width: 200px !important;
  font-weight: 700;
  color: var(--primary-color);
  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}
}