/*
	Theme Name: ICT Bloktoberfest
	Description: Sledgehammer Base Theme w/ Bootstrap 5.1.3
	Version: 2.0.0
	Author: Sledgehammer Creative

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

/* ----------FONTS---------- */
/* roboto-condensed-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('/wp-content/themes/base24/fonts/roboto-condensed-v27-latin-300.woff2') format('woff2');
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('/wp-content/themes/base24/fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2');
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('/wp-content/themes/base24/fonts/roboto-condensed-v27-latin-500.woff2') format('woff2');
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('/wp-content/themes/base24/fonts/roboto-condensed-v27-latin-700.woff2') format('woff2');
}

/* ----------BASE STYLES---------- */
:root {
	--bg-dark: #1c1c1c;
	--dk-blue: #18252a;
	--red: #aa2f2c;
	--yellow: #e09e4e;
  --green: #4f6332;
  --linen: #eceae5;
  --text: #1c1c1c;
}

body {
	background-color: var(--linen);
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed', 'Georgia', serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden; /*aos fix*/
}
body .aos-fix {
	overflow-x: hidden;
}
p, ul, ol {
  font-size: 1.125rem;
	margin-bottom: 1rem;
}
p.strong, p strong, p b {
	font-weight: 700;
}
a, a:link, a:visited {
	color: var(--red);
	text-decoration: none;
	transition: all 0.3s ease !important;
}
a:hover, a:active, a:focus {
	color: var(--green);
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'germania-one', 'Trebuchet MS', sans-serif;
	margin: 0 0 1rem 0;
	font-weight: 400;
	color: var(--text);
	line-height: 1;
	text-transform: none;
}
h1 {font-size:3rem;}
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:4rem;}
	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;}
}
@media (min-width : 1200px) {
	h1 {font-size:5rem;}
}

/* ---Buttons--- */
button, a.btn-primary, a.btn-secondary, a.btn-tertiary, a.btn-outline {
  display: inline-block;
  margin: 7px 0;
	padding: 14px;
  vertical-align: middle;
  border: none;
	border-radius: 3px;
  font-size: 1.125rem;
	font-weight: 500;
	text-transform: uppercase;
	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,
a.btn-tertiary:hover, a.btn-tertiary:active, a.btn-tertiary:focus,
a.btn-outline:hover, a.btn-outline:active, a.btn-outline:focus {
  box-shadow: none;
}
button, a.btn-primary {
	background-color: var(--red);
	color: #fff;
	border: 2px solid var(--red);
}
button:hover, button:active, button:focus,
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus {
	background-color: transparent;
	color: var(--red);
}
a.btn-secondary {
	background-color: var(--yellow);
	color: #fff;
	border: 2px solid var(--yellow);
}
a.btn-secondary:hover, a.btn-secondary:active, a.btn-secondary:focus {
	background-color: transparent;
	color: var(--text);
}
a.btn-tertiary {
	background-color: var(--green);
	color: #fff;
	border: 2px solid var(--green);
}
a.btn-tertiary:hover, a.btn-tertiary:active, a.btn-tertiary:focus {
	background-color: transparent;
	color: var(--green);
}

/* ---Misc Sitewide--- */
/* used on anti-spam form */
#theForm {position:absolute;top:0;left:-99999px;}
.overlay {
  position: absolute;
  top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 0;
}
.corners {
	border-radius: 5px;
}
.narrow {max-width: 800px;}
/* 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.3s ease-in-out;
}
.ratio .wrapper {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--linen);
}
.ratio .wrapper img {
  width: 110px;
  height: auto;
  opacity: .6;
  transition: all 0.25s linear;
}
.ratio .wrapper img:hover {
  opacity: 1;
}
/* Form Placeholders */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #7c7c7c;
	opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #7c7c7c;
}
::-ms-input-placeholder { /* Microsoft Edge */
	color: #7c7c7c;
}

