@font-face {
    font-family: 'CenturySchoolbook';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/CenturySchoolbookBT-Monospace.woff') format('woff'),
        url('fonts/CenturySchoolbookBT-Monospace.woff2') format('woff2');
}

@font-face {
    font-family: 'texgyreheros';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/texgyreheros-regular.woff') format('woff'),
        url('fonts/texgyreheros-regular.woff2') format('woff2');
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* —————————————————————————————————————————————————— */
/* BASE */

:root {
    --bgGreen: rgba(0,128,28,1);
    --bgOffWhite: rgba(249, 248, 247, 1);
    --bgTrans: transparent;
    --bgWhite: rgba(255,255,255,1);
    --fgGreen: rgba(0,128,28,1);
    --fgGreenLight: rgba(112,55,2,.2);
    --fgWhite: rgba(255,255,255,1);
    --fgBlack: rgba(0,0,0,1);
    --fillGreen: rgba(0,128,28,1);
    --fillWhite: rgba(255,255,255,1);
    --fillTrans: transparent;

    --strokeGreen: rgba(0,128,28,1);
    --strokeWhite: rgba(255,255,255,1);
    --fillTrans: transparent;
}

body {
    background: var(--bgGreen);
    color: var(--fgWhite);
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.875rem;
    line-height: 1.2;
    padding: 0;
    font-weight: normal;
    display: inline-block;
}

.about-us h3 {
    padding: 2.5rem 0 2rem;
}

.about-us h3:first-child {
    padding: 0 0 2rem;
}

/* a:focus {
    color: black;
} */

.container-fluid {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    z-index: 0;
}

@media only screen and (max-width: 767px) {
    .home .container-fluid {
        margin-bottom: 0;
    }
    /* h2.off_screen {
        position: relative;
        left: inherit;
        top: inherit;
        width: auto;
        height: auto;
        overflow: visible;
        padding: 0;
        margin: 0 0 2rem 0;
        text-align: center;
        width: 100%;
        font-weight: normal;
    } */
}

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

.off_screen:focus {
    position: static;
    width: auto;
    height: auto;
}

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

input[type=text]:focus,
textarea:focus,
a:focus,
button:focus,
button.js-accordion__header:focus,
section:focus,
select:focus {
  outline: none !important;
  border-color: transparent;
  box-shadow: none;
}

hr, .wp-block-separator {
    margin-top: 4rem;
    margin-bottom: 0;
    padding: 1rem 0;
    border: 0;
    border-top: 2px dashed var(--fgWhite);
    opacity: .5;
    position: relative;
    display: block;
    width: 100%;
    float: left;
}

.single-events hr {
    border-top: 1px solid var(--fgGreenLight);
}

/* —————————————————————————————————————————————————— */
/* HEADER & NAV */

header {
    position: relative;
    background: transparent;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
}

section.hero {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 86svh;
  min-height: 0;
  padding: 0rem 4rem 0rem;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 75svh;
  display: flex;
  align-items: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* base svg behavior */
.hero-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* active state (JS will toggle this) */
.hero-svg.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-footer {
  position: relative;
  width: 100%;
  padding-top: 1.875rem;
  min-height: 5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-footer nav,
.hero-footer div {
  width: 33%;
}

.hero-nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.more {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.social {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-start;
}

.social a {
  margin-left: .5rem;
}

.hero-footer a {
  font-size: 1.875rem;
}

.hero-footer nav ul,
.nav ul {
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0 0 0 1rem;
}

.hero-footer nav ul li,
.nav ul>li {
    padding: .125rem;
    margin-right: .5rem;
    width: auto;
    list-style: none;
}

.hero-footer nav ul li a,
.nav ul>li>a {
  border: 1px solid var(--fgWhite);
  border-radius: 10rem;
  padding: .125rem 1rem 0.375rem;
  text-decoration: none;
  font-family: 'texgyreheros', Arial, sans-serif;
  line-height: 1;
}

.hero-footer nav ul li a:hover {
  border-color: var(--fgWhite);
  background: var(--bgWhite);
  color: var(--fgGreen);
}

header h1 {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 10rem;
    line-height: 1;
    padding: .875rem;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

header.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1060;
    background: var(--bgTrans);
}

.menu-arrow {
  height: 1.6rem;
  width: auto;
}

.learn-more {
  height: 2.4rem;
  width: auto;
}

.nav {
  display: none;
}

/* nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background: var(--bgTrans);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: hidden;
    padding: 0;
    position: sticky;
    top: -1px;
    width: 100%;
    z-index: 10;

    opacity: 0;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
} */

nav.active {
    opacity: 1;
}

.navbar-collapse {
    padding: .25rem 0 1.125rem;
    background: var(--bgTrans);
}

nav.stick {
    background: var(--bgOffWhite);
}

.nav.active.stick ul>li>a {
    color: var(--fgGreen);
    text-shadow: none;
}

.nav.active.stick ul>li>a:hover {
    color: var(--fgBlack);
}

.navbar-collapse.collapse {
    width: 100%;
    display: none;
}

.nav ul {
    margin: 0;
    padding: 0 0 1rem 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
}

.nav ul>li {
    float: left;
    padding: .5rem;
    width: 20%;
    list-style: none;
}

.nav>li {
    position: relative;
    display: block;
}

.nav .home {
    display: none;
}

.nav ul>li>a {
    position: relative;
    display: block;
    padding: 0;
    color: inherit;
    text-decoration: none;
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 5.2rem;
    line-height: 1;
    /* border-bottom: 3px solid transparent; */
    z-index: 1001;
}

.nav ul>li>a.active {
    text-decoration: underline
}

.nav ul>li.open>a, .nav ul>li>a:hover {
    text-decoration: underline;
    background-color: transparent;
}

.menu-item-has-children {}

.nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
}

.nav ul.sub-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: inherit;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.dropdown-menu>li {
    display: block;
    width: 100%;
}

.dropdown-menu ul>li>a {
    display: block !important;
    padding: .125em .5em;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: black;
    white-space: nowrap;
}

.dropdown-menu a {
    text-transform: inherit !important;
}

.collapse {
    display: none;
}

.navbar-collapse {
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: none !important;
}

.navbar-collapse.collapse.in {
    display: block !important;
}

.open .dropdown-menu {
    display: block;
}

.open>.dropdown-menu>li>a {
    white-space: normal;
}

/* full width dropdown */
.nav>li.dropdown.open {
    position: static;
}

.nav>li.dropdown.open .dropdown-menu {
    display: table;
    width: 102%;
    text-align: left;
    left: -1px;
    right: 0;
    /*   top: 84%; */
    top: 96%;
}

.dropdown-menu>li {
    display: inline;
    width: auto;
}

.dropdown-menu>li:first-child {
    margin-left: 1em;
}

.nav ul.dropdown-menu>li:nth-child(2) {
    margin-left: 0;
}

.navbar {
    position: relative;
    min-height: 12rem;
    margin-bottom: 0;
    /* border: 1px solid transparent; */
    border: none !important;
}

.single .navbar, .page-template-default .navbar, .page-template-page-mailchimp .navbar {
    min-height: 3.5em;
}

.single .logomark .stroke, .page-template-default .logomark .stroke, .page-template-page-mailchimp .logomark .stroke {
    stroke: var(--strokeBrown);
}

@media only screen and (max-width: 767px) {
    .header-logo, .header-contact {
        padding: 1rem;
    }
    /* .header-contact {
        display: none;
    } */
    .header-logo .logo {
        max-height: 1.475rem;
    }
    .header-logo .wordmark, .header-contact  {
        font-size: 1.875rem;
    }
    header h1, .mobile-h1 h1 {
        font-size: 2.25rem;
        padding: 4rem 0;
        font-family: 'CenturySchoolbook', Arial, sans-serif;
        font-weight: normal;
        margin: 0;
        padding: 0;
        text-align: center;
        text-shadow: none;
    }
    .hero {
        min-height: 68vh;
        padding: 0 2rem;
    }
    .hero-img {
        height: 78vh;
    }
    .nav {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 1060;
      display: block;
    }
    .nav-toggle {
      position: fixed;
      top: 1rem;
      right: 1rem;
      background: transparent;
      border: none;
      z-index: 1061;
    }
    .navbar-toggle {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 5px;
        z-index: 2;
        display: none;
    }
    .navbar-toggle .icon-bar {
        background: white;
    }
    .navbar-toggle .icon-bar {
        display: block;
        width: 20px;
        height: 2px;
    }
    .nav-btn {
      position: fixed;
      top: 2rem;
      left: 2rem;
    }
    .single .navbar, .page-template-default .navbar, .page-template-page-mailchimp .navbar {
        background: var(--bgOffWhite);
        min-height: 3.125em;
    }
    .collapse {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .nav ul::-webkit-scrollbar {
        display: none;
     }
    .nav ul {

      position: relative;
      width: 100%;
      padding: 0 0 1rem 0;
      margin: 0;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: visible;
      -webkit-overflow-scrolling: auto;
      outline: none;
      border: none;
      box-shadow: none;
    }
    .nav ul>li {
      display: block;
      flex: 0 0 auto;
      width: auto;
      padding: .5rem;
      margin: 0;
      list-style: none;
    }
    .nav ul>li>a {
      position: relative;
      display: block;
      padding: .5rem 1rem .75rem;
      border: 1px solid var(--fgWhite);
      border-radius: 10rem;
      color: inherit;
      text-decoration: none;
      font-family: 'texgyreheros', Arial, sans-serif;
      font-size: 1.875rem;
      line-height: 1;
      outline: none;
      box-shadow: none;
      background: transparent;
      z-index: 1001;
    }
    .nav ul>li:nth-child(3) {
      margin-right: 3rem;
    }
    .navbar-collapse {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-bottom: 0;
        overflow-y: hidden;
      height: auto !important;
      background: var(--bgGreen);
      flex-flow: row nowrap;
      justify-content: flex-start;
      align-items: center;
    }
    section.hero {
      height: calc(100svh - 4rem);
      padding: 0rem;
    }
    .hero-wrapper {
      width: 100%;
      height: auto;
      min-height: 84svh;
    }
    .hero-svg {
      width: 90%;
      max-width: 90%;
      height: auto;
      max-height: none;
    }

    .nav ul>li.instagram,
    .nav ul>li.contact {
      margin-left: .5rem;
      margin-right: 0;
      padding: .5rem;
      width: auto;
      flex: 0 0 auto;
      order: 10;
    }
    .nav ul>li.instagram>a,
    .nav ul>li.contact>a {
      border: none;
      border-radius: 0;
      padding: 0;
      font-family: 'CenturySchoolbook', Arial, sans-serif;
      font-size: 1.875rem;
      text-decoration: underline;
    }

    .nav ul>li.instagram {
      margin-left: 0;
    }

    .nav ul>li.contact {
      margin-left: 1rem;
    }

    .nav ul>li.instagram,
    .nav ul>li.contact {
      order: 10;
    }

    .nav ul>li.instagram {
      margin-top: .5rem;
    }

    .nav ul>li.contact {
      margin-top: .5rem;
    }
    nav,

    .nav:focus,
    .nav:focus-visible,
    .navbar-collapse,
    .navbar-collapse:focus,
    .navbar-collapse:focus-visible,
    .nav ul,
    .nav ul:focus,
    .nav ul:focus-visible {
      outline: none !important;
      border: none !important;
      box-shadow: none !important;
      -webkit-tap-highlight-color: transparent;
    }
    .nav ul>li>a {
      position: relative;
      display: block;
      padding: .5rem 1rem .75rem;
      border: 1px solid var(--fgWhite);
      border-radius: 10rem;
      color: inherit;
      text-decoration: none;
      font-family: 'texgyreheros', Arial, sans-serif;
      font-size: 1.875rem;
      line-height: 1;
      outline: none !important;
      box-shadow: none !important;
      background: transparent;
      -webkit-tap-highlight-color: transparent;
      z-index: 1001;
    }
    .nav ul>li>a:focus {
        background: white;
        color: var(--fgGreen);
        text-decoration: none;
    }
    .nav>li.dropdown.open .dropdown-menu {
      left: 0;
    }
    header,

    .nav,
    .navbar,
    .navbar-collapse,
    .nav ul {
      border: 0 !important;
      outline: 0 !important;
      box-shadow: none !important;
    }
    header hr,
    header .wp-block-separator,
    .nav hr,
    .nav .wp-block-separator,
    .navbar hr,
    .navbar .wp-block-separator {
      display: none !important;
    }
}

/* —————————————————————————————————————————————————— */
/* GENERAL */

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

/* Firefox 18- */
input:focus::-moz-placeholder {
    color: transparent;
}

/* Firefox 19+ */
input:focus:-ms-input-placeholder {
    color: transparent;
}

/* oldIE ;) */
.affix {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1060;
    background: white;
}

section {
    float: left;
}

/* —————————————————————————————————————————————————— */
/* GRID */

.col-center,
.row.col-center {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}

.col-1 {
    width: 14.285714285714286%;
}

.col-2 {
    width: 28.571428571428572%;
}

.col-20 {
  width: 20%;
}

.col-3 {
    width: 42.857142857142857%;
}

.col-33 {
    width: 33%;
}

.col-4 {
    width: 57.142857142857144%;
}

.col-5 {
    width: 71.42857142857143%;
    padding-left: 1.5em;
}

.col-40 {
    width: 40%;
}

.col-50 {
    width: 50%;
}

.col-5 {
    width: calc(71% - 2.5em);
    position: relative;
    display: block;
    float: left;
}

.col-6 {
    width: 85.714285714285716%;
}

.col-100 {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .col-3, .col-4, .col-5 {
        width: 100%;
        padding: 0 2rem;
    }
    .col-33 {
        width: 100%;
    }
}

/* —————————————————————————————————————————————————— */
/* TYPOGRAPHY */

p {
    font-family: 'CenturySchoolbook', Arial, sans-serif;;
    font-size: 2.8rem;
    line-height: 1.2;
    /* margin-bottom: 0;
    text-indent: 4rem; */
}

p sub {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2rem;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
}

.session p,
.post-desc p,
.event p {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
}

.single .entry p {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.single .entry p strong {
    font-family: 'texgyreheros-bold', arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.footer p {
    text-indent: 0;
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
}

.entry ul li, .entry ol li {
    font-size: 2.2rem;
    line-height: 1.2;
}

.entry ol {
    margin: 0;
    padding: 0;
}

.single h1+p, h2+p, h3+p, .entry blockquote+p, .entry ul+p, .entry p:first-child {
    text-indent: 0;
}

p strong {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-weight: normal;
}

a {
    text-decoration: underline;
    cursor: pointer;
    color: var(--fgWhite);
}

a:hover {
    color: #C9ABA7;
}

.footer a {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-left: 2rem;
}

.bkg-image {
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: black;
}

.dt {
    display: inline-block;
}

.mo {
    display: none;
}

@media only screen and (max-width: 767px) {
    .dt {
        display: none;
    }

    .mo {
        display: flex;
    }
    .entry ol li {
        margin: 0 0 0 2.5rem;
    }
    h1, h2, h3, h4, h5, h6, p, .entry ul li, .footer a, .entry ol li, .musings-posts li p, .session p, .post-desc p, .event p, .event-header-wrapper .date-wrapper time, .single .entry p, .single .entry p strong, .footer p {
        font-size: 1.875rem;
    }
    p sub {
        font-size: 1.375rem;
    }
    p {
        font-size: 1.875rem;
    }
}

/* —————————————————————————————————————————————————— */
/* HOME */

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
    padding: 2rem 0 0;

    display: flex;
    flex-flow: column nowrap;
}

section .section-header {
  padding-left: 8rem;
}

@media only screen and (max-width: 767px) {
    section {
        padding: 4rem 2rem 0;
        min-height: 90vh;
    }
    section.events {
        min-height: initial;
    }
    section.mobile-h1 {
        padding: 2rem 2rem 0;
        min-height: initial;
        justify-content: center;
    }
    section.mobile-h1 h1 {
        letter-spacing: -.25px;
    }
    .img-caption {
        display: none;
    }
    section h2.off_screen {
        opacity: 1;
        -webkit-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
    }
    section:focus h2.off_screen {
        opacity: 0;
    }
    /* .line-break {
        display: block;
    } */
}

/* —————————————————————————————————————————————————— */
/* OFFERINGS */

.offerings {
}

.offerings-wrapper {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  width: 100%;
}

.offering-card {
  width: 70%;
  background: var(--bgWhite);
  border-radius: 5px;
  margin: 4rem 0;
  padding: 0;
}

.card-wrapper {
    max-height: calc(70svh - 4rem);
}

.offering-card.active .card-wrapper {
  padding-bottom: 2rem;
  max-height: inherit;
}

.offering-card h4 {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  color: var(--fgGreen);
  font-size: 8rem;
  text-align: center;
}

.card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.card-img img {
  max-height: 230px;
  width: auto;
}

.offering-card .col-50 {
  padding: 2rem;
}

.offering-card h5 {
  text-align: center;
  color: var(--fgGreen);
  width: 100%;
  margin-bottom: 1rem;
}

.offering-card h6 {
  color: var(--fgGreen);
  font-size: 1.875rem;
  font-weight: normal;
  text-transform: none;
  padding: 0;
  margin-bottom: .5rem;
  border-bottom: 1px dashed var(--fgGreen);
}

.offering-card p {
  color: var(--fgGreen);
  font-size: 1.875rem;
}

.card-footer {
  position: relative;
  min-height: 6rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 5px;
}

.card-footer::before {
    content: "";
    position: absolute;
    top: -100%;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.offering-card.active .card-footer::before {
  opacity: 0;
}

.card-footer a,
.card-footer button {
  border: 1px solid var(--fgGreen);
  background: white;
  color: var(--fgGreen);
  font-size: 1.875rem;
  border-radius: 10rem;
  padding: .5rem 1.25rem 0.575rem;
  text-decoration: none;
  font-family: 'texgyreheros', Arial, sans-serif;
  line-height: 1;
  margin: .5rem;
}

.card-footer a:hover,
.card-footer button:hover,
.offering-card.active .card-footer a {
  border-color: var(--fgGreen);
  background: var(--bgGreen);
  color: var(--fgWhite);
}

.offering-card.active .read-more-toggle {
  display: none;
}

@media only screen and (max-width: 767px) {
  section .section-header {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  .offerings-wrapper {
    margin-top: 2rem;
  }
  .offering-card {
    width: 100%;
    margin: 1rem 0;
  }
 .offering-card h4 {
   font-size: 2.5rem;
   padding-top: 2rem;
 }
}

/* —————————————————————————————————————————————————— */
/* INVITATION */

.invitation {
    flex-direction: column;
    flex-wrap: nowrap;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0;
}

.invitation .row {
    padding-bottom: 10rem;
}

.img-caption, .swiper-pagination {
    font-size: 1.6rem;
    padding: .5rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 0;
}

.img-caption {
    opacity: 0;
}

.workshop {
    padding-left: 6rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.workshop-link {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: flex-start;
    background: transparent;
    border: 1px solid transparent;
    /* border: 1px solid #efe5ca; */
    border-radius: 2.5rem;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: center;
    font-size: 2rem;
    padding: 3rem;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.workshop-link:hover {
    background: white;
    /* border: 1px solid transparent; */
    /* box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); */
}

.workshop-link h2, .workshop-link p, .workshop-link .faux-link {
    font-size: 1.8rem;
    font-weight: normal;
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    color: var(--fgGreen);
}

.workshop-link:hover, .workshop-link:hover h2, .workshop-link:hover p, .workshop-link:hover .faux-link {
    text-decoration: none;
}

.workshop-link .faux-link, .workshop-link:hover .faux-link {
    text-decoration: underline;
}

.workshop-link .faux-link:hover {
    color: var(--fgBlack);
}

.workshop-link h2 {
    padding-top: 0;
    text-transform: uppercase;
}

.workshop-link p {
    margin-bottom: 1rem;
}

.workshop-img {
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    height: 100%;
    padding-right: 3rem;
    width: 33%;
}

 .workshop-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.workshop-logo {
    text-decoration: none;
    font-family: 'texgyreheros-bold', Arial, sans-serif;
    max-height: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.workshop-logo .wordmark, .workshop-logo .wordmark {
    font-size: 2rem;
    line-height: 1.8rem;
    color: var(--fgGreen);
    text-transform: uppercase;
}

.workshop-logo .logo {
    max-height: 1.875rem;
    width: auto;
}

.workshop-logo .logomark .stroke {
    stroke: var(--strokeBrown);
    /* stroke-width: 4.75; */
    stroke-width: 4;
}

.workshop-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.play-button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: normal;
    margin: 0;
    margin-top: -6rem;
    padding: 0;
    width: auto;
    -webkit-appearance: button;
    font-size: 2rem;
    font-style: normal;
    opacity: .9;
    overflow: visible;
    transition: opacity .3s linear 0s;
}

.player-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

.play-button-inner {
     align-items: center;
     display: flex;
     overflow: visible;
     flex-direction: row;
}

.play-button-icon {
     height: 53px;
     min-width: 53px;
     transition: transform .3s ease-in-out 0s;
     width: 53px;
     margin-right: 14px;
}

.play-button-icon-play, .play-button-pause-path {
    fill: var(    --fgGreen);
}

.play-button-pause-path {
    display: none;
    transform: scale(.7);
    transform-origin: center;
}

.playing .play-button-icon-play {
    display: none;
}

.playing .play-button-pause-path {
    display: block;
}

.play-button-icon-circle {
    stroke: var(    --fgGreen);
    opacity: .2;
    transition: opacity .3s linear 0s;
}

.play-button-icon-progress {
    display: none;
}

.play-button-text {
     align-items: flex-start;
     display: flex;
     flex-direction: column;
     transition: opacity .3s linear 0s;
}

.play-button-title {
    text-transform: uppercase;
}

.play-button-subtitle {
    text-align: left;
}

.play-button:hover .play-button-icon {
    transform: scale(1.1);
}

.play-button:hover .play-button-icon-circle {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
  .row {
    flex-direction: column;
  }
    .invitation .row {
        flex-direction: column;
        padding-bottom: 4rem;
    }
    .workshop {
        padding-left: 0;
    }
    .workshop-info {
        width: 100%;
        align-items: center;
    }
    .workshop-link {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        margin-top: 3rem;
        text-align: center;
        border: 1px solid #efe5ca;
        border-radius: 1rem;
    }
    .workshop-link h2, .workshop-link p, .workshop-link .faux-link, .workshop-logo .wordmark, .workshop-logo .wordmark {
        font-size: 1.875rem;
    }
    .workshop-img {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }
    .workshop-img img {
        height: 50%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 50%;
    }
    .play-button {
        margin: 4rem 0;
        font-size: 1.875rem;
    }
    .hero-footer {
      flex-flow: column nowrap;
      padding: 0 1rem;
      justify-content: flex-start;
    }
    .hero-footer nav, .hero-footer div {
      width: 100%;
    }
    .hero-nav {
      justify-content: center;
    }
    .hero-nav,
    .social {
      display: none;
    }
}

@media only screen and (max-width: 767px) {
  .more {
    margin-top: 2rem;
  }
}

/* —————————————————————————————————————————————————— */
/* OFFERING */

.offering {
    flex-direction: column;
}

.offering .row {
    width: 100%;
    padding-bottom: 10rem;
    flex-direction: column;
    align-items: center;
}

.offering .row:last-child {
    flex-direction: row;
}

.invitation .row.double-img {
    padding-bottom: 3rem;
}

.offering .row .col-50:first-child,
.row.double-img .col-50:first-child {
    padding-right: 1.875rem;
}

.offering .row .col-50:last-child,
.row.double-img .col-50:last-child {
    padding-left: 1.875rem;
}

.single-image-wrapper {
    width: 100%;
}

.offering .center-image,
.row.double-img .center-image {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background-size: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: top center; */
    background-position: center center;
}

@media only screen and (max-width: 767px) {
    .offering .row {
        padding-bottom: 2rem;
    }
    .offering .row:last-child {
        flex-direction: column;
        padding-bottom: 0;
    }
    .col-50 {
        width: 100%;
    }
    .offering .row .col-50:first-child {
        padding-right: 0;
    }
    .offering .row .col-50:last-child {
        padding-left: 0;
    }
    .offering .row .col-50:first-child .single-image-wrapper {
        margin-bottom: 4rem;
    }
    .offering .center-image, .row.double-img .center-image {
        max-height: 70vh;
    }
    .row.double-img .col-50:first-child {
        padding-right: 0;
    }
    .row.double-img  .col-50:last-child {
        padding-left: 0;
    }
    .row.double-img  .col-50:first-child .single-image-wrapper {
        margin-bottom: 3rem;
    }
}

.embed-container {
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    object-fit: contain;
    position: relative;
    overflow: hidden;
}

.embed-container iframe {
    min-height: 165%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-video .embed-container iframe {
    min-height: 120%;
    width: 110%;
}

@media only screen and (max-width: 767px) {
    .embed-container {
        min-height: 70vh;
    }
}

.animate-fade {
    -webkit-animation: fadeIn 0.125s ease forwards;
    animation: fadeIn 0.125s ease forwards;
}

@-webkit-keyframes fadeIn {
    0% {}

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {}

    100% {
        opacity: 1;
    }
}

/* images with captions */
.wp-caption {
    /* Force the box to be 100% */
    width: 100% !important;
}

/* —————————————————————————————————————————————————— */
/* ABOUT US */

.about-us {
    flex-direction: column;
}

.about-us .col-3 {
    padding-left: 3rem;

    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
}

.about-us .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.about-us-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.about-img figcaption {
  padding: 0 0 0 3rem;
  font-size: 1.675rem;
  line-height: 1.2;
}

.about-us .two-col {
  padding: 3rem 9rem;
}

.about-us .two-col .col-50 {
  padding-right: 4rem;
}

.about-us .two-col .col-50 strong {
  /* border-bottom: 1px dashed white; */
  text-decoration: underline;
  text-decoration: underline dashed white;
  text-underline-offset: 4px;
}

.the-herd {
  margin-top: 6rem;
}

@media only screen and (max-width: 767px) {
  .about-us .row {
    padding: 0;
  }
  .about-us .two-col .col-50:first-child {
    padding-bottom: 4rem;
  }
  .about-us .two-col .col-50 {
      padding-right: 0;
  }
  .about-img {
    flex-direction: column;
    width: 100%;
    padding: 2rem;
  }
  .about-img figcaption {
    padding: .5rem 0 0;
    text-align: center;
  }
}

/* —————————————————————————————————————————————————— */
/* WELCOME */

section.welcome {
  padding: 2rem 0 0;
}


/* —————————————————————————————————————————————————— */
/* SLIDER */

.swiper,
.swiper2 {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 4rem;
}

.swiper2 {
  padding: 10rem 0 0;
  overflow-x: hidden;
}

.swiper-wrapper {
  text-align: center;
  align-items: center;
  padding: 6rem 0;
}

.swiper .swiper-slide {
  width: auto;
  height: auto;
  max-height: none;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
  padding: 0;
  margin-left: 0 !important;
}

.swiper-slide img {
  display: block;
  width: auto;
  height: 75vh;
  max-width: none;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
}

/* keep swiper2 behaving like the full-width slider */
.swiper2 .swiper-slide {
  text-align: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 2rem 0;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.swiper2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 2rem);
  object-fit: cover;
  border-radius: 0;
  overflow: hidden;
}

.swiper .swiper-button-prev.swiper-button-disabled, .swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

.swiper .swiper-button-prev, .swiper .swiper-button-next {
  color: var(--fgWhite);
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  border: 1px solid transparent;
  width: 3rem;
  height: 3rem;
  font-size: 1.875rem;
  line-height: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background:transparent;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  border: 1px solid white !important;
}

@media only screen and (max-width: 767px) {
  .swiper-wrapper {
    padding: 2rem 0 6rem;
  }
  .swiper-slide img {
    height: 65svh;
  }
}

/* —————————————————————————————————————————————————— */
/* SESSIONS */

.sessions .row {
    width: 100%;
    padding-bottom: 10rem;
    flex-direction: column;
    align-items: center;
}

.sessions-list,
.events-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    height: auto;
    margin: 3rem 0;
    padding: 0;
}

.sessions-list li {
    list-style: none;
    width: 100%;
    /* width: calc(33% - .855rem); */
    margin: 1rem .5rem;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    border: 1px solid transparent;
    border-radius: 1.875rem;

    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.session-card {
    display: flex;
    flex-direction: column;
    width: 35%;
    padding: 0 4rem 1rem 0;
}

.multi-day-sessions .session-card {
    width: 50%;
    order: 2;
    padding: 0 0 1rem 4rem;
}

.sessions h3:first-child {
    padding: 4rem 0 2rem;
}

.sessions h3.session-type-headers {
    width: 100%;
    padding: 6rem 0 2rem;
    text-align: center;
    font-family: 'CenturySchoolbook', Arial, sans-serif;;
    font-size: 5.2rem;
    line-height: 1.2;
}

.sessions h4 {
    width: 100%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.875rem;
    padding-top: 0;
}

.session-categories {
    padding: 0;
    margin: 0;
}

.single-sessions .session-cat {
    list-style: none;
}

.session-details {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--fgGreenLight);
    border-bottom: 1px solid var(--fgGreenLight);
}

.session .session-desc p {
    margin-bottom: 3rem;
}

.session-details p {
    width: 50%;
    text-align: center;
    margin-bottom: 0;
}

.session .session-details p,
.session .session-details p:last-child {
    margin-bottom: 0;
}

.special-rates {
    text-align: center;
    font-size: 1.75rem
    ;padding: 2rem 3rem 0;
    margin-bottom: 2rem;
}

.sessions-list.group-sessions li:last-child .special-rates {
    display: none;
}

.session-img-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 65%;
    height: 100%;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 2rem;
    overflow: hidden;
}

.multi-day-sessions .session-img-wrapper {
    width: 50%;
    order: 1;
}

.session-img-wrapper label {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: absolute;
    left: 2rem;
    top: 2rem;

    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    align-items: center;
    -webkit-appearance: none;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: transparent;
    background: hsla(30, 33%, 99%, .2);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.16);
    color: inherit;
    color: #fff;
    display: inline-flex;
    font: inherit;
    height: 3.5rem;
    justify-content: center;
    letter-spacing: 1px;
    margin: 0;
    overflow: visible;
    padding: 0 1rem;
    transition: box-shadow .2s linear 0s;
    width: auto;
}

.session-img-wrapper img {
    opacity: 0;
}

.single.single-sessions .single-hero {
    max-height: inherit;
}


.single-sessions .multi-day-sessions {
    display: flex;
    flex-direction: row;
    padding: 0 2rem;
}

.single.single-sessions .multi-day-sessions .session-img-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
    align-self: flex-start;
    height: calc(100vh - 12rem);
}

.single.single-sessions .multi-day-sessions .session-card {
    padding: 0 4rem 4rem;
    width: 45%;
}

.single.single-sessions .multi-day-sessions .session-card h1 {
    font-family: 'texgyreheros-bold', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    padding: 1.875rem 0 1rem;
    font-weight: normal;
}

.single.single-sessions .multi-day-sessions .session-card p,
.page-questionnaire p {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.single.single-sessions .multi-day-sessions .session-card .form-desc,
.single-events .multi-day-sessions .session-card .form-desc {
    padding: 0 4rem 4rem;
}

@media only screen and (max-width: 767px) {
    .sessions h3.session-type-headers {
        font-size: 2.675rem;
    }
    .sessions-list li {
        flex-direction: column;
    }
    .session-card,
    .multi-day-sessions .session-card,
    .session-img-wrapper,
    .multi-day-sessions .session-img-wrapper {
        width: 100%;
    }
    .session-card,
    .multi-day-sessions .session-card {
        padding: 0;
        order: 2;
    }
    .session-img-wrapper,
    .multi-day-sessions .session-img-wrapper,
    .single.single-sessions .multi-day-sessions .session-img-wrapper {
        margin-bottom: 1.875rem;
        order: 1;
        position: relative;
        height: inherit;
        top: inherit;
    }
    .session-img-wrapper svg,
    .multi-day-sessions .session-img-wrapper svg {
        width: 100%;
        height: auto;
    }
    .single.single-sessions .multi-day-sessions .session-card {
        width: 100%;
        padding: 0;
    }
    .single-sessions .multi-day-sessions,
    .event-sessions .multi-day-sessions {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .single.single-sessions .multi-day-sessions .session-card h1,
    .single.single-sessions .multi-day-sessions .session-card p {
        font-size: 1.875rem;
    }
}

/* —————————————————————————————————————————————————— */
/* EVENTS */
.events .row {
    width: 100%;
    padding-bottom: 10rem;
    flex-direction: column;
    align-items: center;
}

.single.single-events .single-hero {
    max-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single.single-events .multi-day-sessions {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.single-events .event-header {
    font-size: 5.2rem;
    line-height: 1;
    font-weight: normal;
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    text-align: center;
    width: 100%;
    margin: 0 0 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.event-header-wrapper {
    padding: 1.875rem 0 1rem;
    margin-bottom: 1.875rem;
}

.single.single-events h1 {
    font-family: 'texgyreheros-bold', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    font-weight: normal;
}

.single.single-events .event-header-wrapper h2,
.single.single-events .session-card p,
.date-wrapper time,
.single.single-events .session-card ul li,
.single.single-events .session-card ul li li {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.single.single-events .event-header-wrapper h2,
.events .events-list .event-header-wrapper p.sub-title {
    font-family: 'texgyreheros-bold', Arial, sans-serif;
}

.single-events .session-details p {
    width: 100%;
}

.home .event-header-wrapper {
    padding: 0;
    margin-bottom: 0;
}

.home .event a {
    text-decoration: none;
}

.home .event a:hover {
    color: inherit;
}

.home .event a.button:hover {
    color: white;
}

.home .event a:hover h3 {
    color: inherit;
    text-decoration: underline;
}

.single.single-events .event-header-wrapper h2,
.date-wrapper {
    padding: 0;
    width: 100%;
    text-align: center;
}

.events .events-list .event-header-wrapper h3:first-child {
    margin: 0;
    padding: 0;
}

.event-img-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.event-img {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    height: inherit;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 1rem;
    overflow: hidden;
    margin: 1rem 0 2rem;
}

.event-img-wrapper svg {
    width: 100%;
    height: auto;
}

.single-events .btn-wrapper {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    align-self: flex-end;
    flex: 1;
    align-items: flex-end;
    display: flex;
}

.single-events .button {
    font-size: 2.2rem;
    line-height: 1.2;
    padding: .5rem 2rem 1rem;
    border: 1px solid;
    border-radius: 3rem;
    text-decoration: none;
    margin: 0 auto;
}

.events .events-list .event-header-wrapper p {
    text-align: center;
    margin: 0;
    padding: 0;
}

.date-wrapper {
    padding: 1.875rem 0;
}

.events h3:first-child {
    padding: 4rem 0 2rem;
}

.events-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    height: auto;
    margin: 3rem 0;
    padding: 0;
}

.sessions .sessions-list h3:first-child,
.events .events-list h3:first-child {
    padding: 0 0 2rem;
}

.events-list li {
    list-style: none;
    width: 33%;
    width: calc(33% - .855rem);
    margin: 1rem .5rem;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    border: 1px solid transparent;
    border-radius: 1.875rem;

    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.sessions-list li:hover,
.events-list li:hover {
    background: white;
}

.single-events .multi-day-sessions {
    display: flex;
    flex-direction: row;
    padding: 0 2rem;
}

.single.single-events .multi-day-sessions .session-img-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
    align-self: flex-start;
    height: calc(100vh - 12rem);
}

.single.single-events .multi-day-sessions .session-card {
    padding: 0 4rem 4rem;
    width: 45%;
}

.session,
.event {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
}

.session h3,
.event h3,
.single-events h3 {
    width: 100%;
    text-align: center;
}

.single-events h3 {
    padding: 0 2rem 1.875rem;
}

.single-events .date-time {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.single-events .date-time .time {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
}

.single-events .date-time .time::before {
    content: ', ';
}

.single-events .session-details p {
    text-align:left;
    margin-bottom: 0;
}

.session p,
.event p {
    margin-bottom: 2rem;
    text-indent: 0;
}

.session p {
    font-size: 2rem;
}

.session p:last-child,
.event p:last-child {
    margin-bottom: 4rem;
}

.session .btn-wrapper,
.event .btn-wrapper {
    width: 100%;
    text-align: center;
    padding: 2rem 0;

    align-self: flex-end;
    flex: 1;
    align-items: flex-end;
    display: flex;
}

.session .button,
.page-template-page-mailchimp #mc_embed_signup .button,
.event .button {
    font-size: 2.2rem;
    line-height: 1.2;
    padding: .5rem 2rem 1rem;
    border: 1px solid;
    border-radius: 3rem;
    text-decoration: none;
    margin: 0 auto;
}

.session .button:hover,
.event .button:hover {
    background: var(--bgGreen);
    color: var(--fgWhite);
    border: 1px solid var(--bgGreen);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.single.single-events .session-card ul {
    padding: 0 0 0 2rem;
}

.single-events .session-details {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--fgGreenLight);
    border-bottom: 1px solid var(--fgGreenLight);
}

.no-events {
    display: flex;
    flex-wrap: column nowrap;
    justify-items: center;
    align-items: center;
    padding-top: 2rem;
}

.events .row.no-events {
    padding-bottom: 0;
}

.no-events-message {
    text-align: center;
    padding: 10rem;
}

.no-events-message img {
    max-height: 16rem;
    width: auto;
}

.duotone-container {
  position: relative;
  display: inline-block;
  isolation: isolate;
  margin-bottom: 2rem;

  /* highlight tone as base */
  background-color: rgba(249, 248, 247, 1);
}

.duotone-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply; /* image darkens the highlight base */
}

/* shadow color overlay */
.duotone-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(112, 55, 2, 1);  /* your brown */
  mix-blend-mode: screen;
  opacity: 0.7;   /* bumps mids/highs into brown */
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .sessions .row,
    .events .row {
        padding-bottom: 4rem;
    }
    .session .button,
    .event .button {
        font-size: 1.875rem;
    }
    .sessions-list,
    .events-list {
        flex-direction: column;
    }
    .sessions-list li,
    .events-list li {
        width: 100%;
        border: 1px solid #efe5ca;
        border-radius: 1rem;
        margin: 1rem 0 2rem;
    }
    .sessions-list {
        margin: 0;
    }
    .events-list {
        padding: 0;
        margin-top: 0;
    }
    .session,
    .event {
        padding: 1.875rem;
    }
    .sessions h3:first-child {
        padding: 4rem 0 2rem;
    }
    .events h3:first-child {
        padding: 1rem 0 2rem;
    }

    .single-events .event-header {
        font-size: 2.25rem;
        padding: 5rem 0 2.5rem;
        margin-bottom: 0;
    }
    .sessions-list li {
        flex-direction: column;
    }
    .session-card,
    .multi-day-sessions .session-card,
    .session-img-wrapper,
    .multi-day-sessions .session-img-wrapper {
        width: 100%;
    }
    .session-card,
    .multi-day-sessions .session-card {
        padding: 0;
        order: 2;
    }
    .session-img-wrapper,
    .multi-day-events .session-img-wrapper,
    .single.single-sessions .multi-day-sessions .session-img-wrapper {
        margin-bottom: 1.875rem;
        order: 1;
        position: relative;
        height: inherit;
        top: inherit;
    }
    .session-img-wrapper svg,
    .multi-day-events .session-img-wrapper svg {
        width: 100%;
        height: auto;
    }
    .single.single-events .multi-day-sessions .session-card {
        width: 100%;
        padding: 0;
    }
    .single.single-events .multi-day-sessions {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .single.single-events h1,
    .single.single-sessions .multi-day-sessions .session-card h1,
    .single.single-sessions .multi-day-sessions .session-card p {
        font-size: 1.875rem;
    }
    .single.single-events .event-header-wrapper h2,
    .single.single-events .session-card p,
    .date-wrapper time,
    .single.single-events .session-card ul li,
    .single.single-events .session-card ul li li,
    .single-events .date-time .time,
    .wpcf7-list-item span {
        font-family: 'CenturySchoolbook', Arial, sans-serif;
        font-size: 1.875rem;
        line-height: 1.2;
    }
    .single.single-events .multi-day-sessions .session-img-wrapper {
        position: relative;
        top: inherit;
        margin-top: ;
    }
    .single-events .button, .session p {
        font-size: 1.875rem;
    }
    .event-img {
        width: 70%;
    }
    .single-events .date-time {
        flex-direction: column;
        align-items: center;
    }
    .single-events .date-time .time::before {
        content: '';
    }
    .no-events-message {
        text-align: center;
        padding: 4rem;
    }
    .no-events-message img {
        max-height: 12rem;
    }
}

/* —————————————————————————————————————————————————— */
/* MUSINGS */
.musings {
    flex-direction: column;
}

.musings-posts {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.musings-posts li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    display: none;
}

.musings-posts li .col-4 {
    display: flex;
    flex-direction: row;
}

.musings-posts li h3 {
    font-style: italic;
}

.more-musings {
    width: 100%;
    text-align: center;
    padding: 6rem 0 10rem;
}

.more-musings a, .more-musings button {
    font-size: 5.2rem;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border: none;
}

.more-musings button {
    text-decoration: underline;

    font-family: 'texgyreheros-bold', Arial, sans-serif;
    font-size: 2.2rem;
    padding: .5rem 2rem 1rem;
    border: 1px solid var(--fgGreenLight);
    border-radius: 3rem;
    text-decoration: none;
    margin: 0 auto;
}

.more-musings button:hover {
    background: var(--bgGreen);
    color: var(--fgWhite) !important;
    border: 1px solid var(--bgGreen);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.more-musings button.no-more {
    display: none;
}

.more-musings a:hover {
    text-decoration: underline;
}

.more-musings button:hover {
    color: black;
}

.post-desc {
    display: flex;
    flex-direction: column;
}

.musings-posts li p {
    text-indent: 0;
    margin-bottom: 0;
}

.musings-posts li .post-list-featured-image {
    padding: .5rem 3rem 3rem 0;
}

.musings-posts li .post-list-featured-image img {
    max-height: 12rem;
    width: auto;
}

.more-tag {
    display: block;
    margin-top: 1.875rem;
}

@media only screen and (max-width: 767px) {
    .musings {
        flex-direction: column;
    }
    .musings-posts {
        margin-top: 0;
    }
    .musings-posts li {
        margin-bottom: 3rem;
    }
    .musings-posts li .post-list-featured-image img {
        max-height: 15rem;
    }
    .musings-posts li .col-4 {
        flex-direction: column;
    }
    .musings-posts li h3 {
        font-style: italic;
    }
    .post-list-title {
        text-align: center;
    }
    .musings-posts li .post-list-featured-image {
        padding-right: 0;
        padding-bottom: 1rem;
        text-align: center;
    }
    .more-tag {
        text-align: center;
    }
    .more-musings {
        padding: 0 0 10rem;
    }
}


.single nav, .page-template-default nav, .page-template-page-mailchimp nav {
    opacity: 1;
}

/* —————————————————————————————————————————————————— */
/* NAV COLOR */

.single header h1,
.single header .header-logo .wordmark,
.single header .header-contact,
.single nav.nav ul>li>a,
.page-template-default header h1,
.page-template-default header .header-logo .wordmark,
.page-template-default header .header-contact,
.page-template-default nav.nav ul>li>a,
.page-template-page-mailchimp header h1,
.page-template-page-mailchimp header .header-logo .wordmark,
.page-template-page-mailchimp header .header-contact,
.page-template-page-mailchimp nav.nav ul>li>a {
    color: var(--fgGreen);
    text-shadow: none;
}

.single .row, .page-template-default .row, .page-template-page-mailchimp .row {
    flex-direction: column;
    align-items: center;
}

.single h1, .page-template-default h1, .page-template-page-mailchimp h1, .single-sessions .session-cat {
    font-size: 5.2rem;
    line-height: 1;
    font-weight: normal;
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    text-align: center;
    width: 100%;
    margin: 0 0 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0;
}

.single .single-hero, .page-template-default .single-hero {
    position: relative;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.875rem;
}

.single .single-hero img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-height: 80vh;
    max-width: 90%;
    object-fit: contain;
}

.single .entry, .page-template-default .entry, .page-template-page-mailchimp .entry {
    padding-bottom: 10rem;
    overflow-x: hidden;
}

.page-contact-for-equine-guided-empowerment p, .page-contact-for-grounding-with-horses p, .page-contact-for-groups p {
    text-indent: 0;
    margin-bottom: 2rem;
}

.page-contact-for-equine-guided-empowerment .footer p,
.page-contact-for-grounding-with-horses .footer p,
.page-contact-for-groups .footer p {
    margin-bottom: 0;
}

.page-template-page-mailchimp .entry p {
    margin-bottom: 3rem;
}

.wp-block-quote {
    padding-left: 5rem;
    margin-left: 0;
}

.page-contact-for-equine-guided-empowerment .wp-block-quote, .page-contact-for-grounding-with-horses .wp-block-quote,
.page-contact-for-groups .wp-block-quote {
    padding: 0;
    margin: 0;
}

.page-contact-for-equine-guided-empowerment .wp-block-quote p,
.page-contact-for-grounding-with-horses .wp-block-quote p,
.page-contact-for-groups .wp-block-quote p  {
    font-size: 1.6rem;
    font-weight: normal;
}

.wp-block-quote p {
    text-indent: 0;
}

/* .wp-block-contact-form-7-contact-form-selector {
    margin-top: 6rem;
} */

.wpcf7-checkbox label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-size: 2.2rem;
    font-weight: normal;
}

.wpcf7-checkbox label input {
    width: auto;
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    border-radius: 50%;
    transition: box-shadow .3s;
    background: lightgrey;
    cursor: pointer;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
}

.wpcf7-checkbox label input:hover,
.wpcf7-checkbox label input:checked,
.wpcf7-checkbox label input:focus {
    box-shadow: inset 0 0 0 20px var(--fgGreen);
}

.wpcf7-checkbox .wpcf7-list-item {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.mc-field-group {
    margin-bottom: 2rem;
}

.mc-field-group label {
    display: flex;
    flex-direction: row;
}

#mc_embed_signup form input[type="submit"] {
    padding: 1rem 2rem 1rem;
}

.brandingLogo {
    padding: 4rem 0;
}

.brandingLogo img {
    max-width: 20rem;
}

@media only screen and (max-width: 767px) {
    .single h1, .page-template-default h1, .page-template-page-mailchimp h1 {
        font-size: 2.25rem;
        padding: 5rem 0 2.5rem;
        margin-bottom: 0;
    }
    .more-musings a, .more-musings button {
        font-size: 2.25rem;
    }
    #loadMore {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    .single .row, .page-template-default .row, .page-template-page-mailchimp .row {
        padding: 0 2rem;
    }
    .single .single-hero img {
        max-width: 100%;
    }
    .single h1, .page-template-default h1, .page-template-page-mailchimp h1, .single-sessions .session-cat {
        font-size: 2.25rem;
        padding: 5rem 0 2.5rem;
        margin-bottom: 0;
    }
    .single-sessions h2.off_screen {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
        padding: .5em;
        margin: .5em;
    }
    .wpcf7-checkbox label input {
        width: 14px;
        height: 14px;
    }
    .wpcf7-checkbox label input:hover,
    .wpcf7-checkbox label input:checked,
    .wpcf7-checkbox label input:focus {
        box-shadow: inset 0 0 0 14px var(--fgGreen);
    }
    .session-img-wrapper label {
        font-size: 1.275rem;
        left: 1.25rem;
        top: 1.25rem;
    }
}

/* —————————————————————————————————————————————————— */
/* FORMS */

form input, form textarea, form select {
    width: 100%;
    background: white;
    padding:  0.5rem 1rem 1rem;
    border: 1px solid rgb(204, 197, 185);
    border-radius: .5rem;
    transition: 0.2s;
    font-size: 2.2rem;
    line-height: 1.5;
}

form input:focus, form input[type=text]:focus, form textarea:focus, form select:focus {
    background: white;
    border: 1px solid black;
    outline: none;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

form label, label {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: normal;
}

form .wpcf7-form-control-wrap {
    margin-top: .5rem;
}

form p {
    text-indent: 0;
    margin-bottom: 1.875rem;
}

.session-booking-link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

form input[type="submit"],
.session-booking-link a {
    font-family: 'CenturySchoolbook', Arial, sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    padding: 0.5rem 2rem 1rem;
    width: auto;
    border: 1px solid;
    border-radius: 3rem;
    text-decoration: none;
    margin: 0 auto;
    background: transparent;
}

form input[type="submit"]:hover {
    background: var(--bgGreen);
    color: var(--fgWhite);
    border: 1px solid var(--bgGreen);
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

form .wpcf7-response-output {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
    padding: 3rem 3rem;
    color: var(--fgWhite);
    background: var(--bgGreen);
    border-color: var(--bgGreen) !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: red;
    background: red;
    color: white;
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 2rem 0.5rem 1rem;
    padding: 3rem 3rem;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    form input, form textarea, form select, form input[type="submit"] {
        font-size: 1.875rem;
    }
}

/* —————————————————————————————————————————————————— */
/* TESTIMONIALS */
.testimonials {
    flex-direction: column;
    padding: 2rem 3rem;
}

.testimonials h2 {
    text-align: center;
}

.testimonials ul.testimonial-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
    padding-top: 3rem;
}

.testimonials ul li {
  width: calc(71% - 2.5em);
    list-style: none;
    background: transparent;
    border: 1px solid var(--fgWhite);
    border-radius: 1.875rem;
    padding: 3rem;
    margin-bottom: 3rem;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.testimonials ul li .quote {
    font-size: 2.5rem;
    text-indent: -1.25rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonials ul li .quote::before {
    content: '\201c';
}

.testimonials ul li .quote::after {
    content: '\201d';
}

@media only screen and (max-width: 767px) {
    .testimonials {
        flex-direction: column;
        padding: 4rem 2rem;
    }
    .testimonials h2 {
        margin: 0 0 2rem 0;
    }
    .testimonials ul li {
        padding: 3rem;
    }
    .testimonials ul li .quote {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    .testimonials ul li:nth-child(even) {
        width: 90%;
        align-self: flex-end;
    }

    .testimonials ul li:nth-child(odd) {
        width: 90%;
        align-self: flex-start;
    }

    .testimonials ul li:first-child {
        width: 90%;
        align-self: flex-start;
    }
}

/* —————————————————————————————————————————————————— */
/* HEALING MESSAGE */

.healing-msg {
  height: calc(100svh - 6rem);
  background-repeat: no-repeat;
  background-position: center;
  border-top: 2px dashed rgba(255,255,255,.5);
  padding: 4rem;

  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.healing-msg h2 {
  font-size: 8rem;
}

@media only screen and (max-width: 767px) {
  .healing-msg h2 {
    font-size: 3rem;
    line-height: 1;
    text-align: center;
  }
}

/* —————————————————————————————————————————————————— */
/* FOOTER */

.footer {
    flex-direction: column;
    width: 100%;
    min-height: inherit;
    padding: 0;
    border-top: 2px dashed rgba(255,255,255,.5);
}

.footer-svg {
  max-height: 4.6rem;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 8rem 2rem;
}

.footer-links .location {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.footer .footer-links p.credit {
  margin: 0;
  margin-left: 2rem;
}

.footer .footer-links p.credit button {
  background: transparent;
  border: none;
  text-decoration: underline;
  padding: 0;
}

.site-by {
  display: none;
  transition: opacity .2s ease;
}

.credit.active .site-by {
  display: inline;
  visibility: visible;
}

.credit.active .credit-toggle {
  display: none;
}

.footer .footer-links p.credit a {
  margin-left: 0;
}

.footer-links .location a .directions-link {
    opacity: 0;
}

.footer-links .location a:hover .directions-link {
    opacity: 1;
}

.footer-links .newsletter {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-links .social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.social ul {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.story-content.watch {
    position: relative;
    width: 100%;
    height: 100%;
}

.scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-content.watch .embed-container {
    z-index: 0;
}

.social ul li {
    list-style: none;
}

.social ul li:first-child a {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {
    footer .logo-wrapper svg {
        width: 60%;
    }
    .footer-links {
        flex-direction: column;
        padding: 1rem;
    }
    .footer .footer-links p.credit {
      margin-left: 1rem;
    }
    .footer-links .location, .footer-links .newsletter, .footer-links .social {
        justify-content: center;
        margin-top: 1rem;
        width: 100%;
    }
    .footer-links .location {
      margin-top: 0;
    }
    .footer-video .embed-container {
        min-height: 160vh;
        max-height: 160vh;
        width: 160%;
        display: none;
    }
    .footer .facebook a, .footer .newsletter a, .footer .footer-contact a {
        margin-left: 1rem;
    }
}