@charset "UTF-8";
/* ========================================================================= */
/* !RESETS AND DEFAULTS */
/* ========================================================================= */
html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, img,
ins, kbd, q, samp, var, hr, acronym, dl, dt, dd, ol, ul, li,
pre, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  border: 0;
  outline: 0;
  font-style: normal;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

em, strong, b, i, a, span, sub, sup, small {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border-top: 1px solid #000;
  color: #000;
}

input, select {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0px;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0px;
}

input, button, textarea, select, label, img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input[type=text],
input[type=password],
input[type=url],
input[type=number],
input[type=tel],
input[type=email],
input[type=button],
input[type=submit],
button, textarea, select {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  overflow: auto;
}

button, [type=submit], [type=button], [type=reset] {
  cursor: pointer;
  border: 0;
  text-align: center;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

table {
  table-layout: fixed;
}

a[href^=tel] {
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

select::-ms-expand {
  display: none;
}

/* != FONT SMOOTHING */
body, input, button, textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* != ms-clear */
input[type=text]::-ms-clear {
  display: none;
}

/* != BACKGROUND POSITION AND BOX SIZING */
*, *:before, *:after {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
}

/* != .clearfix - CLEAR ELEMENTS */
.clear {
  clear: both;
}

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

/* != .wordwrap - CONTINUE LONG URLS/WORDS ON NEXT LINE */
.wordwrap {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}

svg path {
  d: revert-layer !important;
}

/* ========================================================================= */
/* !FONTS (@fontface generated with FontSpring Syntax formatting */
/* ========================================================================= */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Thin.woff") format("woff");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-ExtraLight.woff") format("woff");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-ExtraBold.woff") format("woff");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit/Outfit-Black.woff") format("woff");
  font-style: normal;
  font-weight: 900;
}
/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* ========================================================================= */
/* !STYLES */
/* ========================================================================= */
/* != DEFAULT STYLES ===== */
html, body {
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #42473d;
}

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

h1, .title1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 3.8888888889rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 800px) {
  h1, .title1 {
    font-size: 2.7777777778rem;
  }
}

h2, .title2 {
  color: #6D5493;
  font-size: 2.2222222222rem;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 700px) {
  h2, .title2 {
    font-size: 1.6666666667rem;
  }
}

h3, .title3 {
  font-size: 1.6666666667rem;
  font-weight: 300;
  color: #000;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-transform: none;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  h3, .title3 {
    font-size: 1.4444444444rem;
  }
}

h4, .title4 {
  color: #6D5493;
  font-size: 1.1111111111rem;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  h4, .title4 {
    font-size: 1rem;
  }
}

p {
  margin: 0 0 20px 0;
}
p.intro {
  font-size: 1.3333333333rem;
  line-height: 1.2;
}
p.callout {
  font-weight: 200;
  font-size: 2rem;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  p.intro {
    font-size: 1.1111111111rem;
  }
}
@media screen and (max-width: 700px) {
  p.callout {
    font-size: 1.5555555556rem;
  }
}

a {
  color: #4EAF46;
  text-decoration: underline;
  transition: 0.2s;
}
a:hover {
  color: #6D5493;
}

.meta {
  text-transform: uppercase;
  color: #A6A6A6;
  letter-spacing: 0.05em;
  margin: 5px 0 10px;
  display: block;
  font-size: 0.6666666667rem;
  font-weight: 700;
}
.meta span {
  display: block;
}

.title-divider {
  display: block;
  width: 70px;
  height: 1px;
  background-color: #6D5493;
  margin: 0 0 30px 0;
  margin: 40px 0;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  padding: 12px 25px;
  margin: 10px 0;
  background: #4EAF46;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 50px;
}
.btn:hover {
  background: #6D5493;
  color: #fff;
}
.btn.alt {
  background: #fff;
  color: #4EAF46;
}
.btn.alt:hover {
  color: #6D5493;
}

