/*
	Theme Name: The Mynt Venue
	Description: Sledgehammer Base Theme w/ Bootstrap 5.1.3
	Version: 3.0.0
	Author: Sledgehammer Creative

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

/* ----------BASE STYLES---------- */
:root {
	--bgcolor: #ffffff;
  --mynt: #2f6863;
  --gold: #a89f8e;
  --gray: #f6faf7;
  --text: #0d1c1b;
  --inputs: #ffffff;
}

body {
	background-color: var(--bgcolor);
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'informapro', 'Tahoma', sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--text);
	line-height: 1.6;
}
p, ul, ol {
  font-size: 1.125rem;
	margin-bottom: 1rem;
}
a, a:link, a:visited {
	color: var(--mynt);
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease !important;
}
a:hover, a:active, a:focus {
	color: var(--gold);
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1rem 0;
	font-family: 'griffon', 'Georgia', serif;
	font-weight: 400;
	color: var(--text);
	line-height: 1.2;
}
h1 {font-size:2.5rem;}
h2 {font-size:2rem;}
h3 {font-size:1.5rem;}
h4 {font-size:1.375rem;}
h5 {font-size:1.25rem;}
h6 {font-size:1rem;}
strong, b {font-weight: 500}
@media (min-width : 992px) {
	h1, h2, h3, h4, h5, h6 {margin: 0 0 1.5rem 0;}
	h1 {font-size:3.5rem;}
	h2 {font-size:2.75rem;}
	h3 {font-size:2rem;}
	h4 {font-size:2.5rem;}
	h5 {font-size:1.5rem;}
	h6 {font-size:1.25rem;}
}

/* ---Buttons--- */
button, a.btn-primary, a.btn-secondary {
  display: inline-block;
  margin: 7px 0;
	padding: 14px 21px;
  vertical-align: middle;
  border: none;
	border-radius: 5px;
	font-family: 'informapro', 'Tahoma', serif;
  font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
  transition: all 0.3s 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: var(--mynt);
	color: #fff;
}
button:hover, button:active, button:focus,
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus {
	background-color: var(--gold);
	color: #fff;
}
a.btn-secondary {
	background-color: var(--gold);
	color: #fff;
}
a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
	background-color: var(--mynt);
	color: #fff;
}
.btn-close {
	background-color: var(--gold);
	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='m9.69 8 5.95 5.95c.47.47.47 1.22 0 1.7-.46.47-1.22.47-1.69 0L8 9.7l-5.95 5.95c-.46.47-1.22.46-1.69 0-.47-.47-.47-1.22 0-1.7L6.31 8 .36 2.05C-.11 1.58-.11.82.36.35c.46-.47 1.22-.47 1.69 0L8 6.3 13.95.36c.46-.47 1.22-.46 1.69 0 .47.47.47 1.22 0 1.7L9.69 8.01Z'/%3e%3c/svg%3e");
	opacity: 1;
}
.btn-close:hover {
	opacity: 1;
}

