/* Satoshi */
@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/Satoshi/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Chillax */
@font-face {
  font-family: 'Chillax';
  src: url('/fonts/Chillax/Chillax-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Tomatoes */
@font-face {
  font-family: 'Tomatoes';
  src: url('/fonts/Tomatoes/Tomatoes-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

html,
body{
    overflow-x: hidden;
}

/* layout */
.container{
    max-width: 1632px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

/* typography */
h1{
    font-size: 66px;
    font-weight: 700;
    font-family: "Chillax", sans-serif;
}
h2{
    font-size: 60px;
    font-weight: 700;
    font-family: "Satoshi", sans-serif;
}
h3{
    font-size: 50px;
    font-weight: 700;
    font-family: "Satoshi", sans-serif;
}
h4{
    font-size: 40px;
    font-weight: 700;
    font-family: "Satoshi", sans-serif;
}
h5{
    font-size: 35px;
    font-weight: 700;
    font-family: "Satoshi", sans-serif;
}
h6{
    font-size: 24px;
    font-weight: 400;
    font-family: "Satoshi", sans-serif;
}
p{
    font-size: 18px;
    font-weight: 500;
    font-family: "Satoshi", sans-serif;
}

/* button */
a.btn-1 {
    color: #FFF;
    font-family: "Satoshi", sans-serif;
    font-size: 22px;
    font-weight: 400;
    background-color: #055C5A;
    box-shadow: 0 21px 46.1px 0 rgba(22, 135, 133, 0.50);
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 14px 21px;
    border-radius: 50px;
    width: fit-content;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
a.btn-1:hover,
a.btn-2:hover,
a.btn-3:hover {   
    background: black;
    color: white;
}
a.btn-1 span {
    min-height: 36px;
    min-width: 36px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.btn-2 {
    color: #FFF;
    font-family: "Satoshi", sans-serif;
    font-size: 22px;
    font-weight: 400;
    background: linear-gradient(103deg, #6D5700 -11.41%, #ECBE09 93.24%), rgba(22, 135, 133, 0.15);
    box-shadow:  0 21px 46.1px 0 rgba(22, 135, 133, 0.50);
    border: 1px solid #FFF;
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 14px 21px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
a.btn-2 span {
    min-height: 36px;
    min-width: 36px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.btn-3 {
    color: #FFF;
    font-family: "Satoshi", sans-serif;
    font-size: 22px;
    font-weight: 400;
    background: #16878526;
    border: 1px solid #fff;
    text-decoration: none;
    text-transform: capitalize;
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 14px 21px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
a.btn-3 span {
    min-height: 36px;
    min-width: 36px;
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* styling */
header {
    background-color: #fff;
    padding: 33px 0;
    position: relative;
}
.nav-mobile{
    display: none;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
    align-items: center;
}
header nav a.link {
    text-decoration: none;
    color: #1E1E1E;
    font-family: "Chillax", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.1s ease-in-out;
}
#navigation-hamburger {
    min-height: 65px;
    min-width: 65px;
    border-radius: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}
#nav-menu {
  display: none;
    position: absolute;
    background: #fff;
    top: 56px;
    width: 100%;
    left: 0;
    align-items: center;
    padding: 30px 20px;
}
#nav-menu.show {
  display: flex;
}
section#pricing-hero .wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section#pricing-hero .wrapper p {
    max-width: 900px !important;
}
section#pricing-monthly-anually .wrapper .item a.btn-1,
section#pricing-monthly-anually .wrapper .item a.btn-2 {
    margin-top: auto;
    width: 100% !important;
    justify-content: space-between;
    flex-shrink: 0;
}
.accordian-body-right-content video,
.accordian-body-right-content iframe {
    border-radius: 20px;
}
section#ministy-value .item:hover {
    background: #055C5A;
}
section#ministy-value .item:hover h5,
section#ministy-value .item:hover h6 {
    color: white;
}
.logo img {
    width: 400px;
    height: auto;
    object-fit: contain;
}
.wrapper.footer-bottom img {
    width: 480px;
    height: auto;
    object-fit: contain;
}
.btn-arrow-list-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

section#hero,
section#about-us-hero,
section#pricing-hero{
    background-image: url("/images/ministry/hero-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 70px 0;
}
#about-us-hero,
section#pricing-hero{
    background-image: url("/images/ministry/hero-banner-2.webp") !important;
}
#hero .wrapper,
#about-us-hero .wrapper,
section#pricing-hero .wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
}
#hero h1,
#hero h6,
#about-us-hero h2,
#about-us-hero h6,
section#pricing-hero h2,
section#pricing-hero h5,
section#pricing-hero p
 {
    text-align: center;
    max-width: 1000px;
    color: #fff;
}
#hero h1 {
    font-family: "Satoshi", sans-serif;
}
#hero h6,
#about-us-hero h6{
    color: #DADADA;
}
#about-us-hero h6{
    max-width: 1300px;
    margin-top: 30px;
}
#about-us-hero p{
    max-width: 1200px;
    text-align: center;
    color: #DADADA;
    margin: 16px 0;
}
#about-us-hero p:first-of-type{
    max-width: 800px;
}
#hero iframe {
    margin: 80px 0;
    width: 100%;
    height: 700px;
    border-radius: 20px;
}

