/*-------------------------------------------*\ 
Responsive mixins
\*-------------------------------------------*/
/*-------------------------------------------*\ 
Sizes
\*-------------------------------------------*/
/*-------------------------------------------*\ 
Layouts
\*-------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

footer {
  margin-top: auto;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

.desktop-only {
  display: none !important;
}
@media (min-width: 1024px) {
  .desktop-only {
    display: block !important;
  }
}

a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .section__wrapper {
    box-sizing: border-box;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
}

.section__padding {
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 1024px) {
  .section__padding {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section__padding__mobile {
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 1024px) {
  .section__padding__mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

.section__padding__desktop {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .section__padding__desktop {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.object-fit-cover {
  object-fit: cover;
}

.bg-purple-50 {
  background-color: #6831e1;
}

.bg-purple-100 {
  background-color: #05010c;
}

.bg-purple-200 {
  background-color: #0b021c;
}

.bg-highlight {
  background-color: #fafafa;
}

.bg-broken-white {
  background-color: #f5f5f5;
}

.bg-blue-main {
  background-color: #374659;
}

.bg-blue-light {
  background-color: #969ea9;
}

.bg-green-main {
  background-color: #4b8b4d;
}

.bg-green-light {
  background-color: #d9e9aa;
}

.bg-dark {
  background-color: #333333;
}

.bg-secondary-main {
  background-color: #e0b44b;
}

/*-------------------------------------------*\ 
Font size
\*-------------------------------------------*/
:root {
  font-size: 100%;
}

