/********** Template CSS **********/
:root {
  --primary: #196b57;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --primary_2: #0fc85e;
  --primary_darker: #0c4a26;
  --primary_light: #0fc85e;
  --second_green: #8AC915;
  --body: #FAFDFC;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary-light {
  background: var(--primary_light) !important;
  color: white;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.navbar-begin {
  z-index: 99999;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  /* padding: 25px 10px; */
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--light);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: white !important;
  border-color: white !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: var(--bs-primary);
    color: black;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 10px;
    top: -1px;
    left: 50%;
    background: white;
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    /*display: none;*/
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

#map-nigeria {
  width: 100%;
  height: 230px;
}

@media (min-width: 576px) {
  #map-nigeria {
    height: 647px;
  }
}

@media (min-width: 768px) {
  #map-nigeria {
    height: 383px;
  }
}

@media (min-width: 1200px) {
  #map-nigeria {
    height: 647.625px;
    width: 801.984px;
  }
}

/*** Carousel ***/
.carousel-caption {
  /* top: 0; */
  /* left: 0;
  right: 0; */
  /* bottom: 0; */
  background: rgba(9, 30, 62, 0.7);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 9px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

#header-carousel .carousel-item img {
  object-fit: cover;
  object-position: 100% 30%;
  height: 42vh;
  width: 100%;
  overflow: hidden;
}
.social-feed-container {
  max-height: 42vh;
  overflow: auto;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
}

@media screen and (min-width: 768px) {
  #header-carousel .carousel-item img {
    height: 47vh;
  }
  .social-feed-container {
    max-height: 47vh;
  }
}

@media screen and (min-width: 992px) {
  #header-carousel .carousel-item img {
    height: 44vh;
  }
  .social-feed-container {
    max-height: 44vh;
  }
}

@media screen and (min-width: 1200px) {
  #header-carousel .carousel-item img {
    height: 80vh;
  }
  .social-feed-container {
    max-height: 76.5vh;
  }
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-primary-darker {
  background: var(--primary_darker);
}
.bg-body {
  background: var(--body);
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.column_with_rosary {
  position: relative;
}

.column_with_rosary div:nth-child(1) {
  position: absolute;
  top: -10px;
  left: -5px;
  background: var(--primary_light);
  width: 60px;
  height: 60px;
  border-radius: 99999999999999999999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary_darker);
}

.sidebar {
  position: sticky;
  top: 150px;
  left: 0;
  height: 100%;
  margin-bottom: 65px;
}

.box.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s, transform 0.35s;
}

.box .inner {
  /* padding: 10px; */
  position: relative;
}

.box a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.box img {
  width: calc(100% + 50px);
  max-width: calc(100% + 50px);
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-40px, 0, 0);
}

.box a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.4s;
}

.box:hover img {
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s, transform 0.35s;
}

.box:hover a::before {
  opacity: 0.3;
  transition: opacity 0.5s;
}

.main-sidebar {
  box-shadow: -16px 12px 6px #00000017;
  border-radius: 17px;
}


.live-event__card {
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  margin: auto;
  transition: all 450ms ease-out 0s;
  overflow: hidden;
  box-shadow: -6px 7px 6px #00000029;
  border-radius: 17px;
}

.live-event__card .live-event__img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  overflow: hidden;
}

.live-event__card:hover {
  box-shadow: -6px 7px 16px rgba(0, 0, 0, 0.85);
}

.live-event__card:hover .text-overlay {
  background: rgba(255, 255, 255, 0.85);
  height: 55%;
  top: 45%;
  transition: all 450ms ease-in-out 0s;
}

.live-event__card:hover p {
  height: 60px;
  transition: all 350ms ease-in-out 0s;
}

.live-event__card:hover p a {
  visibility: visible;
}

.live-event__card .text-overlay {
  position: relative;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 0px 0px 17px 17px;
  opacity: 0.87;
  width: 100%;
  height: 45%;
  top: 55%;
  padding: 10px 12px;
  overflow: hidden;
  transition: all 450ms ease-in-out 0s;
  cursor: pointer;
}

.live-event__card .text-overlay h2 a {
  color: var(--primary);
  font: normal normal 900 18px/22px Roboto;
  letter-spacing: 0px;
  width: auto;
  margin: 0;
  text-decoration: none;
}

.live-event__card .text-overlay .datetime span {
  font: normal normal bold 12px/14px Roboto;
  letter-spacing: 0px;
  color: #7E7E7E;
}

.r-1q9bdsx {
  border-radius: 0 !important;
}

.page-heading h1{
  color: #007D53;
  font: normal normal 900 32px/42px Roboto;
  font-size: calc(1.78rem + 0.9vw);
}

.page-heading span {
  font: normal normal bold 18px/22px Roboto;
  letter-spacing: 0px; 
  color: #7E7E7E; 
}

@media screen and (min-width: 1200px) {
  .page-heading h1{
    font-size: 3.175rem;
    line-height: 3.8rem;
  }
}

.featured_image img{
  width: 100%;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;
  object-position: center center;
}

.accordion-button {
  color: var(--light) !important;
  background-color: var(--primary) !important;
}

.accordion-button::after{
  background-color: var(--light);
  border-radius: 99999999999px;
  padding: 10px;
}

.accordion-body .card .card-img {
  width: 100%;
  height: calc(300px - 0.9vh);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.search-form .input-group input {
  border-top-left-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}

.search-form .input-group button {
  border-top-right-radius: 50rem !important;
  border-bottom-right-radius: 50rem !important;
}

#details, #details p {
  color: rgb(33, 37, 41) !important;
  font: normal normal 400 1.2rem/30px Roboto !important;
}

#details h1, #details h2, details h3, details h4, details h5, details h6 {
  color: var(--primary) !important;
  font: normal normal 800 2rem/38.4px Roboto !important;
  font-size: (1.325rem + 0.9vw) !important;
}