/*
Theme Name: Village of Metamora 2025
Author: Central States Media
Author URI: http://www.centralstatesmedia.com/
Description: This site was built by Central States Media
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vm
*/
/***************************************
TABLE OF CONTENTS

01 - BASE
02 - UTILITIES
03 - LAYOUT
04 - COMPONENTS
05 - HEADER / NAVIGATION
06 - PAGES
07 - FOOTER
***************************************/
/*-------------------------------------
  01 - BASE - BASE - BASE - BASE - BASE
--------------------------------------*/
/*
  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 {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
 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
  */
  --blue: #002a5e;
  --blue-light: #4a6785;
  --red: rgb(144, 0, 1);
  --grey: #d9d9d9;
  --white: #ffffff;
  --primary-font-color: var(--primary-color);
  /*
    Global Font Colors
  */
  --primary-color: var(--black);
  --h-color: var(--blue);
  --p-color: var(--primary-font-color);
  --nav-color: var(--black);
  --accent-color: var(--white);
}

/*
    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);
}

/*
    Global Font Styles
*/
:root {
  --primary-font: "Inter", sans-serif;
  --h-font: "Lora", serif;
  --btn-font: "Inter", sans-serif;
  --p-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
  --accent-font: "Inter", sans-serif;
}

/*
    Global Sizing (widths, paddings, etc)
*/
:root {
  --wrapper-max-width: 94rem;
}

/*
  HTML / Body
*/
html {
  scroll-behavior: smooth;
  /* Gap */
  --gap: 2rem;
  --neg-gap: 2rem;
  /* Fluid Gap */
  --gap-fluid: 5vw;
  --neg-gap-fluid: -5vw;
}
@media (max-width: 1500px) {
  html {
    --gap-fluid: 2rem;
    --neg-gap-fluid: -2rem;
  }
}
@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: var(--primary-font);
  -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: var(--h-font);
  color: var(--h-color);
  margin: 0 0 1rem;
  line-height: 1;
  text-wrap: balance;
}

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

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

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

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

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

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

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  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.65;
}

.content h1 {
  color: unset;
  text-transform: unset;
}

.content h2 {
  color: unset;
  text-transform: unset;
}

.content h3 {
  color: unset;
  text-transform: unset;
}

.content h4 {
  color: unset;
  text-transform: unset;
}

.content h5 {
  color: unset;
  text-transform: unset;
}

.content h6 {
  text-transform: unset;
}

.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: var(--primary-font);
  font-size: inherit;
  color: inherit;
  transition: all 0.25s ease-in-out;
}
a:hover, a:focus {
  opacity: 0.6;
}

.content a:not(.btn, .button) {
  font-weight: 700;
  color: var(--primary-font-color);
  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 --------------------
*/
/*
  Content class global styles
*/
.content {
  font-family: var(--p-font);
  font-style: normal;
  font-size: var(--baseFontSize);
  color: var(--p-color);
}

/*
  Paragraph text
*/
p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

p:not(.content *) {
  font-family: var(--p-font);
  color: var(--p-color);
  font-size: var(--baseFontSize);
  margin-bottom: 1.5rem;
}
p:not(.content *)::-moz-selection {
  background-color: var(--black-60);
  color: white;
}
p:not(.content *)::selection {
  background-color: var(--black-60);
  color: white;
}

p.lora {
	font-family: "Lora", serif;
}

/*
  UL / OL Lists
*/
ul li a,
ol li a {
  font-family: var(--primary-font);
  color: var(--primary-font-color);
  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: var(--primary-font);
  font-size: var(--baseFontSize);
}

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

strong {
  font-weight: 700;
}

/*
  Accent Text
*/
.accent {
  font-family: var(--accent-font);
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.2rem;
}

/*-------------------------------------
  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;
}

body:has(.full-width) {
  overflow-x: hidden;
}

/* Adjusts the padding when using .full-width inside kadence blocks */
.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;
}

/*
  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;
}

/*
  Title bars - ads the bars before and after the title
*/
.title-bars {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.title-bars::before, .title-bars::after {
  content: "";
  display: inline-block;
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: 5rem;
  background: url("img/double-line-white.svg") center/100% no-repeat;
  background-size: contain;
}

/*-------------------------------------
  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: var(--wrapper-max-width);
}
body.page-template-page-full-width .wrapper {
  max-width: 82.4rem;
}

/* 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;
}

/*
  Grid Layouts --------------------
*/
.grid-auto-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
}

.grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .grid-auto-1 {
    grid-template-columns: 1fr;
  }
}
/*
  Flex Layouts --------------------
*/
.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-group > * {
  flex: 1; /*  */
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/*
  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: 3rem;
  padding-bottom: 3rem;
}

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

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

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

/* 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;
}

/*
  Center
*/
.center {
  display: flex;
  justify-content: center;
}

/*-------------------------------------
  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;
  color: var(--red);
  border: none !important;
  border-radius: 4px;
  padding: 8px 2px;
  max-width: 300px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.btn span,
a.btn span,
.wp-block-button__link span,
input[type=submit] :not(.search-form) span,
.gform_button span { 
  border-bottom: 2px solid var(--red);
}
.btn::after,
a.btn::after,
.wp-block-button__link::after,
input[type=submit] :not(.search-form)::after,
.gform_button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: translateX(0.4rem);
  margin-bottom: 3px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center/100% no-repeat;
  transition: all 0.25s ease-in-out;
}
.btn:hover::after, .btn:focus::after,
a.btn:hover::after,
a.btn:focus::after,
.wp-block-button__link:hover::after,
.wp-block-button__link:focus::after,
input[type=submit] :not(.search-form):hover::after,
input[type=submit] :not(.search-form):focus::after,
.gform_button:hover::after,
.gform_button:focus::after {
  transform: translateX(0.6rem);
}

.btn-secondary {
  display: inline-block;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
  padding: 8px 45px;
  max-width: 300px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--white);
  color: var(--blue);
  opacity: 1;
}

/*
  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 preceding text
*/
.icon-before {
  position: relative;
}
.icon-before::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Icon following text
*/
.icon-after {
  position: relative;
}
.icon-after::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 15px;
  margin-bottom: 5px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center no-repeat;
}

/*
  Social Icons
*/
/*
  Animations --------------------
*/
/*-------------------------------------
  05 - HEADER HEADER HEADER HEADER HEADER
       NAVIGATION NAVIGATION NAVIGATION
--------------------------------------*/
/*
  Alert - ACF Option - Site Settings in Admin bar
*/
.alert-bar {
  // padding-block: 10px;
  background: var(--red);
  height: 2.5rem;
  overflow: clip;
  .inner {
    overflow: clip;
    p {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 400;
      height: 2.5rem;
      margin: 0;
      text-align: center;
      text-transform: uppercase;
      overflow: clip;
    }
  }
}

/*
  Site Header
*/
.site-header {
  /* use below for sticky header */
  position: sticky;
  inset: 0;
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.site-header .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0px 2rem;
  align-items: center;
}
.site-header .main-logo {
  padding-block: 1.5rem;
  color: var(--blue);
  font-family: "Lora", serif;
  font-size: clamp(1.75rem, 1.393rem + 0.952vw, 2.25rem);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.1;
}

/* Add styles here to shrink down header after scroll */
/*
  Main Navigation
*/
.main-nav .menu-main-menu-container {
  height: 100%;
}

.main-nav {
  height: 100%;
}
.main-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.main-nav .menu-main-menu-container > ul > li {
  display: flex;
  align-items: center;
  margin-left: 3%;
  height: 100%;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  /* 100% height anchor / for full height hover */
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nav-color);
  padding: 3px 10px 3px 10px;
  margin-bottom: 0;
  margin-left: 12px;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li > a:hover, .main-nav .menu-main-menu-container > ul > li > a:focus {
  color: var(--black-60);
}
.main-nav .menu-main-menu-container > ul > li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  right: 0;
  width: 15px;
  height: 15px;
  background: url("img/icon-down-caret.svg") center/100% no-repeat;
  transition: transform 0.3s ease;
}
.main-nav .menu-main-menu-container > ul > li.menu-item-has-children:hover::after {
  content: "";
  transform: rotate(180deg);
}
.main-nav .menu-main-menu-container > ul > li.menu-item-has-children:hover > a {
  color: var(--red);
}
.main-nav .menu-main-menu-container > ul > li:last-of-type a {
  color: var(--red);
  white-space: nowrap;
  position: relative;
}
.main-nav .menu-main-menu-container > ul > li:last-of-type a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  transform: translateX(0.3rem);
  margin-bottom: 2px;
  vertical-align: middle;
  background: url("img/icon-arrow-right.svg") center/100% no-repeat;
  transition: all 0.25s ease-in-out;
}
.main-nav .menu-main-menu-container > ul > li:last-of-type a:hover::after {
  transform: translateX(0.5rem);
}

