@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --theme-color: #a70220;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  /* font-family: "Anton", sans-serif;
  font-family: "Oswald", sans-serif; */
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1220px;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #828282;
  line-height: 1.765;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  padding: 0;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 2rem;
}
.themeBtn {
  display: inline-block;
  background-color: var(--theme-color);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  border: 1px solid var(--theme-color);
  padding: 0.85em 1.5em;
  border-radius: 5px;
  margin: 0.5rem 0;
}
.themeBtn:hover {
  background-color: var(--white);
  color: var(--theme-color);
  box-shadow: inset 0 0 0 2em var(--white);
}
.main-slider {
  position: relative;
  z-index: 1;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  bottom: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-caption [class*="col-"]{
  border-radius: 5px;
  position: relative;
  padding: 1rem 0.75rem;
}
/* .carousel-caption [class*="col-"]::before{
  background: linear-gradient(1turn,rgba(0,0,0,.75),rgba(0,0,0,.5));
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  z-index: -1;
} */
.main-slider h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0px 0px 10px black;
}
.main-slider h3 {
  font-family: "Anton", sans-serif;
  font-size: 5.625rem;
  color: var(--theme-color);
  text-transform: uppercase;
  line-height: 1;
}
.main-slider h4 {
  font-size: 3.75rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0px 0px 10px black;
}
.main-slider p {
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.765;
  text-align: left;
  text-shadow: 0px 0px 5px black;
}
.secHeading {
  font-size: 3.125rem;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  color: var(--black);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}
.secHeading span {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  color: var(--theme-color);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  line-height: 1.3;
}
.socialIo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  z-index: 1;
  position: absolute;
  right: 20%;
  bottom: 1rem;
}
.socialIo h3 {
  font-size: 1.875rem;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  color: var(--black);
  line-height: 1;
}
.socialIo li a {
  line-height: 1;
  font-size: 2rem;
  display: inline-block;
}
.socialIo li a.fb {
  color: #3b5999;
}

.socialIo li a.twitr {
  color: #03a9f4;
}
.socialIo li a.ytube {
  color: #ff0000;
}
.socialIo li a.insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  /* Also define standard property for compatibility */
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* aboutSec */
.aboutSec {
  background: url(../images/aboutBg.jpg) center/cover no-repeat;
  padding: 15rem 0 10rem;
  margin-top: -5rem;
}
.aboutSec h4 {
  font-size: 1.25rem;
  color: #1f212e;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.aboutSec ul li p {
  margin-bottom: 0;
}
.aboutSec p span {
  color: var(--theme-color);
  font-weight: 500;
}

.aboutSec figure {
  position: relative;
  border-radius: 50%;
  width: fit-content;
  width: -moz-fit-content;
  padding: 1.5rem;
  border: 1px dashed var(--theme-color);
}
.aboutSec figure::before {
  content: "";
  border-radius: 50%;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  animation: scale linear 3s infinite;
}
@keyframes scale {
  50% {
    transform: scale(0.9);
  }
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* ourCard */
.ourCard {
  position: relative;
}
.ourCard img {
  width: 100%;
}
.ourCard .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 2rem;
}
.ourCard .content h3 {
  font-size: 2.625rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.19;
  text-align: center;
}

/* servicesSec */
.servicesSec {
  background: url(../images/serviceBg.jpg) center/cover no-repeat;
}
.servCard {
  text-align: center;
}
.servCard + .servCard {
  margin-top: 10rem;
}
.servCard h3 {
  font-size: 1.625rem;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.servCard a {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
  text-decoration: underline !important;
  text-transform: uppercase;
  line-height: 1.857;
}
.servicesSec figure {
  position: relative;
  z-index: 1;
  margin: 8rem 0;
}
.servicesSec figure img {
  border: 3px solid var(--white);
}
.servImg1 {
  position: absolute;
  left: 0;
  top: -3rem;
  z-index: -1;
  animation: pulse linear 2s infinite;
}
.servImg2 {
  position: absolute;
  left: -1.5rem;
  bottom: -5rem;
  z-index: -1;
  animation: pulse linear 3s infinite;
}
.servImg3 {
  position: absolute;
  top: 3rem;
  right: -4rem;
  z-index: -1;
  animation: pulse linear 4s infinite;
}
.servImg4 {
  position: absolute;
  bottom: -8rem;
  right: 0;
  z-index: -1;
  animation: pulse linear 5s infinite;
}

/* Video Section */
.slideCard {
  position: relative;
}
.slideCard a {
  display: block;
}
.slideCard a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 1; */
}

