:root {
  --black-16: #161616;
  --pink-cl: #ea5db6;
  --white: white;
  --pink: #fe12a8;
  --black: #212121;
  --midnight-blue: #142568b3;
  --blue-small: #eef0ff;
  --medium-aquamarine: #55d099;
  --powder-blue: #8fe2f3;
  --midnight-blue-2: #1e3079;
  --midnight-blue-3: #141c3f;
  --steel-blue: #2c7fc9;
  --violet: #f38aff;
  --dark-orchid: #7b39b8;
  --grey: #868686;
  --grey-2: #3f3e3e;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black-16);
  background-color: #f4f7f6;
  font-family: Saira, sans-serif;
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Saira, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
}

h2 {
  font-family: Saira, sans-serif;
  font-size: 2.4em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  color: #ffffffd9;
  margin-top: 10px;
  font-family: Saira, sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  margin-top: 25px;
  font-family: Saira, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Hauora;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

p {
  color: #000000b3;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: var(--black-16);
  text-decoration: underline;
}

a:hover {
  color: var(--pink-cl);
}

li {
  color: #142568b3;
  padding-top: 6px;
  padding-bottom: 6px;
}

img {
  border-radius: 0;
  max-width: 100%;
  display: inline-block;
}

blockquote {
  color: #ffffff80;
  background-color: #ffffff0f;
  border: 1px solid #fff3;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 30px 35px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

figcaption {
  color: #949494d9;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
}

.section {
  background-color: var(--black-16);
  position: relative;
  top: 0;
  overflow: hidden;
}

.nav-li {
  color: #fff;
  letter-spacing: 0;
  text-transform: capitalize;
  border-bottom: 2px #e0e0e0;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container {
  z-index: 2;
  flex: 0 auto;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.container.footer {
  background-color: #0000;
  padding-top: 100px;
  padding-bottom: 80px;
}

.main-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: minmax(auto, .25fr);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 3.5fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  align-items: start;
  width: 100%;
  position: relative;
}

.main-grid.inner-padding-medium {
  align-items: start;
}

.content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: block;
  position: relative;
}

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

.content-wrapper.flex-horizontal {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 500px;
  display: flex;
}

.inner-padding-medium {
  padding-top: 115px;
  padding-bottom: 115px;
}

.small-legal-text {
  color: var(--white);
  font-size: 13px;
}

.paragraph {
  color: #383838;
  margin-bottom: 60px;
  font-size: 1.65em;
  font-weight: 400;
  line-height: 1.7;
}

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

.navbar {
  background-color: #0000;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button {
  z-index: 5;
  background-color: var(--pink);
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #f36d97;
}

.button:hover {
  background-color: var(--black);
  box-shadow: none;
  color: #fff;
}

.button.inline {
  background-color: #0000;
  border-radius: 0;
  padding: 10px 0;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -2px #fff3;
}

.button.is-link {
  color: #000;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link:hover {
  color: #ea5db6;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-link.is-icon:hover {
  color: #ea5db6;
}

.button.is-link.is-icon.is-alternate {
  box-shadow: none;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  transition-property: none;
}

.nav-link {
  z-index: 4;
  color: #fff;
  border-radius: 8px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 500;
  transition: color .2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.w--current {
  color: #fffc;
}

.link-icons {
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.link-icons.center {
  justify-content: center;
  width: 40px;
  height: 40px;
}

.box-wrapper {
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 220px;
  margin-bottom: 0;
  padding: 2.5em;
  display: flex;
  position: relative;
}

.box-wrapper.float-bottom {
  padding-top: 6vh;
  padding-bottom: 0;
  padding-left: 4vw;
  overflow: hidden;
}

.text-field {
  border: 2px solid #d1d1d3;
  border-radius: 100px;
  width: 100%;
  min-width: 15vw;
  height: 65px;
  margin-bottom: 0;
  margin-right: 15px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 500;
}

.text-field::placeholder {
  color: #a3a3a3;
}

.text-field.dark {
  box-shadow: none;
  color: #fff;
  background-color: #3a3a3a;
  border-color: #3a3a3a;
  border-radius: 0;
}

.text-field.dark::placeholder {
  color: #727272;
}

.text-field.password {
  border-color: var(--black-16);
  border-radius: 4px;
  min-width: auto;
  font-weight: 400;
}

.icon-social {
  max-height: 30px;
}

.icon-social.link {
  max-width: 100%;
  max-height: 80px;
}

.profile {
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
}

.form-wrapper.left {
  justify-content: flex-start;
  margin-bottom: 15px;
  display: flex;
}

.full-image {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.main-paragraph {
  color: var(--white);
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 500;
}

.main-paragraph.size-small {
  color: var(--white);
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
}

.faq-wrapper {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-link {
  color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.faq-icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.plus-icon {
  opacity: .5;
  color: #0000;
  background-color: #16161600;
  height: 30px;
}

.faq-container {
  color: #747474;
  border: 1px #000;
}

.link-wrapper {
  color: #1b1b1b;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.link-wrapper:hover {
  color: #464646;
  padding-right: 0;
}

.icon-arrow {
  height: 20px;
  margin-top: 2px;
}

.full-form {
  width: 100%;
}

.inner-padding-micro {
  padding-top: 1em;
  padding-bottom: 1em;
}

.margin-bottom-xsmall {
  margin-bottom: 25px;
}

.value {
  font-family: Generalsans;
  font-size: 5em;
  font-weight: 600;
  line-height: 1;
}

.center-wrapper {
  perspective: 2000px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  transform: perspective(2000px);
}

.heading-large {
  color: var(--black-16);
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Saira, sans-serif;
  font-size: 4em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.heading-large.margin-bottom-xsmall {
  color: #000;
  font-family: Saira, sans-serif;
  font-style: normal;
}

.heading-large.margin-bottom-xsmall.text-white {
  color: #fff;
}

.heading-large.text-white.margin-bottom-xsmall {
  color: #000;
}

.heading-large.white {
  color: var(--white);
}

.heading-regular {
  color: #fff;
  font-family: Saira, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.heading-regular.text-black {
  text-transform: uppercase;
  font-family: Saira, sans-serif;
}

.heading-regular.uppercase {
  text-transform: uppercase;
  font-family: Saira, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.heading-regular.program-presentation-name {
  color: var(--black-16);
  font-family: Saira, sans-serif;
}

.heading-small {
  color: #ffffffd9;
  margin-top: 3px;
  margin-bottom: 3px;
  font-family: Saira, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.heading-small.w--current {
  color: var(--midnight-blue);
}

.text-white {
  color: #fff;
}

.text-white-opacity {
  color: #ffffffc7;
}

.rounded {
  border-radius: 50px;
  overflow: hidden;
}

.padding-top-large {
  padding-top: 12em;
}

.text-cyan {
  color: #6fddf3;
}

.bg-dark-gray {
  background-color: #272727;
}

.inner-grid-cms {
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 48px;
  text-decoration: none;
  display: grid;
}

.inner-form {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.form-container {
  color: #747474;
  width: 100%;
  max-width: none;
}

.label-form {
  color: #707588b3;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.label-form.left {
  color: #808080d9;
  text-align: left;
  font-size: 14px;
}

.inner-input.password {
  width: 100%;
  margin-bottom: 10px;
}

.utility-page-wrap {
  background-color: var(--blue-small);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.overflow-wrapper {
  position: relative;
  overflow: hidden;
}

.overflow-wrapper.flex {
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  display: flex;
}

.overflow-wrapper.wide-image {
  width: 100%;
  height: 90vh;
  max-height: 950px;
  margin-left: auto;
  margin-right: auto;
}

.success {
  color: #313d17;
  background-color: #c4f85c;
}

.error {
  color: #8a0a0a;
  background-color: #f76969;
  border-radius: 4px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-locker {
  height: 55px;
}

.master-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-mosaic {
  grid-template-rows: 1fr 1fr;
  height: 100%;
}

.link-wrap {
  color: #1b1b1b;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.link-wrap:hover {
  color: #464646;
  padding-right: 0;
}

.square-wrapper {
  border-radius: 0;
  height: 25vh;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.inner-section {
  height: 100%;
}

.bg-color {
  background-color: #7b39b8;
}

.cover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cover-image.program-presentation-presenter-image {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 100px;
  margin-right: 15px;
}

.link {
  color: #fff;
  font-size: 18px;
}

.link:hover {
  color: var(--pink);
  text-decoration: underline;
}

.link.text-cyan {
  color: #7d98cf;
}

.link.text-cyan:hover {
  color: #c9d6f0;
}

.circular-arrow {
  z-index: 2;
  background-color: #f1ad2e00;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 2em;
  margin-left: 10px;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.tabs-menu {
  flex-direction: column;
  width: 20vw;
  max-width: 340px;
  display: flex;
}

.tabs-menu.small {
  width: auto;
}

.tabs-menu.small.program {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
}

.tabs-content {
  flex: 1;
  justify-content: flex-end;
  padding-left: 69px;
  padding-right: 69px;
  display: flex;
}

.tabs-content.program-presentations {
  padding-left: 50px;
  padding-right: 50px;
}

.auto-grid {
  grid-column-gap: 42px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.auto-grid.profile {
  grid-column-gap: 32px;
  grid-template-columns: auto 1fr;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.auto-grid.profile.program-presentation-presenter {
  border-radius: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-list-wrapper {
  max-width: 700px;
}

.content-list-wrapper.program-presentations-list {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  display: flex;
}

.divider-bullet {
  background-color: #fff;
  border-radius: 20px;
  width: 10px;
  height: 10px;
}

.divider-bullet.ticker {
  flex: none;
  margin-left: 20px;
  margin-right: 20px;
}

.m-button-shadow {
  background-color: #0003;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.social-wrapper {
  grid-column-gap: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ticker {
  align-items: center;
  display: flex;
}

.nav-item-wrapper {
  position: relative;
}

.text-date {
  color: #ffffffb3;
  background-color: #0000001a;
  border-radius: 20px;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.text-date.program-presentation-time {
  color: var(--black);
  border-radius: 4px;
}

.size-small {
  font-size: 13px;
}

.m-button-hover {
  background-color: var(--pink);
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.m-button-label {
  z-index: 4;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: 0;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-flex-ticker {
  flex: none;
  align-items: center;
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  overflow: hidden;
}

.text-black {
  color: #000000d9;
}

.label-button {
  font-weight: 500;
}

.b-wrapper {
  height: 470px;
  position: relative;
  overflow: hidden;
}

.circle-user-speaker {
  background-color: #351313;
  border-radius: 100%;
  width: 15vw;
  height: 15vw;
  position: relative;
  overflow: visible;
}

.small {
  font-size: 12px;
}

.lottie-animation-2 {
  width: auto;
  height: auto;
}

.flex {
  justify-content: space-between;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.main-button-wrap {
  background-color: var(--pink);
  color: var(--white);
  border-radius: 0;
  position: relative;
}

.program-presentation-presenter-name {
  display: flex;
}

.main-paragraph-3 {
  color: #000000b3;
  letter-spacing: 0;
  font-weight: 500;
}

.main-paragraph-3.size-small {
  line-height: 1.4;
}

.main-paragraph-3.size-small.text-white-opacity.program-presentation-presenter-bio {
  color: var(--black);
}

.main-paragraph-3.bold {
  color: #ffffffb3;
}

.main-paragraph-3.bold.program-presentation-presenter-name {
  color: var(--black-16);
}

.main-paragraph-3.text-white-opacity {
  letter-spacing: 0;
  font-weight: 500;
}

.main-paragraph-3.text-white-opacity.program-presentation-description {
  color: var(--black);
  font-size: 1.2em;
  font-weight: 400;
}

.square-profile-3 {
  border-radius: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.faq-container-3 {
  color: #747474;
}

.section-schedule {
  background-color: #0000;
  position: relative;
  top: 0;
  overflow: hidden;
}

.section-schedule.bg-color {
  background-color: var(--white);
  border-bottom: 2px solid #000;
  height: 100%;
}

.content-wrapper-3 {
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
  display: block;
  position: relative;
}

.content-wrapper-3.agenda {
  z-index: 10;
  display: block;
}

.content-wrapper-3.inner-padding-micro {
  display: flex;
}

.content-wrapper-3.inner-padding-micro.program-presentation-presenters-list {
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.tab-3 {
  color: #fff6;
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 35px;
  font-size: 28px;
  font-weight: 600;
}

.tab-3:hover {
  color: #ccc6;
}

.tab-3.w--current {
  color: #fff;
  background-color: #f03e82;
  background-image: url('../images/icon-arrow.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 200px;
  font-size: 28px;
}

.tab-3.small {
  color: #fff6;
  background-color: #fcfcfc;
  border: 2px solid #000;
  padding-right: 35px;
  font-size: 22px;
}

.tab-3.small.w--current {
  color: #fff;
  background-color: #934dd4;
}

.tab-3.small.program-day {
  border-color: var(--black-16);
  color: var(--black-16);
  text-transform: uppercase;
  background-color: #fcfcfc00;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 20px;
  display: flex;
}

.tab-3.small.program-day.w--current {
  border-color: var(--black-16);
  background-color: var(--black-16);
  color: #fff;
  background-image: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 20px;
  display: flex;
}

.main-grid-2 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
  position: relative;
}

.main-grid-2.agenda {
  z-index: 10;
  justify-items: start;
}

.program-presentation-button {
  background-color: var(--pink);
  color: #fff;
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.program-presentation-button:hover {
  color: #fff;
}

.timeline-wrapper-2 {
  margin-bottom: 20px;
  padding-top: 0;
  display: flex;
}

.tabs-2 {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.container-schedule {
  z-index: 2;
  flex: 0 auto;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.container-schedule.inner-padding-medium {
  max-width: 1272px;
  padding-left: 24px;
  padding-right: 24px;
}

.grid-3 {
  grid-template: "Area"
  / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: space-between;
  place-items: stretch stretch;
  padding-left: 30px;
  padding-right: 30px;
}

.div-block-11 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 2px;
  display: flex;
}

.btn-secondary {
  border: 2px solid var(--black-16);
  color: #202020;
  text-align: center;
  text-transform: uppercase;
  transform-style: preserve-3d;
  background-color: #fff;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.111em;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  transform: translate(0);
}

.btn-secondary:hover {
  background-color: var(--black-16);
  color: #fff;
  transform: translate3d(0, -3px, .01px);
}

.btn-primary {
  border: 2px solid var(--black-16);
  background-color: var(--black-16);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform-style: preserve-3d;
  border-radius: 4px;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.111em;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
  transform: translate(0);
}

.btn-primary:hover {
  color: #202020;
  background-color: #fff;
  transform: translate3d(0, -3px, .01px);
}

.btn-primary.w--current {
  border-color: var(--black-16);
  background-color: var(--black-16);
}

.btn-primary.w--current:hover {
  color: var(--black-16);
}

.btn-primary.navbar {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.display-1 {
  color: #202020;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.143em;
}

.display-1.white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.buttons-row {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--white);
  align-items: center;
  display: flex;
}

.buttons-row.mg-30 {
  margin-bottom: 30px;
}

.center-content-tablet {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.center-content-tablet.hero {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.inner-container {
  text-align: left;
  flex: 0 auto;
  align-self: center;
  max-width: 1272px;
}

.inner-container._575px {
  color: var(--white);
  align-self: auto;
  max-width: 600px;
  margin-bottom: 20px;
  display: flex;
}

.inner-container._625px {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.inner-container._625px.hero {
  justify-content: center;
  align-items: center;
}

.inner-container._520px {
  max-width: 520px;
}

.inner-container._520px.full-width-tablet {
  align-self: auto;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.container-hero {
  z-index: 10;
  justify-content: space-between;
  width: 100%;
  max-width: 1272px;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: absolute;
}

.heading-h2-size {
  color: #202020;
  text-transform: uppercase;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.333em;
}

.container-default {
  max-width: 1272px;
  padding-left: 24px;
  padding-right: 24px;
  position: static;
}

.container-default.position-relative {
  flex-direction: row;
  max-width: 1272px;
  display: block;
  position: relative;
}

.section-description-2 {
  border-bottom: 4px solid #202020;
  padding-top: 240px;
  padding-bottom: 240px;
}

.section-description-2.small {
  background-color: var(--white);
  border-top: 2px #202020;
  border-bottom-width: 2px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.paragraph-2 {
  color: var(--black-16);
  margin-bottom: 30px;
  font-size: 1.4em;
  font-weight: 400;
}

.paragraph-2.text-white {
  color: var(--white);
}

.paragraph-2.text-white.text_verses {
  height: 150px;
  overflow: auto;
}

.paragraph-2.mg-3 {
  margin-bottom: 3px;
  font-weight: 400;
}

.paragraph-2.mg-3.medium {
  font-weight: 500;
}

.container-paragraph {
  font-weight: 400;
}

.section-hero {
  border-bottom: 4px solid #202020;
  padding-top: 240px;
  padding-bottom: 240px;
}

.section-hero.hero {
  position: relative;
  overflow: hidden;
}

.section-hero.hero.v1 {
  background-color: #fff;
  justify-content: center;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-hero.hero.v1.xrhub {
  color: var(--white);
  background-color: #000;
  background-image: linear-gradient(#00000080, #00000080), url('../images/Eastwoods_Civilization_1.avif');
  background-position: 0 0, 0%;
  background-size: auto, cover;
  border-bottom-width: 2px;
  width: 100%;
  height: 90vh;
}

.display-3 {
  color: #202020;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.143em;
}

.display-3.white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
}

.subtitle-wrapper {
  grid-column-gap: 8px;
  color: #202020;
  align-items: center;
  margin-bottom: 30px;
  font-family: Saira, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.083em;
  display: flex;
}

.subtitle-wrapper.center---tablet {
  flex-wrap: nowrap;
}

.mg-bottom-64px {
  color: #2b2b2b;
  flex-direction: row;
  flex: 1;
  width: 100%;
  display: block;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom {
  margin: 0 0 1rem;
}

.margin-bottom.margin-small, .margin-bottom.margin-xxlarge, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-size-medium {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
}

.text-size-medium.text-weight-bold {
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
}

.text-size-medium.text-weight-bold.mg-10 {
  margin-bottom: 10px;
}

.artists_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.home_artists_accordion {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.home_artists_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.home_timeline_icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.home_artists_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.div-artist-imagen-texts-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: flex;
}

.div_image_artist {
  border-radius: 4px;
  justify-content: space-between;
  align-items: stretch;
  width: 15%;
  height: 100%;
  margin-right: 20px;
  display: flex;
  overflow: hidden;
}

.image_artists {
  width: 100%;
  height: 100%;
}

.div-artist-texts-link {
  flex-flow: column;
  display: flex;
}

.position-relative {
  border-radius: 0;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

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

.home_logo-3_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.home_logo-3_list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
}

.home_logo-3_wrapper {
  justify-content: center;
  align-items: center;
  padding: .875rem;
  display: flex;
}

.home_logo-3_logo {
  max-height: 7.5rem;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding: 5rem 0 3rem;
}

.footer_cta {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.div-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center stretch;
  width: 100%;
  height: 100%;
  display: grid;
}

.footer_logo-link {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 0;
  display: flex;
}

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

.footer_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  place-items: end stretch;
}

.footer8_left-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer8_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  place-items: center start;
  display: flex;
}

.footer_link {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.footer_link:hover {
  color: #ea5db6;
}

.footer14_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-end;
  place-items: center start;
  display: flex;
}

.footer14_social-link {
  color: #000;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.line-divider {
  background-color: #000;
  width: 100%;
  height: 1px;
}

.line-divider.footrt {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.footer8_bottom-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.footer8_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: flex;
}

.footer_legal-link {
  color: #000;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: underline;
}

.footer_legal-link:hover {
  color: #ea5db6;
}

.footer_credit-text {
  font-size: .875rem;
  font-weight: 500;
}

.program_tabs {
  flex-direction: column;
  display: flex;
}

.category-filter-menu {
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.category-filter-menu.no-scrollbar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--black-16);
  overflow: visible;
}

.tab {
  border: 2px solid var(--black-16);
  color: var(--black-16);
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0000;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.tab:hover {
  color: var(--black-16);
}

.tab.w--current {
  border-color: var(--black-16);
  background-color: var(--black-16);
  color: #fff;
  text-transform: uppercase;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.container_list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block {
  font-size: 20px;
  font-weight: 500;
}

.text-block.medium {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.1em;
}

.section-verses {
  border-bottom: 4px solid #202020;
  padding-top: 240px;
  padding-bottom: 240px;
}

.section-verses.small {
  background-color: var(--white);
  border-top: 2px #202020;
  border-bottom-width: 2px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.text-style-tagline {
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.verses_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.verses_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.verses_card {
  border-radius: 0;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.verses_card.text-color-alternate {
  color: var(--white);
  border: 2px solid #000;
  border-radius: 4px;
  justify-content: flex-end;
  align-items: stretch;
  height: 550px;
}

.verses_background-image-wrapper {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #0000004d;
  position: absolute;
  inset: 0%;
}

.verses_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.verses_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  width: 50%;
  display: flex;
  position: relative;
}

.verses_card-content-top {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading-style-h4 {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.margin-top, .margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.section-community-partnets {
  background-color: var(--black-16);
  position: relative;
  top: 0;
  overflow: hidden;
}

.section-community-partnets.last {
  background-color: var(--blue-small);
  border-top-style: none;
  border-bottom-width: 2px;
}

.section-community-partnets.last.bg-secondary-5 {
  background-color: var(--black-16);
}

.section-sponsors {
  background-color: var(--black-16);
  position: relative;
  top: 0;
  overflow: hidden;
}

.section-sponsors.last {
  background-color: var(--blue-small);
  border-top-style: none;
  border-bottom-width: 2px;
}

.section-sponsors.last.bg-secondary-5 {
  background-color: var(--black-16);
}

.event-item-header5_component {
  z-index: 1;
  width: 100%;
}

.event-item-header5_content {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  width: 100%;
  display: grid;
}

.event-item-header_countdown-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.event-item-header_countdown {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  display: inline-flex;
}

.event-item-header_countdown.timer {
  display: flex;
}

.event-item-header_number-wrapper {
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  display: flex;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-item-header_countdown-divider {
  background-color: #fff;
  width: 1px;
}

.container_list_community_partners {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  display: flex;
}

.container_list_community_partners.mg-70 {
  margin-bottom: 70px;
}

.community_verses_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.community_verses_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.community_verses_card {
  border-radius: 0;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding: 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.community_verses_card.text-color-alternate {
  color: var(--white);
  border: 2px solid #000;
  border-radius: 4px;
  justify-content: flex-end;
  align-items: stretch;
  height: 550px;
}

.community_verses_background-image-wrapper {
  z-index: 0;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.community_verses_card-content {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  width: 50%;
  display: flex;
  position: relative;
}

.community_verses_background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.community_verses_card-content-top {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link_texts {
  color: var(--pink);
}

.link_texts:hover {
  color: var(--pink-cl);
}

.navbar1_component {
  z-index: 999;
  background-color: var(--white);
  border-bottom: 1px solid #000;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.navbar1_menu.is-page-height-tablet {
  background-color: var(--white);
}

.navbar1_link {
  color: var(--black-16);
  text-transform: uppercase;
  padding: .5rem 1rem;
  font-weight: 600;
}

.navbar1_link:hover {
  color: var(--pink-cl);
}

.navbar1_link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.navbar1_menu-button {
  padding: 0;
}

.container_credit {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.bold-text {
  font-weight: 500;
}

.divide {
  color: var(--black-16);
  width: 100%;
  height: 2px;
}

.divide.mg-50 {
  background-color: var(--black-16);
  margin-top: 100px;
}

.dailyl {
  background-color: var(--pink);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 15px;
  font-family: Saira, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.dailyl.text-black {
  text-transform: uppercase;
  font-family: Saira, sans-serif;
}

.dailyl.uppercase {
  text-transform: uppercase;
  font-family: Saira, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.dailyl.program-presentation-name {
  color: var(--black-16);
  font-family: Saira, sans-serif;
}

.link-daily {
  text-decoration: none;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.margin-bottom-2, .margin-bottom-2.margin-small, .margin-bottom-2.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.documentation_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  column-gap: 2rem;
  display: grid;
}

.gallery8_image4 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.max-width-large-2 {
  text-align: left;
  width: 100%;
  max-width: 48rem;
}

.gallery8_image1 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery8_image-wrapper-large {
  border: 2px solid #000;
  border-radius: 4px;
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.documentation_lightbox-link {
  width: 100%;
  display: inline-block;
}

.section_documentation {
  color: #000;
  background-color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.container-xxlarge {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1440px) {
  .main-paragraph.size-small {
    text-align: left;
    font-size: 20px;
  }
}

@media screen and (min-width: 1920px) {
  .container.footer {
    max-width: 1520px;
    padding-left: 0;
    padding-right: 0;
  }

  .main-button-wrap {
    display: none;
  }

  .center-content-tablet {
    flex: 0 auto;
    margin-top: 90px;
    margin-bottom: 90px;
  }

  .inner-container._625px {
    flex: 0 auto;
  }

  .inner-container._625px.hero {
    justify-content: center;
  }

  .container-default.position-relative {
    display: block;
  }

  .section-hero.hero.v1 {
    justify-content: center;
    display: flex;
  }

  .mg-bottom-64px {
    margin-bottom: 30px;
  }

  .event-item-header_countdown.timer {
    display: none;
  }

  .max-width-large-2 {
    max-width: 70rem;
  }
}

@media screen and (max-width: 991px) {
  .nav-li {
    margin-left: 0;
    margin-right: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 32px;
  }

  .container {
    flex: 0 auto;
    order: -1;
  }

  .main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-wrapper.flex-horizontal {
    flex-direction: column;
  }

  .inner-padding-medium {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .paragraph {
    margin-bottom: 5vh;
  }

  .navbar {
    z-index: 5;
  }

  .button {
    padding: 18px 40px;
  }

  .button:hover {
    background-color: #2c7fc9;
  }

  .button.inline:hover {
    background-color: #0000;
  }

  .button.is-link.is-icon.is-alternate:hover {
    background-color: var(--white);
  }

  .nav-link {
    color: #fff;
    width: 100%;
    padding: 10px 20px;
    font-size: 32px;
  }

  .box-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-field {
    min-width: auto;
  }

  .main-paragraph.size-small {
    text-align: center;
    flex: 0 auto;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .heading-large {
    font-size: 38px;
    line-height: 1.2;
  }

  .form-container {
    max-width: none;
  }

  .master-grid {
    grid-template-columns: 15px 1fr 15px;
  }

  .cover-image.program-presentation-presenter-image {
    align-self: center;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .link {
    margin-bottom: 15px;
  }

  .tabs-menu {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: none;
  }

  .tabs-menu.small {
    margin-bottom: 45px;
  }

  .tabs-menu.small.program {
    flex-direction: row;
  }

  .tabs-content {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-content.program-presentations {
    padding-left: 15px;
    padding-right: 15px;
  }

  .divider-bullet {
    margin-left: 15px;
  }

  .social-wrapper {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .nav-item-wrapper {
    width: 100%;
  }

  .m-button-hover {
    display: none;
  }

  .b-wrapper {
    height: auto;
  }

  .circle-user-speaker {
    width: 40vw;
    height: 40vw;
  }

  .tab-3 {
    text-align: center;
    flex: none;
    padding-left: 30px;
    font-size: 2em;
  }

  .tab-3.w--current {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .tab-3.small {
    flex: none;
    padding: 15px 20px;
    font-size: 20px;
  }

  .main-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-wrapper-2 {
    padding-top: 0;
  }

  .tabs-2 {
    flex-direction: column;
  }

  .container-schedule {
    flex: 0 auto;
    order: -1;
  }

  .grid-3 {
    grid-column-gap: 20px;
    flex-direction: column;
    grid-template: "."
                   "."
                   "."
                   / 1fr 1fr;
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-11 {
    margin-bottom: 20px;
    padding-bottom: 5px;
  }

  .display-1 {
    text-align: center;
    font-size: 58px;
  }

  .center-content-tablet {
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    display: flex;
  }

  .center-content-tablet.hero {
    text-align: left;
  }

  .inner-container._575px {
    text-align: center;
  }

  .inner-container._625px {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .inner-container._520px.full-width-tablet {
    text-align: center;
    align-self: center;
    max-width: 100%;
  }

  .container-default {
    padding-left: 35px;
    padding-right: 35px;
  }

  .container-default.position-relative {
    flex-direction: column;
    justify-content: center;
    padding-left: 35px;
    padding-right: 35px;
    display: flex;
  }

  .section-description-2 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

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

  .section-hero {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .section-hero.hero.v1 {
    padding-top: 0;
    padding-bottom: 140px;
  }

  .section-hero.hero.v1.xrhub {
    height: 95vh;
    padding-bottom: 0;
  }

  .display-3 {
    text-align: center;
    font-size: 58px;
  }

  .display-3.white {
    font-size: 30px;
  }

  .subtitle-wrapper {
    font-size: 22px;
  }

  .subtitle-wrapper.center---tablet {
    text-align: left;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-xsmall, .text-size-medium {
    text-align: left;
  }

  .text-size-medium.text-weight-bold {
    color: var(--black-16);
  }

  .text-size-medium.text-weight-bold.mg-10 {
    text-align: left;
  }

  .div_image_artist {
    width: 40%;
  }

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

  .home_logo-3_content {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_cta {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
  }

  .div-block {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer_top-wrapper {
    grid-template-columns: 1fr;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .category-filter-menu.no-scrollbar {
    flex-flow: wrap;
  }

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

  .section-verses {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .verses_row {
    grid-template-columns: 1fr;
  }

  .verses_card {
    padding: 2rem;
  }

  .verses_card.text-color-alternate {
    height: 500px;
  }

  .verses_card-content {
    width: 70%;
  }

  .heading-style-h4 {
    text-align: left;
    font-size: 1.75rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .event-item-header5_content {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .event-item-header_countdown-wrapper {
    text-align: left;
    align-items: flex-start;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .community_verses_row {
    grid-template-columns: 1fr;
  }

  .community_verses_card {
    padding: 2rem;
  }

  .community_verses_card-content {
    width: 70%;
  }

  .navbar1_menu {
    border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
    background-color: var(--\<unknown\|relume-variable-background-color-1\>);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .navbar1_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .container_credit {
    justify-content: flex-end;
    align-items: center;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .documentation_list {
    grid-template-columns: 1fr 1fr;
  }

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

@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
    font-weight: 700;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 18px;
  }

  .main-grid {
    grid-row-gap: 36px;
  }

  .inner-padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .paragraph {
    margin-bottom: 35px;
    font-size: 22px;
    line-height: 1.4;
  }

  .button {
    width: auto;
    font-size: 16px;
  }

  .box-wrapper {
    padding: 35px;
  }

  .text-field {
    text-align: left;
    margin-bottom: 15px;
  }

  .text-field.dark {
    text-align: center;
  }

  .main-paragraph.size-small {
    padding-left: 100px;
    padding-right: 100px;
  }

  .value {
    font-size: 36px;
  }

  .heading-large {
    font-size: 32px;
  }

  .inner-form {
    flex-direction: column;
  }

  .cover-image.program-presentation-presenter-image {
    margin-bottom: 10px;
  }

  .link {
    margin-bottom: 15px;
  }

  .tabs-content.program-presentations {
    padding-left: 10px;
    padding-right: 10px;
  }

  .auto-grid {
    grid-template-columns: 1fr;
  }

  .b-wrapper {
    height: auto;
  }

  .main-grid-2 {
    grid-row-gap: 36px;
  }

  .btn-secondary, .btn-primary {
    font-size: 16px;
  }

  .display-1 {
    text-align: center;
    font-size: 50px;
  }

  .inner-container._520px {
    max-width: 100%;
  }

  .heading-h2-size {
    font-size: 26px;
  }

  .section-description-2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-description-2.small {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .paragraph-2 {
    font-size: 1.3em;
  }

  .section-hero {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-hero.hero {
    padding-top: 100px;
  }

  .section-hero.hero.v1 {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .section-hero.hero.v1.xrhub {
    background-image: linear-gradient(#00000080, #00000080), url('../images/Eastwoods_Civilization_1.avif');
    background-position: 0 0, 20%;
  }

  .display-3 {
    text-align: center;
    font-size: 50px;
  }

  .subtitle-wrapper {
    font-size: 20px;
  }

  .mg-bottom-64px {
    margin-bottom: 48px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small {
    flex-flow: column;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .home_artists_question {
    padding: 1rem 1.25rem;
  }

  .home_timeline_icon-wrapper {
    width: 1.75rem;
  }

  .home_artists_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .div-artist-imagen-texts-link {
    flex-flow: column;
    grid-template-columns: .5fr 1fr;
  }

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

  .home_logo-3_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home_logo-3_wrapper {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_cta {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .div-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer8_link-list {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: start;
    width: 100%;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer8_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer8_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-auto-flow: row;
    justify-items: start;
  }

  .footer_credit-text {
    margin-top: 2rem;
  }

  .category-filter-menu {
    width: 100vw;
    margin-left: -5vw;
    padding-left: 5vw;
    overflow: scroll;
  }

  .category-filter-menu.no-scrollbar {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    margin-left: 0;
    padding-left: 0;
  }

  .section-verses {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-verses.small {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .verses_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .verses_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .verses_card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .verses_card-content {
    align-items: stretch;
    width: 100%;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .event-item-header5_content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .community_verses_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .community_verses_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .community_verses_card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .community_verses_card-content {
    align-items: stretch;
    width: 100%;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .dailyl {
    font-size: 20px;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .documentation_list {
    column-count: 1;
    column-gap: 1.5rem;
  }

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

  .documentation_lightbox-link {
    margin-bottom: 1.5rem;
  }

  .section_documentation {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    line-height: 1.2;
  }

  h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
  }

  h4 {
    font-size: 14px;
  }

  p {
    font-size: 18px;
    line-height: 1.4;
  }

  .container {
    flex: 0 auto;
  }

  .container.footer {
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .main-grid {
    grid-row-gap: 36px;
    align-content: space-between;
    justify-items: center;
  }

  .main-grid.inner-padding-medium {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .content-wrapper.flex-horizontal {
    display: none;
  }

  .inner-padding-medium {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .small-legal-text {
    font-size: 11px;
  }

  .paragraph {
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.65;
  }

  .button {
    justify-content: center;
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-link {
    padding-left: 10px;
    font-size: 28px;
  }

  .link-icons.center {
    width: 40px;
    height: 40px;
  }

  .box-wrapper {
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .text-field {
    text-align: left;
    max-width: none;
    height: 60px;
    margin-right: 0;
  }

  .text-field.dark {
    text-align: left;
    min-width: auto;
  }

  .form-wrapper {
    width: 100%;
  }

  .main-paragraph {
    text-align: center;
    font-size: 15px;
  }

  .main-paragraph.size-small {
    text-align: center;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }

  .faq-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-icon {
    flex: none;
    width: 25px;
    height: 25px;
  }

  .plus-icon {
    height: 12px;
  }

  .link-wrapper {
    font-size: 16px;
  }

  .margin-bottom-xsmall {
    margin-bottom: 30px;
  }

  .value {
    font-size: 28px;
  }

  .center-wrapper {
    font-size: 18px;
  }

  .heading-large {
    margin-top: 0;
    font-size: 30px;
    line-height: 1;
  }

  .heading-regular {
    font-size: 22px;
  }

  .padding-top-large {
    padding-top: 6em;
  }

  .inner-grid-cms {
    grid-column-gap: 24px;
  }

  .form-container {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

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

  .overflow-wrapper.flex {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .overflow-wrapper.wide-image {
    height: 40vh;
  }

  .master-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: center;
  }

  .link-wrap {
    font-size: 16px;
  }

  .square-wrapper {
    height: 15vh;
  }

  .checkbox-label {
    text-align: left;
    font-size: 13px;
  }

  .cover-image.program-presentation-presenter-image {
    align-self: center;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .link {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .tabs-menu {
    width: 100%;
    max-width: none;
  }

  .tabs-menu.small {
    margin-bottom: 25px;
  }

  .tabs-menu.small.program {
    flex-direction: column;
    width: 100%;
    margin-bottom: 25px;
  }

  .tabs-content.program-presentations {
    padding-left: 5px;
    padding-right: 5px;
  }

  .content-list-wrapper {
    max-width: none;
  }

  .main-paragraph-3.text-white-opacity.program-presentation-description {
    font-size: 1em;
  }

  .content-wrapper-3.inner-padding-micro.program-presentation-presenters-list {
    margin-bottom: 20px;
  }

  .tab-3 {
    flex: 1;
    padding-left: 3vw;
    padding-right: 3vw;
    font-size: 16px;
  }

  .tab-3.w--current {
    flex: 1;
    font-size: 16px;
  }

  .tab-3.small {
    font-size: 16px;
  }

  .main-grid-2 {
    grid-row-gap: 36px;
    align-content: space-between;
  }

  .tabs-2 {
    flex-direction: column;
  }

  .container-schedule {
    flex: 0 auto;
  }

  .container-schedule.inner-padding-medium {
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-3 {
    grid-column-gap: 1px;
    grid-template: "Area Area"
                   ". ."
                   ". ."
                   / 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-11 {
    margin-bottom: 15px;
  }

  .btn-secondary, .btn-primary {
    width: 100%;
  }

  .display-1 {
    text-align: center;
    font-size: 40px;
  }

  .buttons-row {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    align-self: stretch;
  }

  .center-content-tablet {
    height: 100%;
  }

  .center-content-tablet.hero {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .inner-container._575px {
    margin-bottom: 0;
  }

  .inner-container._625px {
    display: flex;
  }

  .inner-container._350px---mbp {
    max-width: 350px;
  }

  .heading-h2-size {
    font-size: 22px;
  }

  .container-default, .container-default.position-relative {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-description-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-description-2.small {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .paragraph-2 {
    font-size: 1.2em;
  }

  .section-hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-hero.hero {
    padding-top: 80px;
  }

  .section-hero.hero.v1 {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .section-hero.hero.v1.xrhub {
    height: 100vh;
  }

  .display-3 {
    text-align: center;
    font-size: 40px;
  }

  .display-3.white {
    font-size: 25px;
  }

  .mg-bottom-64px {
    margin-bottom: 40px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    text-align: center;
  }

  .text-size-medium.text-weight-bold {
    text-align: left;
    font-size: 1.1rem;
  }

  .div-artist-imagen-texts-link {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div_image_artist {
    width: 100%;
  }

  .home_logo-3_content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_cta {
    justify-content: flex-start;
    align-items: center;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer_top-wrapper {
    grid-row-gap: 2rem;
  }

  .footer8_link-list {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer14_social-list {
    order: -1;
    justify-content: center;
    align-items: center;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer8_bottom-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .footer_legal-link, .footer_credit-text {
    text-align: center;
  }

  .category-filter-menu.no-scrollbar {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .tab, .tab.w--current {
    width: 100%;
  }

  .button-group {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .section-verses {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-verses.small {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .verses_row {
    grid-template-columns: 1fr;
  }

  .verses_card.text-color-alternate {
    height: 550px;
  }

  .verses_card-content {
    justify-content: flex-end;
    align-items: center;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-medium {
    width: 100%;
  }

  .event-item-header5_content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .event-item-header_countdown-wrapper {
    display: none;
  }

  .event-item-header_countdown {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    display: none;
  }

  .event-item-header_countdown.timer {
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .event-item-header_countdown-divider {
    display: none;
  }

  .community_verses_row {
    grid-template-columns: 1fr;
  }

  .community_verses_card.text-color-alternate {
    height: 600px;
  }

  .community_verses_card-content {
    justify-content: flex-end;
    align-items: center;
  }

  .dailyl {
    font-size: 20px;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .margin-bottom-2 {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium-2 {
    text-align: left;
  }

  .documentation_list {
    grid-template-columns: 1fr;
  }

  .section_documentation {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

#w-node-a4fb46d3-d1f5-5bd0-1303-76ec1f318207-657c31b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6eac2d1d-7776-722b-a726-805a105efc82-657c31b3 {
  grid-area: 1 / 1 / 2 / 5;
  align-self: start;
}

#w-node-_6eac2d1d-7776-722b-a726-805a105efc87-657c31b3 {
  grid-area: 1 / 5 / 2 / 13;
  align-self: start;
}

#w-node-e6e25640-edf1-bc34-8b71-4ad1361d1a1d-657c31b3, #w-node-e6e25640-edf1-bc34-8b71-4ad1361d1a21-657c31b3, #w-node-_0899633c-229b-42ca-0af7-af76f7b2190b-657c31b3, #w-node-e6e25640-edf1-bc34-8b71-4ad1361d1a1b-657c31b3, #w-node-_45e31cbd-1be0-e605-c232-80864a2cc740-657c31b3, #w-node-e6e25640-edf1-bc34-8b71-4ad1361d1a1f-657c31b3, #w-node-_60ed28e1-4fa1-5d2f-416c-3f66dd631c30-657c31b3, #w-node-fd4e7938-e804-ff5e-f4d4-72ab4fa07178-657c31b3, #w-node-_21514f2b-ddb6-f135-3080-255f5e6e0369-657c31b3, #w-node-_21514f2b-ddb6-f135-3080-255f5e6e0367-657c31b3, #w-node-_21514f2b-ddb6-f135-3080-255f5e6e036f-657c31b3, #w-node-_21514f2b-ddb6-f135-3080-255f5e6e036b-657c31b3, #w-node-_21514f2b-ddb6-f135-3080-255f5e6e0371-657c31b3, #w-node-_43bc0a25-e256-271a-1132-39a0b437067e-657c31b3 {
  justify-self: center;
}

#w-node-_5a296d2b-d261-d91c-3d4a-c5a20f6ac691-657c31b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a296d2b-d261-d91c-3d4a-c5a20f6ac692-657c31b3 {
  justify-self: start;
}

@media screen and (min-width: 1440px) {
  #w-node-a4fb46d3-d1f5-5bd0-1303-76ec1f318207-657c31b3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6eac2d1d-7776-722b-a726-805a105efc82-657c31b3 {
    grid-column-end: 3;
    justify-self: start;
  }

  #w-node-_6eac2d1d-7776-722b-a726-805a105efc87-657c31b3 {
    grid-area: 2 / 1 / 3 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5a296d2b-d261-d91c-3d4a-c5a20f6ac692-657c31b3 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }
}