/*
  Dropdown area
*/
/* second level */
.main-nav ul ul {
  display: none;
  margin: 0;
  position: absolute;
  padding: 0;
  opacity: 0;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  height: auto;
  background-color: var(--blue);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  z-index: 99999 !important;
}

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

.main-nav ul ul li {
  margin: 0;
  height: auto;
}

.main-nav ul ul li:hover {
  background: var(--red);
}
.main-nav ul ul li:hover a {
  color: var(--white);
  opacity: 1;
}

.main-nav ul ul li a {
  display: block;
  color: var(--white);
  padding: 13px 12px 13px 1.3rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 0.8rem;
  text-align: left;
}

.main-nav ul ul li:first-of-type {
  position: relative;
}

/* third level */
.main-nav ul ul ul {
  top: 0;
  left: 100%;
  margin-top: 0;
}

/* End Dropdown area */
/*
  MOBILE-MENU-ICON / MOBILE SEARCH ICON --------------
*/
/*
  Search Trigger Icon
*/
.search-trigger {
  display: inline-block;
  padding: 5px 5px 5px 5px;
  width: 25px;
  height: 30px;
  background: url("img/icon-search.svg") center/100% no-repeat;
  cursor: pointer;
}

/*
  Mobile Menu Icon
*/
.menu-icon {
  cursor: pointer;
  display: none;
  background: var(--red);
  padding: 8px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 6000;
}
.menu-icon span {
  display: block;
  width: 35px;
  height: 2px;
  margin-block: 9px;
  margin-inline: auto;
  background: var(--white);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span {
  background: var(--white);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(1) {
  transform: translate(0, 11px) rotate(-45deg);
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(2) {
  opacity: 0;
}

.site-header .inner:has(.mobile-nav.open) .menu-icon span:nth-of-type(3) {
  transform: translate(0, -11px) rotate(45deg);
}

/*
  Mobile Navigation
*/
.mobile-nav {
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 3rem;
	padding-bottom: 7rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: 95vh;
  background: var(--blue);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 100;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
body:has(.mobile-nav.open) {
  overflow: hidden;
  height: 100vh;
}

.mobile-nav .exit {
  width: 30px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  background: url("img/close.svg") center/100% no-repeat;
}

.mobile-nav nav {
  align-self: start;
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul li {
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
}

.mobile-nav ul li.menu-item-has-children > ul.sub-menu {
  background: rgba(186, 32, 37, 0.3);
}

.mobile-nav ul li a {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--white);
  padding: 8px 15px;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  opacity: 0.65;
}

/*
  Mobile DropDown
*/
.mobile-nav ul.sub-menu li {
  border-bottom: none;
}

.mobile-nav ul ul {
  display: none;
}

/* .mobile-nav li:hover > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
} */
.mobile-nav li.open-submenu > ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.mobile-nav ul ul li {
  display: block;
  margin-bottom: 5px;
}

.mobile-nav ul ul li a {
  font-size: 0.8rem;
  font-weight: 400;
  border-bottom: none;
}

.mobile-nav .btn {
  border: none;
  margin-bottom: 1rem;
}
.mobile-nav .btn:hover, .mobile-nav .btn:focus {
  opacity: 0.65;
}

/*
  WordPress Styles for Main-menu, mobile, and sidebar
*/
/* adds color to active link via wordpress class */
/*
  Search Form
*/
.search-form {
  display: grid;
  grid-template-columns: auto 5fr;
  align-content: center;
  padding: 3px;
  border: 1px solid var(--black);
  max-width: 12rem;
  right: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  z-index: 20;
}

.search-icon {
  width: 25px;
  height: 25px;
  background: url("img/icon-search.svg") center/60% no-repeat;
	background-color: var(--white);
  cursor: pointer;
  border: none !important;
	border-radius: none;
}

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

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

/*
  MOBILE RESPONSIVE MEDIA QUERIES - specific to general
    page layout at specific screen width
*/
@media (max-width: 1050px) {
  .site-header .inner {
    grid-template-columns: auto 1fr;
  }
  .main-nav {
    display: none;
  }
  .menu-icon {
    justify-self: end;
    align-self: center;
    display: inline-block;
  }
  .search-wrap.desktop {
    display: none;
  }
}
@media (min-width: 1050px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
  .search-trigger {
    display: none;
  }
}
/*-------------------------------------
  06 - PAGES PAGES PAGES PAGES PAGES
--------------------------------------*/
/**************************************
  GLOBAL REUSABLE PAGE COMPONENTS
***************************************/
/**************************************
  HOME PAGE
***************************************/
/*
  SLIDER
*/
#slider {
  height: auto;
  position: relative;
  min-height: 400px;
  overflow: hidden !important;
}
#slider ul.slides li {
  display: grid !important;
  grid-template-columns: 1fr;
  position: relative;
}
#slider ul.slides li img {
  grid-column: 1/-1;
  grid-row: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
  height: auto;
  min-height: 400px;
  max-height: 800px;
  width: 100%;
}
#slider ul.slides li .caption-wrap {
  grid-column: 1/-1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  justify-items: start;
  background: none;
  opacity: 1;
  max-width: var(--wrapper-max-width);
}
#slider ul.slides li .caption-wrap .caption {
  align-self: center;
  margin-bottom: 2rem;
  padding: 1rem 3rem 1rem var(--gap-fluid);
  background: rgba(0, 42, 94, 0.6);
  position: relative;
}
#slider ul.slides li .caption-wrap .caption h1 {
  font-size: clamp(2.25rem, 1rem + 3.333vw, 4rem);
  color: var(--white);
  padding: 0 3rem 2rem 3rem;
  margin: 0;
  line-height: 1;
  text-wrap: balance;
  position: relative;
}
#slider ul.slides li .caption-wrap .caption h1 strong {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 0.893rem + 0.952vw, 1.75rem);
  font-weight: 300;
  text-transform: uppercase;
}
#slider ul.slides li .caption-wrap .caption h1::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("img/slider-frame.svg") center/100% no-repeat;
  background-size: contain;
}