/* ----------HEADER---------- */
header {
	position: absolute;
	margin-top: 45px;
	padding: 15px;
	z-index: 9;
}
header .brand-wrap {
	margin-bottom: -35px;
}
.navbar-brand .brand {
	display: block;
	position: relative;
	margin-top: -45px;
	width: 150px;
	height: auto;
	z-index: 9;
}
.int-header {
	position: relative;
	background-image: url(/wp-content/themes/base24/img/bg-header.svg);
  background-color: var(--dk-blue);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.int-header h1 {
  position: relative;
	margin: 0;
	padding: 210px 0 50px;
	text-align: center;
  color: var(--linen);
  z-index: 2;
}
@media (min-width : 992px) {
	header {
		margin-top: 30px;
	}
	header .brand-wrap {
		margin-bottom: 0;
	}
	.navbar-brand .brand {
		margin-top: 0;
	}
	.int-header h1 {
		padding: 240px 0 100px;
	}
}

/* ----------NAVIGATION---------- */
header nav.navbar {
	background-color: rgba(0, 0, 0, 0.3);
	border: 2px solid var(--yellow);
	font-family: 'Roboto Condensed';
	font-weight: 400;
	max-height: 80px;
}
#menu-primary-menu-left {
	background-color: var(--dk-blue);
	padding: 50px 15px 0;
	border-right: 2px solid var(--yellow);
	border-left: 2px solid var(--yellow);
}
#menu-primary-menu-right {
	background-color: var(--dk-blue);
	padding: 0 15px;
	border-right: 2px solid var(--yellow);
	border-bottom: 2px solid var(--yellow);
	border-left: 2px solid var(--yellow);
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited {
	font-size: 1.5rem;
	color: var(--linen);
	text-transform: uppercase;
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
	color: var(--yellow);
}
.dropdown-item,
.dropdown-item:link,
.dropdown-item:visited {
	font-size: 1.25rem;
	color: var(--linen);
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
	background-color: transparent;
	color: var(--yellow);
}
.dropdown-menu {
	position: static !important;
	border-radius: 0;
	border: none;
	transform: none !important;
	transition: all 0.3s ease;
}
.dropdown-item.active, .dropdown-item:active {
	background-color: transparent;
}
.navbar .navbar-toggler {
	position: absolute;
	top: 15px;
	right: 1rem;
	margin: 0;
	padding: 6px;
	background-color: var(--yellow);
	border: none;
  border-radius: 0;
	z-index: 99;
}
.navbar .navbar-toggler:focus {
	background-color: var(--yellow);
  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='%2318252a' d='M0 4.6C0 3.2 1.1 2 2.6 2h26.8C31 2 32 3.2 32 4.6 32 6 30.9 7 29.4 7H2.6A2.6 2.6 0 0 1 0 4.6ZM0 16c0-1.4 1.1-2.6 2.6-2.6h26.8c1.5 0 2.6 1.2 2.6 2.6 0 1.4-1.1 2.6-2.6 2.6H2.6A2.6 2.6 0 0 1 0 16Zm0 11.4C0 26 1.1 25 2.6 25h26.8c1.5 0 2.6 1.1 2.6 2.5 0 1.5-1.1 2.6-2.6 2.6H2.6A2.6 2.6 0 0 1 0 27.4Z'/%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='%2318252a' d='m20 16 9.6-9.6c.5-.5.5-1.3 0-1.8l-2.2-2.2c-.5-.5-1.3-.5-1.8 0L16 12 6.4 2.4c-.5-.5-1.3-.5-1.8 0L2.4 4.6c-.5.5-.5 1.3 0 1.8L12 16l-9.6 9.6c-.5.5-.5 1.3 0 1.8l2.2 2.2c.5.5 1.3.5 1.8 0L16 20l9.6 9.6c.5.5 1.3.5 1.8 0l2.2-2.2c.5-.5.5-1.3 0-1.8L20 16Z'/%3e%3c/svg%3e ");
}
header nav.navbar li {
	position: relative;
}
@media (min-width : 992px) {
	header nav.navbar {
		max-height: 100px;
	}
	header nav.navbar li:before {
		content: "";
		display: inline-block;
		position: absolute;
		left: -3px;
	  top: calc(50% - 2px);
	  width: 4px;
	  height: 4px;
	  background-color: var(--yellow);
	}
	header nav.navbar li:first-of-type:before {
	  background-color: transparent;
	}
	#menu-primary-menu-left, #menu-primary-menu-right {
		background-color: transparent;
		padding: 0;
		border: none;
	}
	.navbar-nav .nav-link,
	.navbar-nav .nav-link:link,
	.navbar-nav .nav-link:visited {
		font-size: 1.125rem;
		padding-left: .75rem;
		padding-right: .75rem;
	}
  .dropdown-menu {
		position: absolute !important;
		background-color: var(--bg-dark);
		border-top: 2px solid var(--yellow);
		border-bottom: 2px solid var(--yellow);
		transform: none !important;
	}
	#menu-primary-menu-right .nav-link {
		position: relative;
		margin-right: 1.5rem;
		padding: .25rem .75rem;
		background-color: var(--linen);
		font-size: 1.5rem;
		color: var(--text);
		border-radius: 3px;
	}
	#menu-primary-menu-right .nav-link:focus,
	#menu-primary-menu-right .nav-link:hover,
	#menu-primary-menu-right .nav-link:active {
		background-color: var(--yellow);
	}
	#menu-primary-menu-right .nav-link::before {
		display: inline-block;
		position: relative;
		margin-right: 3px;
		content: '';
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cdefs%3e%3cstyle%3e .cls-1%7bfill:%231c1c1c;stroke-width:0%7d %3c/style%3e%3c/defs%3e%3cpath d='M16 12v-.5c0-.3-.2-.5-.6-.5H15a1 1 0 0 1-1-1c0-.3.2-.8.6-1l.8-.1c.3 0 .6-.3.6-.6V7c0-.9-.6-1.6-1.4-1.8l-1-3c-.2-.4-.4-.6-.7-.8h-1l-2.7 1-6.8 2.5-.2.1-.5.2C.7 5.2 0 6 0 7v1.3c0 .3.2.6.6.6H1c.5 0 .8.4 1 .9 0 .4-.3.9-.6 1-.3.2-.5.2-.8.2l-.4.1c-.2.2-.2.3-.2.5v1.8c.4.8 1 1.3 2 1.3h12.2c.9 0 1.6-.7 1.7-1.5V12ZM5 5.2l7.3-2.7h.1l.3.8.7 1.9H5Zm.2 8.4H1.9c-.5 0-.8-.3-.8-.8V12A2 2 0 0 0 3 10.7a2 2 0 0 0-.6-2.4 2 2 0 0 0-1.2-.5V7c0-.5.3-.8.8-.8h3.3v.1c0 .3.2.6.5.6s.6-.2.6-.5v-.1H14c.6 0 .8.2.8.8v.7c-1 .1-1.8 1-1.9 2a2.2 2.2 0 0 0 2 2.3v.7c0 .5-.4.8-.8.8H6.3v-.1c0-.3-.3-.5-.6-.5s-.5.2-.5.5v.1Z' class='cls-1'/%3e%3cpath d='M5.2 9.1c0 .3.2.6.5.6.2 0 .3 0 .4-.2l.2-.4v-1c0-.2 0-.4-.2-.5a.6.6 0 0 0-1 .4v1.1Zm.5 3.3c.2 0 .3 0 .4-.2l.2-.4v-1c0-.4-.2-.6-.5-.6s-.6.2-.6.6v1c0 .4.2.6.5.6Z' class='cls-1'/%3e%3c/svg%3e");
		background-size: 16px;
		background-repeat: no-repeat;
		width: 16px;
		height: 16px;
	}
}
@media (min-width : 1200px) {
	header nav.navbar {
		max-height: 100px;
	}
	#menu-primary-menu-left, #menu-primary-menu-right {
		background-color: transparent;
		padding: 0;
		border: none;
	}
	.navbar-nav .nav-link,
	.navbar-nav .nav-link:link,
	.navbar-nav .nav-link:visited {
		font-size: 1.25rem;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/* ----------HERO---------- */
.hero-wrap {
	background-color: var(--bg-dark);
	aspect-ratio: 3 / 4;
}
.hero-wrap .wrapper {
	position: absolute;
	margin-top: 100px;
	padding: 15px;
	width: 90%;
	max-width: 800px;
	font-family: 'Roboto Condensed';
	font-size: 2.125rem;
	color: var(--yellow);
	line-height: 1.2;
	z-index: 1;
}
.hero-wrap .wrapper h1 {
	margin-bottom: .5rem;
	font-family: 'germania-one', 'Georgia', serif;
	font-weight: 400;
	font-size: 3rem;
	color: var(--linen);
}
.hero-wrap .wrapper a.btn-primary {
	display: inline-block;
	position: relative;
	background-color: var(--yellow);
	border: 2px solid var(--yellow);
	font-size: 1.25rem;
}
.hero-wrap .wrapper a.btn-primary:hover,
.hero-wrap .wrapper a.btn-primary:active,
.hero-wrap .wrapper a.btn-primary:focus {
	background-color: transparent;
	border: 2px solid var(--yellow);
	color: #fff;
}
.hero-wrap .featured {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width : 390px) {
	.hero-wrap .wrapper {
		font-size: 2.25rem;
	}
}
@media (min-width : 414px) {
	.hero-wrap .wrapper {
		font-size: 2.5rem;
	}
	.hero-wrap .wrapper h1 {
		font-size: 3rem;
	}
}
@media (min-width : 576px) {
	.hero-wrap {
		aspect-ratio: 1 / 1;
	}
	.hero-wrap .wrapper h1 {
		font-size: 4rem;
	}
}
@media (min-width : 768px) {
	.hero-wrap {
		aspect-ratio: 16 / 9;
	}
	.hero-wrap .wrapper {
		padding: 30px;
	}
	.hero-wrap .wrapper h1 {
		font-size: 3.5rem;
	}
}
@media (min-width : 992px) {
	.hero-wrap .wrapper h1 {
		font-size: 4.5rem;
	}
}
@media (min-width : 1200px) {
	.hero-wrap .wrapper h1 {
		margin-bottom: 1.5rem;
		font-size: 5rem;
	}
}

/* ----------COUNTDOWN---------- */
.countdown-wrap {
  position: relative;
  margin-top: -80px;
  color: var(--linen);
  line-height: 1;
  z-index: 1;
}
.countdown-wrap .container {
  position: relative;
  /*top: -30px; remove when adding countdown date back*/
  background-image: url(/wp-content/themes/base24/img/bg-countdown.svg);
  background-color: var(--red);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  border-radius: 5px;
}
.countdown-wrap #countdown > div {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  text-align: center;
}
.countdown-wrap #countdown > div:last-child {
  margin-right: 0;
}
.countdown-wrap .kicker {
  display: block;
  font-family: 'Roboto Condensed', 'Tahoma', sans-serif;
  font-size: 1.25em;
  font-weight: 300;
}
.countdown-wrap .title {
  display: block;
  font-size: 2.25rem;/*change to 2.25rem when adding countdown date back*/
  font-weight: 700;
}
.countdown-wrap #days, .countdown-wrap #hours, .countdown-wrap #minutes, .countdown-wrap #seconds {
  display: block;
  margin-top: 10px;
  font-family: 'germania-one', 'Trebuchet MS', sans-serif;
  font-size: 2rem;
  color: #edc062;
}
.countdown-wrap #timesup {
  display: block;
  margin-top: 10px;
  font-size: 2.25rem;
  color: var(--yellow);
}
.countdown-wrap .sub {
  display: block;
  margin-bottom: 0;
  font-size: .875em;
}
@media (min-width : 768px) {
  .countdown-wrap {
    margin-top: -65px;
  }
  .countdown-wrap .title {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .countdown-wrap #days, .countdown-wrap #hours, .countdown-wrap #minutes, .countdown-wrap #seconds, .countdown-wrap #timesup {
    margin-top: 0;
    font-size: 3rem;
  }
  .countdown-wrap #timesup {
    margin-top: 0;
    font-size: 2.75rem;
  }
  .countdown-wrap .sub {
    margin-bottom: 5px;
    font-size: 1em;
  }
}
@media (min-width : 1200px) {
	.countdown-wrap .title {
    font-size: 2.5rem;
  }
  .countdown-wrap #days, .countdown-wrap #hours, .countdown-wrap #minutes, .countdown-wrap #seconds, .countdown-wrap #timesup {
    font-size: 4.375rem;
    min-width: 100px;
  }
  .countdown-wrap .sub {
    font-size: 1.25em;
  }
}

