/*
Theme Name: Peoria Park District - 2023
Author: Central States Media
Author URI: http://www.centralstatesmedia.com/
Description: This site was built by Central States Marketing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ppd
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
 Colors / Typography @ root
*/
:root {
  --black-dk: #242424;
  --black: #333;
  --black-20: #4f4f4f;
  --black-40: #828282;
  --black-60: #bdbdbd;
  --white-60: #e0e0e0;
  --white-40: #f2f2f2;
  --white-20: #f5f4f6;
  --white: #fff;
  /*
    Site Specific Color Palette
  */
  --purple: #3a4b89;
  --purple-dark: #2b3662;
  --green: rgb(55, 178, 78);
  --yellow: rgb(255, 242, 0);
  --black: #464646;
  --black-light: #575757;
  --grey: #8c8c8c;
  --grey-light: #b3b2b2;
  --white: rgb(255, 255, 255);
  --primary-text: #575757;
}

/*
    Global Font Sizing
  */
:root {
  --baseFontSize: 1rem;
  --baseNavSize: 0.94rem;
  --smallFontSize: 0.8rem;
  --smallestFontSize: 0.512rem;
  --big-boss-heading: 3.052rem;
  --boss-heading: 2.441rem;
  --heading-1: 2.5rem;
  --heading-2: 2rem;
  --heading-3: 1.7rem;
  --heading-4: 1.4rem;
  --heading-5: 1.2rem;
  --heading-6: 1.2rem;
  --heading-7: var(--smallestFontSize);
}

/*
font-family: "chaloops", sans-serif;
font-weight: 700;
font-style: normal;
*/
/*
  Resets
*/
* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out;
}

:after,
:before {
  box-sizing: border-box;
}

button {
  border: none;
  box-shadow: none;
  outline: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*
  HTML / Body
*/
html {
  /* Gap */
  --gap: 2rem;
  --neg-gap: -2rem;
  /* Fluid Gap */
  --gap-fluid: 7vw;
  --neg-gap-fluid: -7vw;
  scroll-behavior: smooth;
  scroll-margin-top: 120px;
}
@media (min-width: 2000px) {
  html {
    --gap-fluid: 10vw;
    --neg-gap-fluid: -10vw;
  }
}
@media (min-width: 3000px) {
  html {
    --gap-fluid: 15vw;
    --neg-gap-fluid: -15vw;
  }
}
@media (min-width: 3500px) {
  html {
    --gap-fluid: 20vw;
    --neg-gap-fluid: -20vw;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  position: relative;
}

/*
  Responsive font sizing
*/
html {
  font-size: 17px;
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 15.5px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 15px;
  }
}
/*
  Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--purple);
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: var(--heading-1);
  text-rendering: optimizeLegibility;
  font-weight: 700;
  color: var(--purple);
}

h2,
.h2 {
  font-size: var(--heading-2);
  font-weight: 700;
}

h3,
.h3 {
  font-size: var(--heading-3);
  font-weight: 700;
}

h4,
.h4 {
  font-size: var(--heading-4);
  font-weight: 700;
}

h5,
.h5 {
  font-size: var(--heading-5);
  font-weight: 700;
}

h6 {
  font-size: var(--heading-6);
  font-weight: 400;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: inherit;
  text-decoration: none;
}

h1 a:focus,
h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  opacity: 0.88;
}

.content h1 a,
.content h2 a,
.content h3 a,
.content h4 a,
.content h5 a,
.content h6 a {
  color: inherit;
  text-decoration: none;
}

.content h1 a:focus,
.content h1 a:hover,
.content h2 a:focus,
.content h2 a:hover,
.content h3 a:focus,
.content h3 a:hover,
.content h4 a:focus,
.content h4 a:hover,
.content h5 a:focus,
.content h5 a:hover,
.content h6 a:focus,
.content h6 a:hover {
  opacity: 0.88;
}

/*
  Links - Global --------------------
*/
a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--baseFontSize);
  color: var(--primary-text);
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a:not(.btn, .button, .event) {
  font-weight: 700;
  color: var(--purple);
  text-decoration: underline;
}
.content a:hover:not(.btn, .button),
.content a:focus:not(.btn, .button) {
  opacity: 0.65;
}

/*
  Basic title link usually on block title
*/
.title-link {
  text-transform: uppercase;
  border-bottom: 2px solid var(--black-20);
  transition: color 0.25s ease-in-out;
}
.title-link:hover {
  color: var(--black-60);
}

/*
  Text --------------------
*/
/*
  Paragraph text
*/
.content { 
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--primary-text);
  font-size: var(--baseFontSize);
 }
p {
  margin-bottom: 1.5rem;
}
p::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p::selection {
  background-color: var(--black-60);
  color: white;
}


/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: var(--primary-text);
  font-size: var(--baseFontSize);
  margin-bottom: 0.5rem;
}

.content ul,
.post-content ul {
  padding: 0 0 1.5rem 40px;
}

.content ul li,
.post-content ul li {
  list-style: disc;
}

/*
  Span
*/
span {
  font-family: inherit;
  font-size: inherit;
}

/*
  Bold Text
*/
b {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/*-------------------------------------
  02 - UTILITIES UTILITIES UTILITIES
--------------------------------------*/
/*
  Full Width --------------------
*/
/* Breaks out of wrapper for full-width content - extending bg color for example*/
.full-width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  padding: 0;
}

