@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,500;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap");

/* ==================== General ==================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  position: relative;
  padding-bottom: 440px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

:root {
  --primary-color: #0c3300;
  --sec-color: #d6ba19;
  --sec-color2: #242526;
  --sec-color3: #999;
  --sec-color4: #312f2f;
  --text-color: #4b4b4b;
  --hover-color: #a38e17;
  --btf-color: #ff6600;
  --bdcrumbs-color: #054a06;
}

@media screen and (max-width: 425px) {
  .power p,
  .power .activities ul li,
  .power .act-social-media,
  .bullets-points ul li,
  #units ul li,
  .roles ul li,
  .intro-info p {
    font-size: calc(0.9rem + 0.9vw);
  }
}

/* ================== header ===================== */

/* ================= top bar =================== */
.top-bar {
  width: 100%;
  height: 25px;
  background: #0c3300;
}

.top-info {
  width: 1250px;
  display: flex;
  margin: auto;
  justify-content: space-between;
  padding: 0 30px;
  transition: all 0.3s ease;
}

.top-info .email a,
.top-info .call a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease;
}

.top-info .email a:hover,
.top-info .call a:hover {
  color: var(--sec-color);
}

.top-info .fa-telegram {
  color: #ffff;
}

.top-info .fa-brands,
.top-info .fab,
.top-info .fas {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.5s ease;
}

.top-info .fa-facebook-f:hover {
  color: #3b5998;
}

.top-info .fa-twitter:hover {
  color: #55acee;
}

.top-info .fa-x-twitter:hover {
  color: black;
}

.top-info .fa-instagram:hover {
  color: transparent;
  background: -webkit-radial-gradient(
    30% 107%,
    circle,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -o-radial-gradient(
    30% 107%,
    circle,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fff373 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background: -webkit-radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.top-info .fa-telegram:hover {
  color: #0088cc;
}

.s-media a {
  padding-left: 10px;
}

nav.sticky {
  top: 0;
  transition: all 0.05s ease;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* ============ Navbar Section ============ */
nav {
  background: #fff;
  width: 100%;
  height: 65px;
  line-height: 65px;
  position: fixed;
  z-index: 500;
}

nav .wrapper {
  position: relative;
  max-width: 1250px;
  padding: 0 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .nav-links {
  display: inline-flex;
}

.logo {
  padding-top: 5px;
  height: 65px;
}

.logo .nav-links {
  align-items: center;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.nav-links li {
  list-style: none;
}

#links {
  border: 2px solid var(--btf-color);
  color: var(--btf-color);
  margin-right: 20px;
}

#links:hover {
  color: #ffff;
  background: var(--btf-color);
}

#give {
  border-radius: 50px;
  padding: 8px 25px;
  animation: giveBackground 3s infinite;
}

#give:hover {
  color: #fff;
}

@keyframes giveBackground {
  0% {
    background-color: #ffaa02;
  }
  25% {
    background-color: #6aff05;
  }
  50% {
    background-color: #ffaa02;
  }
  75% {
    background-color: #6aff05;
  }
  100% {
    background-color: #ffaa02;
  }
}

.nav-links li a {
  color: var(--sec-color2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 20px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: var(--sec-color);
}

.nav-links .drop-menu {
  background: #fff;
  width: 250px;
  top: 85px;
  line-height: 40px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  top: 65px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-size: 15px;
  font-weight: 400;
}

.mega-box {
  position: absolute;
  top: 85px;
  width: 100%;
  left: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
}

.mega-links li a {
  font-weight: 400;
  font-size: 15px;
}

.mega-box .content {
  background: #fff;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.content .row {
  width: calc(25% - 30px);
  line-height: 35px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: var(--sec-color2);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgb(0, 0, 0, 0.2);
}

.content .row .mega-links {
  margin-left: -20px;
  border-left: 1px solid rgb(0, 0, 0, 0.2);
}

.content .row:nth-child(1),
.content .row:nth-child(2) {
  border-left: 0px;
}

.row .mega-links li {
  padding: 0 8px;
}

.row .mega-links li a {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.nav-links .mobile-item {
  display: none;
}

.wrapper .btn {
  color: var(--sec-color2);
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.cancel-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1020px) {
  .wrapper .btn {
    display: block;
  }

  nav {
    width: 100%;
    position: fixed;
  }

  .mobile-item,
  .links {
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    background: #fff;
    display: block;
    top: 0;
    left: -400px;
    z-index: 1;
    overflow-y: auto;
    line-height: 50px;
    padding: 50px 10px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }

  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }

  .nav-links::-webkit-scrollbar {
    width: 0;
  }

  .logo {
    display: absolute;
  }
  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 18px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    top: 65px;
    padding-left: 20px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #showdrop:checked ~ .drop-menu,
  #showmega:checked ~ .mega-box {
    max-height: 100%;
  }

  #drop:checked ~ #drop {
    max-height: 100%;
  }

  #show:checked ~ #show {
    max-height: 100%;
  }

  .nav-links .drop-menu li {
    margin: 0;
  }

  .nav-links .drop-menu li a {
    font-size: 18px;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    font-size: 18px;
    color: var(--sec-color2);
    font-weight: 600;
    padding-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    color: var(--sec-color);
  }

  .mega-box {
    position: static;
    top: 65px;
    width: 100%;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-links li a {
    font-weight: 400;
    font-size: 18px;
  }

  .mega-box .content {
    background: #fff;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: rgba(0, 0, 0, 0.2);
  }

  .content .row img {
    display: none;
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0;
  }

  #links {
    margin-right: 0;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .mega-links li {
    margin: -10px;
  }

  .content .row header {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .top-info {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  nav .wrapper {
    padding: 0 15px;
  }

  .top-bar {
    display: none;
  }

  nav {
    top: 0;
  }
}

.wrapper input {
  display: none;
}
/*End of navbar css*/

/*============== Hero Image Section =============*/
.hero-image {
  position: relative;
  height: 420px;
  background-size: cover;
}

#hero-image {
  position: relative;
  height: 100px;
  background-size: cover;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  background: rgba(0, 0, 0, 0.5);
}

/*============= Breadcrumb ============= */
section {
  background: var(--sec-color);
  width: 100%;
}

.breadcrumb {
  padding: 3px 30px 3.5px 30px;
  list-style: none;
  width: 1250px;
  margin: auto;
  align-items: center;
}

.breadcrumb li {
  display: inline;
  font-size: 13px;
  font-weight: 450;
  text-transform: uppercase;
  color: var(--text-color);
}

.breadcrumb .fa {
  padding-right: 5px;
  color: var(--bdcrumbs-color);
}

.breadcrumb li + li:before {
  padding: 8px;
  color: var(--bdcrumbs-color);
  content: "\003E";
}

.breadcrumb li a {
  color: var(--bdcrumbs-color);
  text-decoration: none;
}

.breadcrumb li a:hover {
  color: var(--bdcrumbs-color);
  text-decoration: underline;
}

@media screen and (max-width: 1600px) {
  .hero-image {
    position: relative;
    height: 360px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 360px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 1500px) {
  .hero-image {
    position: relative;
    height: 320px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 320px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 1200px) {
  .hero-image {
    position: relative;
    height: 240px;
    background-size: cover;
  }

  .hero-image img {
    width: 100%;
    height: 240px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: rgba(0, 0, 0, 0.08);
  }
}

@media screen and (max-width: 768px) {
  .hero-image {
    padding-top: 32px;
    height: 180px;
  }

  .hero-image img {
    height: 180px;
  }

  .overlay {
    padding-top: 212px;
    height: 180px;
  }

  .breadcrumb {
    width: auto;
    padding-top: 32px;
  }
}

@media screen and (max-width: 425px) {
  .hero-image {
    padding-top: 50px;
    height: 100px;
  }

  .hero-image img {
    height: 100px;
  }

  .overlay {
    padding-top: 150px;
    height: 100px;
  }

  .breadcrumb {
    padding-top: 65px;
  }

  .breadcrumb li {
    display: none;
  }
}

/*============== To-top button ================*/
#topBtn {
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  background: var(--sec-color);
  color: var(--sec-color2);
  border: none;
  cursor: pointer;
  display: none;
  transition: 0.3s ease;
}

#topBtn:hover {
  background: var(--hover-color);
}

/*============== cookie-container ================*/
.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #151515;
  color: #f5f6fa;
  padding: 10px 30px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  z-index: 600;
  transition: 400ms;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: var(--sec-color);
}

.cookie-container p {
  font-size: 14px;
  margin-top: 10px;
}

.cookie-btn {
  background: var(--sec-color);
  border: 0;
  color: var(--sec-color2);
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: var(--hover-color);
}

.cookie-btn:after {
  color: var(--sec-color2);
  content: "\2713";
}

/*============== Main Content ===============*/
main {
  width: 100%;
  background: #fff;
}

article {
  max-width: 1250px;
  margin: auto;
  padding: 30px;
}

.intro-info {
  width: 72%;
  float: left;
  padding-bottom: 100px;
}

.intro-info p {
  color: var(--text-color);
  font-size: 17px;
}

.intro-info h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
  padding-bottom: 20px;
}

