*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
:root {
  --blue: #003082;
  --alt-blue: #0B42A1;
  --red: #DE3B21;
  --green: #00AB59;
  --ltgray: #F4F3F3;
  --gray: #E7E7E7;
  --background: #FFFFFF;
  --font-color: #000000;

  --sans-serif: 'Lato', sans-serif;
  --serif: 'Playfair Display', serif;
  --fontawesome: 'Font Awesome 5 Free';
}
/* Header, Menu */
nav {
  background-color: var(--blue);
  color: var(--background);
}

.inside-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 3rem 0;
  align-items: center;
}

button#menu_button, button#menu_close_button {
  position: relative;
  width: 50px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:0;
  margin:0;
}

button#menu_close_button {
  margin: 4rem 3rem 4rem 0;
  background-color: var(--alt-blue);
}

button#menu_close_button span {
  position: absolute;
  top: 50%;
  left: 0;
}

button#menu_close_button span:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

button#menu_close_button span:nth-child(2) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

button#menu_close_button span:last-child {
    display: none;
}

nav .logo {
  display: flex;
  justify-content: center;
}

button#menu_button span, button#menu_close_button span {
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: var(--background);
}

a.donate-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 65px;
  border: 3px solid var(--red);
  text-decoration: none;
  color: var(--background);
  font-size: 2.4rem;
  font-weight: bold;
}

a.donate-button:hover {
  background-color: var(--background);
  color: var(--red);
}

.notice-content {
  padding: 3rem 3rem 0 3rem;
}

#menu {
  transition: transform .3s ease;
  position: fixed;

  display: flex;
  flex-direction: column;
  width: 75%;
  height: 100vh;
  background-color: var(--alt-blue);
  background: linear-gradient(
    to right,
    var(--alt-blue) 0%,
    var(--alt-blue) 50%,
    transparent 50%,
    transparent 100%
  );
  z-index: 9999;
  padding-left: 3rem;
}

#menu.closed {
 /* left:-100%; */
 top:0;

  /* display: none; */
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

#menu.opened {
  /* position: fixed; */
  left:0;
  top:0;

  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

p.name {
  text-transform: uppercase;
  max-width: 26ch;
  letter-spacing: 1px;
}

.menu-button-group {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.menu-button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  font-style: italic;
  margin-bottom: 1rem;
  padding: 1rem 0;
  width: 45%;
}

.menu-button-group a.membership-button {background-color: var(--red);color: var(--background);}
.menu-button-group a.support-button {background-color: var(--background);color: var(--blue);}
.menu-button-group a.sign-up-button {background-color: var(--green);color: var(--background);}

@media(min-width: 768px){
  button#menu_button {
    margin: auto auto auto 0;
  }
  a.logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin: auto;
    text-align: center;
  }
  nav .logo img {
    height: 65px;
  }
  a.donate-button {
    margin-left: auto;
  }
}
@media(max-width: 768px) {

  nav .row.inside-nav {
    display: block
  }

  button#menu_button {
    position: absolute;
    left: 3rem;
  }

  nav .logo {
    width: 75%;
    margin-left: 4rem;
    margin-bottom: 1rem;
  }

  button#menu_close_button {
    margin: 2rem 3rem 2rem 0;
  }

  p.name {margin-bottom: 0;}

  .inside-nav {
    flex-direction: column;
    gap: 3rem;
  }
  nav .logo {
    display: flex;
    justify-content: center;
  }
  nav .logo img {
    width: 100%;
    height: auto;
  }
  #menu {
    background: var(--alt-blue);
  }
  #menu.opened {
    width: 100%;
  }
  .menu-button-group {
    margin-top: 1rem;
  }
  .menu-button-group a {
    width: calc(100% - 3rem);
    font-size: 1.8rem;
    padding: 0.5rem 0;
  }
  a.donate-button {
    flex: 0 0 100%;
    margin: auto;
  }
}

/* Home */

.page-template-front-page {}

.page-template-front-page section {
  margin: 4rem 0;
  overflow: hidden;
}

.page-template-front-page section h2 {
  font-size: 6rem;
  margin: 0 0 3rem 0;
  color: var(--blue);
}