/* ---Misc Sitewide--- */
.container-fluid {
	--bs-gutter-x: 2rem !important;
	max-width: 1720px;
}
.overlay {
  position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	z-index: 0;
}
.corners {
	border-radius: 5px;
}
.bg-leaves {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 378px;
	background-image: url('/wp-content/themes/shbase/img/bg-leaves.svg');
	background-repeat: no-repeat;
	opacity: .2;
	z-index: -1;
}
.fancy {
	padding: 10px;
	border: 1px solid var(--gold);
}
/* Image Placeholders */
.ratio {
  position: relative;
  aspect-ratio: 3 / 2;
  background-color: transparent;
}
.ratio .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.ratio .wrapper {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ratio .wrapper img {
  width: 110px;
  height: auto;
}
@media (min-width : 576px) {
	.bg-leaves {
		width: 450px;
		height: 568px;
	}
}
@media (min-width : 992px) {
	.container-fluid {
		--bs-gutter-x: 6rem !important;
	}
	.bg-leaves {
		width: 525px;
		height: 662px;
	}
}
@media (min-width : 1200px) {
	.bg-leaves {
		width: 600px;
		height: 757px;
	}
}
/* 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;
}
.navbar-brand img {
	display: block;
	width: 100px;
	height: auto;
}
.btn-primary.phone {
	position: absolute;
	top: 21px;
	right: 68px;
	padding: 10px;
	background-color: var(--mynt);
	border-radius: 5px;
	z-index: 99;
}
.btn-primary.phone .icon-phone path {
	fill: #ffffff;
}
.int-header h1 {
  position: relative;
	margin: 0;
	padding: 1rem;
	text-align: center;
  color: var(--text);
  line-height: 1;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  z-index: 99;
}
@media (min-width : 768px) {
	.int-header h1 {
		padding: 1.5rem 0;
		font-size: 3rem;
	}
}
@media (min-width : 992px) {
	.btn-primary.phone {
		position: relative;
		top: auto;
		right: auto;
		padding: 10px;
	}
}
@media (min-width : 1200px) {
	.navbar-brand img {
		width: 150px;
	}
	.int-header h1 {
		font-size: 3.5rem;
	}
}

/* ----------NAVIGATION---------- */
nav {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited {
	font-family: 'informapro', 'Tahoma', serif;
	font-size: 1.875rem;
	font-weight: 400;
	color: #fff;
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
	color: #f2e6d3;
}
.dropdown-menu {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 7px;
	border: none;
	transform: none !important;
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	font-family: 'informapro', 'Tahoma', serif;
	font-size: 1.5rem;
	color: #fff;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
	background-color: transparent;
	color: #f2e6d3;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.dropdown-toggle::after {
  width: 10px;
  height: 5px;
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3e%3cpath fill='%23fff' d='M9.71.21C9.54.07 9.32 0 9.09 0s-.45.07-.62.21l-3.56 2.9L1.54.23A.94.94 0 0 0 .91 0C.69 0 .48.07.31.2.11.35 0 .55 0 .78c0 .22.09.43.27.58l4 3.41c.17.14.39.22.63.23.23 0 .45-.07.62-.21l4.19-3.42c.19-.15.29-.36.29-.58S9.9.36 9.71.21Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
}
.navbar .navbar-toggler {
	position: absolute;
	top: 28px;
	right: 1rem;
	margin: 0;
	padding: 10px;
	background-color: var(--gold);
	border: none;
  border-radius: 5px;
	z-index: 99;
}
.navbar .navbar-toggler:focus {
	background-color: var(--gold);
  box-shadow: none;
}
.navbar-toggler-icon {
	display: block;
	width: 24px;
	height: 24px;
	background: none;
}
.offcanvas {
	background-color: var(--mynt);
}
.offcanvas-header .btn-close {
	margin-right: 0;
}
.offcanvas-footer {
	padding: 1rem;
	color: #fff;
}
.offcanvas-footer a {
	color: #fff;
	font-weight: 300;
}
.offcanvas-footer a:hover, .offcanvas-footer a:active, .offcanvas-footer a:focus {
	color: var(--gray);
}
.offcanvas-footer .icon-phone, .offcanvas-footer .icon-pin {
	width: 16px;
	height: 16px;
}
@media (min-width : 992px) {
	.navbar-nav .nav-link,
	.navbar-nav .nav-link:link,
	.navbar-nav .nav-link:visited {
		padding-left: .5rem;
		padding-right: .5rem;
		font-size: 1.25rem;
		color: var(--text);
	}
	.dropdown-menu {
		background-color: var(--mynt);
	}
	.dropdown-item,
	.dropdown-item:link,
	.dropdown-item:visited {
		font-size: 1rem;
	}
	.dropdown-toggle::after {
	  content: "";
	  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'%3e%3cpath fill='%230d1c1b' d='M9.71.21C9.54.07 9.32 0 9.09 0s-.45.07-.62.21l-3.56 2.9L1.54.23A.94.94 0 0 0 .91 0C.69 0 .48.07.31.2.11.35 0 .55 0 .78c0 .22.09.43.27.58l4 3.41c.17.14.39.22.63.23.23 0 .45-.07.62-.21l4.19-3.42c.19-.15.29-.36.29-.58S9.9.36 9.71.21Z'/%3e%3c/svg%3e");
	}
	.offcanvas-footer {
		display: none;
	}
}
@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 SLIDER---------- */
.hero-wrap {
	position: relative;
	z-index: 9;
}
.hero-wrap #slider {
	width: 100%;
}
.hero-wrap .heading {
	display: block;
	position: absolute;
	left: 0;
	bottom: 60px;
	padding: 5px;
	background: #FFFFFF;
	font-size: 1.25rem;
	font-family: 'griffon', 'Georgia', serif;
	line-height: 1.2;
}
.hero-wrap .heading:last-of-type {
	bottom: 20px;
	padding: 5px 5px 5px 15px;
}
.hero-wrap .ratio {
	aspect-ratio: 10 / 7;
}
.hero-wrap .main {
	padding: 10px;
	border: 1px solid var(--gold);
}
.hero-wrap .next-slide-preview {
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 40%;
}
.hero-wrap .preview {
	background-color: #fff;
	padding: 8px;
	border: 1px solid var(--gold);
}
.hero-wrap .controls {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 120px;
}
.hero-wrap .carousel-control-next, .carousel-control-prev {
	padding: 15px 10px;
	width: auto;
	opacity: 1;
	transition: all 0.3s ease;
}
.hero-wrap .carousel-control-next:hover, .carousel-control-prev:hover {
	background-color: #e5ded1;
}
.hero-wrap .carousel-control-next:active, .carousel-control-prev:active,
.hero-wrap .carousel-control-next:focus, .carousel-control-prev:focus {
	background-color: transparent;
}
.hero-wrap .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 40 18'%3e%3cpath fill='%23231f20' d='M39.54 8.52H1.7L10.07.85c.19-.18.21-.48.04-.68a.454.454 0 0 0-.66-.04L.16 8.64v.01c-.03.03-.06.07-.08.11 0 .02-.02.03-.03.04-.03.06-.04.12-.04.19s.02.13.04.19c0 .02.02.03.03.04.02.04.05.08.08.11v.01l9.3 8.52c.09.08.2.12.31.12.13 0 .26-.06.35-.16.17-.2.15-.51-.04-.68L1.7 9.48h37.84c.26 0 .46-.22.46-.48s-.21-.48-.46-.48Z'/%3e%3c/svg%3e");
  width: 40px;
  height: 18px;
  background-size: 40px 18px;
}
.hero-wrap .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 40 18'%3e%3cpath fill='%23231f20' d='M.46 9.48H38.3l-8.37 7.67c-.19.18-.21.48-.04.68.17.2.46.22.66.04l9.3-8.52v-.01c.03-.03.06-.07.08-.11 0-.02.02-.03.03-.04.03-.06.04-.12.04-.19s-.02-.13-.04-.19c0-.02-.02-.03-.03-.04a.444.444 0 0 0-.08-.11v-.01L30.54.12a.465.465 0 0 0-.31-.12c-.13 0-.26.06-.35.16-.17.2-.15.51.04.68l8.37 7.67H.46c-.26 0-.46.22-.46.48s.21.48.46.48Z'/%3e%3c/svg%3e");
  width: 40px;
  height: 18px;
  background-size: 40px 18px;
}
@media (min-width : 576px) {
	.hero-wrap .heading {
		bottom: 70px;
		font-size: 1.875rem;
	}
	.hero-wrap .carousel-item {
		padding-right: 55px;
	}
	.hero-wrap .next-slide-preview {
	  opacity: 0;
	  transition: opacity .45s ease;
	  will-change: opacity;
	}
	.hero-wrap .next-slide-preview.animate {
  	opacity: 1;
	}
}
@media (min-width : 768px) {
	.hero-wrap .heading {
		bottom: 80px;
		padding: 5px 15px;
		font-size: 2.25rem;
	}
	.hero-wrap .heading:last-of-type {
	  padding: 5px 15px 5px 35px;
	}
	.hero-wrap .next-slide-preview {
		width: 30%;
	}
}
@media (min-width : 992px) {
	.hero-wrap #slider {
		width: 70%;
	}
	.hero-wrap .heading {
		position: absolute;
		left: 3rem;
		bottom: 100px;
		margin: 0;
		padding: 5px 15px;
		background: #FFFFFF;
		background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
		max-width: 70%;
		font-size: 2.5rem;
	}
	.hero-wrap .heading:last-of-type {
		bottom: 30px;
		padding-left: 2rem;
	}
	.hero-wrap .next-slide-preview {
		bottom: 30px;
	}
	.hero-wrap .controls {
		bottom: -20px;
	}
}
@media (min-width : 1200px) {
	.hero-wrap .heading {
		bottom: 115px;
		font-size: 3.5rem;
	}
}
@media (min-width : 1600px) {
	.hero-wrap .heading {
		bottom: 130px;
		font-size: 4rem;
	}
}
@media (min-width : 1800px) {
	.hero-wrap .heading {
		bottom: 140px;
		font-size: 4.5rem;
	}
}