.videoThumb {
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}
.videoThumb img {
  border-radius: 15px;
}
.videoThumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 50px;
}
.videoSec .slider-nav {
  margin-top: -100px;
}
.videoSec .slider-nav .slick-list.draggable {
  margin-right: -150px;
}

.slick-next::before,
.slick-prev::before {
  content: none;
  display: none;
}
.slick-next,
.slick-prev {
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #0a0a0a;
  background-color: var(--white);
  box-shadow: 0px 5px 53.69px 5.31px rgba(0, 0, 0, 0.09);
  width: 50px;
  height: 50px;
  z-index: 1;
}
.slick-next:is(:hover, :focus),
.slick-prev:is(:hover, :focus) {
  background: var(--theme-color);
  color: var(--white);
}
.videoSec .slick-next {
  left: -6rem;
  right: auto;
  top: 60%;
}
.videoSec .slick-prev {
  left: -10rem;
  top: 60%;
}

/* eventCard */
.eventCard {
  margin: 1rem 0.5rem;
  position: relative;
  transition: 0.3s ease-in-out;
}
.eventCard img {
  transition: 0.3s ease-in-out;
  object-fit: cover;
  filter: grayscale(1);
}
.eventCard .content {
  transform: scaleY(0);
  transform-origin: top center;
  transition: 0.3s ease-in-out;
}
.eventCard h3 {
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}
.eventCard p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  color: #828282;
}

.eventCard.slick-slide.slick-current.slick-active.slick-center {
  z-index: 1;
  transform: scaleY(1.15);
}
.eventCard.slick-slide.slick-current.slick-active.slick-center img {
  filter: none;
}
.eventCard.slick-slide.slick-current.slick-active.slick-center .content {
  transform: scaleY(1);
  padding-bottom: 3rem;
}

.eventSlider .slick-next {
  right: 0;
  top: auto;
  bottom: 0;
}
.eventSlider .slick-prev {
  left: auto;
  right: 4rem;
  top: auto;
  bottom: 0;
}

/* prayersSec */
.prayersSec {
  background: var(--theme-color) url(../images/prayerBg.png) center/cover
    no-repeat;
}
.prayersSec h2 {
  display: flex;
  font-size: 5rem;
  justify-content: center;
  align-items: center;
  font-family: "Anton", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  gap: 0.5rem;
  margin: 1rem 0;
}
.prayersSec h2 span {
  height: 5px;
  width: 150px;
  background: var(--white);
}
.prayersSec h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  font-style: italic;
  line-height: 1;
}

.prayersSec p {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.5;
}
.prayersSec .themeBtn {
  border-radius: 0;
  background: var(--black);
}

.testimonialSec {
  background: url(../images/testBg.jpg) left bottom / cover no-repeat;
}

.testimonialSec figure {
  position: relative;
  z-index: 1;
  margin: 8rem 0;
}
.testimonialSec figure img {
  border: 3px solid var(--white);
}
.testimonialImg1 {
  position: absolute;
  right: 0;
  top: -3rem;
  z-index: -1;
  animation: pulse linear 2s infinite;
}
.testimonialImg2 {
  position: absolute;
  left: -1.5rem;
  bottom: -5rem;
  z-index: -1;
  animation: pulse linear 3s infinite;
}
.testimonialImg3 {
  position: absolute;
  top: 10rem;
  right: -7rem;
  z-index: -1;
  animation: pulse linear 4s infinite;
}
.testimonialImg4 {
  position: absolute;
  bottom: -8rem;
  right: 0;
  z-index: -1;
  animation: pulse linear 5s infinite;
}

/* audioPlayerSec */
.audioPlayerSec {
  background: url(../images/bgImg.jpg) center/cover no-repeat;
}
.audioPlayerSec .secHeading {
  color: var(--white);
}
.playerCard {
  border-radius: 5px;
  background-color: var(--white);
  height: 115px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.75rem;
  padding: 0.25rem;
}
.playerCard .content {
  transform: scaleX(0);
}
.playerCard h3 {
  font-size: 1.25rem;
  font-family: "Anton", sans-serif;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
.playerCard p {
  color: var(--theme-color);
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}
.playerCard.slick-slide.slick-current.slick-active {
  display: flex !important;
}
.playerCard.slick-slide.slick-current.slick-active .content {
  transform: scaleX(1);
}
.playerSlider .slick-prev {
  left: auto;
  right: -24rem;
}
.playerSlider .slick-next {
  right: -28rem;
}
.playerSlider .slick-track {
  /* padding: 4rem 0; */
}
.playerSlider.slick-initialized.slick-slider {
  height: 150px;
}
/* Audio Visualizer */
#audio-box {
  background-color: transparent;
  color: #fff;
}
#controls-wrapper {
  text-align: justify;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