.page-template-front-page section:first-child {
  margin-top: 3rem;
}

.page-template-front-page section.home-events {
  background-color: var(--red);
  color: var(--background);
  padding: 6rem 0;
  margin-bottom: 0;
}

.page-template-front-page section.home-events .title-container {
  position: relative;
  width: 100%;
}

.page-template-front-page section.home-events .title-container .swiper-controls {
  position: absolute;
  right: 0;
  width: 50px;
  top: 10px;
  padding-bottom: 0;
}

.event-next {
  width: 50px;
  height: 50px;
  border: 3px solid var(--background);
  cursor: pointer;
  position: relative;
  color: var(--background);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-next::after {
  font-family: var(--fontawesome);
  font-weight: 900;
  content: '\f061';
  display: block;
  font-size: 2.4rem;
}


.event-next:hover {
  background-color: var(--background);
  color: var(--red);
}

.page-template-front-page section.empower {
  margin-top: 0;
}

.page-template-front-page section.home-events a {
  text-decoration: none;
}

.page-template-front-page section.home-events .listing {
  margin-bottom: 0;
}

.page-template-front-page section.home-events h3 {
  margin: 0 0 1rem 0;
  font-style: normal;
  font-size: 3.4rem;
  line-height: 4rem;
  max-width: 20ch;
}

.page-template-front-page section.home-events p.address {
  font-style: normal;
  font-family: var(--sans-serif);
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 700;
}

.page-template-front-page section.home-events .post-content {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.page-template-front-page section.home-events .post-content .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.page-template-front-page section.home-events .post-content .time p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: normal;
  text-decoration: none;
  margin: 0;
  text-align: center;
  background-color: var(--green);
  padding: 1rem 2rem;
  text-transform: uppercase;
}

.page-template-front-page section.home-events .post-content .time p span {
  font-family: var(--sans-serif);
  color: var(--background);
}

.page-template-front-page section.home-events .post-content .time p span:first-child {
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 2.2rem;
}

.page-template-front-page section.home-events .post-content .time p span:nth-child(2) {
  font-weight: 800;
  font-size: 4rem;
  line-height: 3.2rem;
}

.page-template-front-page section.home-events .post-content .time p span:nth-child(3) {
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 2.2rem;
}

.page-template-front-page section.home-events .event-details {
  text-align: center;
}
.page-template-front-page section.home-events .event-details p {
  max-width: 90ch;
  margin: 0 auto 6rem;
}

.home-event-slider {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home-event-slider .inside-listing {
  display: flex;
  justify-content: center !important;
}

.page-template-front-page section.home-events h2,
.page-template-front-page section.home-events p,
.page-template-front-page section.home-events a {
  color: var(--background);
}

.page-template-front-page section.home-events a {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.page-template-front-page section.home-events .post-thumb {
  width: 100%;
  height: 350px;
  background-size: contain;
  background-position: center;
}

.page-template-front-page section.empower {
  background-color: var(--ltgray);
}

.page-template-front-page section .inside-section {
  max-width: 1268px;
  margin: auto;
  overflow: hidden;
}

.page-template-front-page section .inside-section > div {}

#below_events_section {
  padding: 4rem 0;
}

#below_events_section .columns {
  gap: 3rem;
}

#below_events_section .inside-column {
  display: flex;
  flex-direction: column;
  align-content: center;
  margin: auto;
  height: 100%;
}

#below_events_section figure {margin:0;}

#below_events_section .inside-column.right h2 {
  margin-top: auto;
}

#below_events_section .inside-column.right a.button {
  width: fit-content;
  margin-top: 3rem;
  margin-bottom: auto;
}

section.inform h2,
section.inform p {
  text-align: center;
}

section.inform p {
  max-width: 90ch;
  margin: 0 auto 6rem;
}

section.inform .cards {
  display: flex;
  gap: 3rem;
  width: fit-content;
  margin: auto;
}