a.more {
  display: inline-block;
  text-decoration: none;
  transition: 0.2s;
  color: #4EAF46;
  text-transform: uppercase;
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
a.more:hover {
  color: #6D5493;
}

.content-main ul:not([class*=gf]) > li {
  position: relative;
  padding-left: 10px;
}
.content-main ul:not([class*=gf]) > li:before {
  content: "•";
  position: absolute;
  left: 0;
}
.content-main ol {
  counter-reset: li;
}
.content-main ol > li {
  position: relative;
  padding-left: 20px;
}
.content-main ol > li:before {
  content: counter(li) ". ";
  counter-increment: li;
  position: absolute;
  right: calc(100% - 15px);
}

.socials {
  display: flex;
  gap: 10px;
}
.socials ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
}
.socials .social {
  width: 25px;
  height: 25px;
  transition: 0.2s;
}
.socials .social svg {
  fill: #6D5493;
  border: 1px solid #A6A6A6;
  padding: 4px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  transition: all 0.2s;
}
.socials .social:hover svg {
  border: 1px solid #6D5493;
}

::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

/* != DEFAULT WORDPRESS STYLES = USE AS NEEDED = .wp-caption = .wp-caption-dd = .wpGallery = .shutter = .shutterset ==== */
.aligncenter {
  display: block;
  margin: 25px auto;
}

.alignleft {
  float: left;
  margin: 0 25px 25px 0;
}

.alignright {
  float: right;
  margin: 0 0 25px 25px;
}

.alignnone {
  display: inline-block;
}

/* != ACCESSIBILITY STYLES ===== */
.sr-only, .slick-sr-only {
  /* Styles below are so elements are shown to screen readers only */
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

*:focus {
  outline: 3px solid rgba(0, 0, 0, 0.5);
  outline-offset: 3px;
}

@supports selector(:focus-visible) {
  *:focus {
    outline: none;
  }
  *:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.5);
    outline-offset: 3px;
  }
}
#skipnav {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 30px;
  width: 150px;
  top: 0;
  left: 50%;
  margin-left: -75px;
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s;
  z-index: 9999999999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skipnav:focus {
  transform: translateY(0%);
}

/* != SELECTION STYLES (Leaving these blank will show no indication of text selection) ===== */
/*
    ::selection         {
        background: #aaa;
        color: #fff;
    }
    ::-moz-selection    {
        background: #aaa;
        color: #fff;
    }
    ::-webkit-selection {
        background: #aaa;
        color: #fff;
    }
*/
/* != LAYOUT STYLES ===== */
.wrap {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

#header {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
}
#header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

#main-nav > ul > li {
  display: inline-block;
  position: relative;
}
#main-nav > ul > li > a {
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7777777778rem;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: 0.2s;
}
#main-nav > ul > li > a:hover, #main-nav > ul > li > a:focus {
  color: #fff;
  border: 1px solid #fff;
}
#main-nav > ul > li.donate a {
  border: 1px solid #fff;
}
#main-nav > ul > li.donate a:hover {
  background: #fff;
  color: #6D5493;
}
#main-nav > ul > li .sub-menu-wrap {
  display: block;
  background: #555;
  width: 300px;
  padding: 30px 20px;
  position: absolute;
}
#main-nav > ul > li .sub-menu-wrap ul[aria-hidden=true] {
  display: none;
}
#main-nav > ul > li .sub-menu-wrap li {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}
#main-nav > ul > li .sub-menu-wrap li a {
  color: #fff;
  text-decoration: none;
}
#main-nav > ul > li.menu-item-has-children {
  position: relative;
}
#main-nav > ul > li.menu-item-has-children > .menu-toggle-button {
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
  background-color: none;
  position: absolute;
  right: 0;
  top: 50%;
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children:hover .sub-menu-wrap ul {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  #main-nav > ul > li.menu-item-has-children.active .sub-menu-wrap ul {
    display: block;
  }
}
#main-nav > ul > li.menu-item-has-children.active > a {
  color: #fff;
  background-color: #555;
}
@media screen and (max-width: 900px) {
  #main-nav > ul > li > a {
    padding: 10px 20px;
    font-size: 0.7222222222rem;
  }
}
@media screen and (max-width: 850px) {
  #main-nav {
    display: none;
  }
}