#play {
  cursor: pointer;
  user-select: none;
}
#time-wrapper {
  text-align: justify;
  color: #b7b7b7;
}
#controls-wrapper #play {
  color: var(--theme-color);
  display: block;
  margin: 0 auto;
}
#time-wrapper:after {
  content: "";
  display: inline-block;
  width: 100%;
}
/*Remove default styles*/
.audioPlayerSec input[type="range"] {
  -webkit-appearance: none;
  margin: 0 0;
  width: 100%;
}
.audioPlayerSec input[type="range"]:focus {
  outline: none;
}
/*Track & handle(thumb) styles*/
/*Chrome*/
.audioPlayerSec input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #b7b7b7;
  border-radius: 0;
  border: 1px solid #b7b7b7;
}
.audioPlayerSec input[type="range"]::-webkit-slider-thumb {
  border: 1px solid var(--theme-color);
  height: 10px;
  width: 10px;
  background: var(--theme-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1px;
}
.audioPlayerSec input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #b7b7b7;
}
/*Firefox*/
.audioPlayerSec input[type="range"]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #b7b7b7;
  border-radius: 0;
  border: 1px solid #b7b7b7;
}
.audioPlayerSec input[type="range"]::-moz-range-thumb {
  border: 1px solid var(--theme-color);
  height: 10px;
  width: 2px;
  border-radius: 100%;
  background: var(--theme-color);
  cursor: pointer;
  -webkit-appearance: none;
}
/*IE*/
.audioPlayerSec input[type="range"]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #b7b7b7;
  border-radius: 0;
  border: 1px solid #b7b7b7;
}
.audioPlayerSec input[type="range"]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
.audioPlayerSec input[type="range"]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
.audioPlayerSec input[type="range"]::-ms-thumb {
  border: 1px solid var(--theme-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--theme-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -0.5em;
}
.audioPlayerSec input[type="range"]:focus::-ms-fill-lower {
  background: #3071a9;
}
.audioPlayerSec input[type="range"]:focus::-ms-fill-upper {
  background: #367ebd;
}
/* Audio Visualizer */

/* Footer Css */
footer {
  background: var(--black);
  padding-top: 5rem;
}

.newsLtrFrom {
  background-color: var(--white);
  width: 100%;
  padding: 0rem 1rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

.newsLtrFrom input {
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: var(--black);
  line-height: 1;
  width: calc(100% - 170px);
}
.newsLtrFrom input::placeholder {
  color: #b5bcc6;
}
.newsLtrFrom input:focus {
  outline: none;
}
.newsLtrFrom .themeBtn {
  background-color: var(--theme-color);
  color: var(--white);
  text-transform: uppercase;
  width: 170px;
  border-radius: 0;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.newsLtrFrom .themeBtn:hover {
  color: var(--theme-color);
}
.footerMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.footerMenu li a {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.copyRight {
  text-align: center;
  padding: 1.5rem 0;
}
.copyRight p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.502);
  line-height: 1.625;
}
.footerSocial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footerSocial li a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
}
.footerSocial li a.fb {
  background-color: #3b5999;
}

.footerSocial li a.twitr {
  background-color: #03a9f4;
}
.footerSocial li a.ytube {
  background-color: #ff0000;
}
.footerSocial li a.insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.addressInfo {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  justify-content: space-around;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255 255 255 /10%);
  border-bottom: 1px solid rgba(255 255 255/10%);
}

.addressInfo li a {
  font-size: 1.0625rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.502);
  line-height: 1;
}
.addressInfo li a i {
  color: var(--theme-color);
}

/* gallerySec */
.gallerySec {
  background: url(../images/galleryBg.jpg) center/cover no-repeat;
}