section.inform .card {
  width: 400px;
  height: 400px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

section.inform .card.red {
  background-color: var(--red);
}

section.inform .card.green {
  background-color: var(--green);
}

section.inform .card a {
  color: var(--background);
}

section.inform .card h3 {
  margin: 3rem;
  font-size: 4.8rem;
}

section.inform .card h3 span {
  display: block;
}

section.inform .card h3 span.top {
  font-style: italic;
}

section.inform .card h3 span.bottom {
  font-style: normal;
  text-transform: uppercase;
}

section.inform .card .icon {
  opacity: 0.2;
  width: 75%;
  margin: auto;
}

@media(max-width: 768px) {

  .page-template-front-page section h2 {
    font-size: 4.5rem;
  }

  .page-template-front-page section h3 {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .page-template-front-page section.inform .cards {
    flex-direction: column;
  }
  .page-template-front-page section.inform .card {
    width: 100%;
  }

  section.inform .card h3 {
    line-height: 4.8rem;
  }
  .page-template-front-page section.home-events h3 {
      font-size: 3rem;
      line-height: 3.2rem;
  }
}
@media(min-width: 768px) {
  #below_hero iframe {
    float: right;
  }
}

/* Testimonials */

.testmonial-content {
  position: relative;
  background-color: var(--gray);
  padding: 6rem 0;
}

.single-testimonial .testmonial-content {
  padding: 6rem;
}

.school-details {
  margin-bottom: 2rem;
}
.school-details p {
  margin-bottom:0;
}

.donated_by {
  font-style: italic;
}

.inside-testmonial-content::before {
  content: '\201C';
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
}

.inside-testmonial-content::after {
  content: '\201D';
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
}

.testmonial-content p {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 500;
}

.single-testimonial .testmonial-content p {
  font-size: 3.4rem;
  line-height: 5rem;
}

@media(max-width: 768px) {
  .single-testimonial  .testmonial-content p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

/* Testimonial slider */
section#testimonials {
  background-color: var(--gray);
}

section#testimonials .inside-testmonial-content {
  position: relative;
}

.inside-testmonial-content::before {
  content: '\201C';
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
}

.inside-testmonial-content::after {
  content: '\201D';
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
}

section#testimonials .inside-testmonial-content::after,
section#testimonials .inside-testmonial-content::before {
  content: '';
}

section#testimonials .testmonial-content::after {
  content: '\201D';
  position: absolute;
  right: 2rem;
  bottom: 0;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
  line-height: 0;
}
section#testimonials .testmonial-content::before {
  content: '\201C';
  position: absolute;
  left: 1rem;
  top: 9rem;
  font-size: 10rem;
  font-family: var(--serif);
  font-style: italic;
  line-height: 0;
}

section#testimonials .testimonial-details {
  position: relative;
  max-width: 1440px;
  margin: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}
section#testimonials .inside-testimonial-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

section#testimonials .testmonial-content {
  padding: 6rem 6rem 0 6rem;
}

section#testimonials .school-details,
section#testimonials .testimonial-detail-wrapper p {
  margin-bottom: 0;
}

section#testimonials .testimonial-detail-wrapper p {
  padding-left: 1.6rem;
}
section#testimonials .testimonial-detail-wrapper .title p {
  padding-left: 0;
  font-weight: bold;

}

section#testimonials .inside-testmonial-content::before,
section#testimonials .inside-testmonial-content::after {
  line-height: 1;
}

section#testimonials .inside-testmonial-content::after {
  bottom: unset;
  top: 1rem;
}

.swiper-controls {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
}

.below-controls {
  width: 100%;
  height: 3rem;
}

.swiper-pagination-bullet {
  width: 2rem;
  height: 2rem;
}

.swiper-pagination {
  height: 40px;
  padding-top: 3rem;
}

.swiper-pagination-bullet-active {
  background-color: var(--green) !important;
}

section#testimonials figure,
section#testimonials .no-thumb {
  display: block;
  margin-top: 3rem;
}

section#testimonials .no-thumb,
section#testimonials img {
  width: 100%;
}

section#testimonials .no-thumb {
  width: 300px;
  height: 300px;
}

@media(max-width: 768px) {
  section#testimonials .no-thumb {
    display: none;
  }
  section#testimonials .testmonial-content {
      padding: 2rem;
  }
  section#testimonials .testmonial-content::before {
    left: 0rem;
    top: 2rem;
  }
}

