@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-VariableItalic.ttf') format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.ttf') format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --floral-white: #f2f2eb;
  --midnight-blue: #133040;
  --orange-red: #fe5417;
  --honeydew: #d5f4cf;
  --light-slate-grey: #8698a2;
  --dark-salmon: #fd9980;
  --burlywood: #ffc26e;
  --khaki: #e1ec89;
  --dark-turquoise: #71d8e5;
  --white: white;
  --azure: #edfbff;
}

.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;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  background-color: var(--floral-white);
  color: var(--midnight-blue);
  font-family: IBM Plex Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  letter-spacing: -2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Satoshi Variable, sans-serif;
  font-size: 116px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Satoshi Variable, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 120%;
}

h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Satoshi Variable, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
}

h4 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Satoshi Variable, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}

a {
  color: var(--orange-red);
  text-decoration: none;
}

blockquote {
  border-left: 5px solid var(--orange-red);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 150%;
}

.main-section {
  padding-left: 32px;
  padding-right: 32px;
}

.main-section.main-navigation {
  z-index: 1000;
  background-color: var(--floral-white);
  border-bottom: .5px solid #13304033;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
}

.main-section.footer {
  background-color: var(--midnight-blue);
  color: var(--floral-white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.main-section.hero-wrapper {
  text-align: center;
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 100px;
  overflow: hidden;
}

.main-section.pb-86 {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.main-section.pb-86.p64.serve {
  overflow: hidden;
}

.main-section.pb-86.p64.serve.lime, .main-section.pb-86.p64.darker {
  background-color: var(--honeydew);
}

.main-section.pb-86.p64.darker.padding-md {
  padding-top: 98px;
  padding-bottom: 98px;
}

.main-section.pb-86.p64.pb-md {
  padding-bottom: 78px;
}

.main-section.pb-86.p64.pb-md.df {
  background-color: var(--honeydew);
}

.main-section.pb-86.p64.hide {
  display: none;
}

.main-section.pb-86.sermon-page {
  padding-top: 48px;
}

.desktop-navigation {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.col.edge {
  align-items: center;
  width: 260px;
  height: 100%;
  display: flex;
}

.col.edge.right {
  text-align: right;
  justify-content: flex-end;
}

.col.center {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.col.footer-contact-cl {
  max-width: 360px;
}

.brand.w--current {
  align-items: center;
  max-width: 120px;
  height: 100%;
  display: flex;
}

.icon-button {
  height: auto;
  color: var(--midnight-blue);
  text-transform: uppercase;
  border: 1px solid #13304033;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 8px 8px 8px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.icon-button:hover {
  border-color: var(--orange-red);
  color: var(--midnight-blue);
  background-color: #fe54170d;
}

.icon-button.w--current {
  color: var(--orange-red);
}

.icon-button---icon {
  background-color: var(--midnight-blue);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 16px;
  padding: 8px;
  display: flex;
}

.icon-button---icon.large {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.icon-button---icon.large.alt {
  background-color: var(--orange-red);
}

.icon-button---icon.large.alt.play {
  background-color: var(--midnight-blue);
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}

.icon-button---icon.large.alt.anch {
  background-color: #5001b9;
}

.icon-button---icon.large.alt.tunein {
  background-color: #1c203c;
}

.icon-button---icon.large.lime {
  background-color: var(--honeydew);
}

.icon-button---icon.note {
  opacity: .4;
  width: 40px;
  height: 40px;
}

.desktop-nav-link {
  height: 100%;
  color: var(--midnight-blue);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.desktop-nav-link:hover, .desktop-nav-link.w--current {
  color: var(--orange-red);
}

.desktop-nav-link.dropdown {
  padding-left: 0;
  padding-right: 0;
}

.desktop-nav-link.hide {
  display: none;
}

.dropdown-toggle {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.dropdown-list {
  inset: 100% 0% auto;
}

.dropdown-list.w--open {
  border: .5px solid var(--midnight-blue);
  background-color: var(--floral-white);
  width: 190px;
  color: var(--midnight-blue);
  padding-top: 13px;
  padding-bottom: 13px;
  top: 79px;
}

.dropdown-link {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  transition: all .4s;
  display: flex;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--orange-red);
}

.image {
  height: 36px;
}

.icon {
  padding-top: 0;
  padding-bottom: 0;
  top: -3px;
}

.mobile-navigation {
  background-color: #0000;
  display: none;
}

.main-wrapper {
  max-width: 1320px;
  position: relative;
}

.spacing-48 {
  height: 48px;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 4fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-head {
  color: var(--light-slate-grey);
  margin-bottom: 6px;
  font-family: Tt norms pro;
  font-size: 16px;
  font-weight: 500;
}

.footer-link {
  color: var(--floral-white);
  text-transform: none;
  margin-bottom: 12px;
  font-size: 16px;
  display: block;
}

.footer-link.link {
  text-decoration: underline;
}

.footer-paragraph {
  margin-bottom: 0;
  font-size: 16px;
}

.spacing-32 {
  height: 32px;
}

.social-media-group {
  align-items: center;
  display: flex;
}

.spacing-20 {
  height: 20px;
}

.social-icon {
  opacity: .6;
  margin-right: 8px;
  transition: opacity .4s;
}

.social-icon:hover {
  opacity: 1;
}

.social-icon-image {
  object-fit: cover;
  border-radius: 50000px;
  width: 30px;
  height: 30px;
  display: block;
}

.hr {
  background-color: var(--light-slate-grey);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.hr.p-10 {
  margin-top: 10px;
  margin-bottom: 40px;
}

.hr.np {
  margin-top: 0;
  margin-bottom: 0;
}

.hr.np.lighter {
  background-color: #8698a280;
}

.copyright-group {
  color: var(--light-slate-grey);
  text-transform: uppercase;
  justify-content: space-between;
  font-size: 14px;
  display: flex;
}

.text-wrap.center {
  margin-left: auto;
  margin-right: auto;
}

.text-wrap.center.large {
  max-width: 980px;
  position: relative;
}

.text-wrap.center.large.heroup {
  z-index: 10;
}

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

.text-wrap.center.medium {
  max-width: 740px;
}

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

.text-wrap.medium {
  max-width: 810px;
}

.text-wrap.medium.center.page-title {
  text-align: center;
}

.highlight {
  color: var(--orange-red);
}

.display-1 {
  letter-spacing: -4px;
  font-family: Tt norms pro;
  font-size: 128px;
  font-weight: 700;
}

.hero-image-group {
  justify-content: center;
  align-items: center;
  height: 640px;
  display: none;
  position: relative;
}

.hero-image-1 {
  z-index: 2;
  border-radius: 16px;
  width: 22vh;
  max-width: 290px;
  position: relative;
  top: 4px;
  right: 0;
  transform: rotate(-8deg);
}

.hero-image-1._12 {
  transform: rotate(0);
}

.hero-image-2 {
  z-index: 1;
  border-radius: 16px;
  width: 40vh;
  max-width: 390px;
  position: relative;
  bottom: -38px;
  transform: rotate(10deg);
}

.hero-image-2._23 {
  border-radius: 16px;
}

.hero-image-3 {
  border-radius: 16px;
  width: 38vh;
  max-width: 520px;
  position: relative;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.hero-image-3._23 {
  border-radius: 16px;
}

.hero-image-4 {
  border-radius: 6px;
  width: 27vh;
  max-width: 370px;
  position: relative;
  bottom: -20px;
  left: -10px;
  transform: rotate(10deg);
}

.hero-image-4._2 {
  border-radius: 16px;
}

.hero-image-5 {
  border-radius: 16px;
  width: 40vh;
  max-width: 380px;
  position: relative;
  top: 3px;
  transform: rotate(-9deg);
}

.hero-image-5.hj {
  transform: rotate(6deg);
}

.big-paragraph {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 160%;
}

.spacing-64 {
  height: 64px;
}

.custom-button {
  color: var(--midnight-blue);
  text-transform: uppercase;
  border: 1px solid #13304033;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 12px 12px 12px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: relative;
}

.custom-button:hover {
  border-color: var(--orange-red);
  background-color: #fe54170d;
}

.custom-button.alt {
  color: var(--floral-white);
  background-color: #fe541733;
  border-color: #fe541733;
}

.custom-button.alt:hover {
  border-color: var(--orange-red);
  color: var(--floral-white);
  background-color: #fe541780;
}

.custom-button.alt.ml-12 {
  margin-left: 12px;
}

.custom-button.alt.ml-12.alt2 {
  color: var(--honeydew);
  background-color: #f2f2eb00;
  border-style: solid;
  border-color: #d5f4cf33;
}

.custom-button.alt.ml-12.alt2:hover {
  color: var(--honeydew);
  background-color: #d5f4cf80;
}

.custom-button.alt.small {
  background-color: var(--midnight-blue);
  padding: 6px 6px 6px 19px;
  font-size: 16px;
}

.custom-button.alt.small:hover {
  background-color: var(--orange-red);
}

.custom-button.alt.small.fw {
  color: var(--midnight-blue);
  background-color: #13304029;
  border-style: none;
  margin-bottom: 10px;
  margin-right: 10px;
}

.button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-wrap.left {
  justify-content: flex-start;
}

.button-wrap.left.hide {
  display: none;
}

.button-wrap.fw {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
}

.spacing-96 {
  height: 96px;
}

.arrow-icon.alt {
  filter: invert();
}

.latest-sermon {
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 64px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.latest-sermon.alt {
  height: 100%;
  min-height: 280px;
  max-height: 280px;
}

.latest-sermon.alt.video-link {
  min-height: 530px;
  max-height: 530px;
  transition: all .4s;
}

.latest-sermon.main {
  height: 600px;
}

.latest-sermon.main.home {
  height: 700px;
}

.sermon-background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.sermon-overlay {
  background-color: #434d41c7;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.sermon-overlay.play {
  justify-content: center;
  align-items: center;
  transition: opacity .4s;
}

.sermon-overlay.play:hover {
  background-color: #6b7a68cf;
}

.content {
  max-width: 800px;
  color: var(--floral-white);
  position: relative;
}

.tag {
  opacity: 1;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  color: #f2f2ebbd;
  background-color: #d5f4cf29;
  border-radius: 200px;
  padding: 14px 24px;
  font-size: 16px;
  display: inline-block;
  position: relative;
}

._4-col-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

._4-col-grid.get-involved {
  grid-template-columns: 1fr 1fr 1fr;
}

.link-card {
  color: var(--midnight-blue);
  text-align: center;
  background-color: #edede5;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-card:hover {
  background-color: #e6e6de;
  border: 1px #fe541721;
}

.link-card.hide {
  display: none;
}

.link-card-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 200px;
}

.rotation-group {
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 640px;
  display: flex;
}

.rotation-group.mobile-only {
  display: none;
}

.fw-rotate {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: -176px;
  padding-top: 76px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wide-group {
  justify-content: flex-start;
  align-items: center;
  width: 3748px;
  display: flex;
  position: relative;
  left: -605px;
}

._3-col-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.notes-block {
  background-color: var(--dark-salmon);
  width: 100%;
  height: 400px;
  color: var(--midnight-blue);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  text-decoration: none;
  display: flex;
}

.notes-block.yellow {
  background-color: var(--burlywood);
}

.notes-block.mint {
  background-color: var(--khaki);
}

.notes-block.nift {
  background-color: var(--dark-turquoise);
}

.notes-block.vio {
  background-color: #c37cd2;
}

.note-title {
  height: 260px;
  max-height: 260px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  overflow: hidden;
}

.date-posted {
  color: #13304080;
  text-transform: none;
  margin-bottom: 0;
}

.flex-dist {
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 1;
  display: flex;
}

.flex-dist.left {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.track-horizontal {
  align-items: center;
  width: auto;
  display: flex;
}

.marquee-horizontal {
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 700px;
  margin-top: -142px;
  margin-bottom: 76px;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pagination {
  display: none;
}

.sermon-card {
  color: var(--midnight-blue);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.sermon-cover-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 260px;
  display: block;
}

.content-tile {
  justify-content: space-between;
  align-items: center;
  display: block;
}

.back-button {
  color: var(--orange-red);
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.back-arrow {
  width: 48px;
  margin-right: 6px;
}

.sermon-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: stretch;
}

.sermon-exceptrs {
  background-color: #e8e8e1;
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 34px;
  display: flex;
}

.sermon-exceptrs.gracedaily {
  height: 100%;
  padding: 51px;
}

.pc-exceprt {
  color: #13304099;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 14px;
}

.search-block {
  width: 100%;
  max-width: 380px;
}

.search-field {
  background-color: #e6e6df;
  border: 1px solid #e6e6df;
  border-radius: 430px;
  margin-bottom: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.search-field:focus {
  border-style: solid;
  border-color: var(--midnight-blue);
  color: var(--midnight-blue);
  font-size: 18px;
}

.search-field::placeholder {
  color: var(--light-slate-grey);
  font-size: 19px;
  font-weight: 400;
}

.ovh {
  overflow: hidden;
}

.share-wrapper {
  padding-top: 20px;
}

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

.button {
  background-color: var(--orange-red);
  border-radius: 500px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .4s;
  display: block;
}

.button:hover {
  background-color: var(--midnight-blue);
}

.text-field {
  color: var(--midnight-blue);
  background-color: #0000;
  border: 1px solid #1330401a;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 18px;
}

.text-field:focus {
  border-color: var(--midnight-blue);
}

.text-field.area {
  height: 140px;
  padding-top: 16px;
}

.text-field.select {
  height: 67px;
  color: var(--midnight-blue);
  padding-top: 0;
  padding-bottom: 0;
}

.text-field.select.hide {
  display: none;
}

.fw-image {
  object-fit: cover;
  width: 100%;
  height: 400px;
  display: block;
}

.fw-image.offgrid {
  max-width: 1320px;
  height: auto;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.slider {
  background-color: #0000;
  width: auto;
  height: auto;
}

.slider.hide, .slide-nav {
  display: none;
}

.left-arrow {
  width: 50px;
  height: 50px;
  color: var(--midnight-blue);
  border: 1px solid #1330405e;
  border-radius: 500px;
  font-size: 16px;
  inset: auto 0% 0% -60px;
}

.left-arrow.right {
  left: 60px;
}

.left-arrow.right.hide, .left-arrow.hide {
  display: none;
}

.mask {
  width: auto;
  height: auto;
  overflow: visible;
}

.slide {
  width: auto;
  height: auto;
  margin-bottom: 80px;
}

.serve-team-card {
  background-color: var(--white);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 360px;
  height: 480px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  overflow: hidden;
}

.serve-team-card.hover {
  cursor: pointer;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.serve-team-card.hover.left {
  text-align: left;
  border-radius: 0;
  height: auto;
}

.serve-image {
  object-fit: cover;
  width: 100%;
  height: 400px;
  min-height: 400px;
}

.bottom {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.bottom.alt {
  flex-direction: column;
}

.bottom.alt.left {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
}

.title {
  font-size: 14px;
}

.member-name {
  font-weight: 500;
}

.accordion-item-title---brix {
  color: #170f49;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
}

.open-close-line---brix {
  background-color: #170f49;
  border-radius: 500px;
  width: 100%;
  height: 2px;
  position: absolute;
}

.open-close-line---brix.second-line---brix {
  transform: rotate(90deg);
}

.accordion-item---brix {
  cursor: pointer;
  background-color: #fff;
  border-radius: 14px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px;
  display: flex;
}

.accordion-item---brix.tabs-accordion---brix {
  background-color: #0000;
  border-bottom: 1px solid #d9dbe9;
  border-radius: 0;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  transition: padding .2s;
}

.accordion-item---brix.tabs-accordion---brix:hover {
  padding-left: 0;
}

.accordion-content---brix {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.accordion-paragraph---brix {
  width: 100%;
  max-width: 90%;
  margin-top: 18px;
  margin-bottom: 0;
}

.accordion-trigger---brix {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.open-close-icon-wrapper---brix {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 14px;
  min-height: 14px;
  display: flex;
  position: relative;
}

.acc-title {
  margin-bottom: 0;
}

.full-width {
  object-fit: cover;
  width: 100%;
  height: 600px;
  display: block;
}

.ch-logo {
  width: 190px;
  height: auto;
  margin-bottom: 20px;
}

._2-col-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.rich-text-block {
  width: 100%;
}

.pl-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 380px;
}

.bg {
  padding-top: 16px;
}

.hero {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 0;
  width: 100%;
  max-height: 690px;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

.container.medium {
  max-width: 54rem;
}

.container.medium.article-head {
  background-color: var(--floral-white);
  margin-top: -156px;
  padding: 2.5rem;
}

@media screen and (max-width: 991px) {
  h1 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 24px;
  }

  .main-section.main-navigation {
    border-bottom-style: solid;
    border-bottom-color: #13304033;
    height: 70px;
    padding-left: 0;
    padding-right: 0;
  }

  .main-section.hero-wrapper {
    padding-bottom: 32px;
  }

  .main-section.pb-86 {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .desktop-navigation {
    display: none;
  }

  .icon-button {
    background-color: var(--honeydew);
    border-style: none;
    border-radius: 0;
    margin-top: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-navigation {
    background-color: #0000;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    display: block;
  }

  .menu-button {
    background-color: var(--floral-white);
    width: 70px;
    height: 100%;
    color: var(--midnight-blue);
    border-left: .5px solid #13304033;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 34px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: var(--midnight-blue);
  }

  .brand-2 {
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 16px;
    display: flex;
  }

  .mobile-menu {
    background-color: #0000;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .image-2 {
    height: 34px;
  }

  .nav-menu {
    background-color: var(--midnight-blue);
    color: var(--floral-white);
    padding-top: 16px;
  }

  .nav-link {
    color: var(--floral-white);
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
  }

  .nav-link.w--current {
    color: var(--orange-red);
  }

  .nav-link.hide {
    display: none;
  }

  .footer-grid {
    grid-column-gap: 24px;
    grid-template-columns: 3fr 1fr 1fr 1fr;
  }

  .footer-link, .footer-paragraph, .copyright-group {
    font-size: 14px;
  }

  .display-1 {
    letter-spacing: -2px;
    font-size: 80px;
  }

  .hero-image-group {
    height: 390px;
  }

  .hero-image-1 {
    width: 14vh;
    right: -70px;
  }

  .hero-image-2 {
    width: 17vh;
    bottom: -87px;
    right: -40px;
  }

  .hero-image-3 {
    width: 24vh;
    left: -47px;
  }

  .hero-image-4 {
    width: 15vh;
    max-width: 290px;
    bottom: 13px;
    left: -50px;
  }

  .hero-image-5 {
    width: 17vh;
    top: 61px;
    left: -106px;
  }

  .custom-button.alt {
    font-size: 16px;
  }

  .custom-button.alt.ml-12.alt2 {
    font-size: 14px;
  }

  .spacing-96 {
    height: 64px;
  }

  .latest-sermon {
    height: 480px;
    padding: 45px;
  }

  .latest-sermon.alt {
    min-height: 380px;
  }

  .latest-sermon.alt.video-link {
    min-height: 430px;
    max-height: 420px;
  }

  .tag {
    font-size: 14px;
  }

  ._4-col-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .link-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    font-size: 18px;
    display: flex;
  }

  .link-card-image {
    height: 120px;
  }

  .rotation-group {
    flex: none;
    justify-content: flex-start;
    width: auto;
    height: 510px;
    margin-left: -73px;
    margin-right: -94px;
  }

  .fw-rotate {
    justify-content: flex-start;
    margin-top: -157px;
    padding-bottom: 0;
  }

  .wide-group {
    justify-content: flex-start;
    width: auto;
  }

  ._3-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .notes-block {
    font-size: 16px;
  }

  .note-title {
    height: 260px;
    max-height: 260px;
    font-size: 18px;
    overflow: hidden;
  }

  .track-horizontal {
    flex: none;
    width: 100%;
    margin-left: -36px;
    left: -464px;
  }

  .marquee-horizontal {
    height: 480px;
    margin-top: -60px;
    margin-bottom: 0;
  }

  .sermon-grid {
    grid-template-columns: 1.5fr;
  }

  .sermon-exceptrs {
    padding: 45px;
  }

  .serve-team-card {
    width: 320px;
    height: 400px;
  }

  .serve-image {
    height: 330px;
    min-height: 330px;
  }

  .accordion-item-title---brix {
    max-width: 88%;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
  }

  .full-width {
    height: 400px;
  }
}

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

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 22px;
    line-height: 130%;
  }

  .main-section.hero-wrapper {
    padding-bottom: 32px;
  }

  .main-section.pb-86 {
    padding-top: 32px;
  }

  .main-section.pb-86.sermon-page {
    padding-top: 64px;
  }

  .brand-2 {
    padding-left: 0;
  }

  .spacing-48 {
    height: 24px;
  }

  .footer-grid {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .copyright-group {
    font-size: 14px;
  }

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

  .hero-image-group {
    height: 410px;
  }

  .hero-image-3 {
    width: 20vh;
    transform: rotate(17deg);
  }

  .hero-image-4 {
    transform: rotate(-6deg);
  }

  .big-paragraph {
    font-size: 18px;
  }

  .latest-sermon {
    height: auto;
    padding: 64px 30px;
  }

  .latest-sermon.alt {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 126px;
  }

  .latest-sermon.alt.video-link {
    min-height: 320px;
  }

  .latest-sermon.main.home {
    height: 590px;
  }

  ._4-col-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .link-card {
    padding: 12px;
  }

  .link-card-image {
    height: 110px;
  }

  .rotation-group {
    margin-left: -61px;
  }

  .rotation-group.mobile-only {
    display: none;
  }

  .fw-rotate, .wide-group {
    justify-content: flex-start;
  }

  ._3-col-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .notes-block {
    height: 350px;
  }

  .note-title {
    height: 220px;
  }

  .track-horizontal {
    left: 0;
  }

  .marquee-horizontal {
    margin-top: -63px;
    padding-bottom: 34px;
  }

  .sermon-cover-image {
    height: 180px;
  }

  .sermon-exceptrs.gracedaily {
    padding: 32px;
  }

  .fw-image.offgrid {
    margin-top: 48px;
  }

  .serve-team-card.hover {
    height: 380px;
  }

  .serve-image.member-image {
    height: 300px;
    min-height: 300px;
  }

  .accordion-item-title---brix {
    max-width: 80%;
    font-size: 18px;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  ._2-col-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .container.medium.article-head {
    padding: 1.9rem;
  }
}

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

  h3 {
    font-size: 26px;
  }

  .main-section.hero-wrapper {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .main-section.pb-86.sermon-page {
    padding-top: 32px;
    padding-bottom: 0;
  }

  .main-section.pb-86.sermon-page.gacedaily {
    padding-top: 0;
  }

  .icon-button---icon.large {
    width: 32px;
    height: 32px;
  }

  .spacing-48 {
    height: 32px;
  }

  .footer-grid {
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
  }

  .footer-link, .footer-paragraph {
    font-size: 15px;
  }

  .hr.p-10.fg {
    background-color: #f2f2eb82;
    margin-bottom: 10px;
  }

  .copyright-group {
    font-size: 13px;
  }

  .display-1 {
    letter-spacing: -1px;
    margin-bottom: 7px;
    font-size: 48px;
  }

  .hero-image-group {
    height: 240px;
    margin-top: 100px;
    margin-bottom: 64px;
  }

  .hero-image-1 {
    width: 250px;
    display: block;
    top: 28px;
    right: 0;
    transform: rotate(11deg);
  }

  .hero-image-2 {
    width: 188px;
    display: block;
    bottom: -94px;
    right: 0;
    transform: rotate(-17deg);
  }

  .hero-image-2._23 {
    display: none;
  }

  .hero-image-3 {
    width: 250px;
    display: block;
    top: -19px;
    left: -63px;
    transform: rotate(-3deg);
  }

  .hero-image-3._23 {
    display: none;
  }

  .hero-image-4 {
    width: 180px;
    bottom: -44px;
    left: -113px;
    transform: rotate(3deg);
  }

  .hero-image-4._2 {
    display: none;
  }

  .hero-image-5 {
    width: 9vh;
    display: none;
    left: -187px;
    transform: rotate(9deg);
  }

  .big-paragraph {
    font-size: 17px;
  }

  .custom-button {
    font-size: 16px;
  }

  .custom-button.alt {
    background-color: #fe541766;
    border-color: #fe541780;
  }

  .custom-button.alt.ml-12.alt2 {
    margin-top: 10px;
    margin-left: 0;
  }

  .custom-button.alt.small {
    border-style: none;
  }

  .button-wrap.left {
    flex-direction: column;
  }

  .latest-sermon {
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .latest-sermon.alt {
    min-height: 210px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .latest-sermon.alt.video-link {
    min-height: 220px;
    max-height: 360px;
  }

  .latest-sermon.main, .latest-sermon.main.home {
    height: auto;
  }

  .sermon-overlay {
    background-color: #242923ad;
  }

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

  .tag {
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 500;
  }

  ._4-col-grid.get-involved {
    grid-template-columns: 1fr 1fr;
  }

  .link-card {
    padding: 12px;
    font-size: 16px;
  }

  .link-card-image {
    height: 80px;
  }

  .rotation-group {
    justify-content: flex-start;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .rotation-group.mobile-only {
    justify-content: center;
    width: 100%;
    display: flex;
    overflow: hidden;
  }

  .wide-group {
    justify-content: flex-start;
    width: 100%;
    left: 0;
  }

  ._3-col-grid {
    grid-template-columns: 1fr;
  }

  ._3-col-grid.sermon {
    grid-row-gap: 40px;
  }

  .notes-block.nift {
    height: 340px;
  }

  .track-horizontal {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
    display: none;
  }

  .sermon-card {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .sermon-exceptrs {
    padding: 24px;
  }

  .serve-team-card {
    width: 280px;
    height: 370px;
  }

  .serve-image {
    height: 300px;
    min-height: 300px;
  }

  .accordion-item-title---brix {
    max-width: 70%;
    font-size: 20px;
  }

  .accordion-item---brix.tabs-accordion---brix {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .accordion-paragraph---brix {
    max-width: 100%;
  }

  .open-close-icon-wrapper---brix {
    margin-right: 16px;
  }

  .full-width {
    height: 250px;
  }

  .container.medium.article-head {
    margin-top: 0;
    padding: 0;
  }
}

#w-node-be0545b6-98d7-7d65-b6e3-8f349d909179-0b14d6a7, #w-node-_7df4658c-37ad-6dc9-9cf6-82f10d4a6f08-0b14d6a7, #w-node-_22a63a48-717d-696e-6ba5-14b8a0853935-0b14d6a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}