.metaslider .flexslider {
  margin: 0 !important;
}

@media (max-width: 767px) {
  #slider ul.slides li .caption-wrap .caption {
    width: 100%;
    margin-bottom: 0;
  }
  #slider ul.slides li .caption-wrap .caption h1::after {
    content: none;
  }
  #slider ul.slides li .caption-wrap .caption::after {
    content: "";
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: url("img/slider-line.svg") center/100% no-repeat;
  }
}
/*
  MAIN
*/
/*
  HOME INTRO-NEWS SECTION
*/
.intro-news {
  background: url("img/red-bg.png") center/100% no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.intro-news .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin-bottom: 2rem;
  text-align: center;
}
.intro-news .intro p,
.intro-news .intro h2 {
  color: var(--white);
}
.intro-news .intro h2 {
  line-height: 1.3;
}
.intro-news .news .title-bars h3 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}
.intro-news .news .newsletter-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: start;
  max-width: 1000px;
  padding-block: 2rem;
}
.intro-news .news .newsletter-feed article {
  padding-block: 0.5rem;
  padding-inline: 3rem;
}
.intro-news .news .newsletter-feed article p,
.intro-news .news .newsletter-feed article span {
  color: var(--white);
  margin-bottom: 0;
}
.intro-news .news .newsletter-feed article p.title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}
.intro-news .news .newsletter-feed article .date {
  font-size: 0.85rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .intro-news .news .newsletter-feed {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1rem;
	justify-items: center;
  }
  .intro-news .news .newsletter-feed article {
    padding-inline: unset;
  }
}
@media (min-width: 767px) {
  .intro-news .news .newsletter-feed > *:not(:nth-child(3n+1)) {
    border-left: 2px solid var(--white);
  }
}
/*
  HOME DISCOVER SECTION
*/
.discover {
  padding-block: 2rem 0;
  padding-inline: 2rem;
  position: relative;
  overflow: hidden;
}
.discover .inner {
  background: var(--white);
  padding-block: 4rem 2rem;
  z-index: 10;
  position: relative;
}
.discover .inner .pad {
	padding-block: 0 3rem;
	padding-inline: 2rem;
	border: 15px solid transparent;
  -o-border-image: url("img/discover-frame.svg") 30;
     border-image: url("img/discover-frame.svg") 30;
}
.discover .inner header {
	display: flex;
	justify-content: center;
}
.discover .inner header h4 {
	background: var(--white);
	margin-top: -3.8rem;
	padding: 2rem;
  text-align: center;
}
.discover .inner .top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 600px;
  gap: 2rem;
  margin-bottom: 2rem;
}
.discover .inner .top-grid .card {
  position: relative;
}
.discover .inner .top-grid .card .title {
  position: absolute;
  padding: 3rem 1rem;
  background: var(--red);
  color: var(--white);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  max-width: -moz-min-content;
  max-width: min-content;
  line-height: 1.4;
}
.discover .inner .top-grid .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.discover .inner .top-grid .card:hover {
  opacity: 1;
}
.discover .inner .top-grid .card:hover .title {
  background: none;
  opacity: 1;
}
.discover .inner .top-grid .card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(144, 0, 1, 0.4);
}
.discover .inner .top-grid .life {
  grid-column: 1;
  grid-row: 1/span 2;
}
.discover .inner .top-grid .school {
  grid-column: 2;
  grid-row: 1/span 1;
}
.discover .inner .top-grid .history {
  grid-column: 2;
  grid-row: 2/span 1;
}
.discover .inner .bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.discover .inner .bottom-grid .cta {
  background: var(--red);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
}
.discover .inner .bottom-grid .cta:hover {
  opacity: 1;
  background: var(--blue);
}
.discover::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  right: 0;
  background: url("img/red-bg-bottom.png") center/100% no-repeat;
  background-size: cover;
}