.full-width-fluid {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 var(--gap-fluid);
}

/*
  Remove / Show content --------------------
*/
.hide {
  display: none;
}

.show {
  display: block;
}

/*
  Margin / Padding Resets --------------------
*/
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.no-border {
  border: none;
}

/*
  Alignment
*/
.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/*
  Shadows
*/
.shadow-bottom-inset {
  box-shadow: inset 0 -35px 35px -20px rgba(60, 60, 60, 0.3);
}

.shadow-bottom {
  box-shadow: 0px 10px 6px -10px rgba(60, 60, 60, 0.3);
}

/*
  Horizontal Rule
*/
hr {
  height: 3px;
  margin: 20px 0;
  border: none;
  background: var(--black-60);
}

/*
  PAGINATION STYLES for WP
*/
.pagination {
  clear: both;
  padding: 20px 0;
  position: relative;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.pagination span,
.pagination a {
  display: block;
  float: left;
  margin: 2px 2px 2px 0;
  padding: 6px 9px 5px 9px;
  text-decoration: none;
  width: auto;
  color: #666 !important;
  background: #d5d5d5;
}

.pagination a:hover {
  color: #fff !important;
  background: #000;
}

.pagination span {
  background: #666;
  color: #fff !important;
}

.pagination .current {
  padding: 6px 9px 5px 9px;
  background: #000;
  color: #fff !important;
}

/*
  SEARCH RESULTS STYLES for WP
*/
.search-results h1 {
  font-size: 1.2rem;
}

/*
  BREADCRUMBS (Yoast)
*/
#breadcrumbs {
  margin: 0;
  list-style: none;
  border-radius: 4px;
	text-align: left;
	padding-block: 2rem;
}

#breadcrumbs a {
  color: var(--primary-text);
  text-decoration: none;
  text-align: center;
	font-weight: 300;
}
#breadcrumbs a:hover {
  text-decoration: underline;
	opacity: 1;
	color: var(--green);
}
#breadcrumbs .breadcrumbs_last {
	font-weight: 700;
}

/*-------------------------------------
  03 - LAYOUT LAYOUT LAYOUT LAYOUT LAYOUT
--------------------------------------*/
/*
  wrappers - wraps large sections of content for uniform vertical alignment --------------------
*/
/* Creates a wrapper around main sections of content */
.wrapper {
  margin: 0 auto;
  padding: 0 var(--gap);
  max-width: 1600px;
}

/* Removes max-width for larger-fluid design */
.wrapper-fluid {
  margin: 0 auto;
  padding: 0 var(--gap-fluid);
}

.wrapper-inner {
  padding: 30px 2rem;
}

/*
  Containers - generally affect horizontal spacing & centering --------------------
*/
.container {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 48rem;
}

.site-content {
    min-height: 400px;
    padding: 20px 0;
}

/*
  Sections  - generally affect vertical spacing --------------------
*/
/* used for normal section to create space between */
.section {
  margin-bottom: 4rem;
}

.section-sm {
  margin-bottom: 3rem;
}

/* used for section within another block or section */
.section-block {
  margin-bottom: 2rem;
}

/* used to create space within a section when 2 sections touch eachother
     eg: 2 sections with diff bg colors */
.section-spacer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-spacer-lg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-spacer-top {
  padding-top: 2rem;
}

.section-spacer-bottom {
  padding-top: 2rem;
}

/* used to center section inside parent element as well as center align the text */
.section-centered {
  text-align: center;
  display: flex;
  justify-content: center;
}

.section-prefooter {
  margin-bottom: 7rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/*
  Page Headers --------------------
*/
/* if outside a parent container - add the left and right padding */
.page-header {
  margin-bottom: 2.25rem;
}

.page-header-title {
  margin-bottom: 2rem;
}

.page-header-subtitle {
  margin-bottom: 1rem;
  max-width: 80%;
  font-size: 1.1rem;
}

/*
  Text Alignment --------------------
*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*
  Text Blocks --------------------
*/
.text-block {
  margin: 0 0 3rem;
}

.text-block-narrow {
  margin: 0 0 3rem;
  /* Adjust max-width as needed */
  max-width: 43rem;
}

.text-block-center {
  margin: 0 auto 3rem;
  /* Adjust max-width as needed or eliminate if already in a parent container */
  max-width: 43rem;
}

/*-------------------------------------
  04 - COMPONENTS COMPONENTS COMPONENTS COMPONENTS COMPONENTS
--------------------------------------*/
/*
  Buttons --------------------
*/
.btn,
a.btn,
.wp-block-button__link,
input[type=submit] :not(.search-form),
.gform_button {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--green);
  padding: 8px 30px;
  margin: 0 10px 15px;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out !important;
}
.btn:hover, .btn:focus,
a.btn:hover,
a.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type=submit] :not(.search-form):hover,
input[type=submit] :not(.search-form):focus,
.gform_button:hover,
.gform_button:focus {
  background: var(--green);
  color: var(--white);
  opacity: 1;
}

.btn--full {
  width: 100%;
  margin: 0 0 10px;
}