#menu-toggle {
  display: none;
  vertical-align: middle;
  padding: 0 0 0 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: none;
}
#menu-toggle span, #menu-toggle span:before, #menu-toggle span:after {
  cursor: pointer;
  border-radius: 5px;
  width: 20px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: "";
}
#menu-toggle span:before {
  top: -6px;
}
#menu-toggle span:after {
  bottom: -6px;
}
#menu-toggle,
#menu-toggle span:before,
#menu-toggle span:after {
  transition: all 0.2s ease-in-out;
}
#menu-toggle.active span {
  background-color: transparent;
}
#menu-toggle.active span:before {
  top: 0;
  transform: rotate(45deg);
}
#menu-toggle.active span:after {
  transform: translateY(-8px) rotate(-45deg);
  top: 8px;
}
@media screen and (max-width: 850px) {
  #menu-toggle {
    display: block;
  }
}

#main-nav-mobile {
  display: none;
  position: absolute;
  background: #6D5493;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  padding: 100px 0 20px 0;
  box-shadow: 0 30px 80px -20px black;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
#main-nav-mobile > ul > li > a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7777777778rem;
  display: block;
  padding: 15px 20px;
  line-height: 1.2;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}
#main-nav-mobile > ul > li:hover > a {
  background: #5b467b;
}
#main-nav-mobile > ul > li.donate {
  border-top: 1px solid #876eac;
  padding: 20px 0 0 0;
  margin: 20px 0 0 0;
}
#main-nav-mobile > ul > li.donate a {
  display: inline-block;
  border: 1px solid #fff;
  margin-left: 20px;
  border-radius: 50px;
}
#main-nav-mobile > ul > li.donate a:hover {
  background: #fff;
  color: #6D5493;
}
#main-nav-mobile.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 850px) {
  #main-nav-mobile {
    display: block;
  }
}

#banner {
  height: 90vh;
  min-height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
}
#banner .banner-slide {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
}
#banner .banner-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
  object-fit: cover;
}
#banner .banner-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 0 0 0;
  background-color: rgba(0, 0, 0, 0.3);
}
#banner .banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}
#banner .banner-content h1 {
  font-size: 108px;
}
#banner .banner-content h1:after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background-color: #fff;
  margin: 40px auto;
}
#banner .banner-content p.intro {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  #banner .banner-content h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 800px) {
  #banner .banner-content h1 {
    font-size: 50px;
  }
  #banner .banner-content h1:after {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  #banner .banner-content h1 {
    font-size: 40px;
  }
  #banner .banner-content h1:after {
    width: 200px;
  }
}

#banner-interior {
  background-image: linear-gradient(88deg, #4a2971, #6d5493);
  padding: 150px 0 50px 0;
}
#banner-interior .banner-content {
  text-align: center;
  color: #fff;
  max-width: 860px;
  margin: 0 auto;
}
#banner-interior .banner-content p {
  text-wrap: pretty;
  margin: 20px 0 0 0;
}

section {
  margin: 80px 0;
}
section.bg {
  margin: 0;
  padding: 80px 0;
}
section.mod-fifty-fifty {
  padding: 0;
  margin: 0;
}

.mod-content-full .content-main {
  max-width: 850px;
}

