:root {
  --clr-light: hsl(0, 0%, 100%);
  --clr-primary: hsl(38, 36.3%, 60.6%);
  --clr-text-gray: hsl(240, 2.7%, 25.5%);
  --clr-dark: hsl(0, 0%, 0%);
  --clr-background-color: hsl(40, 30%, 96.1%);

  --transition-base: 0.5s ease;
  --container-width: 170rem;
  --inner-container-width: 160rem;

  --break-tablet: 60rem;
  --font-inter-bold: "inter-bold", sans-serif;
  --font-inter-regular: "inter-regular", sans-serif;
  --font-palatino-bold: "palatino-bold", serif;
	--font-palatino-normal: "palatino-normal", serif;
}

html {
  font-size: 62.5%;
  background-color: var(--clr-background-color);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-inter-regular);
  color: var(--clr-dark);
  font-size: 1.6rem;
  container: body / inline-size;
  overflow-x: clip;
}

body.open {
  height: 100vh;
  overflow-x: clip;
}

h1 {
  font-family: var(--font-palatino-normal);
  font-size: clamp(3rem, 6vw, 94.4px);
  line-height: 97.23px;
  letter-spacing: -1.89px;
	font-weight: 400;
}

h2 {
  font-family: Palatino;
  font-size: clamp(3rem, 12vw, 48px);
  line-height: 49.42px;
	font-weight: 400;
}

h3 {
  font-family: Palatino;
  font-size: clamp(3rem, 12vw, 28px);
  line-height: 30px;
	letter-spacing: -0.96px
	font-weight: 400;
}

h4 {
  font-family: var(--font-palatino-bold);
}