/*
  Links - Test links similar to buttons ------------------
*/
/*
  Basic text link usually inline
*/
.link {
  display: inline-block;
  color: var(--black-20);
  text-align: center;
}
.link:hover, .link:focus {
  color: var(--black-60);
}

/*
  Icons --------------------
*/
.icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin: 0 4px;
  -webkit-mask-image: none;
          mask-image: none;
}

/*
  Social Icons
*/
.social-icons .icon {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  width: 25px;
  height: 25px;
  border-radius: 6px;
}

.social-icons .fb {
  background: url("img/icon-fb.svg") center/40% no-repeat;
}

.social-icons .insta {
  background: url("img/icon-insta.svg") center/70% no-repeat;
}

.social-icons .twit {
  background: url("img/icon-twt.svg") center/70% no-repeat;
}
.social-icons .linkedin {
  background: url("img/icon-linkedin.svg") center/70% no-repeat;
}

.social-icons .icon:hover {
  background-color: var(--purple);
  opacity: 1;
}

/*
  Kadence Blocks ------------------
*/


/*
  Kadence Block gallery
*/
.kb-gallery-ul .kadence-blocks-gallery-item .kadence-blocks-gallery-item-inner figure .kb-gallery-image-contain.kadence-blocks-gallery-intrinsic img {
	padding-inline: 50px;
}
.kb-splide .splide__pagination, .kb-splide ul.splide__pagination.splide__pagination {
	display: none;
}

/*
  Kadence Block HR Divider
*/
.wp-block-kadence-spacer.kt-block-spacer-14_f4022e-c8 .kt-divider {
	border-top-color: none;
}


/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Top Bar
*/
.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  background: var(--purple-dark);
  padding-block: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}
.top-bar a.contact {
	text-align: center;
	line-height: 1.1;
}
.top-bar a,
.top-bar div.lang {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  padding: 5px 5px;
	margin-bottom: 0;
}
.top-bar div.lang {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	margin-right: -30px;
	cursor: pointer;
}
/* Google translator styles */
#google_language_translator select.goog-te-combo {
	color: #fff !important;
	border: none !important;
	width: auto;
    -moz-appearance: none;
    -webkit-appearance: none;
	cursor: pointer;
}
.google_language_translator:hover {
	color: #fff;
}
#google_language_translator select.goog-te-combo:hover option {

}

#google_language_translator {
	height: 30px;
	cursor: pointer;
}
#google_language_translator .goog-te-gadget .goog-te-combo {
	cursor: pointer !important;
}

.top-bar a:hover, .top-bar a:focus {
  color: var(--yellow);
  opacity: 1;
}
.top-bar a::before,
.top-bar div.lang::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.top-bar a.alerts::before {
  background: url("img/icons/icon-alert.svg") center/80% no-repeat;
}
.top-bar div.lang::before {
  background: url("img/icons/icon-lang.svg") center/80% no-repeat;
}
.top-bar a.access::before {
  background: url("img/icons/icon-accessibility.svg") center/80% no-repeat;
}
.top-bar a.careers::before {
  background: url("img/icons/career.svg") center/80% no-repeat;
}
.top-bar a.contact::before {
  background: url("img/icons/icon-mail.svg") center/85% no-repeat;
	margin-top: 2px;
}

@media (max-width: 700px) {
	.top-bar {
		justify-content: center;
	}
  .top-bar a {
    font-size: 0.85rem;
  }
  .top-bar a.careers {
    display: none;
  }
}
@media (max-width: 500px) {
	.top-bar div.lang {
		display: none;
	}
}
/*
  Site Header
*/
.site-header {
  position: -webkit-sticky;
  position: sticky;
  inset: 0;
  z-index: 4000;
  background: var(--purple);
  box-shadow: 0px 15px 10px -15px #000;
}
.site-header .inner.wrapper {
  max-width: 1800px;
}
.site-header .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
}
.site-header .inner .main-logo:hover {
  opacity: 0.65;
}
.site-header .inner .main-logo img {
  width: 75px;
  -webkit-transform: scale(2);
          transform: scale(2);
  margin-left: var(--gap);
}