.galleryList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.galleryList li {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.galleryImg {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}
.galleryImg img {
  border-radius: 20px;
  width: 100%;
}

/* Inner Pages css */
.aboutSec.leaderShipSec {
  background: var(--white);
}
.aboutSec.blogInner {
  background: url(../images/blogBg.jpg) top center/cover no-repeat;
}
.aboutSec.blogInner .row + .row {
  margin-top: 5rem;
}
.audioPlayerSec.audioInner {
  margin-top: -6rem;
  padding-top: 12rem;
}
.audioInner .playerCard h3 {
  font-size: 1rem;
}

.audioInner #controls-wrapper #play {
  margin: 0;
}

.contactSec {
  font-family: "Poppins", sans-serif;
  padding-top: 10rem;
  margin-top: -6rem;
  background: url(../images/aboutBg.jpg) center/cover no-repeat;
}

.contact-form textarea,
.contact-form input {
  width: 100%;
  background-color: var(--white);
  padding: 1.1em 0;
  height: 70px;
  font-size: 1.125rem;
  border-radius: 0;
  border: 1px solid rgb(225, 225, 225);
  padding-left: 45px;
  transition: 0.2s ease-in-out;
}

.contact-form textarea {
  height: 172px;
  padding-top: 10px;
  resize: none;
}

.contact-form textarea:focus,
.contact-form input:focus {
  outline: none;
  border: 1px solid var(--theme-color);
}

.contact-form button {
  background-color: var(--theme-color);
  color: var(--white);
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  width: 100%;
  max-width: 200px;
  font-weight: 600;
  padding: 1.2em 2.5em;
  height: 60px;
  border-radius: 10px;
}

.contact-form button:hover {
  color: var(--theme-color);
  background-color: var(--black);
}
.input-field {
  position: relative;
  margin-bottom: 1.75rem;
}
.contactSec iframe {
  width: 100%;
  filter: grayscale(1);
  height: 640px;
}

/* donationSec */
.donationSec {
  background: url(../images/aboutBg.jpg) center/cover no-repeat;
}
.donationSec form {
  border-radius: 1px;
  background-color: var(--white);
  padding: 5rem 8rem;
  box-shadow: 0px 9px 19px 0px rgba(0, 0, 0, 0.07);
}

.donationSec .secHeading {
  font-size: 3.75rem;
  letter-spacing: 3px;
}
.donationSec h3 {
  font-size: 1.875rem;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
.donationSec p {
  font-size: 1.125rem;
  font-weight: 400;
}
.donationSec .form-group .form-control {
  height: 70px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='40' viewBox='0 0 24 24' width='40' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  border-radius: 0;
  border: 0;
  background-position-x: 100%;
  background-position-y: 15px;
}
.donationSec .form-group .form-control option {
  font-size: 16px;
  color: #282828;
  line-height: 1;
}

.donationInfo {
  background: url(../images/donation.jpg) center/cover no-repeat;
  padding: 6rem 5rem;
  text-align: center;
  border-radius: 15px;
}
.donationInfo p {
  color: var(--white);
  margin-top: 1rem;
}
.donationInfo .themeBtn {
  font-family: "Anton", sans-serif;
  font-size: 1.5rem;
  border-radius: 0;
}

/* changes 21-1-2022 */

header .navbar-brand img[alt="updatelogo"] {
  width: 300px;
}

/* changes 21-1-2022 */

.innerSlider video {
    height: 650px;
    object-fit: cover;
}

.topOne {
    margin-top: 87px;
}

.joinPage h2 span small {font-weight: 600;}

.joinPage h2 {display: flex;align-items: center;margin: 0 0 10px !important;/* gap: 5.5rem; */font-size: 17px;}

.joinPage h2 span {display: flex;align-items: center;gap: 1rem;font-size: 17px;font-weight: 600;}

.joinPage h6 {font-family: "Poppins", sans-serif;font-size: 32px;color: #000000;font-weight: 600;padding-right: 8rem;line-height: 1.4;}

.joinPage p a {color: #a70220;}

.meetingOne {
    margin: 0;
    padding: 8rem 0 2rem;
    background: url(../images/cmngbg.jpg) no-repeat top center/ cover;
}

.meetingTwo {margin: 0;padding: 0 0 0rem;background: transparent;}

.meetingTwo hr {
  
margin: 4.5rem 0;}

.bibleBg {
  background: url(../images/bg2.jpg) no-repeat top center/ cover;
  padding: 0 0 10rem;
  background-size: 60%;
  background-position: bottom right;
}