/* ----------CONTENT---------- */
main {
	position: relative;
	padding: 40px 0;
	background-color: var(--linen);
}
#home main {
	padding: 40px 0 70px;
}
main h2, main h3, main h4, main h5, main h6 {
	font-family: 'Roboto Condensed', 'Georgia', serif;
	font-weight: 700;
	line-height: 1.2;
}
main h2 {
	font-size: 3.25rem;
}
main aside .ratio {
	aspect-ratio: 21 / 5;
}
main aside .featured.one {
	padding-right: 50px;
}
main aside .featured.two {
	padding-left: 50px;
}
main aside .featured.three {
	padding-left: 25px;
	padding-right: 25px;
}
main .sticker-schnitzel {
	position: absolute;
  top: 62px;
  right: 30px;
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}
main .sticker-dadbod {
	position: absolute;
  top: 170px;
  left: 30px;
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}
main .sticker-weinerdog {
	position: absolute;
  bottom: -25px;
  right: 70px;
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}
@media (min-width : 576px) {
	#home main {
		padding: 80px 0 140px;
	}
	main .sticker-schnitzel {
	  top: 90px;
	  right: 20px;
	  width: 130px;
	}
	main .sticker-dadbod {
	  top: 230px;
	  left: 0;
	  width: 130px;
	}
	main .sticker-weinerdog {
	  bottom: -50px;
	  right: 90px;
	  width: 130px;
	}
}
@media (min-width : 768px) {
	main .sticker-schnitzel {
	  top: 110px;
	  right: 30px;
	  width: 150px;
	}
	main .sticker-dadbod {
	  top: 310px;
	  left: 10px;
	  width: 150px;
	}
	main .sticker-weinerdog {
	  bottom: -35px;
	  right: 100px;
	  width: 150px;
	}
}
@media (min-width : 992px) {
	main {
		padding: 100px 0;
	}
	main .sticker-schnitzel {
	  top: 62px;
	  width: 130px;
	}
	main .sticker-dadbod {
	  top: 170px;
	  width: 130px;
	}
	main .sticker-weinerdog {
	  bottom: 15px;
	  width: 130px;
	}
}
@media (min-width : 1200px) {
	main .sticker-schnitzel {
	  top: 80px;
	  width: 150px;
	}
	main .sticker-dadbod {
	  top: 220px;
	  width: 150px;
	}
	main .sticker-weinerdog {
	  bottom: -45px;
	  right: 130px;
	  width: 150px;
	}
}