.intro-info h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.intro-info h2 {
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  padding-top: 30px;
}

.intro-info h3 {
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
}

.intro-info .centre-header {
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
  text-align: center;
  padding-top: 30px;
}

.intro-info .explanation p {
  padding-bottom: 30px;
}

.intro-info .artwork {
  width: auto;
  padding-bottom: 30px;
}

.intro-info .artwork img {
  width: 100%;
}

.intro-info .explanation h3 {
  padding-bottom: 10px;
  font-weight: 600;
}

.intro-info .personality-img {
  width: 300px;
  height: auto;
  float: left;
  margin-right: 25px;
  padding: 10px 0 15 0;
}

.intro-info .personality-img img {
  width: 100%;
  border-radius: 10px;
}

#units ul {
  line-height: 25px;
  color: var(--text-color);
  padding-left: 20px;
  padding-top: 15px;
  font-size: 17px;
}

#units ul li {
  padding-bottom: 10px;
}

.personality-social-media {
  display: flex;
  gap: 50px;
  padding-top: 20px;
}

.personality-social-media a span {
  height: 28px;
  width: 28px;
  background: var(--text-color);
  color: #f1f1f1;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.personality-social-media a {
  padding-right: 5px;
}

.personality-social-media .fa-facebook-f:hover {
  background: #3b5998;
  color: white;
}

.personality-social-media .fa-x-twitter:hover {
  background: #000;
  color: white;
}

.personality-social-media .fa-instagram:hover {
  background: radial-gradient(
    circle at 33% 100%,
    #fed373 4%,
    #f15245 30%,
    #d92e7f 62%,
    #9b36b7 85%,
    #515ecf
  );
  color: white;
}

.personality-social-media .fa-youtube:hover {
  background: #ff0000;
  color: white;
}

.roles ul {
  line-height: 28px;
  color: var(--text-color);
  padding-left: 40px;
  padding-top: 20px;
}

.roles ul li {
  list-style-position: outside;
  padding-bottom: 15px;
  font-size: 17px;
}

.bullets-points ul li {
  padding-top: 10px;
  line-height: 25px;
  font-size: 17px;
  color: var(--text-color);
}

.bullets-points ul {
  padding-left: 20px;
}

.scripture {
  padding: 30px 50px 30px 50px;
  font-size: 25px;
  font-family: "Gelasio", sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--text-color);
}

.intro-info a {
  text-decoration: underline;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.5s ease;
}

.intro-info a:hover {
  color: var(--sec-color);
}

.handbook-container {
  padding: 50px 20px;
}