@media (max-width: 800px) {
  .discover {
    padding-block: 0;
    padding-inline: unset;
  }
	.discover .inner  {
	  padding-block: 2rem;
	}
	.discover .inner .pad {
		border: none;
		padding-block: 4rem 0;
		padding-inline: 0;
	}
	.discover .inner .pad header {
		margin-top: 0;
	}
	
  .discover .inner .pad .top-grid {
    grid-template-columns: 1fr;
  }
  .discover .inner .pad .top-grid .card {
    grid-column: 1;
    grid-row: unset;
  }
  .discover .inner .pad .top-grid .card .title {
    bottom: 0;
    max-width: unset;
    padding: 1rem;
    width: 80%;
  }
  .discover .inner .pad .bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discover::before {
    content: none;
  }
}
@media (max-width: 600px) {
	
  .discover .inner {
		padding: 0;
	}
	.discover .inner .pad .top-grid {
		padding: 0;
	}
  .discover .inner .pad .bottom-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .discover .inner .pad .bottom-grid .cta {
    font-size: 0.95rem;
  }
}
/*
  HOME EVENTS SECTION
*/
.events {
  padding-block: 4rem;
}
.events header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.events header h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
}
.events header h4 .accent {
  color: var(--blue);
}
.events header .btn {
  margin-top: 1.5rem;
}
.events .events-feed article {
  background: var(--grey);
}
.events .events-feed article a .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events .events-feed article a .bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.75rem;
}
.events .events-feed article a .bottom .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  padding: 0.75rem;
  color: var(--white);
  line-height: 1;
}
.events .events-feed article a .bottom .date .day {
  font-size: 1.8rem;
  font-weight: 700;
}
.events .events-feed article a .bottom .date .month {
  font-size: 0.875rem;
}
.events .events-feed article a .bottom .right {
  background: var(--white);
  padding: 0.75rem;
}
.events .events-feed article a .bottom .right p,
.events .events-feed article a .bottom .right span {
  color: var(--blue);
  margin: 0;
}
.events .events-feed article a:hover .bottom .date {
  background: var(--red);
}

/* SWIPER specific styles */
.events .swiper-pagination {
  position: static;
  margin-top: 16px;
  text-align: right;
}

.events .swiper-pagination-bullet {
  background: var(--grey);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.events .swiper-pagination-bullet-active {
  background: var(--blue);
  opacity: 1;
}

@media (max-width: 800px) {
  .events header {
    flex-direction: column;
    gap: 0;
  }
  .events header .btn {
    margin: unset;
  }
}
/**************************************
  CONTENT
***************************************/
/**************************************
  INSIDE PAGES
***************************************/
/*
  FEATURE IMAGE
*/
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 30vh;
  position: relative;
}

.feature-img {
  grid-column: 2;
  grid-row: 1;
  z-index: 10;
}
.feature-img img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.feature-title {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  background: var(--blue);
  padding-inline: var(--gap-fluid) 3rem;
  padding-block: 2rem;
  position: relative;
}
.feature-title #breadcrumbs span {
  font-size: 1.2rem;
}
.feature-title h1 {
  color: var(--white-20);
  margin-bottom: 0;
  font-size: clamp(2.2rem, 1.629rem + 1.524vw, 3rem);
  font-weight: 700;
}
.feature-title .mark {
  width: 100px;
  height: 100px;
  background: url("img/icon-shapes.svg") center/100% no-repeat;
}

