/*
	Theme Name: Giroux Law
	Description: Sledgehammer Base Theme w/ Bootstrap 5.3.3
	Version: 3.6.0
	Author: Sledgehammer Creative

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

/* ----------BASE STYLES---------- */
:root {
  color-scheme: light;
  --bgcolor: #ffffff;
  --ivory: #fcf9f4;
  --navy: #041635;
  --night: #020a16;
  --gold: #d1a45f;
  --text: #020a16;
  --inputs: #fcf9f4;
  --mpad: 3rem 0;
  --dpad: 6rem 0;
}

body {
	background-color: var(--bgcolor);
	margin: 0;
	padding: 0;
	min-height: 100vh;
	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: 1.125rem;
	margin-bottom: 1.125rem;
}
a, a:link, a:visited {
	color: var(--navy);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.4s ease;
}
a:hover, a:focus, a:active {
	color: var(--gold);
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6, .heading {
	display: block;
	font-family: 'trajan-pro-3', 'Georgia', serif;
	margin: 0 0 1.125rem 0;
	font-weight: 600;
	color: var(--gold);
	line-height: 1.2;
}
h1 {font-size:2rem;}
h2 {font-size:1.5rem;}
h3 {font-size:1.275rem;}
h4 {font-size:1.125rem;}
h5 {font-size:1rem;}
h6 {font-size:.875rem;}
@media (min-width : 768px) {
	h1, h2, h3, h4, h5, h6, .heading {
		margin: 0 0 1.25rem 0;
	}
	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.25rem;}
}

/* ---Buttons--- */
button, a.btn-primary, a.btn-secondary {
  display: inline-block;
  margin: 7px 0;
	padding: 14px;
  vertical-align: middle;
  border: none;
	border-radius: 5px;
	font-family: 'trajan-pro-3', 'Georgia', serif;
  font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease;
}
button:hover, button:focus, button:active, 
a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active,
a.btn-secondary:hover, a.btn-secondary:focus, a.btn-secondary:active {
  box-shadow: none;
}
button, a.btn-primary {
	background-color: var(--gold);
	color: #fff;
}
button:hover, button:focus, button:active,
a.btn-primary:hover, a.btn-primary:focus, a.btn-primary:active {
	background-color: var(--navy);
	color: #fff;
}
a.btn-secondary {
	background-color: var(--navy);
	color: #fff;
}
a.btn-secondary:hover, a.btn-secondary:focus, a.btn-secondary:active {
	background-color: var(--gold);
	color: #fff;
}
a.btn-small {
	padding: 7px;
	font-size: 1rem;
}

/* ---Misc Sitewide--- */
.overlay {
  position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2,10,22,.6);
	z-index: 1;
}
.corners {
	border-radius: 5px;
}
/* Image Placeholders */
.ratio {
  position: relative;
  aspect-ratio: 3 / 2;
}
.ratio .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.ratio .wrapper {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--ivory);
}
.ratio .wrapper img {
  width: 110px;
  height: auto;
  opacity: .6;
  transition: opacity 0.4s ease;
}
.ratio .wrapper img:hover {
  opacity: 1;
}

/* ---Adjust Container Padding--- */
@media (max-width : 768px) { /* Increase side padding on mobile */
	.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 : 768px) {
	.container-fluid {
		padding-left: calc(var(--bs-gutter-x) * 1.25);
		padding-right: calc(var(--bs-gutter-x) * 1.25);
	}
}


/* ---Swiper--- */
.swiper-horizontal .swiper-button-prev {
  left: 1rem;
}
.swiper-horizontal .swiper-button-next {
  right: 1rem;
}
.swiper-button-prev svg path, .swiper-button-next svg path, .swiper-autoplay-toggle svg path {
	fill: var(--text);
}
.swiper-autoplay-toggle {
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  z-index: 10;
}
.swiper-autoplay-toggle[aria-pressed="false"] .icon-play,
.swiper-autoplay-toggle[aria-pressed="true"] .icon-pause {
  display: none;
}
.swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.swiper-pagination-bullet {
	background: var(--navy);
}
.swiper-pagination-bullet-active {
	background: var(--gold);
}