/* ================== Video Section ==================== */
.video-ad video {
  height: auto;
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

@media screen and (max-width: 425px) {
  .video-ad video {
    border-radius: 5px;
  }
}

/*=================== History Section ===================*/
.main-history {
  margin-bottom: 60px;
}

.history {
  width: 64%;
  float: left;
  padding-bottom: 40px;
}

.history p {
  padding-top: 20px;
  color: var(--text-color);
  font-size: 17px;
}

.history h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.history h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.divider {
  width: 100px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

.share-container {
  display: flex;
  gap: 10px;
}

.share-content span {
  color: #7c7c7c;
  gap: 5px;
}

.history a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.history a:hover {
  color: var(--sec-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.history-container .aside {
  width: 33%;
  float: right;
  padding-top: 25px;
}

.mission-container {
  background: #f1f1f1;
  border-radius: 20px;
  border: 1px solid #c9c8c8;
  margin-top: 20px;
}

.mission {
  padding: 20px;
  color: var(--sec-color4);
}

.mission p {
  padding-top: 20px;
  font-size: 17px;
}

.mission li {
  font-size: 17px;
}

.mission ul {
  padding-left: 20px;
}

.mission h3 {
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 10px;
}

.mission h3::before {
  content: "";
  height: 28px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
}

.vision-container {
  background: #f1f1f1;
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid #c9c8c8;
}

.vision {
  padding: 20px;
  color: var(--sec-color4);
}

.vision p {
  padding-top: 20px;
  font-size: 17px;
}

.vision h3 {
  text-transform: uppercase;
  font-weight: 600;
}

.vision h3::before {
  content: "";
  height: 28px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
}

.faith {
  background: #f1f1f1;
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid #c9c8c8;
}

.faith h3 {
  padding: 20px;
  padding-left: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.faith h3::before {
  content: "";
  height: 28px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
}

.faith p {
  padding: 20px;
  padding-top: 5px;
  font-size: 17px;
}

.our-logo {
  margin-top: 20px;
  color: var(--sec-color4);
}

.our-logo .our-logo-container {
  display: flex;
  border-radius: 20px;
  background: #f1f1f1;
  gap: 20px;
  border: 1px solid #c9c8c8;
  align-items: center;
}

.our-logo .logo-info li {
  font-size: 17px;
  padding-bottom: 10px;
}

.our-logo .logo-info ul {
  padding: 0 20px 20px 40px;
}

.our-logo .logo-info h3 {
  padding: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.our-logo .logo-info h3::before {
  content: "";
  height: 28px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
}

.our-logo p {
  padding: 20px;
  padding-top: 5px;
  font-size: 17px;
  color: var(--sec-color4);
}

.our-logo .logo-div {
  width: 700px;
  padding: 10px;
}

.logo-div img {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .article {
    width: auto;
    margin: auto;
    padding-bottom: 0;
  }

  .history {
    width: 100%;
    margin: auto;
    padding-bottom: 0;
  }

  .faith {
    margin-top: 40px;
  }

  .our-logo .logo-div {
    width: 400px;
    padding: 10px;
  }

  .our-logo {
    width: auto;
  }
  .our-logo .our-logo-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .logo-div img {
    width: 100%;
    text-align: center;
  }

  .history-container .aside {
    width: 100%;
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .history-container .aside .grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 20px;
    justify-content: center;
    align-items: start;
  }
}

@media screen and (max-width: 425px) {
  main {
    width: 100%;
    justify-content: center;
  }

  article {
    margin: auto;
    width: auto;
    padding: 15px;
    padding-bottom: 50px;
  }

  .history {
    width: 100%;
    float: none;
    margin: 0 auto;
  }

  .history p,
  .mission p,
  .mission li,
  .vision p,
  .faith p,
  .our-logo p {
    font-size: calc(1rem + 0.9vw);
  }

  .our-logo {
    width: auto;
    margin-top: 20px;
  }

  .our-logo .logo-div {
    width: 100%;
    padding: 10px;
  }

  .vision-container {
    margin-top: 20px;
  }

  .message-container {
    margin-top: 5px;
  }

  .history-container .aside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    float: none;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .history-container .aside .grid {
    display: grid;
    grid-template-columns: repeat(1, auto);
    grid-gap: 5px;
    justify-content: center;
    align-items: start;
  }
}

/*==================== Services Section ==================*/
.line {
  text-align: center;
  justify-content: center;
  padding-top: 20px;
}

.intro-info .meetings {
  justify-content: center;
  padding-top: 20px;
  text-align: center;
}

.intro-info .special-events {
  padding-top: 10px;
}

.intro-info .special-events h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
  font-size: 25px;
  padding-top: 10px;
}

.intro-info .special-events .special {
  justify-content: center;
  text-align: center;
  padding-top: 30px;
}

.intro-info .special-events .special h3 {
  text-transform: uppercase;
  font-size: 22px;
  color: var(--text-color);
  font-weight: 500;
}

.intro-info .special-events .inline p {
  text-transform: uppercase;
  color: var(--text-color);
  font-size: 18px;
  display: inline;
  padding: 5px;
}

.intro-info .bold {
  font-weight: 600;
}

.intro-info .bttn {
  background-color: #f1f1f1;
  border: 1px solid #676767;
  padding: 2px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease;
}

.intro-info .bttn a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  color: #2b2b2b;
  font-weight: 400;
}

.intro-info .bttn:hover {
  background-color: #ddd;
}

.intro-info .bttn a:after {
  padding-left: 8px;
  font-size: 25px;
  color: #2b2b2b;
  content: "\2192";
}

.intro-info .know-us {
  text-align: center;
  padding-top: 40px;
}

.service-container .aside {
  width: 25%;
  float: right;
  padding-top: 25px;
  padding-bottom: 50px;
}

/*=================== Theme Section ====================*/
.intro-info .declaration p {
  font-size: 20px;
  padding-top: 20px;
  color: var(--text-color);
}

.intro-info .declaration h3 {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-color);
  font-size: 26px;
  padding-top: 40px;
}

.intro-info .declaration {
  text-align: center;
  padding-bottom: 30px;
}

.declaration sup {
  font-size: 16px;
}

.verses {
  line-height: 10px;
}

.scriptural-basis {
  justify-content: center;
  display: flex;
  gap: 150px;
  padding-bottom: 10px;
}

.declaration-verses {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  border-radius: 12px;
  margin-top: 30px;
  padding: 20px;
}

.declaration-verses .topic h3 {
  padding-top: 0;
  text-transform: uppercase;
  text-align: center;
}

.advert {
  position: relative;
}

.ad-image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-theme {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  height: 30;
  overflow: hidden;
  transition: 0.5s ease;
  opacity: 1;
  color: white;
  font-size: 16px;
  padding: 20px;
  text-align: center;
  text-transform: capitalize;
}

.overlay-theme p {
  padding-bottom: 10px;
}

.overlay-theme a {
  text-decoration: none;
  color: #434343;
  border: solid 1px #e2e2e2;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 16px;
  background: #e2e2e2;
  transition: all 0.4s ease;
}

.overlay-theme a:hover {
  background: none;
  color: #fff;
  border: solid 1px #fff;
}

/* ===================== Countdown =================== */
.countdown-main {
  width: 100%;
  background-image: url(/images/hero-image.jpg),
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
  background-blend-mode: overlay;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
}

.countdown-info {
  padding: 10px 0;
}

.countdown-container {
  max-width: 1250px;
  padding: 0 30px;
  margin: auto;
}

.countdown-main .countdown-container h2 {
  color: #ffff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.countdown-container .countdown-info {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.countdown-info .countdown-img {
  width: 450px;
}

.countdown-info .countdown-img img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ffff;
}

.countdown-container .countdown {
  display: flex;
  gap: 20px;
}

.countdown-container .countdown div {
  text-align: center;
  width: 120px;
  height: 120px;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.228);
  border: 5px solid;
  border-image: linear-gradient(to right bottom, #826f01, var(--sec-color));
  border-image-slice: 1;
  /* border-radius: 100px; */
}

.countdown-container .countdown div h3 {
  font-weight: 600;
  font-size: 42px;
  color: #ffff;
}

.countdown-container .countdown div h4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffff;
}

@media (max-width: 575px) {
  .countdown-main {
    width: auto;
  }

  .countdown-container {
    max-width: auto;
    padding: 20px 15px;
  }

  .countdown-info div {
    max-width: 100%;
  }

  .countdown-main .countdown-container h2 {
    font-size: 20px;
  }

  .countdown-container .countdown {
    display: flex;
    gap: 0;
  }

  .countdown-container .countdown div {
    width: 80px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  .countdown-container .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .countdown-container .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

/* ===================== 40 Days of Power =================== */
.power {
  width: 72%;
  float: left;
  padding-bottom: 100px;
}

.power {
  justify-content: center;
  align-items: center;
}

.power-text {
  padding: 20px 0 40px 0;
}

.power p {
  color: var(--text-color);
  padding-top: 20px;
}

.power h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.power h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.power h2 {
  font-weight: 600;
  color: var(--text-color);
  font-size: 20px;
  padding-top: 30px;
  text-transform: uppercase;
}

.power h3 {
  font-weight: 600;
  color: var(--text-color);
  padding-top: 20px;
  text-transform: uppercase;
}

.power h4 {
  font-weight: 600;
  color: var(--text-color);
}

.power .power-image {
  width: auto;
}

.power .power-image img {
  width: 100%;
}

.power .youtude-ad {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  height: 0;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.power .youtude-ad iframe {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.power .activities {
  line-height: 30px;
  color: var(--text-color);
  padding-top: 10px;
  padding-left: 20px;
}

.power #activities {
  line-height: 40px;
  color: var(--text-color);
  padding-left: 20px;
}

.power #a-tag {
  text-decoration: none;
  font-weight: 550;
  color: #0c3300;
  transition: all 0.3s ease;
}

.power .prayer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
}

.power .prayer-guide {
  width: 320px;
  margin-top: 30px;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  overflow: hidden;
}

.power .prayer-guide img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.power .prayer-guide:hover img {
  -webkit-transform: scale(1.1) rotate(0.02deg);
  transform: scale(1.1) rotate(0.02deg);
}

.power .prayer-guide-container {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.power .activities {
  line-height: 30px;
  color: var(--text-color);
  padding: 10px 0 0 30px;
}

.power #sec-act {
  padding-top: 10px;
}

.power .activities ul li {
  position: relative;
  list-style-type: none;
}

.power .activities ul li:before {
  content: "\27A4";
  color: var(--bdcrumbs-color);
  position: absolute;
  font-weight: 500;
  left: -30px;
  font-size: 20px;
}

.power .act-social-media {
  padding-top: 20px;
  justify-content: center;
}

.power .act-social-media span {
  padding-left: 10px;
}

.power .act-social-media span a {
  text-decoration: none;
  height: 28px;
  width: 28px;
  background: var(--text-color);
  color: #f1f1f1;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.power .fa-facebook:hover {
  background: #3b5998;
  color: #ffff;
}

.power .fa-youtube:hover {
  background: #bb0000;
  color: white;
}

.power #activities {
  line-height: 40px;
  color: var(--text-color);
  padding-left: 20px;
}

.power #sm {
  padding-top: 0;
}

.power .myICGC-app {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 40px 0 20px 0;
  justify-content: center;
  align-items: center;
}

.power .app-images {
  width: 200px;
}

.power .app-images img {
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.power .app-images img:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media screen and (max-width: 1024px) {
  .power .prayer-guide-container {
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }

  article {
    margin: auto;
    width: auto;
    padding: 15px 15px 50px 15px;
  }

  .power {
    width: auto;
    padding-bottom: 0;
  }

  .power .prayer-guides-container {
    width: 75%;
  }

  .power .download {
    width: auto;
  }

  .power .key-info-image {
    width: 390px;
    height: auto;
    padding: 10px;
  }

  .power .prayer-guide-container {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .power .prayer-schdule-image {
    width: 400px;
  }
}

@media screen and (max-width: 425px) {
  .power .prayer-guide-container {
    padding-top: 50px;
    width: 100%;
  }

  .power .prayer-guide {
    width: auto;
  }

  .power #activities {
    line-height: 25px;
    color: var(--text-color);
    padding-left: 20px;
  }

  .power #activities li {
    padding-bottom: 10px;
  }

  .power .icgcfmt-fresh-satrt {
    width: auto;
  }

  .power .icgcfmt-fresh-satrt img {
    width: 100%;
  }

  .power .myICGC-app {
    gap: 30px;
  }
}

/* ===================== Fresh Start =================== */
.activities {
  line-height: 30px;
  color: var(--text-color);
  padding: 10px 0 0 30px;
}

.fresh-start-text p {
  padding-top: 20px;
}

.intro-info .fresh-start-image {
  width: auto;
}

.intro-info .fresh-start-image img {
  width: 100%;
  border-radius: 10px;
}

#sec-act {
  padding-top: 10px;
}

.prayer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.activities ul li {
  position: relative;
  list-style-type: none;
}

.activities ul li:before {
  content: "\27A4";
  color: var(--sec-color);
  position: absolute;
  font-weight: 500;
  left: -30px;
  font-size: 20px;
}

.act-social-media {
  padding-top: 20px;
  justify-content: center;
}

.act-social-media span {
  padding-left: 10px;
}

.act-social-media span a {
  text-decoration: none;
  height: 28px;
  width: 28px;
  background: var(--text-color);
  color: #f1f1f1;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.act-social-media .fa-facebook-f:hover {
  background: #3b5998;
  color: #ffff;
}

.act-social-media .fa-youtube:hover {
  background: #bb0000;
  color: white;
}

#activities {
  line-height: 40px;
  color: var(--text-color);
  padding-left: 20px;
}