@media (max-width: 1050px) {
  .site-header .inner .main-logo img {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
/* Add styles here to shrink down header after scroll */
.site-header.shrink .main-logo img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.site-header.shrink .main-nav .menu-main-menu-container > ul > li > a {
  font-size: 0.85rem;
}


/*
  Main Navigation
*/
.main-nav {
  height: 100%;
  margin-left: 2rem;
  position: relative;
}
.main-nav .menu-main-menu-container {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
  margin-left: 2.3rem;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li:hover {
  background: var(--white);
}
.main-nav .menu-main-menu-container > ul > li:hover > a {
  color: var(--purple);
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 30px;
  margin-bottom: 0;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
}
.main-nav .menu-main-menu-container > ul > li > a:hover, .main-nav .menu-main-menu-container > ul > li > a:focus {
  color: var(--purple);
  opacity: 1;
}

@media (max-width: 1200px) {
  .main-nav .menu-main-menu-container > ul > li > a {
    font-size: 0.8rem;
  }
}
/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  position: absolute;
  padding: 40px 5% 20px 5%;
  margin: 0 auto;
  max-width: 100%;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 3px 10px 25px -10px rgba(60, 60, 60, 0.85), inset 0 25px 45px -20px rgba(60, 60, 60, 0.6);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: slidedown 0.2s ease-out;
          animation: slidedown 0.2s ease-out;
  z-index: 99999 !important;
}

.main-nav ul li:hover > ul,
.main-nav ul li:focus-within > ul {
  display: block;
}
.main-nav ul li ul {
	columns: 4;
	min-width: min-content;
}
.main-nav ul li ul li ul {
	columns: 1;
}

.main-nav ul ul li {
  margin: 0;
  background: none;
  border-left: 3px solid #ccc;
  padding-left: 30px;
	padding-bottom: 15px;
	line-height: 1.2;
  position: relative;
	break-inside: avoid;
}
.main-nav ul ul li:first-child {
/* 	grid-row: 1 / span 50; */
	border-left: none;
}


.main-nav ul ul li a:hover {
  background: none;
  opacity: 0.65;
}
.main-nav ul ul li a:hover a {
  color: var(--purple);
}

.main-nav ul ul li a {
  display: block;
  color: var(--green);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
	margin-bottom: 15px;
}

/* third level */
.main-nav ul ul ul {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  top: 0;
  box-shadow: none;
}
/* .main-nav ul li#menu-item-272 ul {
	columns: 2;
} */
.main-nav ul li ul li.col-2 ul {
	columns: 2;
}

.main-nav ul ul li:hover > ul,
.main-nav ul ul li:focus-within > ul {
  display: block;
}

.main-nav ul ul ul li {
  display: block;
  border: none;
  padding: 0;
	line-height: 1.1;
	margin-bottom: 10px;
}

.main-nav ul ul ul li a {
  font-size: 0.85rem;
  color: var(--primary-text);
  padding: 0;
  margin-bottom: 1px;
  text-align: left;
}
/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON --------------
*/
/*
  Search Trigger Icon
*/
.search-trigger {
  justify-self: end;
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 5rem;
}
.search-trigger:hover, .search-trigger:focus {
  opacity: 0.65;
}

/*
  Mobile Menu Icon
*/
.menu-icon {
  justify-self: end;
  display: inline-block;
  margin-left: 20px;
/* 	margin-right: 3rem; */
  cursor: pointer;
  line-height: 0.7;
  transition: all 0.5s ease;
}
.menu-icon span {
  display: block;
  width: 35px;
  height: 4px;
  margin-block: 6px;
  background: var(--white);
  border-radius: 3px;
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  gap: 30px;
  padding: 80px 2rem 10px 2rem;
  position: fixed;
  left: -125%;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 5000;
  background: var(--purple-dark);
  opacity: 1;
  overflow: auto;
  transition: left 0.2s ease-in-out;
}

.mobile-nav .exit {
  position: absolute;
  top: 30px;
  right: 4rem;
  width: 30px;
  height: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav nav {
  margin-bottom: 50px;
  width: 100%;
}

.mobile-nav ul li {
/*   text-align: right; */
  margin: 0;
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.35rem;
	font-weight: 700;
  color: var(--white);
  padding: 4px 30px;
  text-transform: uppercase;
  position: relative;
  transition: none;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  color: var(--yellow);
  opacity: 1;
}


.mobile-nav .mobile-menu-logo {
  width: 125px;
}

/*
  Mobile DropDown
*/
.mobile-nav ul ul {
  display: none;
  position: relative;
  margin-left: 1rem;
}
.mobile-nav li:hover > ul,
.mobile-nav li:focus > ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.mobile-nav ul ul li {
  display: block;
  margin-bottom: 15px;
}
.mobile-nav ul ul li.menu-item-has-children {
  border-left: 1px solid var(--yellow);
}
.mobile-nav ul ul li a {
  text-transform: none;
  border-bottom: none;
	font-size: 1.3rem;
  font-weight: 700;
}



/*
  Mobile DropDown 3rd level
*/
.mobile-nav ul ul ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-left: 1rem;
}
.mobile-nav ul ul li:hover ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.mobile-nav ul ul ul li {
	border-left: none;
	margin-bottom: 0;
}
.mobile-nav ul ul ul li.menu-item-has-children {
	border-left: none;
}
.mobile-nav ul ul ul li a {
  font-size: 1.2rem;
	font-weight: 400;
}

.mobile-nav.open {
  left: 0;
}
.mobile-nav .mobile-logo {
  text-align: center;
}

@media (max-width: 800px) {
  .mobile-nav ul ul ul {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-nav ul ul li:hover > ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .mobile-nav ul ul ul {
    grid-template-columns: 1fr;
  }
  .mobile-nav ul ul li:hover > ul {
    grid-template-columns: 1fr;
  }
}



/*
  Search Form
*/
.search-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--black-light);
  border-radius: 0 0 5px 5px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 60%;
  top: 100%;
  right: 0;
  padding-right: 10px;
  z-index: 10;
  -webkit-transform-origin: top;
          transform-origin: top;
  box-shadow: 0px 15px 10px -15px #000;
  transition: all 0.25s ease;
}

.search-wrap.active {
  cursor: pointer;
  opacity: 1;
  right: var(--gap-fluid);
  visibility: visible;
  transition: all 0.5s ease;
}

.search-form {
  display: grid;
  grid-template-columns: 5fr auto;
  align-content: center;
  right: 0;
  transition: all 0.25s ease-in-out;
  z-index: 20;
}

.search-icon {
  width: 35px;
  height: 35px;
  background: url("img/search.svg") center/60% no-repeat;
  background-color: var(--alabaster);
  cursor: pointer;
  border: none;
  border-right: 3px solid var(--blue);
}
.search-icon:focus {
  opacity: 0.65;
}

.search-box {
  border: 0;
  grid-column: 1/span 1;
  grid-row: 1;
  padding-left: 10px;
  font-size: 0.9rem;
  background: #fff;
  background: var(--blue);
  outline: none;
  text-align: center;
}

input.search-box {
  color: var(--white);
  font-size: 0.8rem;
}

.search-exit {
  align-self: center;
  display: inline-block;
  color: var(--white);
  padding: 3px;
  margin-left: 10px;
  width: 100%;
  font-size: 0.75rem;
  cursor: pointer;
}

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .site-header .inner {
    grid-template-columns: 1fr;
  }
  .site-header .inner .main-logo {
    grid-row: 1;
    justify-self: start;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    grid-row: 1;
    align-self: center;
    display: inline-block;
  }
  .search-trigger {
    grid-row: 1;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .menu-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .search-wrap {
    right: 0;
    width: 100%;
  }
  .search-wrap.active {
    right: 0;
  }
}







/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  SLIDER
*/
.slider-mobile {
  display: none;
}

#slider {
  height: auto;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
#slider ul.slides li img {
  object-fit: cover;
  object-position: right;
  height: auto;
  min-height: 400px;
  max-height: 600px;
  width: 100%;
}