.mod-fifty-fifty {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.mod-fifty-fifty .fifty-fifty-content {
  order: 1;
  padding: 100px 40px 100px 20px;
  padding-left: calc((100vw - 1140px) / 2);
}
.mod-fifty-fifty .fifty-fifty-image {
  order: 2;
  height: 100%;
}
.mod-fifty-fifty .fifty-fifty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mod-fifty-fifty.alt .fifty-fifty-content {
  order: 2;
  padding: 100px 40px 100px 40px;
  padding-right: calc((100vw - 1140px) / 2);
}
.mod-fifty-fifty.alt .fifty-fifty-image {
  order: 1;
}
@media screen and (max-width: 1180px) {
  .mod-fifty-fifty .fifty-fifty-content {
    padding-left: 20px;
  }
  .mod-fifty-fifty.alt .fifty-fifty-content {
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .mod-fifty-fifty {
    grid-template-columns: 1fr;
  }
  .mod-fifty-fifty .fifty-fifty-image {
    grid-row: 1;
  }
  .mod-fifty-fifty .fifty-fifty-content {
    padding: 40px 20px;
  }
}

.mod-team-grid .team-grid {
  display: grid;
  gap: 50px 30px;
  grid-template-columns: repeat(4, 1fr);
}
.mod-team-grid .team-grid .team-member {
  text-decoration: none;
}
.mod-team-grid .team-grid .team-member .team-member-thumb {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.mod-team-grid .team-grid .team-member .team-member-thumb img {
  position: relative;
  z-index: 0;
  display: block;
}
.mod-team-grid .team-grid .team-member .team-member-thumb:after {
  content: "View Bio";
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(78, 175, 70, 0.95);
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  transform: scale(1.3);
}
.mod-team-grid .team-grid .team-member h2 {
  margin: 0 0 5px 0;
}
.mod-team-grid .team-grid .team-member:hover .team-member-thumb:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media screen and (max-width: 750px) {
  .mod-team-grid .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .mod-team-grid .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 400px) {
  .mod-team-grid .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mod-featured {
  position: relative;
}
.mod-featured .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.mod-featured .featured-image {
  width: 50%;
  position: absolute;
  height: 100%;
  left: 50%;
  background-size: cover;
}
.mod-featured .featured-image img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.mod-featured .featured-content {
  width: 45%;
  padding: 150px 0;
}

.section-header h2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}
.section-header h2 .more {
  margin-top: 13px;
  flex: 0 0 auto;
}
@media screen and (max-width: 700px) {
  .section-header h2 {
    flex-direction: column;
    gap: 0;
  }
}

.mod-video {
  background-color: #F6F6F6;
}
.mod-video .video-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  gap: 60px;
}
.mod-video .video-content .video {
  flex: 0 0 58.5087719298%;
}
.mod-video .video-content .video .youtube-container {
  margin: 0;
}
@media screen and (max-width: 800px) {
  .mod-video .video-content .video {
    flex: 0 0 calc(50% - 30px);
  }
}
@media screen and (max-width: 700px) {
  .mod-video .video-content {
    flex-wrap: wrap;
  }
  .mod-video .video-content .video {
    flex: 0 0 100%;
  }
}

.youtube-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 30px 0;
}
.youtube-container iframe, .youtube-container object, .youtube-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mod-podcast {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.mod-podcast h2 {
  color: #fff;
}
.mod-podcast h2:after {
  background-color: #fff;
}
.mod-podcast > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(10px);
  transform: scale(1.1);
}
.mod-podcast:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.mod-podcast .wrap {
  position: relative;
  z-index: 1;
  gap: 60px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
.mod-podcast .podcast-img {
  flex: 0 0 35.0877192982%;
}
.mod-podcast .podcast-img img {
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  display: block;
}
@media screen and (max-width: 800px) {
  .mod-podcast .wrap {
    gap: 60px;
  }
  .mod-podcast .podcast {
    flex: 0 0 40.350877193%;
  }
}
@media screen and (max-width: 700px) {
  .mod-podcast {
    text-align: center;
  }
  .mod-podcast .wrap {
    flex-direction: column;
  }
  .mod-podcast .podcast-img img {
    width: 300px;
  }
}

.mod-gallery {
  column-count: 3;
  align-content: flex-start;
  align-items: flex-start;
  column-gap: 20px;
  margin: 0 20px 20px 20px;
  padding-top: 20px;
  display: block;
}
.mod-gallery img {
  display: block;
  margin: 0 0 20px 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .mod-gallery {
    column-count: 2;
  }
}
@media screen and (max-width: 450px) {
  .mod-gallery {
    column-gap: 10px;
  }
  .mod-gallery img {
    margin: 0 0 10px 0;
  }
}

.mod-strip {
  background-image: linear-gradient(88deg, #4a2971, #6d5493);
  color: #fff;
}
.mod-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px 60px;
}
.mod-strip h2 {
  color: #fff;
  flex: 0 0 280px;
  padding-right: 30px;
  margin: 0;
  border-right: 1px solid #fff;
  align-self: stretch;
}
.mod-strip .title-divider {
  display: none;
}
.mod-strip p {
  margin: 0;
}
.mod-strip .btn {
  flex: 0 0 auto;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .mod-strip .wrap {
    display: block;
  }
  .mod-strip h2 {
    border: none;
    padding: 0;
  }
  .mod-strip p {
    margin: 0 0 30px 0;
  }
  .mod-strip .title-divider {
    display: block;
    background-color: #fff;
  }
}

.mod-video-grid .video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.mod-video-grid .video-grid .youtube-container {
  margin-bottom: 20px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}
.mod-video-grid .video-grid h3 {
  margin: 0;
}
@media screen and (max-width: 700px) {
  .mod-video-grid .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mod-newsletter {
  background-image: linear-gradient(88deg, #4a2971, #6d5493);
  color: #fff;
}
.mod-newsletter h2 {
  color: #fff;
}
.mod-newsletter h2:after {
  background-color: #fff;
}
.mod-newsletter .title-divider {
  background-color: #fff;
}
.mod-newsletter .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px 120px;
}
.mod-newsletter .newsletter-form {
  flex: 0 0 calc(50% - 60px);
}
.mod-newsletter .newsletter-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.mod-newsletter .newsletter-form form label {
  color: #fff;
}
.mod-newsletter .newsletter-form form.hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .mod-newsletter .wrap {
    flex-direction: column;
  }
  .mod-newsletter .newsletter-form {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .mod-newsletter .newsletter-form form {
    grid-template-columns: repeat(1, 1fr);
  }
}

.mod-news-listing .news-article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px 120px;
  padding: 60px 0;
  border-top: 1px solid #ccc;
}
.mod-news-listing .news-article:first-child {
  padding-top: 0;
  border: none;
}
.mod-news-listing .news-article:last-child {
  padding-bottom: 0;
}
.mod-news-listing .news-article h2 {
  text-transform: none;
  letter-spacing: 0;
}
.mod-news-listing .news-article h2 a {
  color: #6D5493;
  text-decoration: none;
}
.mod-news-listing .news-article a.btn {
  flex: 0 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .mod-news-listing .news-article {
    display: block;
  }
  .mod-news-listing .news-article a.btn {
    margin: 0;
  }
}

.mod-content-area .wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px 60px;
}
.mod-content-area .content-main {
  flex: 0 0 61.4035087719%;
}
.mod-content-area .content-main h2 {
  text-transform: none;
  letter-spacing: 0;
}
.mod-content-area .content-main .article-head h2 {
  margin: 30px 0 10px;
}
.mod-content-area .content-main .article-head .intro {
  margin-bottom: 40px;
}
.mod-content-area .content-sub {
  flex: 0 0 33.3333333333%;
  font-size: 0.8888888889rem;
}
.mod-content-area .content-sub .block {
  position: sticky;
  top: 20px;
}
@media screen and (max-width: 800px) {
  .mod-content-area .wrap {
    flex-direction: column;
  }
  .mod-content-area.contact-page .wrap, .mod-content-area.bio .wrap {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 800px) {
  .bio .content-sub {
    text-align: center;
  }
  .bio h2, .bio .meta {
    text-align: center;
  }
  .bio .title-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .bio img {
    max-width: 350px;
    width: 100%;
  }
}

::backdrop {
  background-color: #6D5493;
  opacity: 0.95;
}

dialog {
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
  animation: dialogFadeOut 0.5s forwards;
  border: none;
  padding: 0;
  max-width: 650px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
  color: #42473d;
}
dialog .dialog-content {
  padding: 30px;
}
dialog .btn {
  margin: 0 0 20px 0;
}
dialog::backdrop {
  animation: backdropFadeOut 0.5s forwards;
}
dialog[open] {
  animation: dialogFadeIn 0.5s forwards;
}
dialog[open]::backdrop {
  animation: backdropFadeIn 0.5s forwards;
}
dialog .lightbox-close {
  font-size: 0;
  width: 24px;
  height: 24px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg width%3D%2214%22 height%3D%2214%22 viewBox%3D%220 0 14 14%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M1 1L12.5 12.5%22 stroke%3D%22%236D5493%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22%2F%3E%3Cpath d%3D%22M1 12.5L12.5 0.999999%22 stroke%3D%22%236D5493%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center center;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: 0.2s;
}
dialog .lightbox-close:hover {
  background: url("data:image/svg+xml,%3Csvg width%3D%2214%22 height%3D%2214%22 viewBox%3D%220 0 14 14%22 fill%3D%22none%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M1 1L12.5 12.5%22 stroke%3D%22%234EAF46%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22%2F%3E%3Cpath d%3D%22M1 12.5L12.5 0.999999%22 stroke%3D%22%234EAF46%22 stroke-width%3D%222%22 stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center center;
}

@keyframes dialogFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dialogFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}
@keyframes backdropFadeOut {
  from {
    opacity: 0.95;
  }
  to {
    opacity: 0;
  }
}
#footer {
  padding: 10px 0;
  font-size: 0.6666666667rem;
  color: #A6A6A6;
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0 30px;
}
#footer a {
  color: #A6A6A6;
}
#footer .footer-main {
  flex: 1;
}
#footer .footer-main .footer-top {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 20px 30px;
}
#footer .footer-main .footer-top .footer-affiliates {
  flex: 1;
  text-align: right;
}
#footer .footer-main .footer-bottom {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 0 30px;
}
#footer .footer-main .footer-bottom .legal {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
}
#footer .footer-main .footer-bottom .plug {
  opacity: 0.7;
}
#footer .footer-main .footer-bottom .plug a {
  text-decoration: underline;
}
#footer .footer-main .footer-bottom .plug a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #footer .wrap {
    flex-direction: column;
  }
  #footer .footer-logo {
    margin: 0 auto;
  }
  #footer .footer-main {
    margin: 0 auto;
  }
  #footer .footer-main .footer-top {
    flex-direction: column;
  }
  #footer .footer-main .footer-bottom {
    flex-direction: column;
  }
}