/* ----------FUNNELS---------- */
.funnel-wrap {
	position: relative;
	padding: 40px 0;
	background-color: var(--dk-blue);
	color: var(--linen);
}
.funnel-wrap .funnel {
	position: relative;
	padding: 40px 30px;
	background-color: #111b1f;
}
.funnel-wrap .funnel .icon {
	display: block;
	margin-bottom: 20px;
	width: 128px;
	height: auto;
}
.funnel-wrap .funnel h3 {
	font-size: 2.25rem;
	color: var(--linen);
}
.funnel-wrap .funnel p {
	margin: 0;
	font-size: 1.125rem;
}
@media (min-width : 992px) {
	.funnel-wrap {
		padding: 100px 0;
	}
	.funnel-wrap .funnel {
		padding: 80px 30px;
	}
}

/* ----------TICKETS---------- */
.ticket-wrap {
	position: relative;
	/*padding: 40px 0; with widget */
	padding: 80px 0; /* without widget */
	background-color: var(--bg-dark);
	background-image: url('/wp-content/themes/base24/img/beer-pretzel-sm.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	color: var(--linen);
}
.ticket-wrap .container > div {
	position: relative;
	max-width: 800px;
	z-index: 9;
}
.ticket-wrap h2 {
	margin-bottom: 20px;
	font-size: 2.75rem;
	color: var(--linen);
}
.ticket-wrap p {
	margin: 0;
	font-size: 1rem;
}
.ticket-wrap .tt-widget {
	margin-top: 30px;
}
.ticket-wrap a, .ticket-wrap a:link, .ticket-wrap a:visited {
	color: var(--yellow);
}
.ticket-wrap a:hover, .ticket-wrap a:active, .ticket-wrap a:focus {
	color: var(--linen);
}
.ticket-wrap .overlay {
	background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width : 576px) {
	.ticket-wrap {
		background-image: url('/wp-content/themes/base24/img/beer-pretzel-md.jpg');
	}
	.ticket-wrap h2 {
		font-size: 3.5rem;
	}
}
@media (min-width : 992px) {
	.ticket-wrap {
		/*padding: 100px 0; with widget */
		padding: 160px 0; /* without widget */
		background-image: url('/wp-content/themes/base24/img/beer-pretzel-lg.jpg');
		background-attachment: fixed;
	}
	.ticket-wrap h2 {
		font-size: 4.5rem;
	}
	.ticket-wrap p {
		margin: 0;
		font-size: 1.125rem;
	}
}

/* ----------EVENTS---------- */
.events-wrap {
	position: relative;
  padding: 40px 0;
  background-color: var(--dk-blue);
  color: var(--linen);
}
.events-wrap h2 {
	margin-bottom: 5px;
  font-size: 2.75rem;
  color: var(--linen);
}
.events-wrap h3 {
  font-size: 1.875rem;
  color: var(--yellow);
}
.event {
  display: flex;
  align-items: center;;
  background-color: #111b1f;
}
.event .details {
  margin-left: 20px;
}
.event .title {
  display: block;
  font-family: 'germania-one', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
	font-weight: 400;
}
.event .time {
  display: block;
  font-size: 1rem;
}
.event .location {
  display: block;
  font-size: .875rem;
}
.events-wrap a.btn-primary:hover,
.events-wrap a.btn-primary:active,
.events-wrap a.btn-primary:focus {
	color: #fff;
}
/* ---Event Placeholders--- */
.event .ratio {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 40%;
  height: auto;
}
.event .ratio .img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transition: all 0.25s linear;
}
.event .ratio .placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--linen);
  opacity: 1;
}
@media (min-width : 576px) {
  .event .ratio .placeholder img {
    width: 100px;
    height: 100px;
  }
}
@media (min-width : 992px) {
	.events-wrap {
	  padding: 100px 0;
	}
  .event .ratio {
    width: 25%;
  }
  .events-wrap h2 {
	  font-size: 3rem;
	}
  .event .title {
    font-size: 1.125rem;
  }
}
@media (min-width : 1200px) {
  .event .title {
    font-size: 1.25rem;
  }
}