#slider .flexslider {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .slider-dt {
    display: none;
  }
  .slider-mobile {
    display: block;
  }
  #slider li img {
    max-height: none;
  }
}
/*
  MAIN
*/
/*
  CTAS SECTION
*/
.ctas-bg {
  background: var(--green);
  padding-block: 20px;
}
.ctas-bg .ctas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  justify-items: center;
}
.ctas-bg .ctas a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: 20px 40px;
  border: 5px solid transparent;
  border-radius: 20px;
  line-height: 1.1;
}
.ctas-bg .ctas a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.ctas-bg .ctas a:hover, .ctas-bg .ctas a:focus {
  border: 5px solid var(--yellow);
  opacity: 1;
}
.ctas-bg .ctas a.register::before {
  background: url("img/icons/edit.svg") center/100% no-repeat;
}
.ctas-bg .ctas a.calendar::before {
  background: url("img/icons/calendar.svg") center/100% no-repeat;
}
.ctas-bg .ctas a.find::before {
  background: url("img/icons/map.svg") center/100% no-repeat;
}
.ctas-bg .ctas a.member::before {
  background: url("img/icons/button.svg") center/100% no-repeat;
}

@media (max-width: 1200px) {
  .ctas-bg .ctas {
    grid-template-columns: 1fr 1fr;
  }
  .ctas-bg .ctas a {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
/*
  INTRO SECTION
*/
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  align-items: center;
}
.intro .content h1 {
  font-weight: 400;
}
.intro .stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px 20px;
  justify-items: center;
}
.intro .stats .bar {
  height: 100%;
  background: var(--primary-text);
  width: 3px;
}
.intro .stats .btn {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}

@media (max-width: 1050px) and (min-width: 800px) {
  .intro .stats {
    grid-template-columns: 1fr;
  }
  .intro .stats img {
    width: 75%;
  }
  .intro .stats .bar {
    width: 80%;
    height: 3px;
  }
  .intro .stats .btn {
    grid-row: 4;
    grid-column: 1;
  }
}
@media (max-width: 800px) {
  .intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro .stats .btn {
    grid-column: 1/-1;
    justify-self: center;
  }
}
/*
  EVENTS SECTION - Home & inside page, and custom tax for events
*/
.events-bg {
  background: url("img/grey-bg.png") center/100% no-repeat;
  background-size: cover;
  overflow: hidden;
}
.events-bg h2 {
  margin-bottom: 3rem;
}
.events {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-items: center;
  margin-bottom: 3rem;
  max-width: 1600px;
}
.events-inside-pg {
  grid-template-columns: repeat( auto-fill, minmax(250px, 1fr) );
  gap: 2rem 3%;
  padding-inline: none;
}
.events .event {
/*   display: grid; */
  border-radius: 50px 50px 50px 50px;
  margin-inline: 10px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.events-inside-pg .event {
  margin-inline: 0;
/*   max-width: 450px; */
}
.events .event img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 50px 50px 0 0;

}
.events .event .bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-inline: 1rem;
  padding-block: 1rem 2rem;
  border-radius: 0 0 50px 50px;
}
.events .event .bottom > * {
  color: var(--grey);
}

.events .event .bottom .title {
  display: block;
  margin-bottom: 0;
  color: var(--purple);
  font-size: 1.6rem;
  font-weight: 700;
	line-height: 1.1;
}
.events .event .bottom .dates {
	font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
  color: var(--green);
  padding: 3px;
  width: 100%;
}

.events .event .bottom .location-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  position: relative;
}
.events .event .bottom .location-wrap::after {
  justify-self: end;
  content: "";
  right: 0;
  width: 25px;
  height: 25px;
  background: url("img/icons/green-arrow.png") center/100% no-repeat;
  transition: all 0.25s ease-in-out;
}
.events .event .bottom .location-wrap .location {
	display: inline-block;
  font-size: 1.2rem;
  line-height: 1.1;
  z-index: 10;
}