ul.btn-arrow-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
ul.btn-arrow-list li {
    list-style: none;
}
ul.btn-arrow-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
p.font-tomatoes{
    font-family: "Tomatoes", sans-serif;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-right: 30px;
    position: relative;
}
p.font-tomatoes:after{
    content: "";
    /* background-image: url("/images/ministry/arrow.png"); */
    width: 80px;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -55px;
    right: -60px;
}

#sermon-synced {
    padding: 120px 0;
}
#sermon-synced .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
span.turquoise {
    color: #168785;
}
#sermon-synced h2 {
    color: #001918;
    text-align: center;
}
#sermon-synced h6{
    color: #505050;
    text-align: center;
}


.top-input {
    display: flex;
    width: 100%;
    max-width: 720px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.top-input input {
    width: 70%;
    border-radius: 60px;
    border: none;
    box-shadow:none;
    outline: none;
    font-size: 17px;
    padding: 12px;
    font-family: 'Satoshi';
}




/* .accordion-pricing {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}

.accordion-pricing-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}

.accordion-pricing-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-pricing-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-pricing-item-header.accordion-active::after {
  content: "\2212";
}

.accordion-pricing-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-pricing-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
} */

/* accordian */
.accordion.active{
  box-shadow: 0 90px 200px 2px rgb(104 169 168 / 45%);
}
.all-accordion{
    margin-top: 50px;
}

.accordion {
  border-radius: 5px;
  overflow: hidden;
  margin: 25px 0;
  box-shadow: 0px 10px 20px 1px rgb(0 0 0 / 10%);
}
.accordion-body img {
    width: 110px;
    height: 110px;
    border-top: 4px solid #ffffff82;
    border-radius: 100%;
}

/* Accordion header button */
.accordion-btn {
  background: #fff;
  cursor: pointer;
  padding: 35px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 20px;
  transition: all 0.1s ease-in-out;
}
.accordion-header img {
    width: 85px;
    height: 85px;
}

.accordion-btn:hover {
  background-color:#055C5A;
  transition: all 0.1s ease-in-out;
}

/* Body section inside the accordion (hidden by default) */
.accordion-body {
  display: none;
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  display: flex;
  border-radius: 20px;
background: linear-gradient(337deg, #055C5A -19.32%, #168785 104.47%);
box-shadow: 0 93.472px 190.343px 0 rgba(104, 169, 168, 0.37);
}

/* When active: show body smoothly */
.accordion.active .accordion-body {
  opacity: 1;
  max-height: 1000px; /* big enough to fit full content */
  padding: 35px;
  align-items: center;
  gap: 40px;
}

.thumbnail-wrapper{
    align-self: flex-start;
}

.accordian-body-right-content{
    width: 50%;
}

.accordion.active .accordian-body-left-content {
    color: #fff;
}

.accordion.active .accordian-body-left-content p {
    font-weight: 400;
    margin: 5px;
}

.accordian-body-left-content {
    display: flex;
    gap: 35px;
    width: 50%;
}
.accordian-body-right-content video,
.accordian-body-right-content iframe {
    width: 100%;
}

/* Smoothly fade out header instead of removing it abruptly */
.accordion-header {
  display: block;
}

.accordion.active .accordion-header {
  display: none;
  pointer-events: none;
  height: 0;
  padding: 0;
  margin: 0;
}

/* Paragraphs inside accordion body */
.accordion-content .feature-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.accordion-content .feature-list li {
  margin: 8px 0;
}

.accordion-content .feature-list a {
  font-size: 18px;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
  color: inherit;
  text-decoration: none;
}
.accordion-btn-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}
.accordion-btn-inner-wrapper > div:first-child {
    display: flex;
    align-items: center;
    gap: 40px;
    row-gap: 40px;
    column-gap: 40px;
}
.accordion-btn-inner-wrapper p {
    max-width: 411px;
    margin-right: 90px;
}
.accordion-btn:hover .accordion-btn-inner-wrapper{
    color: white;
    transition: all 0.1s ease-in-out;
}
section#ministy-value .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
#ministy-value h2 {
    margin: 18px 0;
}
section#ministy-value .grid-3,
section#why-now .grid-3 {
    display: flex;
    gap: 50px;
    margin-bottom: 51px;
}
section#ministy-value .item img {
    width: 100%;
}
section#ministy-value .item {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 50% 50%, #1687852e 100%);
    border-radius: 20px;
    padding: 10px 10px 33px 10px;
    box-shadow: 0px 2px 23px 2px #055c5a1a;
    width: 33%;
    transition: all 0.3 ease-in-out;
}
section#ministy-value .item > div {
    padding: 0 34px;
}
section#ministy-value .item h5 {
    margin-top: 10px;
    color: #1E1E1E;
}
section#ministy-value .item h6 {
    margin-top: 25px;
    color: #717171;
}
section#ministy-value .font-tomatoes{
    color: #000;
}
section#ministy-value .font-tomatoes::after{
    color: #000;
    /* background-image: url(/images/ministry/arrow-black.png); */
}
section#ministy-value ul.btn-arrow-list {
    margin-top: 20px;
}