/* ----------CONTENT---------- */
main {
	position: relative;
	padding: 2.5rem 0;
}
#home main {
	padding: 4rem 0 2rem;
}
#home main .text-wrap {
	position: relative;
	margin: 0 0 20px 0;
	padding: 10px;
	background-color: var(--gray);
}
#home main .text-wrap .wrapper {
	padding: 40px 20px 30px;
	border: 1px solid var(--gold);
}
#home main h1, #home main h2 {
	font-size: 1.4rem;
}
#home main h2, #home main h3, #home main h4, #home main h5, #home main h6 {
	font-family: 'informapro', 'Tahoma', sans-serif;
	font-weight: 500;
}
#home main .ratio {
  aspect-ratio: 4 / 5;
}
#home main .featured {
  padding: 10px;
  border: 1px solid var(--gold);
}
#home main  .wp-block-buttons {
 margin-bottom: 0;
}
main.one-col article {
	max-width: 1000px;
}
@media (min-width : 576px) {
	#home main h1 {
		font-size: 2.25rem;
	}
}
@media (min-width : 768px) {
	#home main {
		padding: 6rem 0 4rem;
	}
	#home main .text-wrap {
		margin: 0 0 0 -140px;
	}
}
@media (min-width : 992px) {
	#home main {
		padding: 8rem 0 4rem;
	}
	main {
		padding: 4rem 0;
	}
	#home main .text-wrap {
		position: relative;
		margin-left: -140px;
		padding: 10px;
		background-color: var(--gray);
	}
	#home main .text-wrap .wrapper {
		padding: 40px;
		border: 1px solid var(--gold);
	}
	#home main h1 {
		font-size: 2.5rem;
	}
}
@media (min-width : 1200px) {
	#home main {
		padding: 10rem 0 6rem;
	}
}
@media (min-width : 1400px) {
	#home main .text-wrap .wrapper {
		padding: 80px;
	}
}