*,
p,
div,
a,
span,
label,
li {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 20px;
}
@media (min-width: 1024px) {
  *,
  p,
  div,
  a,
  span,
  label,
  li {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  *,
  p,
  div,
  a,
  span,
  label,
  li {
    line-height: 32px;
  }
}

a {
  color: inherit;
}

.heading-1,
.heading-2 {
  font-family: "Work Sans", sans-serif;
  line-height: normal;
}

.heading-1 {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .heading-1 {
    font-size: 3.75rem;
  }
}

.heading-2 {
  font-size: 1.75rem;
}
@media (min-width: 1024px) {
  .heading-2 {
    font-size: 3rem;
  }
}

.heading-3 {
  font-size: 1.5rem;
  line-height: 28.8px;
}
@media (min-width: 1024px) {
  .heading-3 {
    font-size: 2rem;
  }
}

.heading-4 {
  font-size: 1.3125rem;
}
@media (min-width: 1024px) {
  .heading-4 {
    font-size: 1.75rem;
  }
}

.heading-5 {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .heading-5 {
    font-size: 1.3125rem;
  }
}

.title {
  font-size: 1.125rem;
  line-height: 38.4px;
}
@media (min-width: 1024px) {
  .title {
    font-size: 1.5rem;
  }
}

.small {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .small {
    font-size: 1rem;
  }
}

/*-------------------------------------------*\ 
Font Weight
\*-------------------------------------------*/
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

/*-------------------------------------------*\ 
Text Align
\*-------------------------------------------*/
.text-left {
  text-align: left;
}

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

@media (max-width: 768px) {
  .text-center-sm-center-lg {
    text-align: center;
  }
}

/*-------------------------------------------*\ 
Text color
\*-------------------------------------------*/
.text-white {
  color: #ffffff;
}

.text-green-main {
  color: #4b8b4d;
}

.text-secondary-darker {
  color: #ffa800;
}

.text-secondary-main {
  color: #e0b44b;
}

.text-dark {
  color: #333333;
}

.text-lighter {
  color: #555555;
}

/*-------------------------------------------*\
List Style
\*-------------------------------------------*/
.list-disc {
  list-style-type: disc;
}

.list-decimal {
  list-style-type: decimal;
}

.list-none {
  list-style-type: none;
}

.list-outside {
  list-style-position: outside;
}

.list-inside {
  list-style-position: inside;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

@media (min-width: 1024px) {
  .w-75-desktop {
    width: 75%;
  }
}

@media (min-width: 1440px) {
  .w-50-monitor {
    width: 50%;
  }
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.top-0 {
  top: 0;
}

.top-50 {
  top: 50%;
}

.left-0 {
  left: 0;
}

.left-50 {
  left: 50%;
}

.bottom-0 {
  bottom: 0;
}

.bottom-min-4 {
  bottom: -4px;
}

.right-0 {
  right: 0;
}

.right-50 {
  right: 50%;
}

.transform-translate-x-50 {
  transform: translateX(-50%);
}

.transform-translate-y-50 {
  transform: translateY(-50%);
}

.transform-translate-50 {
  transform: translate(-50%, -50%);
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

@media (min-width: 1024px) {
  .d-block-sm {
    display: block;
  }
}

@media (min-width: 1024px) {
  .d-flex-sm {
    display: flex;
  }
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.flex-direction-row {
  flex-direction: row;
}

.justify-content-center {
  justify-content: center;
}

.justify-items-center {
  justify-items: center;
}

.align-items-start {
  align-items: flex-start;
}

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

.align-items-baseline {
  align-items: baseline;
}

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

@media (min-width: 1024px) {
  .order-1-desktop {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .order-2-desktop {
    order: 2;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.box-shadow {
  box-shadow: 0px 6px 10px 0px rgba(51, 51, 51, 0.2);
}

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

.px-auto {
  padding-right: auto;
  padding-left: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

button {
  border: none;
}

.btn {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-sizing: border-box;
  width: max-content;
  min-width: 120px;
  min-height: 36px;
  padding: 8px 20px;
  outline: none;
  cursor: pointer;
  background: #4b8b4d;
}

.accordion {
  display: grid;
  row-gap: 10px;
  min-height: 76px;
  border: 1px solid #969ea9;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  max-height: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.accordion .open {
  display: none;
}
.accordion.active {
  max-height: max-content;
  /* Change the min-height value for the active state */
}
.accordion.active .accordion__content {
  max-height: max-content;
  opacity: 1;
}
.accordion.active .default {
  display: none;
}
.accordion.active .open {
  display: block;
}
.accordion img {
  width: 24px;
  height: 24px;
}
.accordion__title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}
.accordion__content {
  font-size: 1rem;
  opacity: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .accordion__content {
    font-size: 1.25rem;
  }
}

.vertical-swiper {
  width: 100%;
}
@media (min-width: 1024px) {
  .vertical-swiper {
    aspect-ratio: 1/0.525;
  }
}
@media (min-width: 1440px) {
  .vertical-swiper {
    height: 745px;
  }
}
@media (max-width: 768px) {
  .vertical-swiper .swiper-wrapper {
    display: initial;
  }
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #c6c6c6 !important;
  margin: 1rem 0 !important;
}
.swiper-pagination-bullet-active {
  background: #4b8b4d !important;
}

.swiper-pagination {
  right: 0 !important;
  position: unset !important;
  transform: none !important;
}
.swiper-pagination__wrapper {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5.5rem;
  transform: translate(0, -50%);
  margin: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .nav-white img {
    height: 24px;
  }
}

.footer__section {
  display: grid;
  row-gap: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 1024px) {
  .footer__section {
    padding-block: 3rem;
  }
}
.footer__section * {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer img {
    height: 32px;
  }
}
.footer__link {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .footer__link {
    column-gap: 3rem;
  }
}

.rg-8px {
  row-gap: 8px;
}

.rg-12px {
  row-gap: 0.75rem;
}

.rg-16px {
  row-gap: 1rem;
}

.rg-18px {
  row-gap: 1.125rem;
}

.rg-20px {
  row-gap: 1.25rem;
}

.rg-24px {
  row-gap: 1.5rem;
}

.rg-40px {
  row-gap: 2.5rem;
}

.cg-8px {
  column-gap: 0.5rem;
}

.cg-16px {
  column-gap: 1rem;
}

.cg-24px {
  column-gap: 1.5rem;
}

.rg-dynamic {
  row-gap: 1.5rem;
}
@media (min-width: 1024px) {
  .rg-dynamic {
    row-gap: 3rem;
  }
}

.banner__wrapper {
  display: grid;
  row-gap: 1.25rem;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 1.5rem;
  min-height: 80vh;
  background-image: url(../images/hero-banner-mobile.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .banner__wrapper {
    padding-top: 3rem;
    min-height: 450px;
    background-image: url(../images/hero-banner-desktop.png);
  }
}
@media (min-width: 1440px) {
  .banner__wrapper {
    aspect-ratio: 1/0.35;
    background-position: bottom;
  }
}

.banner__content {
  display: grid;
  row-gap: 8px;
}
@media (min-width: 1024px) {
  .banner__content {
    row-gap: 1.5rem;
  }
}

.pray-together__section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .pray-together__section {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
.pray-together__wrapper {
  display: grid;
  row-gap: 1.25rem;
}
@media (min-width: 1024px) {
  .pray-together__wrapper {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

.elevate__section {
  display: grid;
  row-gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .elevate__section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .elevate__section {
    row-gap: 3rem;
  }
}
@media (min-width: 1440px) {
  .elevate__section {
    padding-left: 6.5rem;
    padding-right: 6.5rem;
  }
}
.elevate__wrapper {
  display: grid;
  row-gap: 1.5rem;
}
@media (min-width: 1024px) {
  .elevate__wrapper {
    grid-template-columns: repeat(4, 1fr);
    align-items: baseline;
  }
}
.elevate__item {
  display: grid;
  row-gap: 8px;
  align-content: baseline;
  border-left: 1px solid #4b8b4d;
  padding: 0 1.5rem;
  height: 100%;
}

.info__section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .info__section {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.app__section {
  display: grid;
  row-gap: 1.5rem;
  grid-template-areas: "title" "mockup" "text-content";
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.app__section .title {
  grid-area: title;
}
.app__section .mockup {
  grid-area: mockup;
}
.app__section .content {
  grid-area: text-content;
}
@media (min-width: 1024px) {
  .app__section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .app__section {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5%;
    row-gap: 3rem;
    grid-template-areas: "title title" "mockup text-content";
    align-items: center;
  }
}
.app__wrapper {
  display: grid;
  row-gap: 1.5rem;
}
.app-text__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  padding-left: 3rem;
}
@media (min-width: 1024px) {
  .app-text__item {
    padding: 1.5rem;
    padding-left: 4rem;
  }
}
.app-text__item img {
  position: absolute;
  left: -8px;
}
@media (min-width: 1024px) {
  .app-text__item img {
    width: 80px;
    left: -40px;
  }
}
@media (min-width: 1440px) {
  .app-text__item img {
    width: 100px;
    left: -50px;
  }
}

.slick-slide {
  transform: scale(0.85);
}
@media (min-width: 1024px) {
  .slick-slide {
    transform: scale(1);
    margin: 0 1rem;
  }
}

.slick-slide.slick-center {
  transform: scale(1);
  margin-left: auto;
  margin-right: auto;
}

.testimonials__section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.testimonials__section h2 {
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .testimonials__section h2 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__section {
    row-gap: 3rem;
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}
.testimonials__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
}
.testimonials__card > img, .testimonials__card > p {
  margin-bottom: 1.5rem;
}
.testimonials__bio .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials__bio .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card {
  display: grid;
  row-gap: 1.5rem;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .card {
    grid-template-columns: 1.6fr 1.4fr;
    align-items: center;
    padding-left: 5rem;
  }
}

.product__tagline {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  column-gap: 1rem;
}
.product__tagline .tagline {
  height: 2px;
  width: 100%;
  background-color: #e0b44b;
}
.product__text {
  display: grid;
  row-gap: 1rem;
}
.product__item {
  display: grid;
  row-gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .product__item {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.faq__section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .faq__section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.privacy-policy__section {
  display: grid;
  row-gap: 1.5rem;
  color: #374659;
}
@media (min-width: 1024px) {
  .privacy-policy__section {
    row-gap: 2rem;
  }
}
.privacy-policy__section h3 {
  margin-bottom: 10px;
}

/*# sourceMappingURL=main.css.map */