h5 {
  font-family: var(--font-inter-regular);
  font-size: 12px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

h6 {
  font-family: var(--font-libre);
}

p {
	font-family: Inter;
  color: var(--clr-dark);
  line-height: 29.38px;
  font-size: clamp(14px, 2vw, 17.28px);
	font-weight: 300;
}
li {
  font-family: Inter;
	font-weight: 300;
  line-height: 30px;
  font-size: clamp(14px, 6vw, 17.28px);
  color: var(--clr-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input,
textarea {
  font-family: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-base);
}

.container {
  width: min(var(--container-width), 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

.inner-container {
  width: min(var(--inner-container-width), 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  padding: 18px 32px;
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  color: var(--clr-dark);
  width: max-content;
  display: inline-block;
  transition: var(--transition-base);
  cursor: pointer;
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 18px;
  font-family: var(--font-inter-regular);
  font-weight: 600;
  border-radius: 0.5rem;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--clr-text-gray);
}

.btn-outline:hover {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
}

.btn-outline-black {
  background-color: transparent;
  border: 1px solid var(--clr-dark);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid var(--clr-light);
  color: var(--clr-light);
}

.btn-solid-white {
  background-color: var(--clr-light);
  border: 1px solid var(--clr-light);
}

.btn-white {
  background-color: var(--clr-light);
  border: 1px solid var(--clr-text);
  padding: 12px 32px;
}

.btn-white:hover {
  background-color: var(--clr-primary);
}

.donate-btn > a{
 display: inline-block !important;
   padding: 10px 32px !important;
}
.donate-btn > a:hover {
    color: #ffffff !important;
}

.header__nav .current-menu-item a,
.header__nav .current_page_item a {
  color: hsl(from var(--clr-primary) h s 50%);
}
.header__nav .donate-btn.current-menu-item > a,
.header__nav .donate-btn.current_page_item > a {
    color: #fff;
}

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


/* ------HEADER-------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.header__wrapper {
  background-color: var(--clr-dark);
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.header .header__nav.open {
  grid-template-rows: 1fr;
  background-color: var(--clr-dark);
  margin-top: 2rem;
  height: 85dvh;
  overflow: hidden;
  border-radius: 1rem;
}

.header .header__nav {
  z-index: 9999;
  width: calc(100% - 2rem);
  transition: var(--transition-base);
  display: grid;
  grid-template-rows: 0fr;
}

.header__nav > ul {
  overflow: hidden;
}
.header__nav ul li:first-child {
  margin-top: 2rem;
}
.header__nav ul li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-light);
}
.header__nav ul li a {
  font-family: var(--font-inter-bold);
  text-transform: uppercase;
  font-size: 16px;
}
.header__nav ul li a:hover,
.header__nav ul li a.active {
  color: hsl(from var(--clr-primary) h s 50%);
}

.header .header__action {
  display: none;
  width: fit-content;
  margin: 2rem 1rem;
}

.header .header__action.btn {
  text-align: center;
}
.header .header__branding a img {
  width: 500px;
  height: 100px;
	object-fit: contain;
}

.toggle__menu {
  position: absolute;
  top: 5rem;
  right: 3rem;
  cursor: pointer;
}

.toggle__menu span {
  display: block;
  width: 3rem;
  height: 0.3rem;
  background-color: var(--clr-light);
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  transition: 0.3s ease;
}

.toggle__menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(0.6rem, 0.6rem);
}

.toggle__menu.open span:nth-child(2) {
  opacity: 0;
}

.toggle__menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.6rem);
}

/* ----------- HERO BANNER ------------ */
.hero__section {
  min-height: 100vh;
}
.hero__wrapper,
.hero__v2__wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1;
  overflow: hidden;
}
.hero__banner__image {
  /* width: min(191rem, 100%); */
  position: relative;
  margin: 0 auto;
}
.banner__background__image {
  width: 100%;
  min-height: 120vh;
  height: 120vh;
  object-fit: cover;
  filter: grayscale(100%) brightness(40%);
}
.banner__logo {
  position: absolute;
  top: 0;
  right: 0;
}
.hero__content {
  position: absolute;
  top: 12%;
}
.hero__title,
.hero__details p {
  color: var(--clr-light);
  width: 100%;
}
.hero__title {
  position: relative;
  max-width: 1200px;
}

.hero__title h1 {
  font-size: clamp(4rem, 4vw, 94px);
  line-height: 0.9;
  margin: 0;
}

.hero__main__title span {
  position: absolute;
  left: 20rem;
  bottom: 1rem;
  width: 40%;
  font-size: 1.5rem;
  line-height: 1.5;
}
.hero__details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 850px;
  margin-top: 5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
}

/* ----------- HERO BANNER V2 ------------ */
.hero__v2__section {
  min-height: 100vh;
}
.hero__v2__banner__image {
  /* width: min(191rem, 100%); */
  position: relative;
  margin: 0 auto;
}
.banner__background__image__v2 {
  width: 100%;
  min-height: 120vh;
  height: 120vh;
  object-fit: cover;
  filter: grayscale(100%) brightness(40%);
}
.hero__v2__content {
  position: absolute;
  top: 15%;
}
.hero__v2__title,
.hero__v2__details p,
.hero__v2__main__title p {
  color: var(--clr-light);
  width: 100%;
}
.hero__v2__title {
  position: relative;
  max-width: 1200px;
  width: 100%;
}

.hero__v2__main__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  width: 100%;
  max-width: 680px;
}

.hero__v2__title h1 {
  font-size: clamp(4rem, 4vw, 94px);
  line-height: 80px;
  margin: 0;
}

.hero__v2__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 680px;
}
.hero__v2__details p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.hero__v2__actions {
  display: flex;
  gap: 1rem;
}
.hero__gradient {
  position: absolute;
  z-index: 99;
  top: 13rem;
  right: -10rem;
  width: 300px;
  height: 300px;
  border-radius: 500px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--hero-gradient-color) 45%, transparent) 0%,
    transparent 100%
  );
  filter: blur(149.6483612060547px);
}

.hero__clip {
  position: relative;
  height: 220px;
  overflow: hidden;
  z-index: 99;

  --hero-clip-top: #ff1f55;
  --hero-clip-bottom: #f8f5f2;
}

.pink-shape {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  min-height: 350px;

  background: var(--hero-clip-top);

  clip-path: polygon(0 35%, 30% 60%, 58% 50%, 100% 82%, 100% 100%, 0 100%);
}

.white-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 200px;

  background: var(--hero-clip-bottom);

  clip-path: polygon(0 50%, 58% 0, 100% 55%, 100% 100%, 0 100%);
}