#sm {
  padding-top: 0;
}

#a-tag {
  text-decoration: none;
  font-weight: 550;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

#a-tag:hover {
  color: var(--sec-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.prayer-guide {
  width: 320px;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.prayer-guide img {
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #cdcdcd;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;

  transition: 0.5s;
}

.prayer-guide:hover img {
  transform: scale(1.1);
}

.icgcfmt-fresh-satrt {
  width: 600px;
  margin-top: 80px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  transition: 0.5s;
}

.icgcfmt-fresh-satrt img {
  width: 100%;
}

.myICGC-app {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding-top: 50px;
  /* justify-content: center; */
  align-items: center;
}

.app-images {
  width: 220px;
}

.app-images img {
  width: 100%;
}

.app-images img:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transition: all 0.3s ease;
}

/*================= Events Section ==================*/
.events-container {
  width: auto;
  margin: auto;
}

.event-card {
  display: flex;
  flex-direction: row;
  background-color: #f1f1f1;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
  margin-top: 30px;
}

.event-image {
  height: auto;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.event-content {
  padding: 20px 30px;
  display: flex;
  max-width: 70%;
  flex-direction: column;
  justify-content: center;
  color: var(--sec-color4);
}

.event-content h2 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}

.event-content p {
  margin: 10px 0 30px 0;
}

.ev-text {
  text-transform: capitalize;
}

.ic-tx {
  padding: 2px 15px 2px 15px;
}

.event-detail,
.icons-text {
  display: flex;
  align-items: center;
}

.icons-text {
  margin-right: 24px;
  background-color: rgb(211, 211, 211);
  border-radius: 60px;
}

.icons-text .icons {
  margin-right: 5px;
  color: var(--bdcrumbs-color);
}

.pagination {
  padding-top: 40px;
}

.pages {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pages .fa {
  color: var(--text-color);
}

.pages a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--sec-color4);
}

.page-text {
  background: #e3e3e3;
  border-radius: 50%;
  color: #6e6e6e;
  line-height: 40px;
  margin: 5px;
  text-align: center;
  width: 40px;
}

#active {
  background: var(--bdcrumbs-color);
  color: #fff;
}

#active:hover {
  text-decoration: none;
}

#inactive:hover {
  background: var(--bdcrumbs-color);
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
  .ad-image img {
    width: auto;
  }

  .event-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .event-card {
    display: flex;
    flex-direction: column;
  }

  .event-image {
    height: auto;
    overflow: hidden;
  }

  .event-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
  }

  .ad {
    display: block;
    gap: 20px;
  }

  .ad-image {
    width: 100%;
    height: auto;
  }
}

/* ================= Handbook ================ */
.handbook {
  width: 300px;
  overflow: hidden;
  border: 1px solid #cdcdcd;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.handbook img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.handbook:hover img {
  -webkit-transform: scale(1.1) rotate(0.01deg);
  transform: scale(1.1) rotate(0.01deg);
}

.share-container {
  display: flex;
  gap: 10px;
}

.share-content span {
  color: #7c7c7c;
  gap: 5px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.card-container {
  padding: 10px;
}

.card {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 220px;
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  transition: 0.4s;
}

.card:hover .card-img img {
  transform: scale(1.2, 1.2);
}

.card-content {
  height: 40px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: absolute;
  bottom: 0;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.6);
}

.card:hover .card-content {
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
}

.card-info {
  transition: all 0.5s;
  padding: 5px 20px 5px 20px;
}