@media(max-width: 1024px) {
  section#testimonials figure {
    width: 300px;
    margin: auto;
  }
}

@media(min-width: 1024px) {

  .s-container {
    display: flex;
  }

  section#testimonials figure,
  section#testimonials .no-thumb {
    width: 300px;
  }

  .testimonial-detail-wrapper {
    width: 90%;
    margin: 0 0 1rem auto;
  }
}

/* Page */
.page-hero-titles h1 {
  font-size: 6rem;
  font-style: italic;
  line-height: 7.2rem;
  margin: 0;
  padding-top: 3rem;
}

.page-hero-titles h2 {
  font-family: var(--sans-serif);
  font-size: 3.4rem;
  line-height: 4rem;
  font-style: italic;
  font-weight: bold;
  margin:0;
  padding-bottom:2rem;
}

.page-hero-titles h1, .page-hero-titles h2, .page-hero-titles p {
  color: var(--background);
}

.page-hero-image, .inside-page-hero {
  display: flex;
  width: 100%;
}

.inside-page-hero {
  padding: 2rem 0;
  justify-content: right;
}

#image_group {
  position: relative;
  width: 570px;
  height: 100%;
  min-height: 450px;
}

.f_one, .f_two {
  width: 320px;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}

.f_one {
  left:0;
  top:0;
}

.f_two {
  right:0;
  bottom:0;
}

.f_logo {
  width: 130px;
  height: 130px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-73%, -50%);
}

@media(max-width: 768px) {

  .page-hero-titles h1 {
    font-size: 5rem;
    font-style: italic;
    line-height: 6rem;
    margin: 0 0 2rem;
    padding-top: 3rem;
  }

  .inside-page-hero #image_group {
    display: none;
  }
}

/* Footer */
footer {
  background-color: var(--blue);
  color: var(--background);
  width: 100%;
  padding-top: 3rem;
}

.inside-footer:first-child {
  padding-bottom: 4rem;
}

.inside-footer:last-child .small p {
  text-transform: uppercase;
}

footer a {
  color: var(--background);
}
footer a:hover {
  color: var(--red);
}

footer ul, footer ul li {
  list-style: none;
  margin:0;
}

@media(min-width: 768px){
  footer ul {
    display: flex;
    gap: 1rem;
  }
  ul#menu-social-menu {
    justify-content: right;
  }

  ul#menu-footer-menu li {
    display: flex;
  }

  ul#menu-footer-menu li:after {
    content: '|';
    display: inline-block;
    font-size: 2.1rem;
    padding-left: 1rem;
  }

  ul#menu-footer-menu li:last-child:after {
    content: '';
  }

  ul#menu-footer-menu li a {
    font-size: 2.1rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  #menu-social-menu:before {
    content: 'Follow Us ';
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    margin-top: -5px;
    margin-right: 1rem;
  }

}

@media(max-width: 768px){
  #menu-social-menu {
    display: flex;
    gap: 1rem;
  }
}

/* News */
.inside-listing {}

.listing {
  margin-bottom: 10rem;
}

.listing h3 {
  font-size: 3.4rem;
  line-height: 4rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1rem;
}

.listing h3 a {
  text-decoration: none;
}

.listing a.link {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}

.listing a {
  color: var(--blue);
}

.listing .time p {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}

.listing p.address {
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.no-thumb {
  background-color: #C4C4C4;
}

.post-thumb {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}

.mllr_loadmore_01, .mllr_loadmore_02, .mllr_loadmore_03 {
  margin: auto;
  width: fit-content;
  background-color: var(--green);
  color: var(--background);
  padding: 0.5rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 2rem;
  text-transform: uppercase;
  border: 1px solid var(--green);
}

.mllr_loadmore_01:hover, .mllr_loadmore_02:hover, .mllr_loadmore_03:hover {
  background-color: var(--background);
  color: var(--green);
}

@media(min-width: 768px) {
  .inside-listing {
    display: flex;
    gap: 3rem;
  }
  .inside-listing > div {
    flex: 1;
  }
}

@media(max-width: 768px) {
  .listing .post-thumb.has-thumnb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-position: center;
    margin-bottom: 1rem;
  }
}