/* ------------ JOURNEY --------- */
.journey__section {
  position: relative;
  z-index: 99;
  background-color: var(--clr-background-color);
}
.journey__clip {
  position: relative;
  background-color: var(--clr-background-color);
  clip-path: polygon(0 45%, 55% 0, 100% 30%, 100% 100%, 0 100%);
  min-height: 230px;
  z-index: 99;
}
.journey__wrapper {
  position: relative;
  z-index: 100;
}
.journey__content {
  position: absolute;
  right: 0;
  top: -650px;

  background: var(--clr-primary);
  width: min(600px, 90vw);
  padding: 2rem;

  z-index: 999;
}
.journey__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.journey__list {
  list-style-type: disc;
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.journey__list span {
  font-weight: 400;
  font-family: var(--font-inter-regular);
}
.section__title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  position: relative;
  z-index: auto;
}
.left__title {
  width: 370px;
	font-family: var(--font-palatino-normal)!important;
}
/* Cards */
.journey__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 6rem 0;
}
.journey__cards__item {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  min-height: 325px;
}
.journey__cards__item img {
  width: 100%;
  min-height: 325px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.journey__cards__item:hover img {
  transform: scale(1.1);
}
.journey__cards__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.journey__card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4rem;
}
.journey__number {
  position: absolute;
  left: 2rem;
  bottom: -7rem;
  font-family: var(--font-palatino-bold, serif);
  font-size: clamp(30px, 16vw, 315px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  z-index: 3;
}
.journey__card__details {
  width: 100%;
  max-width: 350px;
  color: var(--clr-light);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.journey__card__details h4 {
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
}
.journey__card__details p {
	font-family: Inter;
  color: var(--clr-light);
  font-weight: 300;
}

/* MATTERS SECTION */
.matters__section {
  position: relative;
  background-color: var(--clr-background-color);
  z-index: 99;
  transition: background-color 0.3s ease;
  padding: 15rem 0;
}
.matters__section:hover {
  background-color: var(--clr-dark);
}
.matters__wrapper {
  position: relative;
  background-color: var(--clr-light);
  margin: 0 8rem;
  padding: 8rem 5rem;
  transition: background-color 0.3s ease;
}
.matters__section:hover .matters__wrapper {
  background-color: var(--clr-dark);
}
.matters__section h2,
.matters__section h5,
.matters__title p {
  transition: color 0.3s ease;
}
.matters__section:hover h2,
.matters__section:hover h5,
.matters__section:hover .matters__title p {
  color: var(--clr-light);
}
.matters__logo {
  position: absolute;
  top: 0;
  left: -10rem;

  /* Hide by default */
  opacity: 0;
  visibility: hidden;
  z-index: 99;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.matters__section:hover .matters__logo {
  opacity: 1;
  visibility: visible;
}
.matters__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.matters__image img {
  width: 847px;
  height: 349px;
  object-fit: cover;
}
.matters__title p {
  margin-top: 2rem;
	font-family: Inter;
	font-weight: 300;
}
.matters__title h3 {
  width: 426px;
}
.matters__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 10rem 0 2rem 0;
}
.matters__card {
	display: flex;
    flex-direction: column;
  background-color: #f5eee3;
  padding: 2rem;
  border-radius: 2rem;
	height: 100%;
}
.matters__card h4 {
  font-size: clamp(20px, 4vw, 28px);
  margin-bottom: 1.5rem;
font-weight: 400;
}

/* --------- MEDIA SECTION ---------- */
.media__section {
  position: relative;
  z-index: 99;
  background-color: var(--clr-background-color);
}
.media__wrapper {
  padding: 10rem 0;
}
.media__title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  position: relative;
  z-index: auto;
}
.media__left__title {
  max-width: 530px;
}
.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 5rem 0;
  align-items: stretch;
}
.media__card {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  min-height: 555px;
}
.media__card__content {
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  flex: 1;
}
.media__card__content .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.media__card__title h3 {
  margin-bottom: 2rem;
	font-weight: 500;
}
.elementor .media__card__image {
  position: relative;
  overflow: hidden;
}
.elementor .media__image {
  width: 100%;
  height: 267px;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.media__card__image span {
  position: absolute;
  top: 2rem;
  right: 4rem;
  background-color: var(--clr-primary);
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  font-size: 10px;
  border-radius: 0.5rem;
  font-family: var(--font-inter-bold);
}
.media__card:hover .media__card__image img {
  transform: scale(1.08);
}
.media__card:hover .btn {
  background: var(--clr-primary);
}

/* ------- FOUNDER SECTION --------- */
.founder__section {
  position: relative;
  overflow: hidden;
  background-color: var(--clr-background-color);
  z-index: 99;
}
.founder__image {
  display: block;
  width: 100%;
  clip-path: polygon(0 10%, 55% 0, 100% 10%, 100% 100%, 0 100%);
  min-height: 100vh;
  object-fit: cover;
}
.founder__section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.95) 100%);
}
.founder__content {
  position: absolute;
  bottom: 7rem;
  width: min(var(--inner-container-width), 100%);
  z-index: 99;
}
.founder__content .left__title,
.founder__right__title p {
  color: var(--clr-light);
}
.founder__content .matters__card p {
  color: var(--clr-dark);
}
.founder__content .founder__right__title p {
  margin-bottom: 2rem;
}