section#testimonial {
    padding: 120px 0;
    overflow-x: hidden;
}
#testimonial .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#testimonial h2 {
    color: #001918;
}
#testimonial h6 {
    color: #505050;
}

section#about-us-mission-vission {
    padding: 120px 0px;
}
section#about-us-mission-vission .wrapper {
    display: flex;
    gap: 20px;
}
section#about-us-mission-vission .wrapper .item {
    padding: 80px 60px;
    border-radius: 30px;
    box-shadow: 0 35px 226.3px 0 rgba(22, 135, 133, 0.18);
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section#about-us-mission-vission .wrapper .item h3{
    margin-top: 30px;
}
section#about-us-mission-vission .wrapper .item ul {
    list-style: none;
}
section#about-us-mission-vission .wrapper .item ul li {
    position: relative;
    margin: 5px 0px 5px 45px;
}
section#about-us-mission-vission .wrapper .item ul li::before {
    content: "";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    left: -39px;
    top: 7px;
    width: 25px;
    height: 25px;
    background: url(/images/ministry/list-style-check.svg);
}
section#about-us-mission-vission .item span.icon {
    min-height: 110px;
    display: flex;
    min-width: 110px;
    width: fit-content;
    border-radius: 100%;
    background-color: #D6EAEA;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #ffffff6b;
}
section#about-us-mission-vission .item span.icon svg {
    width: 55px;
    height: 55px;
}
section#about-us-core-values {
    background-image: url("/images/ministry/banner-3.webp");
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
section#about-us-core-values .item-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
section#about-us-core-values .item {
    padding: 75px 45px;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
}
section#why-now {
    position: relative;
    padding: 120px 0;
}
section#about-us-core-values .item span.icon,
section#why-now .item span.icon {
    width: 100PX;
    height: 100PX;
    border-radius: 100%;
    Background: rgba(255, 255, 255, 0.38);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
section#why-now .item span.icon{
    background: #D6EAEA;
}
#about-us-core-values h2 {
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
}
section#about-us-mission-vission {
    padding: 120px 0;
}
section#why-now .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 30%;
    padding: 90px 70px;
    border-radius: 25px;
    background: #FFF;
    transition: all 0.3s ease-in-out
}
section#why-now .grid-3 {
    gap: 25px !important;
}
section#why-now::after {
    content: "";
    height: 80%;
    width: 80%;
    max-width: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #055c5b59;
    border-radius: 100%;
    filter: blur(200px);
    z-index: -1;
    transform: translate(-50%, -50%);
}
section#why-now h2 {
    text-align: center;
    margin-bottom: 100px;
}
section#why-now .item:hover{
    background-color: #055C5A;   
    color: #fff;
    transition: all 0.3s ease-in-out;
}
section#why-now .item:hover svg path {
    fill: #fff;
}
section#why-now .item:hover .icon {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.38), rgba(153, 153, 153, 0.38));
}
section#about-us-core-values .item:hover{
    background-color: rgb(255 255 255);
    color: #000000;
    transition: all 0.3s ease-in-out;
}
section#about-us-core-values .item:hover .icon{
    background: #D6EAEA;
    transition: all 0.3s ease-in-out;
}
section#about-us-core-values .item:hover .icon svg path{
    fill: #168785;
    transition: all 0.3s ease-in-out;
}
section#about-us-mission-vission .wrapper .item:hover{
    background-color: #055C5A;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}
section#about-us-mission-vission .wrapper .item:hover span.icon{
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
    border-top: 2px solid #ffffff49;
}
section#about-us-mission-vission .wrapper .item:hover span.icon svg path{
    fill: #fff;
}
section#pricing-hero ul.btn-arrow-list {
    margin-top: 30px;
}

section#pricing-monthly-anually {
    padding: 120px 0px;
}
#pricing-monthly-anually .wrapper {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: stretch;
}
#pricing-monthly-anually .wrapper .item {
    width: 33%;
    background-color: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 3px 0px 150px 0px #055c5a21;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}