/* ----------HEADER---------- */
header.main {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: var(--navy);
}
header .container {
	position: relative;
}
.navbar {
	padding-top: 0;
	padding-bottom: 0;
	border-top: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
}
.navbar-brand {
	display: block;
	position: relative;
	padding-top: 1rem;
	padding-bottom: 1rem;
	z-index: 9999;
}
.navbar-brand img {
	display: block;
	width: 120px;
	height: auto;
}
.phone-wrap {
	position: relative;
	justify-content: center;
	align-items: center;
	font-family: 'trajan-pro-3', 'Georgia', serif !important;
	font-weight: 400 !important;
	background-color: var(--gold);
	width: 44px;
	height: 44px;
	border-radius: 5px;
	z-index: 9999;
	transition: background-color 0.4s ease !important;
}
.phone-wrap:hover {
	background-color: var(--ivory);
}
.int-header {
	position: relative;
	aspect-ratio: 16 / 3;
}
.int-header .img-header {
	position: absolute;
	object-fit: cover;
  width: 100%;
  height: 100%;
}
.int-header h1 {
  position: relative;
	margin: 0;
	padding: 0;
	text-align: center;
  color: #fff;
  z-index: 99;
}
@media (min-width : 992px) {
	.navbar-brand {
		margin-right: 2rem;
	}
	.phone-wrap {
		padding: 0 1rem;
		width: auto;
		height: auto;
		border-radius: 0;
		font-size: 1.25rem;
		color: var(--ivory);
	}
	.phone-wrap:hover {
		background-color: var(--gold);
	}
}
@media (min-width : 1200px) {
	.navbar-brand img {
		width: 200px;
	}
}