/* ----------SPONSORS---------- */
.sponsors-wrap {
	position: relative;
	padding: 40px 0;
	background-color: #fff;
}
.sponsors-wrap h3 {
	margin-bottom: 60px;
	font-size: 3rem;
}
.sponsors-wrap h4 {
	margin: 30px auto;
	max-width: 650px;
	font-family: 'Roboto Condensed', 'Georgia', serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}
.presenting .sponsor {
	max-width: 200px;
}
.sponsors .sponsor {
	max-width: 100px;
}
@media (min-width : 992px) {
	.sponsors-wrap {
		padding: 100px 0;
	}
	.sponsors-wrap h4 {
		margin: 60px auto 30px;
	}
}

/* ----------GALLERY---------- */
.gallery-wrap {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 24px 0;
  background-color: var(--dk-blue);
  color: var(--linen);
}
.gallery-wrap .ratio {
	position: relative;
	aspect-ratio: 1 / 1;
}
.gallery-wrap .row > div:nth-child(-n+3) {
  margin-bottom: 24px;
}
.gallery-wrap a.btn-primary {
	margin-bottom: 0;
	padding: 7px 14px;
	font-size: 1rem;
}
.gallery-wrap a.btn-primary:hover,
.gallery-wrap a.btn-primary:active,
.gallery-wrap a.btn-primary:focus {
	color: #fff;
}
@media (min-width : 992px) {
	.gallery-wrap {
		padding: 30px 15px;
	}
	.gallery-wrap .row > div:nth-child(-n+3) {
	  margin-bottom: 0;
	}
}