.card-info h3 {
  font-size: 16px;
  color: #000;
  margin: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.card:hover .card-info h3 {
  color: var(--sec-color);
  font-weight: 500;
}

.card-info p {
  color: #fff;
  padding-top: 30px;
  transition: all 0.3s;
}

.card:hover .card-info p {
  padding-top: 0;
}

.divider {
  width: 100px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

.underline {
  width: 150px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

#centreline {
  text-align: center;
}

.email-text a {
  font-size: 15px;
  text-decoration: none;
  padding-left: 5px;
  color: var(--text-color);
}

.innerpage-email {
  padding-top: 10px;
}

.innerpage-email .fa {
  color: var(--text-color);
  font-size: 18px;
}

.email-text a:hover {
  color: #000;
  transition: all 0.15s ease;
}

.innerpage-img {
  padding-top: 30px;
}

.innerpage-img img {
  width: 100%;
  height: auto;
}

.contact-list,
.units {
  margin-top: 20px;
  color: var(--text-color);
  margin-left: 20px;
}

/*=================== Announcement ========================  */
.notice {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 20px;
}

.notice .notice-board-heard h2 {
  font-weight: 500;
  font-size: 22px;
  padding-top: 0;
  color: var(--sec-color4);
  text-transform: uppercase;
}

.notice h3 {
  font-weight: 500;
  color: var(--sec-color4);
  text-transform: uppercase;
}

.notice .weekly {
  line-height: 30px;
  color: var(--text-color);
}

.notice .special-bullets,
.notice .weekly ol {
  padding-left: 20px;
}

.notice .bullets,
.notice .saturday ul {
  padding-left: 20px;
}

.notice #central {
  text-align: center;
}

.notice .central a {
  text-decoration: none;
  font-weight: 550;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.notice .central a:hover {
  color: var(--sec-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.notice .notice-board-heard {
  text-align: center;
}

.notice .divider {
  width: 200px;
  height: 3px;
  background-color: var(--sec-color);
  display: inline-block;
  border-radius: 50%;
}

.notice .line {
  text-align: center;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 0;
}

/*=================== Image Card Sectin ===================  */
.intro-info .img-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  padding-top: 20px;
}

.intro-info .img-card-container .img-card {
  width: 260px;
  padding: 20px 15px;
  border-radius: 20px;
  background: #f1f1f1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.img-card-container .img-card .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.img-card-container .img-card .content .image {
  width: 220px;
  height: 220px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.img-card-container .img-card .content .image img {
  position: relative;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-card-container .img-card .content .text h3 {
  color: var(--sec-color4);
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  font-size: 16px;
}

.img-card-container .img-card .content .text h4 {
  color: var(--sec-color4);
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .intro-info .img-card-container .img-card {
    width: 320px;
  }

  .img-card-container .img-card .content .image {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 425px) {
  .intro-info .img-card-container .img-card {
    width: 90%;
  }

  .img-card-container .img-card .content .image {
    width: 90%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
}

/* =================== Sermon Section ================ */
.sermons-info {
  width: 72%;
  float: left;
  padding-bottom: 100px;
}

.sermons-info p {
  color: var(--sec-color4);
  font-size: 16px;
}

.sermons-info h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.sermons-info h2 {
  font-weight: 500;
  font-size: 28px;
  color: var(--text-color);
  text-align: center;
  padding-top: 30px;
}

.sermons-info h3 {
  font-weight: 500;
  color: var(--sec-color4);
  text-transform: uppercase;
}

.sermons-info h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.sermons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.audio-player-card {
  position: relative;
  width: 400px;
  background-color: #f1f1f1;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 15px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.video-player-card {
  position: relative;
  background-color: #f1f1f1;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 15px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.video-player-card video {
  width: 800px;
}

.audio-player-card audio {
  width: 100%;
  outline: none;
}

.player-img {
  position: relative;
  width: 100%;
  height: 350px;
}

.player-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#player-title {
  font-size: 16px;
  padding-bottom: 20px;
}

#sermon-link a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease;
}

#sermon-link a:hover {
  color: var(--sec-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

@media screen and (max-width: 996px) {
  .audio-player-card {
    width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .sermons-info {
    width: 100%;
  }

  .audio-player-card {
    width: 320px;
  }
}

@media screen and (max-width: 425px) {
  .sermons-info {
    width: 100%;
    padding: 15px 0 50px 0;
  }

  .sermons-blog-card {
    width: auto;
  }

  .audio-player-card {
    width: 400px;
  }

  .sermons-info h2 {
    font-weight: 500;
    font-size: 24px;
  }
}

/* ================== News Blog ================== */
.news-info {
  width: 72%;
  float: left;
  padding-bottom: 100px;
}

.news-info p {
  color: var(--sec-color4);
  font-size: 17px;
}

.news-info h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.news-info h2 {
  font-weight: 500;
  font-size: 28px;
  color: var(--text-color);
  text-align: center;
  padding-top: 30px;
}

.news-info h3 {
  font-weight: 500;
  color: var(--sec-color4);
  text-transform: uppercase;
}

.news-info h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.news-info .news-blog .news-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-info .news-blog .news-blog-container {
  display: flex;
  flex-wrap: wrap;
}

.news-info .news-blog .news-blog-card {
  width: 360px;
  background-color: #f1f1f1;
  border: 1px solid #d4d4d4;
  margin: 20px;
  border-radius: 15px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  transition: all 0.3s ease;
}

.news-info .news-blog .news-blog-card:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.news-info .news-blog .news-blog-img {
  width: 100%;
  height: auto;
}

.news-info .news-blog .news-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px 15px 0 0;
}

.news-info .news-blog .news-blog-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.news-info .news-blog .news-blog-text span {
  color: var(--bdcrumbs-color);
  font-size: 14px;
}

.news-info .news-blog .news-blog-text a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #353535;
  padding-top: 10px;
}

.news-info .news-blog .news-blog-text a:hover {
  color: var(--sec-color);
  transition: all ease 0.3s;
}

.news-info .news-blog .news-blog-text p {
  color: var(--text-color);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0;
}

.news-info .news-blog #read-more {
  text-decoration: none;
  color: var(--sec-color4);
  font-size: 16px;
  transition: all ease 0.3s;
}

.news-info .news-blog #read-more:hover {
  color: var(--sec-color);
}

.news-info .underline {
  width: 150px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

.news-info #line {
  text-align: center;
}

.news-info .featured-article .art-underline {
  width: 100%;
  height: 3px;
  background-color: var(--bdcrumbs-color);
  display: inline-block;
  transform: translateY(-10px);
}

.news-info .featured-article {
  padding: 30px 0 20px 0;
  width: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-info .featured-article #art-header {
  color: #fff;
  background-color: var(--bdcrumbs-color);
  text-transform: uppercase;
  padding: 8px;
}

.news-info .featured-article .featured-article-image {
  width: 400px;
  height: auto;
}

.news-info .featured-article .featured-article-image img {
  width: 100%;
  height: auto;
}

.news-info .featured-article .featured-article-card {
  padding-top: 20px;
  display: flex;
  flex-wrap: nowrap;
}

.news-info .featured-article .featured-article-content {
  padding: 0 25px;
}

.news-info .featured-article .featured-article-heading a {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
  text-decoration: none;
}

.news-info .featured-article .post-content {
  padding: 5px 0;
  color: var(--text-color);
}

.post-content span {
  font-size: 15px;
  padding-right: 20px;
}

.news-info .featured-article .featured-article-card p {
  font-size: 16px;
  color: #858585;
}

.news-info .featured-article .featured-article-card p a {
  text-decoration: none;
  color: var(--bdcrumbs-color);
}

.news-info .featured-article .featured-article-heading a:hover,
.news-info .featured-article .featured-article-card p a:hover {
  color: var(--sec-color);
  transition: all ease 0.3s;
}

@media screen and (max-width: 1142px) {
  .news-info .news-blog .news-blog-card {
    width: 300px;
  }
}

@media screen and (max-width: 1004px) {
  .news-info .news-blog .news-blog-card {
    width: 350px;
  }
}

@media screen and (max-width: 768px) {
  .news-info {
    width: 100%;
  }

  .news-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .news-info .news-blog .news-blog-container {
    width: auto;
    justify-content: center;
    align-items: center;
  }

  .news-info .news-blog .news-blog-card {
    width: 320px;
  }

  .news-info .featured-article-heading a {
    font-size: 18px;
  }

  .news-info .featured-article-card p {
    font-size: 14px;
  }

  .news-info .post-content span {
    font-size: 14px;
  }

  .news-info .underline {
    width: 100px;
    height: 2px;
    background-color: #969696;
    display: inline-block;
  }

  .news-info #line {
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  .news-info {
    width: 100%;
  }

  .news-info .news-blog .news-blog-card {
    width: auto;
    margin: 10px 10px 30px 10px;
  }

  .news-info .featured-article {
    padding: 20px 0;
  }

  .news-info .featured-article-image {
    width: 250px;
    height: auto;
  }

  .news-info .featured-article-content {
    padding: 0 15px;
  }

  .news-info .featured-article-heading a {
    font-size: 15px;
  }

  .featured-article .featured-article-content .post-content #author {
    display: none;
  }

  .news-info .featured-article-card p {
    display: none;
  }

  .notice {
    padding: 15px;
  }

  .news-info h2 {
    font-weight: 500;
    font-size: 24px;
  }

  .news-info .underline {
    width: 50px;
    height: 2px;
    background-color: #969696;
    display: inline-block;
  }

  .news-info #line {
    text-align: center;
  }
}

/* ================ Download Section =================== */
.downloads-container {
  max-width: 1250px;
  margin: auto;
  padding: 30px;
  text-align: center;
}

.downloads-container .heading h1 {
  font-size: 70px;
  color: var(--text-color);
  padding: 30px 0;
}

.downloads-container .heading p {
  font-size: 50px;
  color: var(--text-color);
  line-height: 1.2;
  padding-bottom: 50px;
}

.downloads-info .downloads-image {
  width: 60%;
  text-align: center;
  margin: auto;
}

.downloads-info .downloads-image img {
  width: 100%;
}

.downloads-container .footing h2 {
  font-size: 40px;
  color: var(--text-color);
  padding: 30px 0;
}

.downloads-container .buttons {
  text-align: center;
}

.downloads-container .buttons-items {
  padding: 30px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.downloads-container .bttn {
  background-color: #f1f1f1;
  border-radius: 30px;
  border: 1px solid #676767;
}

.downloads-container .bttn:hover {
  background-color: #ddd;
  transition: 0.3s ease;
}

.downloads-container .bttn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 16px;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
}

.downloads-container .bttn i {
  padding-right: 5px;
  color: #000;
}

.downloads-container .bttn-info {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .downloads-container {
    margin: auto;
    width: auto;
    padding-bottom: 30px;
  }

  .downloads-container .heading h1 {
    font-size: 55px;
  }

  .downloads-container .heading p {
    font-size: 40px;
    padding-bottom: 30px;
  }

  .downloads-info .downloads-image {
    width: auto;
    padding-top: 50px;
  }

  .downloads-info .downloads-image img {
    width: 80%;
  }

  .downloads-container .footing h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 425px) {
  .downloads-container {
    margin: auto;
    width: auto;
    padding: 15px 15px 50px 15px;
  }

  .downloads-container .heading h1 {
    font-size: calc(1.8rem + 1.4vw);
  }

  .downloads-container .heading p {
    font-size: calc(1.6rem + 1.2vw);
  }

  .downloads-container .footing h2 {
    font-size: calc(1.4rem + 1vw);
    padding: 20px 0 10px 0;
  }

  .downloads-container .buttons-items {
    display: inline-block;
    justify-content: center;
    padding-top: 10px;
  }

  .downloads-container .bttn-info {
    text-align: center;
    padding-top: 20px;
  }
}

/* =================== Reach Us ====================== */
.reach-us h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.reach-us h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.reach-us .aside {
  width: 30%;
  float: left;
  padding-bottom: 20px;
  align-content: center;
}

.reach-us .aside .side-contacts {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  border-radius: 12px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 5px;
}

.reach-us .side-contacts .side-contacts-info {
  padding-bottom: 10px;
}

.reach-us .side-contacts .side-contacts-info a {
  text-decoration: none;
  color: #818181;
}

.reach-us .side-contacts .side-contacts-info .fas {
  color: #474747;
}

.reach-us .side-contacts .side-contacts-info a:hover {
  color: var(--sec-color);
  transition: all 0.3s ease;
}

#reach-us-info .side-contacts .side-contacts-info {
  padding-top: 15px;
}

.reach-us .side-contacts .side-contacts-info p {
  color: #818181;
}

.side-contacts .side-contacts-info .reach-us-header {
  padding-bottom: 5px;
}

.iconify {
  font-size: 20px;
  transform: translateY(20%);
  color: #474747;
}

.reach-us .reach-us-text {
  text-transform: uppercase;
  font-weight: 450;
  color: #474747;
  padding-left: 10px;
  font-size: 18px;
}

.reach-us hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #d4d3d3;
  margin: 20px 0 20px 0;
}

.reach-us .reach-us-form {
  width: 68%;
  float: right;
  padding: 20px 0 40px 0;
}

.reach-us .reach-us-form p {
  padding: 10px 30px 0 30px;
  color: var(--text-color);
  text-align: center;
}

.reach-us .reach-us-form h2 {
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  font-size: 30px;
}