/* Recipe */
.page-template-page-recipes h4 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
}
.page-template-page-recipes .post-thumb {
  padding-bottom: 30%;
  background-size: cover;
}
.single-recipe .title h1 {
  margin-bottom: 1rem;
}
.single-recipe h2 {
  color: var(--red);
  font-size: 4.8rem;
  line-height: 5.4rem;
  font-style: italic;
  font-weight: 500;
}
.single-recipe h3 {
  font-family: var(--sans-serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.single-recipe .columns {
  gap: 3rem;
}
.single-recipe ul.list li {
  margin-bottom: 0.5rem;
}

/* Sign-up */
#subscribe {
  width: 100%;
  background-color: var(--gray);
  text-align: center;
  padding: 3rem 0 6rem;
}

#subscribe h3 {
  font-family: var(--sans-serif);
  font-size: 4.4rem;
  line-height: 4.8rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 2.4rem;
  margin-top: 0;
  color: var(--red);
}

#subscribe h3::before {
  content: '\f0e0';
  font-family: var(--fontawesome);
  font-weight: 900;
  font-style: normal;
  padding-right: 1rem;
}

#subscribe p {
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0 0 4rem 0;
}

#subscribe a.button {
  background-color: var(--green);
  color: var(--background);
  margin-bottom: 0;
}

#subscribe a.button:hover {
  background-color: var(--red);
}

/* Blocks */

.page-accordion {
  margin-bottom: 40px;
  /* border: 1px solid #c4c4c4; */
  box-sizing: border-box;
}

.page-accordion-title {
  color: var(--blue);
  font-size: 4rem;
  border-top: 2px solid #d8d8d8;
  margin: 0;
  padding: 2rem 0;
  position: relative;
  cursor: pointer;
  line-height: normal;
  display: block;
  align-items: center;
  vertical-align: middle;
}

.page-accordion-title span.header {
  display: inline-block;
  width: auto;
  padding-right: 20px;
}

.page-accordion span.title {
  display: block;
  font-size: 1.8rem;
}

.page-accordion-title:first-child {
  border-top: 0;
}

.page-accordion-title::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  /* color: var(--background); */
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-color: var(--lightgrey);
  border-radius: 50%;
  padding: 0 0.5rem;
  font-size: 3rem;
}

.page-accordion-title:hover::after {
  color: #7f7f7f;
  transition: all 200ms;
}

.page-accordion-title.ui-state-active {
  transition: all 200ms;
}
.page-accordion-title.ui-state-active:focus {
  outline: none;
}
.page-accordion-title.ui-state-active::after {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  font-weight: 900;
  color: var(--blue);
  /* background-color: var(--blue); */
}

.page-accordion-content {
  padding: 0 30px 10px 30px;
  display: inline-block;
}

.page-accordion-content ul,
.page-accordion-content ol {
  margin-left: 30px;
}

@media(max-width: 768px){
  .page-accordion-title span.header {
    padding-right: 10px;
  }
}

/* ***** STRUCTURE ***** */
/* Grid */
.container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 100px auto;
    box-sizing: border-box;
}

.search .container,
.page-template-default .container,
.post-template-default .container,
.archive .container,
.page-template-page-news .container,
.page-template-page-recipes .container,
.news-template-default .container,
.page-template-page-events .container,
.page-template-page-spotlights .container,
.single-spotlight .container,
.single-testimonial .container {
  margin: 0 auto 6rem;
  max-width: 830px;
}

.single-recipe .container {
  margin: 0 auto 6rem;
  max-width: 1040px;
}

.row {
  position: relative;
  max-width: 1440px;
  margin: auto;
}

.columns {
  display: flex;
  justify-content: space-between;
  /* gap: 3rem; */
}

.columns > div {
  flex: 1;
}