/* ----------FOOTER---------- */
footer {
	position: relative;
	padding: 20px 0;
	background-color: var(--bg-dark);
	font-size: .875rem;
	color: var(--linen);
}
footer a, footer a:link, footer a:visited {
  color: var(--yellow);
  transition: all 0.3s ease !important;
}
footer a:hover, footer a:active, footer a:focus {
  color: var(--linen);
  text-decoration: none;
}
footer .spacer {
	display: inline-block;
	margin: 2px 10px;
  width: 4px;
  height: 4px;
  background-color: var(--linen);
}
footer span:first-of-type:before {
	background-color: transparent;
}

/* ----------MODALS---------- */
.modal .modal-content {
	background-color: var(--linen);
}
.modal .title {
	font-family: 'Roboto Condensed', 'Tahoma', sans-serif;
	font-size: 2rem;
	font-weight: 700;
}
.modal p {
	font-size: 1.125rem;
}

/* ----------FORMS---------- */
.grecaptcha-badge { visibility: hidden; }
form .small {font-size: .875rem}
.nf-form-fields-required {display: none;}
.nf-field-label label {font-weight: 700 !important;}
.nf-after-field .nf-error-msg {
	margin-right: 0;
	padding-left: 5px;
	background-color: #c40000;
	color: #fff !important;
}
.nf-error-msg.nf-error-field-errors {
	margin-top: 30px;
	font-weight: 700;
	color: #c40000 !important;
}
#ninja_forms_required_items, .nf-field-container {
	margin-bottom: 15px !important;
}
.label-above .nf-field-label {
	margin-bottom: 5px !important;
	line-height: 1;
}
.list-checkbox-wrap .nf-field-element, .list-image-wrap .nf-field-element, .list-radio-wrap .nf-field-element {
	padding-left: 15px !important;
}
.list-checkbox-wrap .nf-field-element ul, .list-image-wrap .nf-field-element ul, .list-radio-wrap .nf-field-element ul {
	line-height: 1.3 !important;
}
.list-checkbox-wrap .nf-field-element li input, .list-image-wrap .nf-field-element li input, .list-radio-wrap .nf-field-element li input {
	margin-top: 4px !important;
}
.list-checkbox-wrap .nf-field-element li label, .list-image-wrap .nf-field-element li label, .list-radio-wrap .nf-field-element li label {
	margin-left: 20px !important;
	font-size: 1rem;
}
.nf-field-element input[type=text], .nf-field-element input[type=email], .nf-field-element input[type=tel] {
	padding: 0 5px;
	background-color: #fff;
	width: 100%;
	height: 40px;
	border: none;
}
.nf-field-element textarea {
	padding: 0 5px;
	background-color: #fff;
	width: 100%;
	max-height: 150px;
	border: none;
}
.nf-field-element select {
	display: block;
	margin-bottom: 15px;
	padding: 5px;
	width: 100%;
	height: 40px !important;
	border: none;
	border-radius: 0px;
	background: #fff url(/wp-content/themes/base24/img/icons/icon-select.svg) right center no-repeat;
	background-size: 40px 40px;
	appearance: none; /* this is must */
	-webkit-appearance: none;
	-moz-appearance: none;
}
.field-wrap input[type="submit"] {
	margin: 7px 0;
	padding: 7px 14px;
	background-color: var(--red);
	width:100% !important;
	border-radius: 3px;
	font-family: 'Roboto Condensed';
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	border: 2px solid var(--red);
	transition: all 0.3s ease;
}
.field-wrap input[type="submit"]:hover, .field-wrap input[type="submit"]:active, .field-wrap input[type="submit"]:focus {
	background-color: transparent;
	color: var(--red);
}

/* ----------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(--green);
	font-family: 'Roboto Condensed';
  font-size: 1.125rem;
	font-weight: 500;
	color: #fff !important;
	text-transform: uppercase;
	line-height: 1;
	border: 2px solid var(--green);
	border-radius: 5px;
}
.wp-block-button__link:hover {
	background-color: transparent;
	color: var(--green) !important;
}

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

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
.wiggling-image:hover {
    animation: wiggle 0.5s ease-in-out infinite;
  }
@keyframes wiggle {
  0% { transform: rotate(0); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

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