.reach-us .reach-us-form .underline {
  width: 100px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

.reach-us .reach-us-form #line {
  text-align: center;
}

.reach-us .reach-us-form form {
  margin: 35px 30px;
}

.reach-us .reach-us-form form.disabled {
  pointer-events: none;
  opacity: 0.7;
}

.reach-us .reach-us-form form .main-field {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}

.reach-us .reach-us-form form .main-field .field {
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}

.reach-us .reach-us-form form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #c5c5c5;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

.reach-us .reach-us-form form .field input,
.reach-us .reach-us-form form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #b6b6b6;
}

.reach-us .reach-us-form form .field input:hover,
.reach-us .reach-us-form form .message textarea:hover {
  border: 1px solid var(--sec-color);
}

.reach-us .reach-us-form form .field input::placeholder,
.reach-us .reach-us-form form .message textarea::placeholder {
  color: #c5c5c5;
}

.reach-us .reach-us-form form .field input:focus,
.reach-us .reach-us-form form .message textarea:focus {
  padding-left: 47px;
  border: 2px solid var(--sec-color);
}

.reach-us .reach-us-form form .field input:focus ~ i,
.reach-us .reach-us-form form .message textarea:focus ~ i {
  color: var(--sec-color);
}

.reach-us .reach-us-form form .message {
  position: relative;
}

.reach-us .reach-us-form form .message i {
  top: 30px;
  font-size: 20px;
}

.reach-us .reach-us-form form .message textarea {
  min-height: 130px;
  height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}

.reach-us .reach-us-form form .message textarea::-webkit-scrollbar {
  width: 0px;
}

.reach-us .reach-us-form .message textarea:focus {
  padding-top: 14px;
}

.reach-us .reach-us-form form .button-area {
  margin: 25px 0;
  display: flex;
  align-items: center;
}

.reach-us .reach-us-form .g-recaptcha {
  padding-top: 20px;
}

.reach-us .reach-us-form .button-area button {
  color: var(--sec-color4);
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50px;
  padding: 13px 25px;
  background: var(--sec-color);
  transition: background 0.3s ease;
}

.reach-us .reach-us-form .button-area button:hover {
  background: #a08906;
  color: #fff;
}

.reach-us .reach-us-form .button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

.reach-us .reach-us-form .button-area .fa {
  position: relative;
  color: var(--text-color);
  left: -9px;
  transform: translateY(0px);
}

.reach-us .reach-us-form .googleMapBox {
  padding: 20px 20px;
  width: 800px;
  height: 500px;
  margin: auto;
}

.reach-us .reach-us-form .googleMapBox iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .reach-us .reach-us-form {
    width: 62%;
  }

  .reach-us .aside {
    width: 35%;
  }

  .reach-us .reach-us-form .googleMapBox {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .reach-us {
    width: 100%;
  }

  .reach-us .reach-us-form {
    width: 100%;
    padding-bottom: 50px;
  }

  .reach-us .reach-us-form .googleMapBox {
    width: 100%;
    padding-bottom: 40px;
  }

  .reach-us .aside {
    width: 100%;
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .reach-us .reach-us-form header {
    text-align: center;
  }

  .reach-us .reach-us-form form {
    margin: 35px 20px;
  }

  .reach-us .reach-us-form form .main-field {
    flex-direction: column;
    margin-bottom: 0px;
  }

  .reach-us .reach-us-form form .main-field .field {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }

  .reach-us .reach-us-form form .message textarea {
    resize: none;
  }

  .reach-us .reach-us-form form .button-area {
    margin-top: 20px;
    flex-direction: column;
  }

  .reach-us .reach-us-form .button-area button {
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }

  .reach-us .reach-us-form .button-area span {
    margin: 20px 0 0;
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  .reach-us .reach-us-form {
    width: 100%;
  }

  .reach-us .reach-us-form form {
    margin: 30px 10px;
  }

  .reach-us .reach-us-form h2 {
    font-weight: 500;
    font-size: calc(1.4rem + 1vw);
  }

  .reach-us .aside {
    width: 100%;
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
  }
}

/* ==================== Connect Card Form ====================== */
.connect-form {
  width: 80%;
  padding: 20px 0 40px 0;
  margin: auto;
}

.connect-form p {
  padding: 10px 30px 0 30px;
  color: var(--text-color);
  text-align: center;
}

.connect-form h2 {
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  font-size: 30px;
}

.connect-form .share-container {
  display: flex;
  gap: 10px;
}

.connect-form .share-content span {
  color: #7c7c7c;
  gap: 5px;
}

.connect-form #a-tag {
  text-decoration: none;
  font-weight: 550;
  color: var(--sec-color4);
  transition: all 0.3s ease;
}

.connect-form #a-tag:hover {
  color: var(--sec-color);
  text-decoration: underline;
}

.connect-form .underline {
  width: 100px;
  height: 2px;
  background-color: #969696;
  display: inline-block;
}

.connect-form #line {
  text-align: center;
}

.connect-form form {
  margin: 35px 30px;
  padding: 30px 0 50px 0;
  margin: auto;
}

.connect-form form input[type="tel"],
.connect-form form input[type="text"],
.connect-form form select,
.connect-form form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #b6b6b6;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  resize: vertical;
}

.connect-form form input[type="tel"]:hover,
.connect-form form input[type="text"]:hover,
.connect-form select:hover,
.connect-form textarea:hover {
  border: 1px solid var(--sec-color);
}

.connect-form form input[type="tel"]::placeholder,
.connect-form form input[type="text"]::placeholder,
textarea::placeholder {
  color: #c5c5c5;
}

.connect-form form input[type="tel"],
.connect-form form input[type="text"],
select {
  margin-bottom: 25px;
}

.connect-form form input[type="checkbox"] {
  margin: 10px 8px 30px 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 2.5px;
  transform: translateY(3.2px);
}

.connect-form form .main-label {
  font-weight: 550;
  color: var(--text-color);
}

.connect-form form .label {
  color: var(--text-color);
}

.connect-form form .main-field {
  display: flex;
  justify-content: space-between;
}

.connect-form form .main-field .field {
  position: relative;
  width: calc(100% / 2 - 13px);
}

.connect-form form input[type="submit"] {
  background-color: var(--sec-color);
  color: var(--sec-color4);
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.connect-form form input[type="submit"]:hover {
  background-color: #a08906;
}

.connect-form form #others {
  display: none;
}

.connect-form form .main-field-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.connect-form form .main-radio-field-wrapper {
  align-items: center;
  padding-top: 10px;
}

.connect-form form input[type="radio"] {
  margin: 0;
  font: inherit;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  transform: translateY(3.2px);
  border-radius: 50%;
}

.connect-form form .main-radio-field-wrapper input[type="radio"] {
  margin-right: 10px;
}

.connect-form form .main-field-wrapper > .field {
  flex: 0 0 33%;
}

.connect-form form .submit {
  color: var(--sec-color4);
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 15px 27px;
  border-radius: 50px;
  background: var(--sec-color);
  transition: 0.3s ease;
}

.connect-form form .submit:hover {
  background: #a08906;
  color: #fff;
}