.events .event:hover {
  opacity: 1;
  background: rgba(255, 242, 0, 0.1);
}
.events .event:hover .bottom {
	opacity: 1;
}
.events .event:hover .bottom .location-wrap::after {
  margin-right: -5px;
}
.events .event:hover .bottom .title {
  color: var(--green);
}
.events .slick-prev,
.events .slick-next {
	display: none !important;
}


.events-pagination ul {
	display: flex;
	justify-content: center;
	padding: 0;
	margin-bottom: 15px;
}
.events-pagination ul li {
	list-style: none;
	margin-inline: 10px;
}

@media (max-width: 1200px) {
  body.home .events {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  body.home .events .event:nth-last-child(-n+1) {
    display: none;
  }
}

@media (max-width: 900px) {
  body.home .events {
      display: block;
    }
	body.home .events.wrapper {
      padding: 0;
    }
}




/* Events Single Template */

body.single-events article img {
	width: 100%;
	max-width: 400px;
}
body.single-events .single-events-grid .post-content p.details {
  font-size: 1.3rem;
}
body.single-events p.organizer {
	margin: 0;
	font-size: 1.1rem;
	color: var(--white);
}
body.single-events p.date,
body.single-events p.time,
body.single-events p.location {
	font-weight: 700;
  font-size: 1.4rem;
	margin: 0;
	color: var(--yellow);
}
body.single-events article a {
	font-weight: 700;
}
body.single-events .single-events-grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 30px;
/* 	justify-items: center; */
}

@media (max-width: 800px) {

  .events-bg h2 {
    text-align: center;
  }
  .events.wrapper-fluid {
    padding: 0;
  }
  .events-inside-pg {
	grid-template-columns: 1fr 1fr;
  }
   body.single-events .single-events-grid {
	grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
	.events-inside-pg {
		grid-template-columns: 1fr;
	}
}
/*
  STAY UP TO DATE SECTION
*/
.sign-up.wrapper-fluid {
/* 	max-width: 1800px;
	padding-inline: 2rem; */
}
.sign-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 30px;
  padding-block: 2rem;
}
.sign-up h3 {
  margin: 0;
}
.sign-up .right .btn {
  background: var(--purple);
	color: var(--white);
	border: none;
	min-width: 250px;
  margin-bottom: 0;
}
.sign-up .right .btn:hover,
.sign-up .right .btn:focus {
	background: var(--green);

}


@media (max-width: 1000px) {
  .sign-up {
    flex-direction: column;
    text-align: center;
  }
}
/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.page-id-268 .feature {
  display: none;
}
.feature {
  display: grid;
	border-bottom: 75px solid var(--green);
  position: relative;
}

.feature img {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  min-height: 20vh;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*
  INSIDE PAGE
*/
.inside-pg.section-spacer {
	padding-block: 2rem;
}


/*
  CONTENT / CONTENT-POSTS STYLES
*/
/* Styles for post entry meta - (date) */
.entry-meta {
  margin-bottom: 30px;
}

/* Styles for WP category list */
.entry-category {
  display: inline-block;
}

.entry-category ul {
  display: inline-block;
}

.entry-category ul li {
  display: inline-block;
  margin-left: 5px;
}


/*
   Board Of Trustees Template
*/
.board-bg.section-spacer {
	padding-bottom: 2rem;
}
.board-bg {
  background: var(--purple);
/*   overflow: hidden; */
}
.board-bg h4 {
  color: var(--white);
  margin-bottom: 3rem;
}
.board-bg .board-cards {
/* 	max-width: 1400px; */
	position: relative;
	overflow: hidden;
}
.board-cards-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

.board-bg .board-cards .card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
}