/* ----------BLOCKS---------- */
.block-wrap .container-fluid {
	background-color: var(--gray);
}
.block-wrap .bg-bl {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 150px;
	height: 147px;
	background-image: url('/wp-content/themes/shbase/img/bg-bl.svg');
	background-repeat: no-repeat;
	opacity: .15;
}
.block-wrap .bg-tr {
	position: absolute;
	top: 0;
	right: 0;
	width: 118px;
	height: 150px;
	background-image: url('/wp-content/themes/shbase/img/bg-tr.svg');
	background-repeat: no-repeat;
	opacity: .15;
}
.block-wrap .row {
	background-color: var(--gray);
	padding-top: 30px;
	padding-bottom: 30px;
}
.block-wrap .block {
	padding: 20px;
}
.block-wrap .icon {
	margin-bottom: 1rem;
}
.block-wrap h2 {
	font-size: 1.5rem;
}
@media (min-width : 576px) {
	.block-wrap .bg-bl {
		width: 300px;
		height: 294px;
	}
	.block-wrap .bg-tr {
		width: 300px;
		height: 381px;
	}
}
@media (min-width : 768px) {
	.block-wrap .row {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
@media (min-width : 992px) {
	.block-wrap .container-fluid {
		background-color: transparent;
	}
}
@media (min-width : 1200px) {
	.block-wrap .row {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

/* ----------CTA---------- */
.cta-wrap {
	position: relative;
	padding: 2rem 0;
	color: #fff;
}
.cta-wrap .wrapper {
	padding: 10px;
	border: 1px solid var(--gold);
}
.cta-wrap .wrapper .content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px;
	background-color: var(--gold);
	background-image: url('/wp-content/themes/shbase/img/bg-deco.svg');
	background-size: 150px 140px;
}
.cta-wrap .form-wrap {
	position: relative;
	z-index: 99;
}
.cta-wrap h3 {
	margin: 0 auto .25rem auto;
	font-size: 1.75rem;
	color: #fff;
}
.cta-wrap h3 span {
	display: block;
	font-size: 70%;
}
.cta-wrap  a.btn-primary:hover, .cta-wrap  a.btn-primary:active, .cta-wrap  a.btn-primary:focus {
	background-color: #fff;
	color: var(--mynt);
}
@media (min-width : 576px) {
	.cta-wrap h3 {
		font-size: 2rem;
	}
}
@media (min-width : 768px) {
	.cta-wrap {
		padding: 4rem 0;
	}
}
@media (min-width : 992px) {
	.cta-wrap h3 {
		font-size: 2rem;
	}
}
@media (min-width : 1200px) {
	.cta-wrap {
		padding: 5rem 0;
	}
}

/* ----------GALLERIES---------- */
.gallery.archive .ratio {
	border: 1px solid var(--gold);
}
.gallery.archive .ratio .featured {
	padding: 10px;
}
.gallery.archive .ratio .wrapper {
	background-color: var(--gray);
	border: 10px solid #fff;
}
.gallery.archive .ratio .overlay {
	top: auto;
	bottom: 0;
	height: 40%;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	border-right: 10px solid #fff;
	border-bottom: 10px solid #fff;
	border-left: 10px solid #fff;
}
.gallery.archive h2 {
	display: block;
	position: absolute;
	margin: 0;
	padding: 20px;
	top: auto;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 1.125rem;
	color: #fff;
	z-index: 99;
}
.gallery.archive h2.dark {
	color: var(--text);
}
.gallery.archive .vendor-partners {
	font-size: .875rem;
}
.gallery.single .img-fluid {
	padding: 10px;
	border: 1px solid var(--gold);
}
@media (min-width : 992px) {
  .gallery.archive h2 {
		padding: 30px;
		font-size: 1.25rem;
	}
}

/* ----------CONTACT---------- */
.contact .icon-phone, .contact .icon-pin {
	width: 16px;
	height: 16px;
}
.contact .icon-phone path, .contact .icon-pin path, .contact .icon-social path {
	fill: var(--mynt);
}
.contact .wrapper {
	margin-top: 2rem;
	padding: 1rem 1rem .75rem 1rem;
	background-color: var(--gray);
}
.contact .map {
	width: 100%;
	height: 250px;
}
@media (min-width : 768px){
	.contact .wrapper {
		padding: 1.5rem 1.5rem 1.25rem 1.5rem;
	}
}
@media (min-width : 992px){
	.contact .wrapper {
		margin-top: 4rem;
	}
}
@media (min-width : 1200px){
	.contact .map {
		padding: 2rem 2rem 1.5rem 2rem;
		width: 100%;
		height: 500px;
	}
}

/* ----------SIDEBARS---------- */
.sidebar-widget {
	background-color: var(--gold);
	margin: 1rem 0 0;
	padding: 1rem 1rem .25rem 1rem;
	color: #fff;
}
.sidebar-widget h3, .sidebar-form h3 {
	display: block;
	margin-bottom: 10px;
	font-size: 1.5rem;
	color: #fff;
}
.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 a, .sidebar-widget a:link, .sidebar-widget a:visited {
	color: #fff;
}
.sidebar-widget a:hover, .sidebar-widget a:active, .sidebar-widget a:focus {
	color: var(--mynt);
}
.sidebar-widget .post-date {
	display: block;
	font-size: .875rem;
}
@media (min-width : 768px) {
  .sidebar-widget, .sidebar-form {
  	padding: 1.5rem 1.5rem .5rem 1.5rem;
  }
}
@media (min-width : 992px) {
  .sidebar-widget {
  	margin: 0;
  }
}

/* ----------ARTICLES---------- */
.archive .ratio {
	border: 1px solid var(--gold);
}
.archive .ratio .featured {
	padding: 10px;
}
.archive .ratio .wrapper {
	background-color: var(--gray);
	border: 10px solid #fff;
}
.archive .ratio .overlay {
	top: auto;
	bottom: 0;
	height: 40%;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	border-right: 10px solid #fff;
	border-bottom: 10px solid #fff;
	border-left: 10px solid #fff;
}
.archive h2 {
	display: block;
	position: absolute;
	margin: 0;
	padding: 20px;
	top: auto;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 1.125rem;
	color: #fff;
	z-index: 99;
}
.archive h2.dark {
	color: var(--text);
}
.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;
}
@media (min-width : 1200px) {
	.archive h2 {
		padding: 30px;
		font-size: 1.25rem;
	}
}

/* ----------SEARCH---------- */
.sidebar-search {
	background-color: var(--gold);
	padding: 1rem;
}
.search article {
	margin-bottom: 1rem;
	border-bottom: 1px solid #ccc;
}
.search-wrap {
	display: none;
  background-color: var(--text);
}
form.search {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.search-input {
	padding: 0 5px;
  background-color: var(--bgcolor);
  width: 100%;
  height: 40px;
  color: var(--text);
  border: none;
  border-radius: 0;
}
.search-submit {
  position: absolute;
  top: -2px;
  right: 5px;
  padding: 8px;
  font-size: .875rem;
}
.search article h2 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	margin-bottom: 2rem;
	color: #fff;
}
footer .ratio {
	aspect-ratio: 1 / 1;
}
footer .container-fluid {
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #244f4b;
}
footer .row {
	background-color: #244f4b;
}
footer h4 {
	margin-bottom: 5px;
	font-size: 1.25rem;
	color: #bfb4a3;
}
footer .icon-phone {
	width: 16px;
	height: 16px;
}
footer .icon-pin {
	width: 16px;
	height: 16px;
}
footer a, footer a:link, footer a:visited {
	display: inline-block;
	color: #fff;
	font-weight: 300;
}
footer a:hover, footer a:active, footer a:focus {
	color: #bcddd9 !important;
}
#menu-footer-navigation {
	padding: 0;
	margin: 0;
}
#menu-footer-navigation li {
	padding: 0;
	display: block;
	list-style: none;
	font-size: 1rem;
}
#menu-footer-navigation .nav-link {
  padding: 3px 0;
}
.credit-wrap {
	font-size: .875rem;
}
@media (min-width : 768px) {
	.credit-wrap {
		padding: 10px 0;
	}
}
@media (min-width : 992px) {
	footer {
		margin-bottom: 3rem;
	}
	footer .container-fluid {
		padding-top: 0;
		padding-bottom: 0;
		background-color: transparent;
	}
}