.connect-form form .reset {
  color: var(--sec-color4);
  background: transparent;
  border: 2px solid var(--sec-color4) !important;
  padding: 12px 20px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.connect-form form .reset:hover {
  background-color: var(--sec-color4);
  color: #fff;
}

.connect-form form input[type="tel"] input[type="text"]:focus,
.connect-form form form textarea:focus {
  border: 1px solid var(--sec-color) !important;
}

@media screen and (max-width: 768px) {
  .connect-form {
    width: auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .connect-form form .main-field {
    display: block;
    margin-bottom: 20px;
  }

  .connect-form form .main-field .field {
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
  }

  .connect-form .decision {
    padding-top: 20px;
  }
  .connect-form .address {
    margin-top: 20px;
  }

  .connect-form form .address {
    padding-top: 40px;
  }

  .connect-form form .field-label {
    padding-top: 20px;
  }

  .connect-form form #selection {
    padding-top: 40px;
  }

  .connect-form form .message textarea {
    resize: none;
  }

  .connect-form .reset {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 425px) {
  .connect-form form {
    margin: 10px 30px;
    margin: auto;
  }

  .connect-form {
    width: 100%;
    padding: 0 10px;
  }

  .connect-form form #selection {
    padding-top: 40px;
  }

  .connect-form p {
    padding: 10px 0;
  }

  .connect-form h2 {
    font-weight: 500;
    font-size: 25px;
  }

  .connect-form form .main-field-wrapper {
    display: block;
  }
}

/* ==================== Submission Successful ==================== */
.thank-you {
  width: 75%;
  padding: 30px 0 100px 0;
  margin: auto;
}

.thank-you p {
  padding: 10px 30px 0 30px;
  color: #4b4b4b;
  text-align: center;
}

.thank-you h1 {
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
  font-size: 45px;
  line-height: 1.3;
}

.thank-you h2 {
  font-weight: 400;
  color: #4b4b4b;
  text-align: center;
  font-size: 22px;
}

.thank-you-image {
  text-align: center;
  padding: 20px 0;
}

.thank-you-image img {
  width: 200px;
}

.thank-you .buttons {
  text-align: center;
}

.thank-you .buttons-items {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.thank-you .bttn {
  background-color: #f1f1f1;
  border-radius: 30px;
  border: 1px solid #676767;
}

.thank-you .bttn:hover {
  background-color: #ddd;
  transition: 0.3s ease;
}

.thank-you .bttn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 16px;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
}

.thank-you .bttn i {
  padding-right: 5px;
  color: #000;
}

.thank-you .bttn-info {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .thank-you {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .thank-you {
    width: auto;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 425px) {
  .thank-you {
    width: 100%;
  }

  .thank-you h1 {
    font-weight: 500;
    color: #4b4b4b;
    text-align: center;
    font-size: calc(1.9rem + 1.4vw);
  }

  .thank-you h2 {
    font-weight: 500;
    font-size: 18px;
  }

  .thank-you .buttons-items {
    display: inline-block;
    justify-content: center;
    padding-top: 10px;
  }

  .thank-you .bttn-info {
    text-align: center;
    padding-top: 20px;
  }
}

/* ==================== Main Gallery Cards ===================== */
.gallery-info {
  width: auto;
  padding-bottom: 30px;
}

.gallery-info p {
  padding-top: 20px;
  color: var(--text-color);
  text-align: center;
}

.gallery-info h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-color);
}

.gallery-info h1::before {
  content: "";
  height: 25px;
  width: 4px;
  background: var(--sec-color);
  float: left;
  margin-right: 15px;
  transform: translateY(5px);
}

.gallery-info .main-container .container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  gap: 30px;
  justify-content: center;
}

.gallery-info .main-container .container .card-container {
  padding: 0;
}

.gallery-info .main-container .container .card-container .card {
  position: relative;
  overflow: hidden;
  width: 270px;
  height: 160px;
}

.gallery-info .main-container .container .card-container .card .card-img {
  position: relative;
  overflow: hidden;
}

.gallery-info .main-container .container .card-container .card .card-img img {
  width: 100%;
  transition: 0.4s;
}

.gallery-info
  .main-container
  .container
  .card-container
  .card:hover
  .card-img
  img {
  transform: scale(1.2, 1.2);
}

.gallery-info .main-container .container .card-container .card .card-content {
  height: 40px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: absolute;
  bottom: 0;
  transition: all 0.4s;
  background: rgba(255, 255, 255, 0.6);
}

.gallery-info .main-container .container .card-container .card #card-content {
  height: 65px;
}

.gallery-info
  .main-container
  .container
  .card-container
  .card:hover
  .card-content {
  height: 75px;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-info
  .main-container
  .container
  .card-container
  #card:hover
  .card-content {
  height: 95px;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-info .main-container .container .card-container .card .card-info {
  transition: all 0.5s;
  padding: 5px 20px 5px 20px;
}

.gallery-info .main-container .container .card-container .card .card-info h3 {
  font-size: 15px;
  color: #000;
  margin: 5px;
  text-transform: uppercase;
  font-weight: 510;
  padding-top: 0;
}

.gallery-info
  .main-container
  .container
  .card-container
  .card:hover
  .card-info
  h3 {
  color: var(--sec-color);
  font-weight: 500;
}

.gallery-info .main-container .container .card-container .card .card-info p {
  color: #fff;
  padding-top: 0;
  transition: all 0.3s;
}

.gallery-info #fb-redirect {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.gallery-info #fb-redirect:hover {
  color: var(--sec-color);
  text-decoration: underline;
}

/* .pagination {
  padding: 30px 0;
}

.pages {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pages .fa {
  color: var(--text-color);
}

.pages a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--sec-color4);
}

.page-text {
  background: #e3e3e3;
  border-radius: 50%;
  color: #6e6e6e;
  line-height: 40px;
  margin: 5px;
  text-align: center;
  width: 40px;
}

#active {
  background: #054a06;
  color: #fff;
}

#inactive:hover {
  background: #054a06;
  color: #fff;
  transition: all 0.5s ease;
}

.bttn {
  background-color: #f1f1f1;
  border-radius: 30px;
  border: 1px solid #676767;
}

.bttn:hover {
  background-color: #ddd;
  transition: 0.3s ease;
}

.bttn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 16px;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
}

.prev-page {
  padding-bottom: 30px;
  text-align: center;
} */

@media screen and (max-width: 768px) {
  .gallery-info {
    width: auto;
    padding-bottom: 0;
  }

  .gallery-info .main-container .container .card-container .card {
    width: 330px;
    height: 200px;
  }
}

@media screen and (max-width: 425px) {
  .gallery-info {
    width: 100%;
    padding-bottom: 30px;
  }

  .gallery-info .main-container .container .card-container .card {
    width: auto;
    height: 250px;
    margin-bottom: 20px;
  }

  .gallery-info .main-container .container .card-container .card #card-content {
    height: 40px;
  }
}

@media screen and (max-width: 320px) {
  .gallery-info {
    width: 100%;
    padding-bottom: 30px;
  }

  .gallery-info .main-container .container .card-container .card {
    width: auto;
    height: 180px;
  }

  .gallery-info .main-container .container .card-container .card #card-content {
    height: 65px;
  }
}

/* ======================= Gallery =========================== */
.gallery-container {
  padding-top: 80px;
  background: #fff;
  padding-bottom: 50px;
}

.gallery-container main {
  max-width: 1250px;
  margin: auto;
}

.gallery-container .heading {
  margin: auto;
  padding-top: 20px;
  width: 70%;
  justify-content: center;
}

.gallery-container .heading p {
  text-align: center;
  padding: 30px;
  color: #4b4b4b;
}

.gallery-container .heading h1 {
  text-transform: uppercase;
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
}

.gallery-container .heading .heading-content a {
  text-decoration: none;
  font-weight: 550;
  color: #4b4b4b;
  transition: all 0.3s ease;
}

.gallery-container .heading .heading-content a:hover {
  color: #d6ba19;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.gallery-container .divider {
  width: 300px;
  height: 3px;
  background-color: #d6ba19;
  display: inline-block;
  border-radius: 50%;
}

.gallery-container .line {
  text-align: center;
  justify-content: center;
}

.gallery-container .gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 1250px;
  margin: 0 auto;
  padding: 20px;
}

.gallery-container .gallery a {
  height: 150px;
  width: 250px;
  margin: 8px;
  overflow: hidden;
}

.gallery-container .gallery a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.gallery-container .gallery a img:hover {
  -webkit-transform: scale(1.3) rotate(0.01deg);
  transform: scale(1.3) rotate(0.01deg);
}

.gallery-container .pagination {
  padding: 30px 0;
}

.gallery-container .pages {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-container .pages .fa {
  color: #4b4b4b;
}

.gallery-container .pages a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: #312f2f;
}

.gallery-container .page-text {
  background: #e3e3e3;
  border-radius: 50%;
  color: #6e6e6e;
  line-height: 40px;
  margin: 5px;
  text-align: center;
  width: 40px;
}

.gallery-container #active {
  background: #054a06;
  color: #fff;
}

.gallery-container #inactive:hover {
  background: #054a06;
  color: #fff;
  transition: all 0.5s ease;
}

.gallery-container .bttn {
  background-color: #f1f1f1;
  border-radius: 30px;
  border: 1px solid #676767;
}

.gallery-container .bttn:hover {
  background-color: #ddd;
  transition: 0.3s ease;
}

.gallery-container .bttn a {
  text-decoration: none;
  display: inline-block;
  padding: 6px 16px;
  font-size: 16px;
  color: #000;
  text-transform: capitalize;
}

.gallery-container .prev-page {
  padding-bottom: 30px;
  text-align: center;
}

@media (max-width: 1024px) {
  .gallery-container .gallery {
    width: auto;
  }
}