.board-bg .board-cards .card img {
  justify-self: end;
	-o-object-fit: cover;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    max-width: 200px;
    height: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.board-bg .board-cards .card .copy {
	justify-self: start;
	text-align: left;
/* 	opacity: 0; */
}
/* .board-bg .board-cards .card:hover .copy {
	opacity: 1;
} */
.board-bg .board-cards .card .copy .name,
.board-bg .board-cards .card .copy .title,
.board-bg .board-cards .card .copy .phone,
.board-bg .board-cards .card .copy .email {
	color: var(--white);
	margin-bottom: 0;
}
.board-bg .board-cards .card .copy .name {
	font-size: 1.3rem;
	font-weight: 700;
}
.board-bg .board-cards .card .copy .title {
	margin-bottom: 10px;
	font-weight: 700;
}
.board-bg .board-cards .card .copy .email {
	margin-bottom: 1rem;
}
.board-bg .board-cards .card .copy a.btn {
	margin: 0;
}

@media (max-width: 500px) {
	.board-bg .board-cards .card {
		gap: 15px;
	}
	.board-bg .board-cards .card .copy .name {
		font-size: 1.1rem;
	}
}


/* Board Template CTA's */
.board-ctas {
	display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
	max-width: 1000px;
	padding-block: 0 2rem;
}
.board-ctas > * {
	flex: 1;
	min-width: 200px;

}

@media (max-width: 1000px) {
  .board-bg {
    text-align: center;
  }
}
@media (max-width: 800px) {
  .board-bg .board-cards .card p {
    font-size: 1rem;
  }
}

/* board/board-meetings - Board meetings Granicus iFrame full width adjustment */
.page-id-38 iframe {
  width: 100%
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
/*
  EXPLORE SECTION
*/
.explore-bg {
  background: var(--green);
  overflow: hidden;
}
.explore-bg h4 {
  color: var(--white);
  margin-bottom: 3rem;
}
.explore-bg h4 br {
  display: none;
}
.explore-bg h4 span {
  color: var(--yellow);
  font-weight: 400;
}
.explore-bg .explore-cards {
  position: relative;
}
.explore-bg .explore-cards::before {
  content: "";
  display: block !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to right, rgba(55, 178, 78, 0.9) 1%, rgba(55, 178, 78, 0.7) 3%, rgba(55, 178, 78, 0.5) 5%, transparent 100%);
}
.explore-bg .explore-cards::after {
  content: "";
  display: block !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to left, rgba(55, 178, 78, 0.9) 1%, rgba(55, 178, 78, 0.7) 3%, rgba(55, 178, 78, 0.5) 5%, transparent 100%);
}
.explore-bg .explore-cards .card {
  display: grid;
  position: relative;
	margin-inline: 20px;
}
.explore-bg .explore-cards .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}
.explore-bg .explore-cards .card img {
  grid-column: 1/-1;
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 400px;
  aspect-ratio: 7/5;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.explore-bg .explore-cards .card p {
  grid-column: 1/-1;
  grid-row: 1;
  align-self: end;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 20px;
  text-align: left;
  z-index: 10;
}

/* .slick-track .slick-slide {
  display: block;
  height: auto;
} */

@media (max-width: 1000px) {
  .explore-bg {
    text-align: center;
  }
  .explore-bg h4 br {
    display: block;
  }
}
@media (max-width: 800px) {
  .explore-bg .explore-cards .card p {
    font-size: 1rem;
  }
}
/*
  FACILITIES SECTION
*/
.facilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.facilities .logos-wrap {
  padding-left: var(--gap-fluid);
  padding-right: 2rem;
  padding-block: 4rem;
  background: var(--purple);
}
.facilities .logos-wrap .inner h5 {
  color: var(--white);
  margin-bottom: 2rem;
}
.facilities .logos-wrap .inner .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  align-items: center;
  max-width: 800px;
}
.facilities .logos-wrap .inner .logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 20%;
}
.facilities .logos-wrap .inner .logos .logo img {
  max-width: 145px;
}
.facilities .logos-wrap .inner .logos .logo:hover {
  opacity: 1;
  -webkit-filter: brightness(300%);
          filter: brightness(300%);
}
.facilities .right {
  padding-block: 4rem;
  background: url("img/trees-bg.png") center/100% no-repeat;
  background-size: cover;
}
.facilities .right .inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.facilities .right .inner * {
  color: var(--yellow);
}
.facilities .right .inner img {
  width: 150px;
}
.facilities .right .inner p {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
.facilities .right .inner .btn {
  border-color: var(--yellow);
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .facilities {
    grid-template-columns: 1fr;
  }
}

/* Main Footer Area */
.site-footer {
  background: var(--black-light);
  padding-top: 4rem;
}
.site-footer .site-footer-inner {
  display: flex;
  justify-content: space-between;
}
.site-footer .site-footer-inner .footer-logo img {
  width: 30px;
}
.site-footer .site-footer-inner .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: end;
}
.site-footer .site-footer-inner .links ul.left li a,
.site-footer .site-footer-inner .links ul.right li a {
  color: var(--white);
  font-weight: 700;
	font-size: 1rem;
}
.site-footer .site-footer-inner .links ul.left li a:hover, .site-footer .site-footer-inner .links ul.left li a:focus,
.site-footer .site-footer-inner .links ul.right li a:hover,
.site-footer .site-footer-inner .links ul.right li a:focus {
  color: var(--yellow);
  opacity: 1;
}
.site-footer .site-footer-inner .links .social-icons {
  grid-column: 1/-1;
  background: var(--green);
  padding: 5px 20px;
  border-radius: 6px 6px 0 0;
}
.site-footer .bottom-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-block: 2rem 3rem;
  background: var(--black);
}
.site-footer .bottom-bar * {
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
}
.site-footer .bottom-bar .cred {
  display: inline-block;
  margin: 0;
}
.site-footer .bottom-bar .cred a:hover {
  color: var(--yellow);
  opacity: 1;
}
.site-footer .bottom-bar ul {
  justify-self: center;
  display: flex;
  gap: 20px;
}
.site-footer .bottom-bar ul li a:hover {
  color: var(--yellow);
  opacity: 1;
}

@media (max-width: 800px) {
  .site-footer .site-footer-inner {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }
  .site-footer .site-footer-inner .links {
    justify-items: center;
  }
  .site-footer .bottom-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 50px;
    text-align: center;
  }
  .site-footer .bottom-bar ul {
    align-self: end;
  }
}


/*-------------------------------------
  Plugin Styles
--------------------------------------*/