/* ----------NAVIGATION---------- */
.navbar-nav {
	margin-top: 3rem;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited {
	font-size: 1.5rem;
	color: var(--ivory);
	text-transform: uppercase;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
	color: var(--gold);
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	font-size: 1.25rem;
	color: var(--ivory);
	text-transform: uppercase;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
	background-color: transparent;
	color: var(--gold);
}
.dropdown-menu {
	background-color: transparent;
	border-radius: 0;
	border: none;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.dropdown-toggle::after {
  display: inline-block;
  width: .6em;
  height: .6em;
  margin-left: .355em;
  vertical-align: .1em;
  content: "";
  border: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 4'%3e%3cpath fill='%23d1a45f' d='M6.53 0c.42 0 .63.51.33.81L3.83 3.86c-.18.19-.48.19-.67 0L.14.81C-.16.51.05 0 .47 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.4s ease;
}
.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.navbar .navbar-toggler {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	background-color: var(--gold);
	width: 44px;
	height: 44px;
	border: none;
  border-radius: 5px;
	z-index: 9999;
	transition: background-color 0.4s ease;
}
.navbar .navbar-toggler:hover, .navbar .navbar-toggler:focus, .navbar .navbar-toggler:active {
	background-color: var(--ivory);
  box-shadow: none;
}
.offcanvas {
	background-color: var(--navy);
}
@media (min-width : 992px) {
	.navbar-nav {
		margin-top: 0;
	}
	.navbar .navbar-toggler {
		display: none;
	}
	.navbar-nav .nav-link,
	.navbar-nav .nav-link:link,
	.navbar-nav .nav-link:visited {
		font-size: 1.125rem;
	}
  .dropdown-menu {
		position: absolute !important;
		background-color: var(--navy);
	}
	.dropdown-item,
	.dropdown-item:link,
	.dropdown-item:visited {
		font-size: 1rem;
	}
}
@media (min-width : 1200px) {
	.navbar-nav .nav-link,
	.navbar-nav .nav-link:link,
	.navbar-nav .nav-link:visited {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* ----------HERO IMAGE---------- */
.hero-wrap {
	aspect-ratio: 1 / 1;
}
.hero-wrap .container {
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.hero-wrap .content {
	position: relative;
	color: #fff;
	max-width: 800px;
	z-index: 9;
}
.hero-wrap .heading {
	font-size: clamp(1.625rem, 0.55rem + 4.6vw, 4rem);
	color: #fff;
}
.hero-wrap p {
	max-width: 80%;
	font-size: clamp(1rem, 0.7rem + 0.6vw, 1.5rem);
}
.hero-wrap .heading .accent {
	color: var(--gold);
}
@media (min-width : 428px) {
  .hero-wrap {
		aspect-ratio: 4 / 3;
	}
}
@media (min-width : 576px) {
	  .hero-wrap {
			aspect-ratio: 16 / 9;
		}
}
@media (min-width : 1200px) {
  .hero-wrap {
		aspect-ratio: 16 / 7;
	}
}

/* ----------CONTENT---------- */
main {
	position: relative;
	background-color: var(--bgcolor);
}
#home main {
	background: var(--ivory);
}
#home main .deco {
	position: relative;
	background-color: var(--navy);
	min-height: 300px;
	z-index: 9;
}
#home main .deco::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1rem;
	right: 0;
	bottom: 0;
	background-image: url("/wp-content/themes/shbase/img/icons/icon-g.svg");
	background-size: 45%;
	background-position:left;
	background-repeat: no-repeat;
	opacity: 0.15;
}
#home main .deco::after {
	content: "";
	position: absolute;
	top: -2rem;
	left: 0;
	right: 1rem;
	bottom: 0;
	background-image: url("/wp-content/themes/shbase/img/dan-giroux.png");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
}
#home main article {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
main ul.wp-block-list li::marker {
  color: var(--gold);
}
@media (min-width: 428px) {
	#home main .deco::before {
		left: 2rem;
		background-size: 55%;
	}
	#home main .deco::after {
		right: 2rem;
	}
}
@media (min-width: 576px) {
	#home main h1 {
		font-size: 2.5rem;
	}
}
@media (min-width: 768px) {
	#home main .deco {
		min-height: 400px;
	}
}
@media (min-width: 992px) {
	#home main .deco::before {
		left: 5rem;
		background-size: 45%;
	}
	#home main .deco::after {
		right: 5rem;
	}
}
@media (min-width: 1200px) {
	#home main article {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	#home main .deco {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 50%;
	}
	#home main .deco::before {
		background-size: 80%;
		background-position: center;
		left: 0;
	}
	#home main .deco::after {
		top: 3rem;
		right: -100px;
		background-size: 300px auto;
		background-position: right bottom;
	}
	#home main h1 {
		font-size: 3rem;
	}
}
@media (min-width: 1400px) {
	#home main .deco::before {
		background-size: 60%;
	}
}