@media(max-width: 1440px) {
  .row {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media(min-width: 768px) {
  .container {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
    .container {
      margin: 50px auto;
    }

    .columns {
      flex-direction: column;
    }
}

/* Base Styles */
/* NOTE ... html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
/* html, body {
  height:100%;
} */
html {
    font-size: 62.5%;
}

body {
    font-family: var(--sans-serif);
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 400;
    color: var(--font-color);
    /* max-width: 1580px; */
    margin: auto;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  line-height: 1;
  font-weight: normal;
}

p {line-height: 1.35;}


h1 {
  font-size: 5.5rem;
}

h2 {
    font-size: 5.5rem;
}

.title h2 {
  margin-top:0;
  margin-bottom: 3rem;
}

.page-template-page-events h2 {
  margin: 0 0 1rem 0;
}

h3 {
    font-size: 4.6rem;
}

.title h3 {
  margin-top:0;
  margin-bottom: 3rem;
}

h4 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
}

p, li {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.small p {
  font-size: 1.2rem;
}

p#breadcrumbs {
  margin-bottom:2rem;
  margin-top: 3rem;
  text-transform: uppercase;
}

.breadcrumb_last {color: var(--blue);}

/* Links */

a {
    color: #000000;
}

a:hover {
    color: #000000;
}

.gutenberg-entry a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gutenberg-entry a:hover {
  color: var(--red);
}

.gutenberg-entry .wp-block-quote {
  background-color: var(--ltgray);
}

.gutenberg-entry .aboutquote {
  border-left: 8px solid var(--green) !important;
  padding: 2rem;
  color: var(--font-color) !important;
}

@media(min-width: 768px) {
  .gutenberg-entry .aboutquote {
    font-weight: bold;
    font-size: 2.4rem !important;
    line-height: 3.6rem !important;
  }
}

/* Buttons */
a.button,
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    height: auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4;
    /* letter-spacing: .1rem; */
    text-transform: uppercase;
    text-decoration: none;
    white-space: pre-wrap;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    background-color: var(--blue);
    color: var(--background);
}

a.wp-block-button__link {
  text-decoration: none;
}

a.wp-block-button__link.has-background {
  color: var(--background);
}

a.button:hover,
.button:hover,
button:not(.menu-button):hover,
a.wp-block-button__link:hover,
a.membership-button:hover,
a.support-button:hover,
a.sign-up-button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    color: var(--background) !important;
    outline: 0;
    background-color: var(--font-color) !important;
}

button#menu_button,
button#menu_button:focus {
  background-color: var(--blue) !important;
}

.wp-lightbox-overlay .close-button:hover svg {
  fill: rgb(250, 250, 250);
}

button#menu_close_button:hover,
button#menu_close_button:focus,
button.dropdown-toggle,
button.dropdown-toggle:hover,
button.dropdown-toggle:focus {
  background-color: var(--alt-blue) !important;
}

a.button.blue:hover, a.button.red:hover {
  color: var(--background);
  background-color: var(--font-color);
}

a.button.red {
  background-color: var(--red);
}

.bottom-buttons {
  margin-top: 9rem;
}

.bottom-buttons a {
  display: block;
}

@media(min-width: 768px) {
  .bottom-buttons .inside {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .bottom-buttons a {
    margin:0;
  }
}

/* Forms */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: var(--background);
    border: 1px solid var(--blue);
    border-radius: 5px;
    box-shadow: none;
    box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid var(--blue);
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

/* Lists */
ul {
    list-style: disc inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 2rem;
    margin-left: 20px;
    list-style-position: outside;
}

/* Code */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre>code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}

/* Tables */
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

/* Spacing */
button,
.button { margin-bottom: 1rem; }

input,textarea,select,fieldset { margin-bottom: 1.5rem; }

pre,blockquote,dl,figure,table,p,ul,ol,form { margin-bottom: 2.5rem; }

/* figure img {cursor: zoom-in;} */

/* Utilities */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

.wp-block-button__link {border-radius: 2px;}
.additional-content a {text-decoration:underline;}

.no-top-margin {
  margin-top: 0 !important;
}

/* Accessibility */

.screen-reader-label, .screen-reader-text, .screen-reader-text span, .screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.off_screen {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: .5em;
    margin: .5em;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr { background-color: #333133; }

iframe, img, .wp-caption.aligncenter { max-width: 100%; }

.fa-phone {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* Self Clearing */
.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .clearfix {
    zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
    zoom: 1;
}