@media (max-width: 768px) {
  .gallery-container main {
    max-width: auto;
  }

  .gallery-container .heading {
    width: auto;
  }

  .gallery-container .gallery {
    width: auto;
  }

  .gallery-container .gallery a {
    height: 200px;
    width: 300px;
    margin: 10px;
  }
}

@media (max-width: 600px) {
  .gallery-container .gallery {
    width: auto;
  }

  .gallery-container .gallery a {
    height: 200px;
    width: 350px;
    margin: 10px;
  }
}

@media (max-width: 425px) {
  .gallery-container .heading {
    width: auto;
    padding: 15px;
  }

  .gallery-container .heading p {
    padding: 20px;
  }

  .gallery-container .gallery {
    width: auto;
    padding: 20px 10px;
  }

  .gallery-container .gallery a {
    height: 120px;
    width: 180px;
  }
}

/* ============= InnerPage Gallery ================== */
.innerpage-gallery {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin: 0 auto;
  padding-top: 20px;
}

.innerpage-gallery a {
  height: 150px;
  width: 250px;
  margin: 8px;
  overflow: hidden;
}

.innerpage-gallery a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.innerpage-gallery a img:hover,
.aside-gallery a img:hover {
  -webkit-transform: scale(1.2) rotate(0.01deg);
  transform: scale(1.2) rotate(0.01deg);
}

.aside-gallery {
  width: auto;
  margin-top: 30px;
  overflow: hidden;
}

.aside-gallery a {
  overflow: hidden;
}

.aside-gallery a img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

/*============== Aside & Quicklinks ================== */
aside {
  width: 25%;
  float: right;
  padding-top: 25px;
  padding-bottom: 50px;
}

.quick-links {
  background: #f1f1f1;
  border: 1px solid #c9c8c8;
  border-radius: 12px;
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 5px;
  color: var(--sec-color4);
}

.quick-links ul {
  font-size: 16px;
  color: var(--sec-color4);
}

.quick-links ul li {
  border-top: 1px solid #c9c8c8;
  list-style: none;
}

.quick-links h2 {
  padding-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.quick-links ul li a {
  text-decoration: none;
  font-size: 16px;
  color: var(--sec-color4);
  display: block;
  line-height: 45px;
  transition: all 0.15s ease;
}

.quick-links ul li a:hover {
  color: var(--sec-color);
}

.ad {
  position: relative;
}

.ad .advert {
  width: auto;
  height: auto;
  padding-top: 30px;
}

.ad .advert img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  transition: 0.5s;
}

/* .ad .advert:hover img {
  transform: scale(0.92);
} */

@media screen and (max-width: 768px) {
  .intro-info {
    width: auto;
    padding-bottom: 50px;
  }

  .ad {
    width: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: auto;
    padding: 30px 0;
  }

  .container {
    justify-content: center;
  }

  .card {
    position: relative;
    overflow: hidden;
    width: 330px;
    height: 200px;
  }

  .ad .advert {
    width: 350px;
  }

  .personality-img {
    padding-bottom: 15px;
  }

  .ad .advert img {
    width: 100%;
  }

  aside {
    width: 100%;
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .quick-links {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  main {
    width: 100%;
  }

  article {
    margin: auto;
    width: auto;
    padding: 15px;
  }

  .intro-info {
    width: 100%;
    padding-bottom: 20px;
  }

  .scripture {
    padding: 30px 20px 30px 20px;
    font-size: 23px;
  }

  .handbook-container {
    padding: 40px 0;
  }

  .handbook {
    width: auto;
  }

  .handbook img {
    width: 100%;
    border: 1px solid #cdcdcd;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
      rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  }

  .intro-info .personality-img {
    width: auto;
    float: none;
    margin-right: 0;
  }

  .intro-info .personality-img img {
    width: 100%;
  }

  .personality-social-media {
    display: flex;
    gap: 25px;
    padding: 0;
    padding-top: 10px;
  }

  .quick-links {
    display: none;
  }

  .card {
    width: auto;
  }

  .card-img {
    width: auto;
  }

  .card-img img {
    width: 100%;
  }

  aside {
    width: 100%;
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .ad {
    width: auto;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 30px 0;
  }

  .ad .advert {
    width: auto;
  }

  .ad .advert img {
    width: 100%;
  }
}

/*=============== Footer Section ================*/
footer {
  background-color: var(--sec-color2);
  height: 450px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

footer .content .text {
  font-size: 14px;
  color: #fff;
}

footer .content p {
  font-size: 14px;
  color: var(--sec-color3);
}

footer .main-content {
  display: flex;
  max-width: 1250px;
  margin: auto;
  padding: 30px 0 20px 0;
}
footer .main-content .box {
  flex-basis: 50%;
  padding: 10px 20px;
}
footer .box h2 {
  font-size: 16px;
  font-weight: 550;
  text-transform: uppercase;
  color: #fff;
}
footer .box .content {
  margin: 15px 0 0 0;
  position: relative;
  width: 95%;
}

footer .box .content:before {
  position: absolute;
  content: "";
  top: -10px;
  height: 2px;
  width: 100%;
  background: #353535;
}

footer .box .content:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 15%;
  background: var(--sec-color);
  top: -10px;
}

/* footer .left .content p {
  text-align: justify;
} */

footer .left .content .social {
  margin: 20px 0 40px 0;
}

.left .content .social a {
  padding: 0 2px;
}

footer .left .content .social a span {
  height: 40px;
  width: 40px;
  background: #1a1a1a;
  color: var(--sec-color3);
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
footer .left .content .social .fa-facebook-f:hover {
  background: #3b5998;
  color: white;
}

footer .left .content .social .fa-x-twitter:hover {
  background: #000;
  color: white;
}

footer .left .content .social .fa-instagram:hover {
  background: radial-gradient(
    circle at 33% 100%,
    #fed373 4%,
    #f15245 30%,
    #d92e7f 62%,
    #9b36b7 85%,
    #515ecf
  );
  color: white;
}

footer .left .content .social .fa-telegram:hover {
  background: #0088cc;
  color: white;
}

footer .ul li {
  list-style: none;
}

footer .ul li a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sec-color3);
  display: block;
  line-height: 35px;
  transition: all 0.15s ease;
}

footer .ul li a:hover {
  color: var(--sec-color);
}

footer .right .content .fas {
  font-size: 16px;
  background: #1a1a1a;
  color: var(--sec-color3);
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}

footer .right .content .text {
  font-size: 16px;
  padding-left: 10px;
  color: var(--sec-color3);
  text-decoration: none;
}

footer #gps {
  font-size: 14px;
  font-weight: 700;
}

footer .ghanapost {
  font-size: 14px;
  padding-top: 20px;
}

footer #digi {
  font-size: 14px;
  padding-left: 18px;
}

footer .right .content .text a {
  font-size: 14px;
  padding-left: 5px;
  color: var(--sec-color3);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .legal a:hover,
footer .right .content .text a:hover {
  color: var(--sec-color);
}

footer .right .content .phone {
  margin: 15px 0;
}

footer .legal {
  text-align: center;
  color: var(--sec-color3);
  padding: 10px 10px 20px 10px;
}

footer .legal a {
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--sec-color3);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .credits {
  width: 100%;
  background: #151515;
}

footer .credits .credits-container {
  width: 1250px;
  margin: auto;
}

footer .credits .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--sec-color3);
}

footer .credits a {
  text-decoration: none;
  color: #0bd1f8;
  transition: all 0.3s ease;
}

footer .credits a:hover {
  color: #0086a0;
}

@media screen and (max-width: 1024px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1000px;
    min-height: 100vh;
  }

  footer {
    background-color: var(--sec-color2);
    height: 1000px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  footer .main-content {
    flex-wrap: wrap;
    flex-direction: column;
  }
  footer .main-content .box {
    margin: 5px 0;
  }

  footer .credits .credits-container {
    width: 100%;
    margin: auto;
  }

  footer .credits .row {
    justify-content: space-between;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 995px;
    min-height: 100vh;
  }

  footer {
    background-color: var(--sec-color2);
    height: 995px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1040px;
    min-height: 100vh;
  }

  footer {
    background-color: var(--sec-color2);
    height: 1040px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }

  footer .credits .row {
    justify-content: center;
    padding: 10px 5px;
    gap: 5px;
  }
}

@media screen and (max-width: 395px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1080px;
    min-height: 100vh;
  }

  footer {
    background-color: var(--sec-color2);
    height: 1080px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  body {
    background-color: #fff;
    position: relative;
    padding-bottom: 1130px;
    min-height: 100vh;
  }

  footer {
    background-color: var(--sec-color2);
    height: 1130px;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
}