/* ----------BLOCKS---------- */
#home .blocks-wrap {
	position: relative;
	padding: var(--mpad);
	background-color: var(--bgcolor);
}
#home .blocks-wrap h2 {
	font-size: clamp(1.625rem, 0.55rem + 4.6vw, 2.5rem);
}
#home .blocks-wrap .block {
	position: relative;
	background-color: transparent;
	transition: background-color 0.4s ease, opacity var(--animate-duration, 1000ms) ease, transform var(--animate-duration, 1000ms) ease;
	transition-delay: var(--animate-delay, 0ms);
	border-bottom: 1px solid var(--gold);
}
#home .blocks-wrap .block:first-of-type {
	border-top: 1px solid var(--gold);
}
#home .blocks-wrap .block:hover {
	background-color: var(--navy);
}
#home .blocks-wrap .icon-wrap {
	background-color: var(--ivory);
	width: 84px;
	height: 84px;
	border-radius: 5px;
	grid-column: 1 / -1;
	justify-self: start;
	flex-shrink: 0;
}
#home .blocks-wrap .icon {
	width: 64px;
	height: 64px;
}
#home .blocks-wrap .link-wrap {
	background-color: var(--gold);
	width: 44px;
	height: 44px;
	border-radius: 5px;
	grid-column: 2;
	justify-self: end;
	flex-shrink: 0;
}
#home .blocks-wrap .link-wrap svg {
	width: 24px;
	height: 24px;
}
#home .blocks-wrap .col > a {
	display: grid !important;
	grid-template-columns: 1fr auto;
	align-items: center;
}
#home .blocks-wrap .info-wrap {
	grid-column: 1;
}
#home .blocks-wrap .info-wrap span {
	font-weight: 400;
	color: var(--text);
	transition: color 0.4s ease;
}
#home .blocks-wrap .col:hover .info-wrap span {
	color: #fff;
}
@media (min-width: 576px) {
	#home .blocks-wrap .info-wrap {
		display: flex;
		flex-wrap: wrap;
	}
	#home .blocks-wrap .info-wrap h3 {
		flex: 1 0 100%;
		font-size: 1.675rem;
	}
}
@media (min-width: 768px) {
	#home .blocks-wrap .icon-wrap, #home .blocks-wrap .link-wrap {
		transition: transform 0.4s ease;
	}
	#home .blocks-wrap .col:hover .icon-wrap {
		transform: translateX(2rem);
	}
	#home .blocks-wrap .col > a {
		display: flex !important;
		align-items: center;
	}
	#home .blocks-wrap .info-wrap {
		flex: 1 1 auto;
	}
	#home .blocks-wrap .col:hover .link-wrap {
		transform: translateX(-2rem);
	}
}
@media (min-width: 1200px) {
	#home .blocks-wrap  {
		padding: var(--dpad);
	}
	#home .blocks-wrap .block {
		padding-right: 470px;
	}
	#home .blocks-wrap .img-wrap {
		position: absolute;
		top: 50%;
		right: 150px;
		transform: translateY(calc(-50% + 20px));
		width: 350px;
		height: auto;
		opacity: 0;
		transition: opacity .2s ease, transform .4s ease;
	}
	#home .blocks-wrap .link-wrap {
		position: absolute;
		right: 1.5rem;
		transform: translateX(-50%);
	}
	#home .blocks-wrap .block:hover .img-wrap,
	#home .blocks-wrap .block.active .img-wrap {
		opacity: 1;
		transform: translateY(-50%);
	}
}
@media (min-width: 1400px) {
	#home .blocks-wrap .block {
		padding-right: 570px;
	}
	#home .blocks-wrap .img-wrap {
		width: 400px;
		right: 200px;
	}
}

/* ----------HOME CTA---------- */
#home .form-wrap {
	background-color: var(--navy);
}
#home .form-wrap .img-wrap {
	background-image: url("/wp-content/themes/shbase/img/AdobeStock_1234092239_Preview.jpeg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 300px;
}
#home .form-wrap .wrapper {
	padding: 3rem 1.5rem;
	color: #fff;
}
#home .form-wrap .wrapper h2.gform_title {
	font-size: clamp(1.625rem, 0.55rem + 4.6vw, 2.25rem);
	color: #fff;
}
#home .form-wrap .wrapper p.gform_description {
	font-size: 1rem;
}
#home .form-wrap .gform_wrapper label.gfield_label, #home .form-wrap .gform_wrapper legend.gfield_label, #home .form-wrap .gform-field-label--type-sub {
	color: #fff !important;
}
#home .form-wrap .gform_wrapper input, #home .form-wrap .gform_wrapper textarea, #home .form-wrap .gform_wrapper select {
	background-color: rgba(255, 255, 255, 0.2) !important;
}
#home .form-wrap .gform_wrapper input, #home .form-wrap .gform_wrapper textarea, #home .form-wrap .gform_wrapper select {
  color: #fff !important;
}
#home .form-wrap .gform_footer button[type="submit"]:hover, #home .form-wrap .gform_footer button[type="submit"]:active, #home .form-wrap .gform_footer button[type="submit"]:focus {
	background-color: #fff !important;
	color: var(--navy) !important;
}
#home .form-wrap .gform-theme--framework .gform_validation_errors {
	background-color: #fff !important;
}
#home .form-wrap .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 *)) {
	color: #ff795b !important;
}
#home .form-wrap ::placeholder {
	color: #fff;
}
@media (min-width: 576px) {
	#home .form-wrap .wrapper {
		padding: 3rem 2rem;
	}
}
@media (min-width: 768px) {
	#home .form-wrap .wrapper {
		padding: 3rem;
	}
}
@media (min-width: 992px) {
	#home .form-wrap .img-wrap {
		height: auto;
	}
	#home .form-wrap .wrapper {
		padding: 3rem 1.5rem;
	}
}
@media (min-width: 1200px) {
	#home .form-wrap .wrapper {
		padding: 3rem 2rem;
	}
}
@media (min-width: 1400px) {
	#home .form-wrap .wrapper {
		padding: 3rem;
	}
	#home .form-wrap .wrapper {
		padding: 3rem;
	}
}