section#pricing-monthly-anually .wrapper .item > ul > li:before {
    content: "";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    left: -39px;
    top: 4px;
    width: 25px;
    height: 25px;
    background: url(/images/ministry/list-style-check.svg);
}
section#pricing-monthly-anually .wrapper .item > ul > li {
    margin: 10px 0;
    position: relative;
    list-style: none;
}
section#pricing-monthly-anually span.pricing {
    color: #001918;
    font-family: Satoshi;
    font-size: 102.088px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
section#pricing-monthly-anually .wrapper .item ul {
    margin-left: 36px;
    flex: 1 1 auto;
}
section#pricing-monthly-anually .wrapper .item ul.before-none li {
    margin: 3px 0;
}
section#pricing-monthly-anually .item.highlight {
    background-color: #055C5A !important;
    color: #fff;
    position: relative;
}
section#pricing-monthly-anually .item.highlight span.pricing {
    color: #fff !important;
}
section#pricing-monthly-anually .wrapper .item.highlight > ul > li:before {
    background: url(/images/ministry/list-style-check-2.svg);
}
section#pricing-monthly-anually .item.highlight .tag {
    position: absolute;
    top: -27px;
    right: 40px;
    border-radius: 26.5px;
    border: 1px solid #FFF;
    background: linear-gradient(103deg, #6D5700 -11.41%, #ECBE09 93.24%), #D9D9D9;
    padding: 10px 25px;
}
/* Individual slide styling */
.swiper-slide {
  width: 65% !important; /* Center slide width (key for partial side visibility) */
  max-width: 1000px;
  text-align: center;
  display: flex !important;
  font-size: 18px;
  background: #fff;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6; /* Dim side slides */
    padding: 50px 20px !important;
    flex-direction: column;
    box-shadow: 24px 35px 226.3px 0 rgba(22, 135, 133, 0.20);
}

/* Highlight the active (center) slide */
.swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

/* Slide images (if you use them) */
.swiper-slide img {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: 100%;
    border: 10px solid #fff;
    box-shadow: 0px 10px 10px 2px #dcedede3;
    margin-top: -150px;
}
.swiper.mySwiper {
    overflow: visible !important;
    margin-top: 150px;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    color: black;
}
.content p {
    max-width: 780px;
    font-size: 23px;
    font-family: 'Tomatoes';
}
.navigation-wrapper {
    position: absolute;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
}
.slider-navigation {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 160px;
}
.swiper-button-next, .swiper-button-prev {
    position: static !important;
}
.swiper-button-prev:after, 
.swiper-button-next:after{
    display: none;
}
.swiper-button-next, 
.swiper-button-prev {
    height: 70px !important;
    width: 70px !important;
    border-radius: 100%;
    border: 1.5px solid #000;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background-color: #ECBE09;
    border-color: #ECBE09;
}
.swiper-slide{
    position: relative;
}
.swiper-slide::after{
    content: "";
    position: absolute;
    background-image: url("/images/ministry/quotation.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 55px;
    width: 60px;
    top: 50px;
    left: 60px;
}
.hidden{
    display: none !important;
}
.switch {
    position: relative;
    width: 110px;
    height: 52px;
    background-color: #ccc;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

/* --- The knob --- */
.switch-on-off {
  position: absolute;
    top: 5px;
    left: 7px;
    width: 42px;
    height: 42px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* --- When switched ON --- */
.switch.active {
  background-color: #055C5A; /* you can match your brand color */
}

.switch.active .switch-on-off {
    transform: translateX(54px);
}
.pric-toggle-btn-wrapper {
    display: flex;
    gap: 25px;
    border-radius: 45.5px;
    border: 1.197px solid rgba(22, 135, 133, 0.18);
    background: #FFF;
    box-shadow: 0 9.579px 47.775px 0 rgba(22, 135, 133, 0.20);
    padding: 20px 30px;
    margin-bottom: 120px;
    align-items: center;
}
.wrapper-for-btn {
    display: flex;
    justify-content: center;
}
button {
  outline: none;       /* removes default outline */
  border: none;        /* optional: removes browser border */
  background: none;    /* optional: for custom designs */
}
button:focus {
  outline: none;
}


/* ----- pricing accordion ----- */
.accordion-n {
  columns: 2;
}

.accordion-n-item {
    margin: 10px 0;
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 226.3px 0 rgb(22 135 133 / 34%);
}

.accordion-n-item-header {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    min-height: 170px;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0px 50px;
}

.accordion-n-item-header h6 {
    max-width: 550px;
    color: #001918;
    font-weight: 700;
    line-height: normal;
}
.accordion-n-item-header.active {
    background-color: #055C5A;
    min-height: 140px;
}
.accordion-n-item-header.active h6 {
    color: #fff;
}
.accordion-n-item-header:hover {
  background: #055C5A;
}
.accordion-n-item-header:hover::after {
  color: #fff;
}
.accordion-n-item-header:hover h6 {
  color: #fff;
}
.accordion-n-item-header::after {
    content: "+";
    position: absolute;
    right: 35px;
    transition: transform 0.3s ease;
    top: 50%;
    translate: 0 -50%;
    color: #001918;
    font-family: Satoshi;
    font-size: 28px;
    font-style: normal;
}

.accordion-n-item-header.active::after {
    content: "–";
    transform: rotate(180deg);
    color: #fff;
}

.accordion-n-item-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #055C5A;
    color: #fff;
}

.accordion-n-item-body-content {
    padding: 0px 50px 50px 50px;
}
#frequently-asked h2 {
    text-align: center;
    margin-bottom: 100px;
    color: #001918;
}
section#frequently-asked {
    margin-bottom: 320px;
}