/* != PLACEHOLDER ATTRIBUTE STYLES = input or textarea - placeholder="whatever" ===== */
/*
    ::-webkit-input-placeholder {
        color: #aaa;
    }

    ::-moz-placeholder {
        color: #aaa;
    }
*/
/* != FORM STYLES ===== */
label:not(fieldset label),
fieldset legend {
  font-size: 0.6666666667rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4EAF46;
}

input[type=text], input[type=password], input[type=url], input[type=number], input[type=tel], input[type=email] {
  width: 100%;
  padding: 10px 15px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #CCC;
  color: #42473d;
}

textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid #CCC;
  height: 150px;
  color: #42473d;
}

/* .ginput_container_checkbox {
	.gfield_checkbox {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 2px;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					border-left: 3px solid #f00;
					border-bottom: 3px solid #f00;
					@include size(17px, 6px);
					transform: rotate(-45deg);
					top: 5px;
					left: -14px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=checkbox] {
				visibility: hidden;
				&:checked + label:after {
					opacity: 1;
				}
			}
		}
	}
}
.ginput_container_radio {
	.gfield_radio {
		.gchoice {
			label {
				padding: 0 0 0 2px;
				cursor: pointer;
				position: relative;
				&:before {
					border: 1px solid #00f;
					@include size(15px);
					border-radius: 50%;
					left: -17px;
					top: 1px;
					content: '';
					position: absolute;
					opacity: 1;
				}
				&:after {
					@include size(5px);
					border-radius: 50%;
					left: -12px;
					top: 6px;
					content: '';
					position: absolute;
					opacity: 0;
				}
				&:hover {
					&:after {
						opacity: 0.3;
					}
				}
			}
			input[type=radio] {
				visibility: hidden;
				&:checked + label:before {
					background: #f00;
					border: 1px solid #f00;
				}
				&:checked + label:after {
					background: #fff;
					opacity: 1;
				}
			}
		}
	}
} */
input[type=submit], button {
  display: inline-block;
  cursor: pointer;
}
select {
  padding: 10px 35px 10px 15px;
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg width%3D%2213%22 height%3D%228%22 viewBox%3D%220 0 13 8%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath d%3D%22M.293.293c.36-.36.928-.388 1.32-.083l.094.083L6.51 5.096 11.313.293c.36-.36.928-.388 1.32-.083l.094.083c.36.36.389.928.084 1.32l-.084.094-5.51 5.51c-.36.36-.927.388-1.32.083l-.094-.083-5.51-5.51c-.39-.39-.39-1.024 0-1.414z%22 fill%3D%22%23f00%22 fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat calc(100% - 10px) 50%;
  border: 1px solid #f00;
}

.gform_validation_errors {
  background-color: #c00;
  color: #fff;
  padding: 20px;
}
.gform_validation_errors h2 {
  color: #fff;
}

.gform_validation_container {
  position: absolute;
  top: -9999px;
  left: -9999px;
  pointer-events: none;
  opacity: 0;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.contact.hidden {
  display: none;
}
.contact .textarea {
  grid-column: span 2;
}
@media screen and (max-width: 500px) {
  .contact {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact .textarea {
    grid-column: span 1;
  }
}

#submitted,
#signedup {
  display: none;
}
#submitted.visible,
#signedup.visible {
  display: block;
}