/* ----------------- BIBLE INSTITUTE ---------------- */
.stack {
  position: relative;
}
.stack__card {
  position: sticky;
  top: 0;
}
.stack__video {
  height: 100vh;
  z-index: 1;
}
.about__bible__institute {
  position: relative;
  z-index: 99;
}
.about__bible__institute__gif__wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.about__bible__institute__gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.about__bible__institute__gif__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
}

/*COMPARISON SECTION  */
.stack__comparison {
  margin-top: -80vh;
  z-index: 2;
}
.comparison__section {
  position: relative;
  z-index: 99;
  min-height: 100vh;
}
.comparison__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.comparison__bg picture,
.comparison__bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.comparison__bg img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}
.comparison__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.comparison__wrapper {
  position: relative;
  inset: 0;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  z-index: 2;
}
.comparison__section::before {
  content: "";
  position: absolute;
  padding: 40px;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 45, 99, 0.05) 20%,
    rgba(255, 45, 99, 0.2) 45%,
    rgba(255, 45, 99, 0.6) 75%,
    rgba(255, 45, 99, 0.6) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.comparison__section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 45, 99, 0.15) 60%,
    rgba(255, 45, 99, 0.35) 90%,
    rgba(255, 45, 99, 0.6) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 3;
}
.compare {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.compare-table {
width: 100%;
border-collapse: collapse;
table-layout: auto;
}
.compare-table th,
.compare-table td {
padding: 20px 24px;
text-align: left;
vertical-align: top;
line-height: 1.6;
}
.compare-table thead th {
background: #6c6046;
color: #fff;
font-size: 16px;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.06em;
font-family: Inter;
}
.compare-table tbody th {
width: 1%;
white-space: nowrap;
color: #fff;
font-weight: 400;
font-family: Inter;
}
.compare-table tbody td {
color: #c7c7c7;
font-family: Inter;
font-weight: 300;
}
.compare-table tbody tr {
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table tbody tr(odd) {
background: rgba(255, 255, 255, 0.02);
}

/* FAQ SECTION */
.faq__section {
  position: relative;
  background-color: var(--clr-background-color);
  z-index: 99;
  transition: background-color 0.6s ease;
  padding: 15rem 0;
}
.faq__section:hover {
  background-color: var(--clr-dark);
}
.faq__section h2,
.faq__section h5,
.faq__description p,
.matters__title p {
  transition: color 0.3s ease;
}
.faq__section:hover h2,
.faq__section:hover h5,
.faq__section:hover .faq__description p,
.faq__section:hover .matters__title p {
  color: var(--clr-light);
}
.faq__description{
    margin-top: 2rem;
}
.faq__description p{
    margin-bottom: 1rem;
    line-height: 1.8;
}
.faq__description p:last-child{
    margin-bottom: 0;
}
.faq__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(90%);
}
.faq__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq__title {
  position: sticky;
  top: 10rem;
  align-self: start;
}
.faq__wrapper__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  z-index: 91;
	gap: 2rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq__card {
  padding: 2rem;
  background-color: #f5eee3;
  border-radius: 2rem;
  border: 1px solid var(--clr-text);
  cursor: pointer;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--clr-text);
}
.faq__question p{
	font-family: Inter;
	font-size: 20px;
	font-weight: 600;
}
.faq__question span{
width: 36px;
  height: 36px;
	flex-shrink: 0;
}
.faq__question span img {
  transition: transform 0.3s ease;
  width: 36px;
  height: 36px;
}
/* Hide answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  white-space: pre-wrap;

  transition:
    max-height 0.5s ease,
    padding-top 0.5s ease;
}

/* Paragraph spacing */
.faq__answer p {
  margin: 0 0 3rem;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* Show answer */
.faq__card.active .faq__answer {
  max-height: 2000px;
  padding-top: 1.5rem;
}

/* Rotate icon */
.faq__card.active .faq__question span img {
  transform: rotate(50deg);
  transition: transform 0.3s ease;
}

/* --------- CTA SECTION --------- */
.cta__section {
  position: relative;
  background-color: var(--clr-dark);
  z-index: 99;
  padding: 10rem 0;
}
.cta__card {
  background: var(--clr-primary);
  padding: 4rem 2rem;
  border-radius: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.cta__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}
.cta__action {
  display: flex;
  gap: 2rem;
}
.elementor .cta__image {
  position: relative;
}
.elementor .cta__img {
  width: 100%;
  height: 437px;
  object-fit: cover;
}
.elementor .cta__image a {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
}

/* --------- FOOTER ------------ */
footer {
  position: relative;
  background-color: var(--clr-dark);
  z-index: 999;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 7rem;
  padding: 8rem 0;
  justify-content: space-evenly;
}
.footer__links__wrapper span {
  font-family: var(--font-inter-regular);
  font-style: italic;
  font-size: 12px;
  color: hsl(from var(--clr-light) h s 60%);
}
.footer__about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__content {
  font-size: 12px;
	text-align: center;
  color: hsl(from var(--clr-light) h s 40%);
	max-width: 900px;
	margin: 0 auto;
}
.footer__socials {
  display: flex;
  gap: 2rem;
align-items: center;
}
.footer__socials li a img {
  height: 30px;
  width: 30px;
}
.footer__socials li {
  transition: var(--transition-base);
}
.footer__socials li:hover {
	filter: brightness(70%) saturate(100%);
}
.footer__links__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__title {
  font-family: var(--font-inter-bold);
  font-size: 12px;
  color: var(--clr-light);
  text-transform: uppercase;
}
.footer__links ul li a {
  font-family: var(--font-inter-regular);
  font-size: 14px;
  color: hsl(from var(--clr-light) h s 60%);
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  color: hsl(from var(--clr-light) h s 30%);
  font-size: 10px;
  text-transform: uppercase;
  padding: 2rem 0;
}
.footer__copyright ul {
  display: flex;
  gap: 2rem;
}
.footer__copyright ul li {
  color: hsl(from var(--clr-light) h s 30%);
  font-size: 10px;
}

/* Newsletter wrapper */
.newsletter {
    position: relative;
    width: 285px;
    background: transparent;
    border: none;
    overflow: visible !important;
}
/* HubSpot form */
.newsletter .hs-form {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}
/* Create the bordered input area */
.newsletter .hs-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: #050505;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    box-sizing: border-box;
    z-index: -1;
}
/* Email field */
.newsletter .hs-form .hs_email {
    flex: 1;
    width: calc(100% - 72px);
    margin: 0 !important;
    padding: 0 !important;
}
/* Hide label */
.newsletter .hs-form .hs_email > label {
    display: none !important;
}
/* Input */
.newsletter .hs-form .hs-input {
    width: 100% !important;
    height: 48px !important;
    box-sizing: border-box;
    padding: 0 24px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    font-size: 16px !important;
    font-family: sans-serif !important;
}
/* Placeholder */
.newsletter .hs-form .hs-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1;
}
/* Submit wrapper */
.newsletter .hs-form .hs_submit {
    width: 72px;
    height: 48px;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}