footer {
    background-color: #001918;
    padding-top: 100px;
    margin-top: 200px;
}
footer .wrapper.footer-top {
    border-radius: 30px;
    background: linear-gradient(337deg, #055C5A -19.32%, #168785 104.47%);
    padding: 45px 20px 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: -300px;
}
footer h2 {
    color: #fff;
    text-align: center;
}
footer h6,
footer p {
    color: #D7D7D7;
    font-weight: 400 !important;
    text-align: center;
}
footer .btn-arrow-list-wrapper {
    margin-top: 60px;
}
.wrapper.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
    padding-bottom: 40px;
}
footer hr {
    width: 100%;
    margin: 10px 0;
    border-color: #C0C0C0;
}
.footer-bottom a {
    text-decoration: none;
    color: #fff;
    transition: all 0.1s ease-in-out;
}
.footer-bottom a:hover {
    color: #ECBE09 ;
}
header nav a.link:hover{
    color: #ECBE09 ;
}

@media (max-width: 1500px){
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 56px;
    }
    h3 {
        font-size: 45px;
    }
    h5 {
        font-size: 32px;
    }
    .content p {
        font-size: 22px;
    }
    #hero iframe {
        margin: 100px 0;
    }
    .all-accordion {
        margin-top: 65px;
    }
    #hero iframe {
        margin: 75px 0;
    }
    #sermon-synced {
        padding: 100px 0;
    }
    .slider-navigation {
        padding: 0 90px;
    }
    #hero,
    #about-us-hero,
    section#pricing-hero {
        padding: 80px 0 65px 0;
    }
    section#about-us-mission-vission,
    section#about-us-core-values,
    section#why-now {
        padding: 100px 0;
    }
    section#why-now h2,
    #about-us-core-values h2 {
        margin-bottom: 70px;
    }
    section#about-us-mission-vission .wrapper .item {
        padding: 70px 50px;
    }
    section#about-us-core-values .item {
        padding: 40px 28px;
        gap: 30px;
    }
    section#about-us-mission-vission .item span.icon,
    section#about-us-core-values .item span.icon, 
    section#why-now .item span.icon {
        width: 90px;
        height: 90px;
    }
    section#about-us-mission-vission .item span.icon svg,
    section#about-us-core-values .item span.icon svg, 
    section#why-now .item span.icon svg {
        width: 35px;
    }
    section#why-now .item {
        padding: 70px 45px
    }
    .accordion-n-item-header {
        padding: 0px 40px;
    }
    .accordion-n-item-header h6 {
        max-width: 490px;
    }
    .accordion-n-item-body-content {
        padding: 0px 40px 40px 40px;
    }
    #frequently-asked h2 {
        margin-bottom: 80px;
    }
    section#frequently-asked {
        margin-bottom: 300px;
    }
}
@media (max-width: 1366px){
    h1 {
        font-size: 55px;
    }
    h2 {
        font-size: 52px;
    }
    h3 {
    font-size: 40px;
    }
    h5 {
        font-size: 30px;
    }
    h6 {
        font-size: 20px;
    }
    
    #hero {
        padding: 60px 0 60px 0;
    }
    #hero iframe {
        margin: 65px 0;
    }
    #sermon-synced {
        padding: 90px 0;
    }
    .accordion.active .accordion-body {
        padding: 30px;
        gap: 20px;
    }
    .accordion-btn-inner-wrapper p {
        max-width: 300px;
        margin-right: 20px;
    }
    section#ministy-value .item > div {
        padding: 0 20px;
    }
    section#ministy-value .grid-3{
        gap: 20px;
    }
    section#testimonial {
        padding: 90px 0;
    }
    .slider-navigation {
        padding: 0 45px;
    }
    .swiper-slide img {
        width: 200px;
        height: 200px;
    }
    .swiper-slide::after {
        height: 45px;
        width: 50px;
    }
    section#about-us-mission-vission, section#about-us-core-values, section#why-now {
        padding: 80px 0;
    }
    section#about-us-mission-vission .wrapper .item {
        padding: 60px 35px;
    }
    section#about-us-core-values.item-wrapper {
        flex-wrap: wrap;
    }
    section#about-us-core-values .item {
        width: 49%;
    }
    section#about-us-core-values .item-wrapper {
        gap: 15px;
    }
    .item-wrapper {
        flex-wrap: wrap;
    }
    section#why-now .item {
        padding: 60px 23px;
    }
    #hero iframe {
        height: 600px;
    }
    section#pricing-monthly-anually span.pricing {
        font-size: 70px;
    }
    #pricing-monthly-anually .wrapper .item {
        padding: 40px 30px;
    }
    section#pricing-monthly-anually {
        padding: 100px 0px;
    }
    .accordion-n-item-header{
        min-height: 50px;
        padding: 45px 30px;
    }
    .accordion-n-item-header.active{
        padding: 20px 20px;
        min-height: 50px;
    }
    .accordion-n-item {
        border-radius: 15px;
    }
    .accordion-n-item-header h6 {
        max-width: 380px;
    }
    .accordion-n-item-body-content{
    padding: 0px 30px 30px 30px;
    }
    #frequently-asked h2 {
        margin-bottom: 40px;
    }
    section#frequently-asked {
        margin-bottom: 270px;
    }
    a.btn-1,
    a.btn-2,
    a.btn-3 {
        font-size: 18px;
    }
}
@media (max-width: 1036px){
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 42px;
    }
    h5 {
        font-size: 28px;
    }
    h4 {
        font-size: 35px;
    }
    .logo img {
        width: 220px;
    }
    .nav-desktop{
        display: none;
    }
    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 20px;
        min-height: 45px;
        min-width: 44px;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-mobile ul {
        flex-direction: column;
        margin-top: 55px;
        align-items: end;
        display: none;
    }
    .logo img {
        width: 300px;
        margin-top: 10px;
    }
    #navigation-hamburger {
        display: flex;
        align-self: start;
    }
    header {
        padding: 20px 0;
    }
    section#hero,
    #about-us-hero,
    section#pricing-hero {
        padding: 60px 0 55px 0;
    }
    #hero iframe {
        margin: 50px 0;
    }
    .all-accordion {
        margin-top: 50px;
    }
    .accordion-content.accordion-body {
        flex-direction: column;
        gap: 45px;
    }
    .accordian-body-left-content {
        flex-direction: column;
        width: 100%;
    }
    .accordian-body-right-content {
        width: 100%;
    }
    section#ministy-value .item > div {
        padding: 0 10px;
    }
    .content p {
        font-size: 20px;
    }
    .accordion-btn-inner-wrapper {
        flex-direction: column;
        align-items: start;
    }
    .accordion-btn-inner-wrapper > div:first-child {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
    .accordion-btn-inner-wrapper p {
        max-width: 450px;
        margin: 0px;
        margin-top: 10px;
    }
    #sermon-synced {
        padding: 50px 0;
    }
    section#ministy-value .item {
        width: 100%;
    }
    section#ministy-value ul.btn-arrow-list {
        gap: 44px;
    }
    .navigation-wrapper {
        position: static;
    }
    .slider-navigation {
        padding: 0 45px;
        justify-content: center;
        gap: 15px;
        margin-top: 80px;
    }
    p.font-tomatoes:after {
        rotate: 9deg;
        top: -53px;
        right: -58px;
    }
    p.font-tomatoes {
        margin-right: 0px;
    }
    section#about-us-mission-vission .item span.icon,
    section#about-us-core-values .item span.icon, 
    section#why-now .item span.icon {
        width: 60px;
        height: 60px;
        min-width: auto;
        min-height: auto;
    }
    section#about-us-mission-vission .item span.icon svg,
    section#about-us-core-values .item span.icon svg, 
    section#why-now .item span.icon svg {
        width: 25px;
    }
    section#about-us-mission-vission .wrapper .item {
        width: 100%;
    }
    section#about-us-mission-vission .wrapper {
        flex-wrap: wrap;
    }
    section#about-us-mission-vission, section#about-us-core-values, section#why-now {
        padding: 55px 0;
    }
    section#why-now h2, #about-us-core-values h2 {
        margin-bottom: 50px;
    }
    section#about-us-core-values .item {
        width: 100%;
    }
    section#about-us-core-values .item-wrapper {
        flex-wrap: wrap;
    }
    section#about-us-core-values .item h5 br{
        display: none;
    }
    section#about-us-core-values .item {
        gap: 18px;
    }
    section#why-now .item {
        width: 100%;
    }
    section#why-now .grid-3 {
        flex-wrap: wrap;
    }
    section#about-us-core-values .item p,
    section#why-now .item p {
        max-width: 500px;
    }
    #hero iframe {
        height: 500px;
    }
    #nav-menu {
        top: 75px;
    }
    section#pricing-monthly-anually {
        padding: 80px 0px;
    }
    #pricing-monthly-anually .wrapper {
        gap: 10px;
        align-items: stretch;
    }
    #pricing-monthly-anually .wrapper .item {
        width: 33%;
        padding: 30px 20px;
        gap: 10px;
        align-self: stretch;
    }
    section#pricing-monthly-anually .wrapper .item > ul > li:before {
        left: -24px;
        top: 6px;
        width: 16px;
        height: 16px;
    }
    section#pricing-monthly-anually .wrapper .item ul {
        margin-left: 20px;
    }
    .pric-toggle-btn-wrapper {
        margin-bottom: 70px;
    }
    #hero h6, #about-us-hero h6 {
        margin-top: 15px;
    }
    .btn-arrow-list-wrapper {
        gap: 41px;
    }
    #navigation-hamburger {
        display: flex;
        align-self: center;
    }
    .accordion-n-item-body-content {
        padding: 0px 30px 30px 30px;
    }
    
    .accordion-n-item-header h6 {
        max-width: 496px;
    }
    section#frequently-asked {
        margin-bottom: 250px;
    }
    footer .btn-arrow-list-wrapper {
        margin-top: 35px;
    }
    .accordion{
        position: relative;
    }
    .accordion:after {
        content: "";
        position: absolute;
        top: 70px;
        right: 60px;
        height: 20px;
        width: 35px;
        background-image: url(/images/ministry/arrow-down.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .accordion.active::after{
        background-image: url(/images/ministry/arrow-down-white.svg);
    }
    .accordion:hover::after{
        background-image: url(/images/ministry/arrow-down-white.svg);
    }    
    .accordion-n-item-header h6 {
        max-width: 364px;
    }
}
@media (max-width: 992px){
    h5 {
        font-size: 26px;
    }
    .accordion-n {
        columns: 1;
    }
    .accordion-n-item-header h6 {
        max-width: 460px;
    }
    #pricing-monthly-anually .wrapper .item {
        width: 100%;
        padding: 30px 25px;
    }
    #pricing-monthly-anually .wrapper {
        gap: 60px;
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
    }
    footer .btn-arrow-list-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    footer p.font-tomatoes:after {
            rotate: 42deg;
            top: 0px;
            right: -63px;
            width: 65px;
            height: 65px;
    }
}
@media (max-width: 768px){
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 30px;
    }
    h6{
        font-size: 16px;
    }
    p{
        font-size: 16px;
    }
    p.font-tomatoes {
        font-size: 16px;
    }
    header {
        padding: 15px 0;
    }
    section#hero,
    #about-us-hero,
    section#pricing-hero {
        padding: 70px 0 55px 0;
    }
    #hero p.font-tomatoes:after {
        rotate: 7deg;
        top: -43px;
        right: -54px;
    }
    .accordion.active .accordion-body {
        padding: 15px;
    }
    section#ministy-value  ul.btn-arrow-list {
        gap: 40px;
    }
    #testimonial h6 {
        max-width: 281px;
        text-align: center;
    }
    .accordion-content .feature-list a {
        font-size: 16px;
    }
    .accordion-body img {
        width: 65px;
        height: 65px;
    }
    .accordian-body-right-content video,
    .accordian-body-right-content iframe {
        border-radius: 20px;
    }

    .accordion-header img {
        width: 65px;
        height: 65px;
    }
    .accordion-btn {
        padding: 17px 15px;
    }
    .accordion:after {
        top: 50px;
        right: 30px;
        height: 10px;
        width: 20px;
    }

    a.btn-2, a.btn-3 {
        padding: 8px 12px;
        font-size: 16px;
    }
    p.font-tomatoes:after {
        rotate: 42deg;
        top: 0px;
        right: -63px;
        width: 65px;
        height: 65px;
    }
    .grid-3 {
        flex-direction: column;
    }
    #ministy-value p.font-tomatoes:after {
        rotate: 3deg;
        top: -41px;
        right: -55px;
    }
    .logo img {
        width: 200px;
        height: auto;
        object-fit: contain;
        margin-top: 10px;
    }
    .swiper-slide {
        width: 95% !important;
    }
    .accordian-body-left-content {
        gap: 20px;
    }
    .content p {
        font-size: 16px;
    }
    section#about-us-mission-vission .wrapper .item {
        gap: 10px;
    }
    section#about-us-mission-vission .wrapper .item {
        padding: 30px 30px;
    }
    section#about-us-mission-vission, section#about-us-core-values, section#why-now {
        padding: 40px 0;
    }
    section#why-now h2, #about-us-core-values h2 {
        margin-bottom: 30px;
    }
    .nav-mobile {
        gap: 10px;
    }
    .swiper-slide::after {
        height: 32px;
        width: 36px;
        top: 29px;
        left: 26px;
    }
    .swiper-slide img {
        width: 120px;
        height: 120px;
    }
    .swiper-slide img {
        margin-top: -105px;
    }
    footer .wrapper.footer-top ul.btn-arrow-list {
        margin-top: 6px;
    }
    footer .btn-arrow-list-wrapper {
        margin-top: 20px;
    }
    .wrapper.footer-bottom img {
        width: 487px;
        height: auto;
        object-fit: contain;
    }
    .wrapper.footer-bottom img {
            width: 320px;
            height: auto;
            object-fit: contain;
    }
    footer .wrapper.footer-top {
        padding: 45px 10px 70px 10px;
    }
    a.btn-1,
    a.btn-2,
    a.btn-3,
    nav a {
        font-size: 18px;
        gap: 10px;
    }
    a.btn-1 span,
    a.btn-2 span,
    a.btn-3 span {
        min-height: 30px;
        min-width: 30px;

    }
    a.btn-1 span svg,
    a.btn-2 span svg,
    a.btn-3 span svg {
        width: 15px;
    }
    #navigation-hamburger {
        min-height: 60px;
        min-width: 60px;
    }
    #hero iframe {
        height: 400px;
    }
    #nav-menu {
        top: 68px;
    }
    section#pricing-monthly-anually span.pricing {
        font-size: 55px;
    }
    #pricing-monthly-anually .wrapper .item {
        gap: 15px;
    }
    .pric-toggle-btn-wrapper {
        margin-bottom: 25px;
        padding: 10px 20px;
    }
    .switch {
        width: 57px;
        height: 30px
    }
    .switch.active .switch-on-off {
        transform: translateX(23px);
    }
    .switch-on-off {
        top: 5px;
        left: 7px;
        width: 20px;
        height: 20px;
    }
    .accordion-n-item {
        margin: 5px 0;
    }
    .accordion-n-item-header {
        padding: 25px;
    }
    .accordion-n-item-body-content {
        padding: 0px 25px 25px 25px;
    }
    .accordion-n-item {
        border-radius: 5px;
    }
    #pricing-monthly-anually .wrapper {
        max-width: 350px;
    }
}
@media (max-width: 575px){
    .logo img {
        width: 150px;
    }
    .nav-mobile {
        gap: 5px;
    }
    header {
        padding: 12px 0;
    }
    section#hero,
    #about-us-hero,
    section#pricing-hero {
        padding: 45px 0 45px 0;
    }
    a.btn-1 {
        font-size: 14px;
        gap: 10px;
        padding: 8px 8px 8px 14px;
    }
    a.btn-2, a.btn-3, nav a {
        font-size: 16px;
    }
    a.btn-1 span, a.btn-2 span, a.btn-3 span {
        min-height: 22px;
        min-width: 22px;
    }
    a.btn-1 span svg, a.btn-2 span svg, a.btn-3 span svg {
        width: 10px;
        margin-top: 1px;
    }
    #hero iframe {
        height: 250px;
    }
    #navigation-hamburger svg {
        width: 17px;
    }
    #nav-menu {
        top: 56px;
    }
    #pricing-monthly-anually .wrapper .item {
        gap: 5px;
    }
    section#ministy-value p.font-tomatoes span {
        font-size: 10px;
    }
    section#ministy-value p.font-tomatoes:after {
        rotate: 5deg;
        top: -13px;
        right: -38px;
        width: 40px;
        height: 40px;
    }
    .top-input {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-input input {
        width: 100%;
        margin-bottom: 15px;
    }
    #hero .btn-arrow-list-wrapper {
        flex-direction: column;
    }
    #hero .btn-arrow-list-wrapper {
        gap: 10px;
    }
    .top-input {
        margin-bottom: 20px;
    }
    #hero p.font-tomatoes:after {
        rotate: 120deg;
        top: 15px;
        right: -34px;
    }
    .accordion-n-item-header {
        padding: 20px;
    }
    .accordion-n-item-header::after {
        right: 20px;
        font-size: 25px;
    }
    .accordion-n-item-body-content {
        padding: 0px 20px 20px 20px;
    }
    #navigation-hamburger {
        min-height: 40px;
        min-width: 40px;
    }
    .accordion-n-item-header h6 {
        max-width: 260px;
    }
    footer p.font-tomatoes:after {
        display: none;
    }
}