/* ----------FORMS---------- */
.sidebar-form {
	background-color: var(--gray);
	margin: 1rem 0 0;
	padding: 1rem 1rem .25rem 1rem;
	color: #fff;
}
form .small {font-size: .875rem}
.gform_required_legend {display: none;}
.grecaptcha-badge {z-index: 9 !important;}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
	font-size: 1rem !important;
	font-weight: 500 !important;
	color: var(--text) !important;
}
.gform_wrapper input {
	background-color: var(--inputs) !important;
	border-radius: 0 !important;
	border: 1px solid var(--gold) !important;
	box-shadow: none !important;
}
.gform_wrapper textarea {
	background-color: var(--inputs) !important;
	border: 1px solid var(--gold) !important;
	border-radius: 0 !important;
	box-shadow: none !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(--mynt) !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(--mynt) !important;
}
.gform_wrapper input[type="submit"].gform_button {
	padding: 21px !important;
	background-color: var(--mynt) !important;
	border: none !important;
	border-radius: 5px !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(--gold) !important;
}
@media (min-width : 992px) {
  .sidebar-form {
  	margin: 0;
  }
}

/* ----------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;
}
a.wp-block-button__link {
	margin: 7px 0;
	padding: 14px 21px;
	background-color: var(--mynt);
	font-family: 'informapro', 'Tahoma', serif;
	font-size: 1.125rem;
	font-weight: 400;
	color: #fff !important;
	line-height: 1;
	border: none;
	border-radius: 5px;
}
a.wp-block-button__link:hover {
	background-color: var(--gold);
	color: #fff;
}
.wp-block-search__button {
	margin: 0 0 0 5px;
	padding: 5px 10px;
}

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