/* Submit button */
.newsletter .hs-form .hs-button {
    width: 72px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 7px 7px 0 !important;
    background-color: #d4b37a !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2L15 22L11 13L2 9L22 2Z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 20px 20px !important;

    color: transparent !important;
    font-size: 0 !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.newsletter .hs-form .hs-button:hover {
    background-color: #c7a86f !important;
}
/* Remove duplicate icon */
.newsletter .hs-form .hs-button::before {
    display: none !important;
}
/* ERROR MESSAGE - OUTSIDE THE BORDER */
.newsletter .hs-error-msgs {
    position: static !important;
    order: 3;
    width: 100%;
    margin: 8px 0 0 0 !important;
    padding: 0 4px !important;
    list-style: none !important;
}
.newsletter .hs-error-msg {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ff6b6b !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}
/* SUCCESS MESSAGE - OUTSIDE THE BORDER */
.newsletter .submitted-message {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 0 0 !important;
    padding: 0 4px !important;
    color: #14ae5c !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}
/* Mobile */
@media (max-width: 767px) {
    .newsletter {
        width: 100%;
        max-width: 285px;
    }
}

/* -------------- RESPONSIVE ------------ */

/* ----- MOBILE ------ */
@container body (min-width: 110rem) {
  /* Header */
  .toggle__menu {
    display: none;
  }
  .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
	
  .header .header__nav {
    grid-template-rows: 1fr;
    position: static;
    width: auto;
  }
  .header .header__nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .header__nav ul li:first-child {
    margin-top: 0rem;
  }
  .header__nav ul li {
    margin-bottom: 0;
    padding: 0rem;
    margin-inline: 1rem;
  }
  .header .header__action {
    display: block;
    margin: 0;
  }
  .header__nav ul .header__action__mobile {
    display: none;
  }
}

@media screen and (max-width: 736px) {
	.header__branding a img{
		max-width: 226px;
		max-height: 80px;
	}
  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  .pink-shape {
    display: none;
  }
  /* HERO BANNER */
  .hero__details {
    gap: 2rem;
    margin-top: 2rem;
  }
  .hero__main__title span {
    position: static;
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }

  .white-shape {
    min-height: 40px;
  }
  .hero__v2__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .left__title {
    width: 100%;
  }
  .journey__content {
    position: static;
    top: auto;
    right: auto;
    width: 100%;
    z-index: auto;
  }

  .journey__number {
    top: 0.5rem;
  left: auto;
  right: 1rem;
  }

  .journey__clip {
    min-height: 30px;
  }

  /* MATTERS SECTION */
  .matters__section {
    padding: 8rem 0;
  }
  .matters__wrapper {
    padding: 4rem 2rem;
    margin: 0 3rem;
  }
  .matters__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 5rem 0;
  }
  .matters__list {
    grid-template-columns: 1fr;
    margin: 5rem 0;
  }
  .matters__image img {
    width: 100%;
    height: 100%;
  }
  .matters__title h3 {
    width: 100%;
  }

  /* STACK */
  .comparison__section {
    margin-top: 200px;
  }
  .compare {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison__wrapper {
    padding: 20px;
  }
  .comparison__section::before {
    padding: 20px;
  }

  /* FAQ SECTION*/
  .faq__wrapper__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq__title {
    position: static;
  }
.faq__question p{
	font-size: 18px;
	font-weight: 500;
}

  /* MEDIA SECTION */
  .media__grid {
    grid-template-columns: 1fr;
  }

  /* CTA SECTION */
  .cta__card {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 2rem 0;
  }
  .cta__action {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .section__title {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 2rem;
  }
  .footer__wrapper {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  .footer__copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: hsl(from var(--clr-light) h s 20%);
    font-size: 10px;
  }
	.input__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .input__details ul {
  flex-direction: column;
  gap: 2rem;
}
.prayer-form-wrapper {
    padding: 25px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .full-width {
    margin-top: 12px;
  }
}

/* ------ TABLET ------ */
@media screen and (min-width: 737px) and (max-width: 1828px) {	
	.header__branding{
		max-width: 400px;
	}

  /* MATTERS SECTION */
  .matters__head {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 5rem 0;
  }
  /* MEDIA SECTION */
  .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__main__title span {
    position: static;
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }
  .footer__copyright {
    display: flex;
    justify-content: space-between;
  }
	.input__details ul {
  flex-direction: column;
  gap: 2rem;
}
}

@media screen and (min-width: 737px) and (max-width: 1000px){
	  .footer__wrapper {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* LARGE SCREEN */
@media screen and (min-width: 1828px) and (min-width: 2000px) {
  .hero__main__title span {
    position: absolute;
    left: 50rem;
    bottom: 1rem;
    width: 40%;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* EXTRA-LARGE SCREEN */
@media screen and (min-width: 2000px) and (min-width: 2090px) {
  .hero__main__title span {
    position: static;
    display: block;
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
    width: 100%;
  }
}

.wpcf7-response-output{
	color: var(--clr-light);
}