@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature .feature-img {
    grid-column: 1;
    grid-row: 1;
  }
  .feature .feature-title {
    grid-column: 1;
    grid-row: 2;
  }
}
/*
  INSIDE PAGE W/ SIDEBAR
*/
.pg-sidebar {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem 5%;
}
.pg-sidebar aside .inner {
  position: sticky;
  top: 8rem;
}
.pg-sidebar aside .inner nav.inside-menu {
  display: flex;
  justify-content: center;
  background: url("img/red-bg.png") center/100% no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 15rem;
  width: 100%;
  padding: 1rem;
  position: relative;
}
.pg-sidebar aside .inner nav.inside-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.pg-sidebar aside .inner nav.inside-menu ul li {
  display: none;
}
.pg-sidebar aside .inner nav.inside-menu ul li a {
  display: inline-block;
  margin: 0;
  padding-block: 0.2rem;
  margin-bottom: 0.2rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
}
.pg-sidebar aside .inner nav.inside-menu ul.menu > li.menu-item-object-page > a {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: "Lora", serif;
  font-weight: 700;
}

.pg-sidebar aside .inner .inside-menu ul li.current_page_item,
.pg-sidebar aside .inner .inside-menu ul li.current_page_ancestor,
.pg-sidebar aside .inner .inside-menu ul li.current_page_item li,
.pg-sidebar aside .inner .inside-menu ul li.current_page_ancestor li {
  display: block;
}

.pg-sidebar aside .inner .inside-menu ul li.current-menu-item a {
  font-weight: 700;
  text-decoration: underline;
}
.pg-sidebar main {
	max-width: var(--wrapper-max-width);
}

@media (max-width: 1200px) {
	.pg-sidebar {
		grid-template-columns: 200px 1fr;
	}
}
@media (max-width: 1000px) {
	.pg-sidebar {
		grid-template-columns: 1fr
	}
	.pg-sidebar aside {
		grid-row: 2;
	}
	.pg-sidebar aside .inner {
		position: relative;
		top: unset;
	}
}

/*
  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;
}

/*-------------------------------------
  07 - FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER
--------------------------------------*/
/* Main Footer Area */
.site-footer {
  background: url("img/footer-bg.png") center/100% no-repeat;
  background-size: cover;
  padding-block: 3rem;
}
.site-footer .inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 6rem;
}
.site-footer .inner .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.site-footer .inner .left .footer-logo {
  color: var(--white);
  font-family: "Lora", serif;
  font-size: clamp(1.75rem, 1.393rem + 0.952vw, 2.25rem);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.1;
}
.site-footer .inner .left .btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.site-footer .inner .left .btn-group .btn-secondary {
  max-width: unset;
  font-size: 0.9rem;
}
.site-footer .inner .left .shape {
  width: 125px;
}
.site-footer .inner .right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container > ul {
  display: flex;
  justify-content: space-between;
  gap: 0 3rem;
  width: 100%;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container > ul > li > a {
  display: inline-block;
  color: var(--white);
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container > ul > li:last-of-type {
  display: none;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container ul ul {
  display: flex;
  flex-direction: column;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container ul ul li {
  line-height: 1.1;
  text-align: left;
  margin-bottom: 1rem;
}
.site-footer .inner .right .footer-nav .menu-main-menu-container ul ul li a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 300;
}
.site-footer .inner .right .contact {
  margin-left: 5rem;
}
.site-footer .inner .right .contact p.contact-title {
  color: var(--white);
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer .inner .right .contact a.address,
.site-footer .inner .right .contact p.phone {
  color: var(--white);
}
.site-footer .inner .right .contact a.address {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  line-height: 1.3;
}
.site-footer .cred {
	padding-block: 2rem 0;
	text-align: center;
}
.site-footer .cred p {
	color: var(--white);
	margin: 0;
	font-size: .8rem;
}
.site-footer .cred p a {
	text-decoration: underline;
}

@media (max-width: 1000px) {
  .site-footer .inner {
    grid-template-columns: 1fr;
  }
  .site-footer .inner .right {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .site-footer .inner .right .footer-nav .menu-main-menu-container > ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .site-footer .inner .right .footer-nav .menu-main-menu-container > ul li.menu-item-has-children .sub-menu {
    display: none;
  }
  .site-footer .inner .right .contact {
    margin-left: unset;
    text-align: center;
  }
}

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