/* 
 * Tribe Events 
*/
.tribe-events-pg-template {
	max-width: 1400px !important;
}
.tribe-events-pg-template ul {
	padding-left: 40px;
}
.tribe-events-pg-template ul li {
	list-style: disc;
	list-style-position: inside;
}
.tribe-events-pg-template .tribe-events-nav-pagination .tribe-events-sub-nav ul.tribe-events-sub-nav li {
	list-style: none !important;
}
/* buttons */
.tribe-common-c-btn {
	background: var(--green) !important;
	transition: all .2s ease-in-out !important;
}
.tribe-common-c-btn:hover {
	opacity: .65;
}

/* list view title size */
.tribe-events-calendar-list__event-title-link {
	font-size: 1.5rem;
	font-weight: 700;
}


/* single event view */ 
.tribe-events-single .tribe_events {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	overflow: unset;
}

.tribe-events-single .tribe_events .img-btn-wrap {
	align-self: start;
	position: sticky;
	top: 8rem;
	background: var(--white);
	z-index: 1000;
}
/* Tribe Registration button */
.btn.tribe-events-registration {
	display: block;
  max-width: 200px;
	margin-inline: 0;
	background: var(--green);
	color: var(--white);
}
.btn.tribe-events-registration:hover,
.btn.tribe-events-registration:focus {
	opacity: .65;
}
.tribe-events-single .tribe_events .tribe-events-event-image {
	
}
.tribe-events-single .tribe_events img {
/* 	width: 70%; */
	min-width: 300px;
	border-radius: 50px 50px 0 0;
}



/* photo view */
article.tribe-events-pro-photo__event img {
	border-radius: 50px 50px 0 0;
	
}
.tribe-events-pro-photo__event-details-wrapper {
	align-items: center;
	min-height: 100px;
	padding: .5rem 1rem 1rem 1rem !important;
	border-radius: 0 0 30px 30px !important;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px !important;
}
.tribe-events-pro-photo__event-title-link {
	display: inline-block;
	font-weight: 700;
	line-height: 1.1 !important;
}
.tribe-events-pro-photo__event-date-tag-month {
	font-size: 1rem !important;
}

/* list view */
.post-type-archive-tribe_events .tribe-common-g-row:nth-of-type(even) {
	background: #f5f5f5;
	padding: .5rem;
	border-radius: 20px;
}

@media (max-width: 800px) {
	.tribe-events-single .tribe_events  {
		display: block;
	}
	.tribe-events-single .tribe_events .tribe-events-event-image {
		position: unset;
	}
}

/* 
 * END Tribe Events 
*/




/* Slick JS --------------- */

.slick-prev {
	left: 20px;
	top: 35%;
	z-index: 100;
}
.slick-next {
	right: 20px;
	top: 35%;
	z-index: 100;
}
.explore-cards .slick-prev,
.explore-cards .slick-next {
	top: 45%;
}
.slick-prev::before,
.slick-next::before {
	background: url("img/left-arrow.svg") center/100% no-repeat !important;
	width: 15px;
	height: 30px;
  color: transparent !important;
	z-index: 20;
}
.slick-next::before {
    background: url("img/right-arrow.svg") center/100% no-repeat !important;
}

/* Userway --------------- */



@media (max-width: 700px) {
  
}

[id] {
    scroll-margin-top: 100px;
}


/* 404 PAGE */
.error-404 {
    padding: 60px 0 70px;
}

.error-404__content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 60px;
}

.error-404__copy {
    max-width: 620px;
}

.error-404__copy h1 {
    margin: 0 0 24px;
    color: #354e8c;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.08;
    font-weight: 700;
}

.error-404__copy p {
    margin: 0 0 32px;
    font-size: 20px;
    line-height: 1.6;
    color: #222;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.error-404__actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 14px 28px;

    border: 2px solid #354e8c;
    border-radius: 8px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.error-404__actions .button-primary {
    background: #2fa844;
    border-color: #2fa844;
    color: #fff;
}

.error-404__actions .button-primary:hover,
.error-404__actions .button-primary:focus {
    background: #268c39;
    border-color: #268c39;
    color: #fff;
    transform: translateY(-2px);
}

.error-404__actions .button-secondary {
    background: #fff;
    border-color: #354e8c;
    color: #354e8c;
}

.error-404__actions .button-secondary:hover,
.error-404__actions .button-secondary:focus {
    background: #354e8c;
    color: #fff;
    transform: translateY(-2px);
}

.error-404__art {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404__art img {
    display: block;
    width: 100%;
    max-width: 760px;
    height: auto;
}


/* TABLET */
@media (max-width: 1100px) {
    .error-404__content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .error-404__copy h1 {
        font-size: 44px;
    }

    .error-404__copy p {
        font-size: 18px;
    }
}


/* MOBILE */
@media (max-width: 800px) {
    .error-404 {
        padding: 40px 0 50px;
    }

    .error-404__content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .error-404__copy {
        max-width: none;
        text-align: center;
    }

    .error-404__copy h1 {
        font-size: 38px;
    }

    .error-404__copy p {
        font-size: 17px;
    }

    .error-404__actions {
        justify-content: center;
    }

    .error-404__art img {
        max-width: 650px;
    }
}


/* SMALL PHONES */
@media (max-width: 500px) {
    .error-404__copy h1 {
        font-size: 32px;
    }

    .error-404__actions {
        flex-direction: column;
    }

    .error-404__actions .button {
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */