@charset "UTF-8";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 55%;
  }
}

body {
  font-family: "Roboto", sans-serif;
  color: #545251;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.8rem;
}

@media only screen and (max-width: 31.25em) {
  body {
    font-size: 2rem;
  }
}

/*
.home-container {
  display: grid;
  grid-template-rows: 13rem 50vw repeat(7, min-content);


  @media only screen and (max-width: $bp-500) {
    grid-template-rows: 13rem 60vh repeat(7, min-content);
  }
} */

a:link,
a:visited {
  color: #bf5a1b;
}

a:hover,
a:active {
  color: #6f86be;
}

::-moz-selection {
  background-color: #6f86be;
  color: #fff;
}

::selection {
  background-color: #6f86be;
  color: #fff;
}

.success-box {
  padding: 2rem 3.5rem;
  background-color: #73bf7c;
  color: #fff;
}

.u-padding-top-md {
  padding-top: 3rem;
}

.u-padding-top-lg {
  padding-bottom: 4rem;
}

.u-padding-bottom-lg {
  padding-bottom: 4rem;
}

.u-padding-bottom-md {
  padding-bottom: 3rem;
}

.u-margin-top-lg {
  margin-top: 5rem;
}

.u-margin-bottom-lg {
  margin-bottom: 5rem;
}

.u-margin-top-xl {
  margin-top: 8rem;
}

.u-margin-bottom-md {
  margin-bottom: 3rem;
}

.u-margin-bottom-sm {
  margin-bottom: 1.5rem;
}

.u-page-min-height {
  min-height: 40rem;
  align-items: start !important;
}

.u-hidden {
  display: none;
}

.u-round-img {
  border-radius: 50%;
  display: block;
  width: 100%;
}

.u-square-img {
  display: block;
  width: 100%;
}

.u-bold-text {
  font-weight: 700;
}

.u-larger-text {
  font-size: larger;
}

.u-smaller-text {
  font-size: smaller !important;
}

.u-uppercase-text {
  text-transform: uppercase;
}

.u-small-line-below {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f2c354;
}

.u-small-line-lg-padding-below {
  padding-bottom: 5rem;
  border-bottom: 1px solid #f2c354;
}

.u-pull-cell-right {
  justify-self: end;
}

.u-font-secondary {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
}

.u-dark-purple {
  color: #524e63;
}

.u-color-warning {
  color: #ff7b80;
}

@media screen and (max-width: 68.75em) {
  .u-super-long-words {
    font-size: 90%;
  }
}

@media screen and (max-width: 31.25em) {
  .u-super-long-words {
    font-size: 80%;
  }
}

.u-hover-brightness:hover {
  filter: brightness(1.05);
}

.u-full-width-img {
  width: 100%;
  height: auto;
  display: block;
}

.form__group:not(:last-child),
.application-form form__group:not(:last-child) {
  margin-bottom: 3rem;
}

.form__input,
.application-form form__input {
  font-size: 1.8rem;
  font-family: inherit;
  padding: 1.5rem 2rem;
  border: none;
  display: block;
  color: rgba(84, 82, 81, 0.8);
  background-color: rgba(84, 82, 81, 0.05);
  border-bottom: 3px solid transparent;
  width: 100%;
  max-width: 85rem;
}

.form__input:focus,
.application-form form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(84, 82, 81, 0.2);
  border-bottom: 3px solid #73bf7c;
}

.form__input:focus:invalid,
.application-form form__input:focus:invalid {
  border-bottom: 3px solid #ff7b80;
}

.form__input::-webkit-input-placeholder,
.application-form form__input::-webkit-input-placeholder {
  color: rgba(84, 82, 81, 0.6);
}

.form button.btn,
.application-form form button.btn {
  cursor: pointer;
}

.footer {
  background-color: #6f86be;
  height: 100%;
  position: relative;
  /** ======= **/
  /** ======= **/
}

.footer__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 100%;
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0% 30%);
  background-image: linear-gradient(60deg, #6f86be, #6059a7);
  z-index: 1;
}

@media only screen and (max-width: 53.125em) {
  .footer__shape {
    clip-path: polygon(50% 0, 100% 20%, 100% 100%, 0 100%, 0% 20%);
  }
}

@media only screen and (max-width: 43.75em) {
  .footer__shape {
    height: 60%;
    clip-path: polygon(50% 0, 100% 15%, 100% 100%, 0 100%, 0% 15%);
  }
}

.footer__content {
  padding: 4rem;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 2rem;
}

@media only screen and (max-width: 68.75em) {
  .footer__content {
    grid-template-columns: 1fr;
    grid-row-gap: 5rem;
  }
}

.footer__content--left {
  z-index: 2;
  display: grid;
  grid-template-rows: min-content 1fr;
}

@media only screen and (max-width: 53.125em) {
  .footer__content--left {
    grid-template-columns: min-content 1fr;
    grid-column-gap: 3rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .footer__content--left {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .footer__content--left {
    grid-template-columns: 1fr;
  }
}

.footer__content--right {
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr min-content min-content;
  grid-row-gap: 6rem;
}

.footer__subscribe {
  justify-self: end;
}

@media only screen and (max-width: 43.75em) {
  .footer__subscribe {
    justify-self: start;
  }
}

.footer .form {
  padding-top: 1.5rem;
}

.footer .form #mc_embed_signup_scroll {
  display: flex;
}

@media screen and (max-width: 31.25em) {
  .footer .form #mc_embed_signup_scroll {
    display: block;
  }
}

@media screen and (max-width: 31.25em) {
  .footer .form__group:not(:last-child) {
    margin-bottom: 10px;
  }
}

.footer .form__input {
  font-size: 1.7rem;
  font-family: inherit;
  color: #545251;
  padding: 1rem 1.5rem;
  border: none;
  background-color: #fff;
  display: block;
  transition: all 0.2s;
  min-width: 30rem;
}

@media only screen and (max-width: 43.75em) {
  .footer .form__input {
    min-width: 100%;
  }
}

.footer .form__input:focus {
  outline: none;
  border-bottom: none;
  background-color: #73bf7c;
  color: #fff;
}

.footer .form__input:focus:invalid {
  border-bottom: none;
  background-color: #ff7b80;
  color: #fff;
}

.footer .form__input::-webkit-input-placeholder {
  color: rgba(84, 82, 81, 0.6);
}

.footer .form__label {
  display: none;
}

.footer a:link,
.footer a:visited {
  color: #f2b797;
}

.footer a:hover,
.footer a:active {
  color: #f2c354;
}

.footer__logo {
  height: 12rem;
  padding-bottom: 2.5rem;
}

@media only screen and (max-width: 53.125em) {
  .footer__logo {
    height: 100%;
    padding-bottom: 0;
    max-height: 15rem;
  }
}

.footer__social-icons {
  padding-top: 1.4rem;
}

.footer__social-icons svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #fff;
}

.footer__social-icons a {
  text-decoration: none;
}

.footer__social-icons a:not(:last-child) {
  padding-right: 5px;
}

.footer__social-icons a:hover svg {
  fill: #f2c354;
}

.footer__nav {
  display: flex;
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 53.125em) {
  .footer__nav {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .footer__nav {
    display: block;
  }
}

.footer__nav li {
  transition: all 0.2s;
  margin-top: 0;
}

@media only screen and (max-width: 43.75em) {
  .footer__nav li {
    padding-bottom: 1.7rem;
  }
}

.footer__nav li:not(:last-child) {
  margin-right: 4rem;
}

.footer__nav li::before {
  display: none;
}

.footer__nav a:link,
.footer__nav a:visited {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 43.75em) {
  .footer__nav a:link,
  .footer__nav a:visited {
    cursor: pointer;
  }
}

.footer__nav a:hover,
.footer__nav a:active {
  border-bottom: 1px solid currentColor;
  color: #f2c354;
}

.footer__nav li ul {
  padding-top: 1rem;
  font-size: 1.4rem;
  text-transform: capitalize;
}

@media only screen and (max-width: 56.25em) {
  .footer__nav li ul {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .footer__nav li ul {
    margin-left: 1.5rem;
    padding-top: 5px;
  }
}

.footer__nav li ul li {
  line-height: 1.4;
}

.footer__nav li ul li:not(:last-child) {
  padding-bottom: 8px;
}

.footer__nav li ul li:last-child {
  padding-bottom: 0;
}

.footer__copyright {
  background-color: #524e63;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  font-size: 1.5rem;
  padding: 1.5rem 2.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content 1fr;
}

@media only screen and (max-width: 31.25em) {
  .footer__copyright {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}

.footer__copyright--copy {
  padding-bottom: 0;
}

.footer__copyright--credit {
  text-align: right;
  padding-bottom: 0;
}

@media only screen and (max-width: 31.25em) {
  .footer__copyright--credit {
    text-align: left;
  }
}

.navigation {
  display: none;
}

@media only screen and (max-width: 53.125em) {
  .navigation {
    display: block;
  }
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: #6059a7;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 2rem;
  right: 2rem;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(84, 82, 81, 0.2);
  z-index: 2000;
  text-align: center;
  cursor: pointer;
}

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  background-image: radial-gradient(#f2c354, #ee8e52);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.7, 1);
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  display: none;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.navigation__item {
  margin: 1rem;
  padding-bottom: 2.5rem;
}

@media only screen and (max-width: 25em) {
  .navigation__item {
    padding-bottom: 0;
  }
}

.navigation__item ul {
  padding-top: 5px;
}

.navigation__item ul li {
  margin-top: 0;
  padding-bottom: 4px;
}

@media only screen and (max-width: 25em) {
  .navigation__item ul li {
    padding-bottom: 1px;
  }
}

.navigation__item li a {
  color: #bf5a1b;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2.1rem;
  border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 25em) {
  .navigation__item li a {
    padding-bottom: 0;
    font-size: 1.5rem;
  }
}

.navigation__item li a:hover,
.navigation__item li a:active {
  color: #524e63;
  border-bottom-color: currentColor;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  padding: 0 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 25em) {
  .navigation__link:link,
  .navigation__link:visited {
    font-size: 2rem;
  }
}

.navigation__link:hover,
.navigation__link:active {
  color: #524e63;
  border-bottom-color: currentColor;
}

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  display: block;
  width: 100%;
  animation: fadeIn ease 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}

.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.navigation__icon::before {
  top: -0.8rem;
}

.navigation__icon::after {
  top: 0.8rem;
}

.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}

.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.header {
  padding: 1.5rem 5rem;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-column-gap: 3rem;
  align-items: end;
  position: relative;
}

@media screen and (max-width: 53.125em) {
  .header {
    grid-template-columns: 100%;
    grid-template-rows: min-content 1fr;
    grid-row-gap: 10px;
    padding-top: 3px;
  }
}

@media screen and (max-width: 25em) {
  .header {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.header__logo {
  height: 10rem;
}

.header__highlight-area {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px 0 0;
}

@media screen and (max-width: 53.125em) {
  .header__highlight-area {
    position: relative;
    text-align: left;
  }
}

@media screen and (max-width: 37.5em) {
  .header__highlight-area {
    max-width: 90%;
  }
}

@media screen and (max-width: 31.25em) {
  .header__highlight-area {
    max-width: 80%;
  }
}

.nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(min-content, max-content));
  justify-content: end;
  align-items: end;
  grid-column-gap: 3rem;
  position: relative;
}

@media only screen and (max-width: 53.125em) {
  .nav {
    display: none;
  }
}

.nav__item ul {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 1.6rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.nav__item ul li {
  border-bottom: 1px solid #545251;
  margin-top: 0;
}

.nav__item ul li::before {
  content: "";
  display: none;
}

.nav__item ul li a {
  text-decoration: none;
  padding: 1rem 1.5rem;
  display: block;
}

.nav__item ul li a.current {
  color: #fff;
  background-color: rgba(82, 78, 99, 0.7);
}

.nav__item ul li a:hover {
  background-color: #6f86be;
  color: #fff;
}

.nav__item:hover ul {
  display: block;
}

.nav__item::before {
  display: none;
}

.nav__link:link,
.nav__link:visited {
  font-size: 2rem;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #524e63;
  display: block;
  transition: all 0.2s;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav__link.current {
  color: #6f86be;
  border-bottom-color: currentColor;
}

.nav__link:hover,
.nav__link:active {
  transform: translateY(-3px);
  color: #bf5a1b;
  border-bottom-color: transparent;
}

.home-content {
  display: grid;
  grid-template-rows: 50vw repeat(6, min-content);
}

@media only screen and (max-width: 31.25em) {
  .home-content {
    grid-template-rows: 60vh repeat(6, min-content);
  }
}

.center-column {
  margin: 0 auto;
  padding: 6rem 8rem;
  max-width: 108rem;
  width: 100%;
  display: grid;
}

@media only screen and (max-width: 31.25em) {
  .center-column {
    padding: 3rem 4rem;
  }
}

.hero {
  background-image: linear-gradient(to bottom, rgba(238, 142, 82, 0.4), rgba(242, 195, 84, 0.4)), url(/images/jesus-people-easter-2021_30.jpg?9f04f6a000768499f643d1b5bb26abca);
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 40% 1fr;
}

@media only screen and (max-width: 31.25em) {
  .hero {
    padding: 1.5rem;
  }
}

.hero__heading {
  grid-row: 2/span 1;
  grid-column: 2/span 1;
  align-self: end;
}

@media only screen and (max-width: 53.125em) {
  .hero__heading {
    grid-column: 1/-1;
  }
}

.who {
  grid-template-columns: repeat(3, minmax(15rem, 30rem));
  grid-column-gap: 9rem;
  grid-row-gap: 6rem;
}

@media only screen and (max-width: 53.125em) {
  .who {
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .who {
    grid-row-gap: 7rem;
  }
}

.who__item {
  display: grid;
  grid-template-rows: min-content 1fr;
  grid-row-gap: 3rem;
}

@media only screen and (max-width: 53.125em) {
  .who__item {
    grid-template-columns: minmax(12rem, 20rem) 1fr;
    grid-column-gap: 4.5rem;
    grid-row-gap: 0;
    align-items: center;
  }
}

@media only screen and (max-width: 37.5em) {
  .who__item {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, min-content);
    grid-row-gap: 2.5rem;
    justify-items: center;
  }
}

@media only screen and (max-width: 37.5em) {
  .who__img {
    max-width: 20rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .who__text {
    text-align: center;
  }
}

.who__btn {
  grid-column: 1/-1;
  text-align: center;
}

.what {
  grid-template-columns: minmax(20rem, 50rem) 40%;
  justify-content: space-between;
  grid-column-gap: 6rem;
}

@media only screen and (max-width: 37.5em) {
  .what {
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    grid-row-gap: 4rem;
  }
}

.what__buttons > .btn:not(:last-child) {
  margin-bottom: 3rem;
}

.why {
  grid-template-columns: repeat(2, minmax(20rem, 50%));
  grid-column-gap: 6rem;
  /* first method with img tag
  &__img img {
    width: 100%;
    max-width: 51rem;
  } */
}

@media only screen and (max-width: 37.5em) {
  .why {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 4rem;
  }
}

.why__img {
  background-image: url(/images/jpusa-a-person-getting-food-in-our-cafeteria-dining-room.jpg?ea53ddd833748354f7b8d93bb30bf364);
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 37.5em) {
  .why__img {
    order: 1;
  }
}

@media only screen and (max-width: 37.5em) {
  .why__text {
    order: 2;
  }
}

.how {
  grid-template-columns: repeat(3, minmax(15rem, 30rem));
  grid-column-gap: 9rem;
}

@media only screen and (max-width: 53.125em) {
  .how {
    grid-template-columns: 1fr;
    grid-row-gap: 5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .how {
    grid-row-gap: 7rem;
  }
}

.how__item {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-row-gap: 3rem;
}

@media only screen and (max-width: 53.125em) {
  .how__item {
    grid-template-columns: minmax(12rem, 20rem) 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 1.5rem;
    align-items: center;
  }
}

@media only screen and (max-width: 37.5em) {
  .how__item {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, min-content);
    grid-row-gap: 2.5rem;
    justify-items: center;
  }
}

@media only screen and (max-width: 53.125em) {
  .how__img {
    grid-row: 1/span 2;
  }
}

@media only screen and (max-width: 37.5em) {
  .how__img {
    grid-row: 1/2;
    justify-self: center;
    max-width: 20rem;
  }
}

@media only screen and (max-width: 53.125em) {
  .how__text {
    grid-row: 1/2;
    grid-column: 2/-1;
    align-self: end;
  }
}

@media only screen and (max-width: 37.5em) {
  .how__text {
    grid-row: 2/3;
    grid-column: 1/-1;
    align-self: start;
    text-align: center;
  }
}

.how__btn {
  margin: 0 auto;
}

@media only screen and (max-width: 53.125em) {
  .how__btn {
    grid-row: 2/-1;
    grid-column: 2/-1;
    align-self: start;
    margin: 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .how__btn {
    grid-row: 3/4;
    grid-column: 1/-1;
    width: 50%;
  }
}

@media only screen and (max-width: 31.25em) {
  .how__btn {
    width: 100%;
  }
}

.page-content {
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr;
}

.page-content > * {
  padding: 0 25rem;
}

@media only screen and (max-width: 81.25em) {
  .page-content > * {
    padding: 0 20rem;
  }
}

@media only screen and (max-width: 81.25em) {
  .page-content > * {
    padding: 0 15rem;
  }
}

@media only screen and (max-width: 53.125em) {
  .page-content > * {
    padding: 0 8rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-content > * {
    padding: 0 4rem;
  }
}

.page-content__title--heading {
  font-weight: 600;
}

.page-content__blockquote {
  margin: 6rem 0;
}

@media only screen and (max-width: 37.5em) {
  .page-content__blockquote {
    margin: 4rem 0;
  }
}

.page-content__blockquote .credit {
  font-style: italic;
  font-size: smaller;
  text-align: right;
}

.page-content__blockquote--text {
  background-image: linear-gradient(to right, #f2c354, #ee8e52);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.7;
  padding: 2.5rem 6rem;
  max-width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 87.5em) {
  .page-content__blockquote--text {
    max-width: 100%;
  }
}

@media only screen and (max-width: 31.25em) {
  .page-content__blockquote--text {
    padding: 1.5rem 3.5rem;
    font-size: 2.1rem;
    line-height: 1.5;
  }
}

.page-content__blockquote li {
  line-height: 1.4;
}

.page-content__blockquote li::before {
  color: #6f86be;
  top: -0.5rem;
}

.page-content__video {
  margin-left: 10rem;
  margin-right: 10rem;
}

@media only screen and (max-width: 100em) {
  .page-content__video {
    margin-left: 6rem;
    margin-right: 6rem;
  }
}

@media only screen and (max-width: 68.75em) {
  .page-content__video {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.page-content__video--wrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.page-content__video--wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.page-section {
  display: grid;
  align-items: center;
}

.page-section__intro {
  grid-column: 1/-1;
}

.page-section__form {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-column-gap: 4rem;
}

@media only screen and (max-width: 43.75em) {
  .page-section__form {
    grid-template-columns: 1fr;
  }
}

.page-section__full {
  grid-template-columns: 1fr;
  grid-row-gap: 5rem;
  max-width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 75em) {
  .page-section__full {
    max-width: 100%;
  }
}

.page-section__list {
  margin-top: 1.6rem;
  margin-bottom: 2rem;
}

.page-section__list li + li {
  margin-top: 0;
}

.page-section__overview {
  grid-template-columns: 20% 80%;
  grid-row-gap: 5rem;
  max-width: 80%;
  margin: 0 auto;
}

@media only screen and (max-width: 93.75em) {
  .page-section__overview {
    max-width: 100%;
  }
}

@media only screen and (max-width: 56.25em) {
  .page-section__overview {
    align-items: start;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__overview {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.page-section__overview .page-section__text {
  padding-left: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .page-section__overview .page-section__text {
    padding-left: 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__overview .page-section__img {
    max-width: 20rem;
  }
}

.page-section__left {
  grid-template-columns: 30% 70%;
}

@media only screen and (max-width: 37.5em) {
  .page-section__left {
    grid-template-columns: 1fr;
  }
}

.page-section__left .page-section__text {
  padding-left: 6rem;
}

@media only screen and (max-width: 62.5em) {
  .page-section__left .page-section__text {
    padding-left: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__left .page-section__text {
    padding-left: 0;
    grid-column: 1/-1;
    grid-row: 2/3;
    padding-top: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__left .page-section__img {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
    max-width: 25rem;
  }
}

.page-section__right {
  grid-template-columns: 70% 30%;
}

@media only screen and (max-width: 43.75em) {
  .page-section__right {
    grid-template-columns: 30% 70%;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__right {
    grid-template-columns: 1fr;
  }
}

.page-section__right .page-section__text {
  justify-self: end;
  padding-right: 6rem;
}

@media only screen and (max-width: 62.5em) {
  .page-section__right .page-section__text {
    padding-right: 3rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .page-section__right .page-section__text {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-self: start;
    padding-right: 0;
    padding-left: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__right .page-section__text {
    grid-column: 1/-1;
    grid-row: 2/3;
    padding-top: 3rem;
    padding-left: 0;
  }
}

@media only screen and (max-width: 43.75em) {
  .page-section__right .page-section__img {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-section__right .page-section__img {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
    max-width: 25rem;
  }
}

.page-section__text {
  max-width: 60rem;
  line-height: 1.8;
}

@media only screen and (max-width: 43.75em) {
  .page-section__text {
    line-height: 1.5;
  }
}

.page-section ul {
  margin-left: 2.5rem;
}

@media only screen and (max-width: 43.75em) {
  .our-denomination .page-content__title--heading,
  .discipleship .page-content__title--heading,
  .cco .page-content__title--heading,
  .participate .page-content__title--heading,
  .we-live-together .page-content__title--heading {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 25em) {
  .our-denomination .page-content__title--heading,
  .discipleship .page-content__title--heading,
  .cco .page-content__title--heading,
  .participate .page-content__title--heading,
  .we-live-together .page-content__title--heading {
    font-size: 4rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .mission-business .page-content__intro--wrapper--text {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 43.75em) {
  .contact .page-section__full {
    max-width: 100%;
  }
}

.title-bkg {
  overflow: hidden;
  display: block;
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.4), rgba(242, 195, 84, 0.4));
}

.title-bkg__img {
  position: relative;
  z-index: -1;
  display: block;
  height: auto;
  width: 100%;
}

.title {
  background-color: #524e63;
  padding: 2.5rem 5rem;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: minmax(10rem, 1fr);
  grid-column-gap: 2rem;
  align-items: start;
}

@media only screen and (max-width: 53.125em) {
  .title {
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    grid-row-gap: 2rem;
  }
}

@media only screen and (max-width: 31.25em) {
  .title {
    padding: 1.5rem 2rem;
  }
}

.title__heading-wrapper {
  border-right: #f2c354 solid 1px;
  height: 100%;
  padding-right: 2rem;
  display: grid;
  justify-items: end;
}

@media only screen and (max-width: 53.125em) {
  .title__heading-wrapper {
    justify-items: start;
    border-right: none;
    padding-bottom: 3rem;
    border-bottom: #f2c354 solid 1px;
  }
}

.title__heading-wrapper--heading {
  text-align: right;
  line-height: 1;
  max-width: 30rem;
}

@media only screen and (max-width: 53.125em) {
  .title__heading-wrapper--heading {
    text-align: left;
  }
}

.title__text-wrapper {
  max-width: 70%;
}

@media only screen and (max-width: 53.125em) {
  .title__text-wrapper {
    max-width: 100%;
    padding-bottom: 3rem;
  }
}

.title__text-wrapper--text {
  color: #fff;
  font-size: 2.4rem;
}

@media only screen and (max-width: 31.25em) {
  .title__text-wrapper--text {
    font-size: 2.8rem;
  }
}

.page-content__title {
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.6), rgba(242, 195, 84, 0.6)), url(/images/jpusa-920-windows-bkg.jpg?ff4d6076b4a2fe6b2c70be2df5814ee9);
  background-position: center;
  background-size: cover;
  min-height: 15rem;
  width: 100%;
}

.page-content__title.graffiti {
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.6), rgba(242, 195, 84, 0.6)), url(/images/jesus-people-graffiti-wall-bkg.jpg?76a292d982f8d2c1c443a6e5c572b8db);
}

.page-content__title.fence {
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.6), rgba(242, 195, 84, 0.6)), url(/images/jesus-people-sideyard-fence-bkg.jpg?961c6770731efc96dc19d61b2dc268fc);
}

.page-content__title.sidewalk {
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.6), rgba(242, 195, 84, 0.6)), url(/images/jesus-people-wilson-abbey-sidewalk-bkg.jpg?4ddf477dbf3429e71ca0be25f44fe8a9);
}

.page-content__title.cco {
  background-image: linear-gradient(135deg, rgba(238, 142, 82, 0.6), rgba(242, 195, 84, 0.6)), url(/images/jesus-people-cco-hannah-house-bkg.jpg?ffa113e4c0b8eec08187b3f812ba1f49);
}

.page-content__title--heading {
  font-family: "bree-serif", serif;
  color: #fff;
  font-size: 7rem;
  line-height: 1;
  width: 40%;
  padding: 3rem 0;
}

@media only screen and (max-width: 68.75em) {
  .page-content__title--heading {
    width: 60%;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-content__title--heading {
    width: 80%;
  }
}

.page-content__intro {
  background-color: #524e63;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
}

.page-content__intro--wrapper {
  height: 100%;
  width: 80%;
  border-left: 2px solid #f2c354;
  padding-left: 2rem;
  min-height: 10rem;
}

@media only screen and (max-width: 68.75em) {
  .page-content__intro--wrapper {
    width: 100%;
  }
}

.page-content__intro--wrapper--text {
  padding-bottom: 3rem;
}

.heading-1 {
  font-size: 4rem;
  line-height: 1.3;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
}

.heading-1--hero {
  color: #fff;
  text-align: right;
  line-height: 1.2;
}

.heading-1--hero span {
  font-size: 5rem;
  display: block;
}

@media only screen and (max-width: 25em) {
  .heading-1--hero span {
    font-size: 3rem;
  }
}

.heading-2 {
  font-size: 4.5rem;
  font-family: "bree-serif", serif;
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 31.25em) {
  .heading-2 {
    font-size: 5.5rem;
  }
}

@media only screen and (max-width: 25em) {
  .heading-2 {
    font-size: 4rem;
  }
}

.heading-4 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media only screen and (max-width: 25em) {
  .heading-4 {
    font-size: 2rem;
  }
}

p + p {
  margin-top: 1.6rem;
}

ul {
  list-style: none;
}

li::before {
  content: "\2022";
  color: #ee8e52;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  position: relative;
  max-width: 0px;
  max-height: 0px;
  left: -2rem;
  top: -0.9rem;
  /* first placement method
  display: inline-block;
  width: 2.5rem;
  margin-left: -2.5rem;
  */
}

li + li {
  margin-top: 1.6rem;
}

a.btn,
button.btn {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #f2c354, #ee8e52);
  display: inline-block;
  width: auto;
  text-align: center;
  border-radius: 15rem;
  box-shadow: 0 1rem 3rem rgba(84, 82, 81, 0.15);
  padding: 1.1rem 2.5rem 1rem 2.5rem;
  font-size: 2.5rem;
  line-height: 1.1;
  outline: none;
  border: none;
}

@media only screen and (max-width: 37.5em) {
  a.btn,
  button.btn {
    width: 100%;
  }
}

@media only screen and (max-width: 31.25em) {
  a.btn,
  button.btn {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 25em) {
  a.btn,
  button.btn {
    font-size: 1.8rem;
  }
}

a.btn__full,
button.btn__full {
  width: 100%;
}

a.btn:hover,
a.btn:active,
button.btn:hover,
button.btn:active {
  background-image: linear-gradient(to bottom, #ee8e52, #f2c354);
}

button.btn--dk-orange,
.btn--dk-orange {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  background-image: none;
  background-color: #bf5a1b;
  border-color: #bf5a1b;
  display: inline-block;
  width: auto;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  padding: 0.8rem 2rem;
  font-size: 1.7rem;
  border-bottom: none;
  cursor: pointer;
}

button.btn--dk-orange:hover,
button.btn--dk-orange:active,
.btn--dk-orange:hover,
.btn--dk-orange:active {
  background-color: #f2c354;
  background-image: none;
}

button.btn--dk-orange:focus,
.btn--dk-orange:focus {
  outline: none;
}