/* ----------CONTACT---------- */
#home .contact-wrap {
	position: relative;
	padding: var(--mpad);
	background-color: var(--night);
	color: #ffffff;
}
#home .contact-wrap .block {
	position: relative;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#home .contact-wrap .row > div:first-child .block {
	padding-top: 0;
}
#home .contact-wrap .row > div:last-child .block {
	padding-bottom: 0;
	border-bottom: none;
}
#home .contact-wrap .block .icon-wrap {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
#home .contact-wrap .block .icon {
	width: 24px;
	height: 24px;
}
#home .contact-wrap .block .info-wrap {
	font-size: .875rem;
}
#home .contact-wrap .block .heading {
	margin-bottom: 0;
	color: #fff;
}
#home .map-wrap, #home .map-wrap iframe {
	width: 100%;
	height: 200px;
}
@media (min-width: 768px) {
	#home .contact-wrap .block {
		padding: 0;
		border: none;
	}
		#home .map-wrap, #home .map-wrap iframe {
		height: 300px;
	}
}
@media (min-width: 1200px) {
	#home .contact-wrap .block .info-wrap {
		font-size: 1rem;
	}
	#home .contact-wrap .block .heading {
		font-size: 1.25rem;
	}
}
/* ----------FAQ---------- */
.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(--navy);
  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(--bgcolor);
  padding: 14px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}
.faq .accordion-body p {
  font-size: 1.125rem;
}
.faq .accordion-body p:last-of-type {
  margin-bottom: 0;
}

/* ----------SIDEBARS---------- */
.sidebar-wrap {
	background-color: var(--ivory);
	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(--navy);
}
.sidebar-wrap a:hover, .sidebar-wrap a:focus, .sidebar-wrap a:active {
	color: var(--gold);
}
.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.search {
	background-color: var(--ivory);
}
@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(--bgcolor);
	border-radius: 5px;
}

/* ----------SEARCH---------- */
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(--ivory);
}
.archive.search article h2 {
  margin-bottom: 5px;
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	padding: 6rem 0 0;
	background-color: var(--night);
	color: var(--ivory);
	border-bottom: 90px solid var(--gold);
}
footer .container {
	position: relative;
}
footer .container[data-animate] {
	opacity: 1;
	transform: none;
	transition: none;
}
footer .container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: -12% auto 0;
	width: 80%;
	aspect-ratio: 200 / 35;
	background-image: url("/wp-content/themes/shbase/img/giroux.svg");
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 0;
	opacity: 0;
	transition: opacity var(--animate-duration, 1000ms) ease;
	transition-delay: var(--animate-delay, 0ms);
}
footer .container.is-visible::before {
	opacity: 1;
}
footer .content-wrap {
	position: relative;
	margin-bottom: -40px;
	background-color: var(--navy);
	border-radius: 5px;
	z-index: 1;
}
footer .heading {
	margin-bottom: .5rem;
	font-size: 1.5rem;
}
footer p {
	font-size: 1rem;
}
footer svg.icon {
	width: 24px;
	height: auto;
}
#menu-footer-navigation {
	padding: 0;
	margin: 0;
}
#menu-footer-navigation li {
	padding: 0;
	display: block;
	list-style: none;
}
#menu-footer-navigation a, #menu-footer-navigation a:link, #menu-footer-navigation a:visited {
	font-size: 1rem;
	color: var(--ivory);
	transition: color 0.4s ease;
}
#menu-footer-navigation a:hover, #menu-footer-navigation a:focus, #menu-footer-navigation a:active {
	color: var(--gold);
	text-decoration: none;
}
#menu-footer-navigation .nav-link {
  padding: .25rem 0;
}
.credit-wrap {
	padding: 10px 0;
	font-size: .875rem;
	color: var(--ivory);
}
.credit-wrap a, .credit-wrap a:link, .credit-wrap a:visited {
	color: var(--ivory);
}
.credit-wrap a:hover, .credit-wrap a:focus, .credit-wrap a:active {
	color: var(--gold);
}
footer hr {
	margin: 2rem 0;
}
@media (min-width : 428px) {
	footer {
		padding: 7rem 0 0;
	}
}
@media (min-width : 576px) {

}
@media (min-width: 768px) {
	footer {
		padding: 9rem 0 0;
	}
}
@media (min-width : 992px) {
	footer {
		padding: 11rem 0 0;
	}
	footer .info-wrap p {
		max-width: 400px;
	}
}
@media (min-width : 1200px) {
	footer {
		padding: 12rem 0 0;
	}
	#menu-footer-navigation a, #menu-footer-navigation a:link, #menu-footer-navigation a:visited {
		font-size: 1.125rem;
	}
}
@media (min-width : 1400px) {
	footer {
		padding: 14rem 0 0;
	}
}

/* ----------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: 500 !important;
	color: var(--text) !important;
}
.gform-field-label--type-sub {
	color: var(--text) !important;
}
.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select {
	background-color: var(--inputs) !important;
  border: 1px solid rgba(229, 229, 229, 0.14) !important;
  box-shadow: none !important;
  border-radius: 2px !important;
  color: var(--text) !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(--text) !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(--navy) !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 *)) {
		border-radius: 50% !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(--navy) !important;
}
.gform_wrapper .datepicker {
	color: var(--text) !important;
}
.gform_wrapper .charleft {
	color: var(--text) !important;
}
.gform_footer button[type="submit"] {
	padding: 14px 21px !important;
	background-color: var(--gold) !important;
	border: none !important;
	font-family: 'trajan-pro-3', 'Georgia', serif !important;
	font-size: 1.125rem !important;
	font-weight: 400 !important;
	color: #fff !important;
	transition: background-color 0.4s ease, color 0.4s ease !important;
}
.gform_footer button[type="submit"]:hover, .gform_footer button[type="submit"]:active, .gform_footer button[type="submit"]:focus {
	background-color: var(--navy) !important;

}
/* Form Placeholders */
::placeholder {
	color: var(--text);
	opacity: 1;
}

/* ----------WP CORE---------- */
.wp-block-image {
	margin:25px 0;
}
.wp-block-image figcaption {
	text-align: left;
	font-size: .875rem;
}
.wp-block-image img {
	height: auto;
}
 .wp-block-buttons {
   margin-bottom: 15px;
 }
.wp-block-button__link {
	margin: 7px 0;
	padding: 14px;
	background-color: var(--gold);
	font-family: 'trajan-pro-3', 'Georgia', serif !important;
	font-size: 1.125rem !important;
	font-weight: 400 !important;
	line-height: 1;
	color: #fff !important;
	border: none;
	border-radius: 5px;
	transition: background-color 0.4s ease, color 0.4s ease;
}
.wp-block-button__link:hover {
	background-color: var(--navy);
	color: #fff;
}
.wp-block-search__button {
	margin: 0 0 0 5px;
}

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

  0% {
    transform: translateY(-1rem);
    opacity: 0;
  }
}
.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.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #041635;
}
.hamburger-box {
  width: 18px;
  height: 16px;
  display: inline-block;
  position: relative; 
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 18px;
  height: 2px;
  background-color: #231f20;
  border-radius: 5px;
  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); 
}

/* .deco itself shouldn't fade/move — only its ::after should */
.deco[data-animate] {
	opacity: 1;
	transform: none;
	transition: none;
}

.deco::after {
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity var(--animate-duration, 1000ms) ease,
		transform var(--animate-duration, 1000ms) ease;
	transition-delay: var(--animate-delay, 0ms);
}

.deco.is-visible::after {
	opacity: 1;
	transform: none;
}

/* ----------ACCESSIBILITY---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !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(--navy);
  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}
}