/*-----------------------------------------------------------------

    Theme Name: 
    Author: 
    Support: 
    Description: 
    Version: 1.0.0

-------------------------------------------------------------------

============ TABLE OF CONTENTS ============

01. Variables CSS
02. Basic Setup CSS
03. Reuseble Class CSS 
04. Typography CSS 
05. Background Color CSS
06. Preloader CSS 
07. Banner CSS
08. Button CSS 
09. Message Form CSS
10. Car Product Card CSS
11. Blog Card CSS
12. Mechanic CSS
13. Search Card CSS
14. Profile Card CSS
15. Social Media CSS
16. Post Card CSS
17. Categories Card CSS
18. Tag Card CSS
19. Contact Form CSS
20. Header CSS 
21. Contact Bar CSS 
22. About Us CSS 
23. Services CSS 
24. Mechanical Work CSS 
25. Services Engineer CSS 
26. mosques CSS 
27. Get Services CSS
28. Meet Mechanic CSS
29. FAQ CSS
30. Subscribe CSS 
31. Footer CSS 
32. Home 1 Page CSS 
33. Home 2 Page CSS 
34. About Us Page CSS
35. Service Details Page CSS
36. Blog Details Page CSS
37. Contact Page CSS
38. Error Page CSS

================================================================
*/
/*--------------------------------------------------------------
# Variable
--------------------------------------------------------------*/
:root {
  --mosque-font: "Noto Serif Bengali", serif;
  --mosque-font-2: "Lato", sans-serif;
  --mosque-heading-font: "Hind Siliguri", sans-serif;
  --mosque-text: #7C7F87;
  --mosque-text-rgb: 124, 127, 135;
  --mosque-primary: #007D3A;
  --mosque-primary-rgb: 0, 125, 58;
  --mosque-secondary: #FBC50B;
  --mosque-secondary-rgb: 251, 197, 11;
  --mosque-white: #FFFFFF;
  --mosque-white-rgb: 255, 255, 255;
  --mosque-white2: #F3F5F4;
  --mosque-white2-rgb: 243, 245, 244;
  --mosque-white3: #E3EFE6;
  --mosque-white3-rgb: 227, 239, 230;
  --mosque-black: #08050D;
  --mosque-black-rgb: 8, 5, 13;
  --mosque-black2: #000000;
  --mosque-black2-rgb: 0, 0, 0;
  --mosque-black3: #0f1115;
  --mosque-black3-rgb: 15, 17, 21;
  --mosque-border-color: #DBD8E6;
  --mosque-border-color-rgb: 219, 216, 230;
  --body-size: 18px;
  --heading-size-1: 72px;
  --heading-size-2: 48px;
  --body-line-height: 1.75;
  --section-space: 120px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: textscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--mosque-font);
  font-size: var(--body-size);
  color: var(--mosque-text);
  font-weight: 400;
  line-height: var(--body-line-height);
}

body.locked {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: var(--mosque-white3);
}

::-webkit-scrollbar-thumb {
  background-color: var(--mosque-primary);
  height: 60px;
  border-radius: 30px;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

a {
  color: var(--mosque-primary);
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mosque-heading-font);
  color: var(--mosque-black);
}
@media (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.page-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-space {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: var(--section-space);
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: var(--section-space);
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1350px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-25 {
  --bs-gutter-y: 25px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* button */
.mosque-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none;
  padding: 14px 35px 11px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--mosque-white);
  line-height: 1.375;
  text-transform: capitalize;
  overflow: hidden;
  border-radius: 6px;
  background-color: var(--mosque-primary);
  backface-visibility: hidden;
  transform: translateZ(0px);
  -webkit-transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-property: color;
  -webkit-transition-property: color;
  -moz-transition-property: color;
}
.mosque-btn::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform-origin: 50% 50% 0;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  border-radius: inherit;
  background-color: var(--mosque-secondary);
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-property: transform;
  -webkit-transition-property: transform;
  -moz-transition-property: transform;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.mosque-btn:hover::before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.mosque-btn:hover {
  color: var(--mosque-black);
}
.mosque-btn--secondary {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}
.mosque-btn--secondary::before {
  background-color: var(--mosque-primary);
}
.mosque-btn--secondary:hover {
  color: var(--mosque-white);
}

/* section title */
.section-title {
  margin-bottom: 25px;
}
.section-title--center {
  margin-bottom: 42px;
  text-align: center;
}
.section-title__top {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}
.section-title__shape {
  max-width: 100%;
  height: auto;
}
.section-title__tagline {
  margin: 0px;
  font-family: var(--mosque-font);
  font-size: 18px;
  color: var(--mosque-primary);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.75;
}
.section-title__title {
  margin: 0px;
  font-family: var(--mosque-heading-font);
  font-size: var(--heading-size-2);
  color: var(--mosque-black);
  font-weight: 700;
  line-height: 1.375;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .section-title__title {
    font-size: 40px;
  }
}
@media (max-width: 390px) {
  .section-title__title {
    font-size: 35px;
  }
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--mosque-white);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--mosque-primary);
  transition: all 500ms ease;
}
.social-links a:hover {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}
.social-links a:hover i {
  color: var(--mosque-black);
  animation: slideTop 500ms;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin: 69px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1399px) {
  .post-pagination {
    margin-top: 30px;
  }
}
.post-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: transparent;
  font-family: var(--mosque-font);
  color: var(--mosque-black);
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid RGBA(var(--mosque-black-rgb), 0.1);
  transition: all 400ms ease;
}
@media (max-width: 575px) {
  .post-pagination a {
    width: 50px;
    height: 50px;
  }
}
.post-pagination a .post-pagination__icon {
  display: inline-flex;
  font-size: 10px;
  color: var(--mosque-black);
  transition: all 400ms ease;
}
.post-pagination a:hover {
  color: var(--mosque-black);
  background-color: var(--mosque-primary);
  border-color: var(--mosque-primary);
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--mosque-black);
  animation: slideLeft 400ms;
}
.post-pagination a:hover .post-pagination__icon--right {
  animation: slideRight 400ms;
}
.post-pagination li.active a {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
  border-color: var(--mosque-primary);
}
.post-pagination li.active a .post-pagination__icon {
  color: var(--mosque-black);
  animation-play-state: paused;
}

/* owl carousel slider */
.mosque-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.mosque-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.mosque-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mosque-black);
  border-radius: 50%;
  background-color: var(--mosque-white2);
  transition: all 500ms ease;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: RGBA(var(--mosque-black-rgb), 0.1);
  transition: all 500ms ease;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--mosque-primary);
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .mosque-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}
.mosque-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.mosque-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* preloader */
.preloader {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--mosque-black);
  width: 100%;
  height: 100vh;
  z-index: 99999999;
}
.preloader__circle {
  width: 50px;
  height: 50px;
  background-color: var(--mosque-primary);
  position: relative;
  border-radius: 50%;
  animation: preloaderCircle 0.75s linear infinite;
}
.preloader__circle::after {
  content: "";
  width: 49px;
  height: 49px;
  position: absolute;
  top: 1px;
  right: 0;
  left: 0;
  background-color: var(--mosque-black);
  border-radius: 50%;
}
@keyframes preloaderCircle {
  to {
    transform: rotate(360deg);
  }
}
.preloader__text {
  margin: 30px 0 10px;
  font-family: var(--mosque-font-2);
  font-size: 25px;
  color: var(--mosque-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.preloader__line {
  width: 150px;
  height: 2px;
  position: relative;
  background-color: var(--mosque-white);
}
.preloader__line::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--mosque-primary);
  animation: lineColor 3s ease infinite;
}
@keyframes lineColor {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}

.disappear {
  -webkit-animation: vanish 1s forwards;
  animation: vanish 1s forwards;
}

@-webkit-keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* back to top */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--mosque-black);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top::after {
  position: absolute;
  content: "\f30c";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  color: var(--mosque-primary);
  text-align: center;
  font-weight: 900;
  line-height: 50px;
  -moz-osx-font-smoothing: textscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top__circle path {
  stroke: var(--mosque-primary);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
@keyframes zoomIn2 {
  0% {
    transform: scale(0.5) rotate(0deg);
  }
  100% {
    transform: scale(1.25) rotate(45deg);
  }
}
@keyframes zoomIn3 {
  0% {
    transform: scale(0.7) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@keyframes zoom-out-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes moveX {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes moveX2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes rotateReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}
@keyframes shapeRotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }
  33.3% {
    transform: translateX(-3px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -190deg);
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -170deg);
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes smartMove {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove2 {
  0% {
    width: 0;
  }
  15% {
    width: 126px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 126px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove3 {
  0% {
    width: 0;
  }
  15% {
    width: 173px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 173px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes rectMove {
  0%, 50%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25%, 75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackgroundY {
  0% {
    background-position: 100% 1920px;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animatedCircle {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vibrant2 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.header {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.topbar {
  position: relative;
  z-index: 999;
  padding: 10px 0px;
  overflow: hidden;
  background-color: var(--mosque-primary);
}
@media (max-width: 1199px) {
  .topbar {
    padding: 15px 0px;
  }
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.topbar__contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 27px;
  z-index: 1;
  margin: 0px;
}
@media (max-width: 1199px) {
  .topbar__contact {
    width: 100%;
    justify-content: center;
  }
}
.topbar__contact::before {
  content: "";
  width: 1000px;
  height: calc(100% + 40px);
  position: absolute;
  top: 50%;
  right: -138px;
  z-index: -1;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #007d3a 0%, #e7b619 100%);
  clip-path: polygon(0 0, 100% 0, 94.5% 100%, 0 100%);
}
@media (max-width: 1199px) {
  .topbar__contact::before {
    width: calc(100% + 500px);
    top: 50%;
    right: auto;
    left: 50%;
    clip-path: none;
    transform: translate(-50%, -50%);
  }
}
.topbar__contact__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--mosque-white);
}
.topbar__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mosque-font-2);
  font-size: 16px;
  color: var(--mosque-white);
  font-weight: 400;
  line-height: 1.25;
}
.topbar__contact li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__contact li a:hover {
  background-size: 100% 1px;
}
@media (max-width: 1199px) {
  .topbar__info {
    display: none;
  }
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 25px;
}
.topbar__social__title {
  margin: 0px;
  color: var(--mosque-white);
}
.topbar__social__list {
  display: flex;
  align-items: center;
  margin: 0px;
}
.topbar__social__list li:not(:last-child)::after {
  content: "|";
  position: relative;
  top: -1px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 18px;
  color: var(--mosque-white);
}
.topbar__social__list a {
  flex-shrink: 0;
  position: relative;
  font-size: 18px;
  color: var(--mosque-white);
  transition: all 500ms ease;
}
.topbar__social__list a:hover {
  color: var(--mosque-secondary);
}

.main-header__inner {
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header__logo a {
  display: inline-block;
}
.main-header__logo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .main-header__nav {
    display: none;
  }
}
.main-header__nav__list {
  margin: 0px;
  display: flex;
  align-items: center;
}
.main-header__nav__list li + li {
  margin-left: 40px;
}
.main-header__nav__list li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--mosque-white);
  line-height: 1.375;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.main-header__nav__list li a:hover {
  color: var(--mosque-primary);
}
.main-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header__nav-btn {
  width: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  cursor: pointer;
  z-index: 1;
}
@media (min-width: 1200px) {
  .main-header__nav-btn {
    display: none;
  }
}
.main-header__nav-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--mosque-white);
  transition: all 500ms ease;
}
.main-header__nav-btn span:nth-child(2) {
  margin-top: 6px;
  margin-bottom: 6px;
}
.main-header__nav-btn:hover span {
  background-color: var(--mosque-primary);
}
.main-header__user {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 20px;
  color: var(--mosque-black);
  border-radius: 50%;
  background-color: var(--mosque-white);
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .main-header__user {
    margin-left: 50px;
  }
}
@media (max-width: 440px) {
  .main-header__user {
    margin-left: 40px;
  }
}
.main-header__user:hover {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
}
.main-header__user::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: rgba(var(--mosque-white-rgb), 0.3);
}
@media (max-width: 440px) {
  .main-header__user::before {
    left: -20px;
  }
}
@media (min-width: 1200px) {
  .main-header__user::before {
    display: none;
  }
}
.main-header .mosque-btn {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .main-header .mosque-btn {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  visibility: hidden;
  transform: translateY(-100%);
  background-color: var(--mosque-white);
  box-shadow: 0px 3px 18px rgba(var(--mosque-black-rgb), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned .main-header__nav__list li a {
  color: var(--mosque-black);
}
.sticky-header--cloned .main-header__nav__list li a:hover {
  color: var(--mosque-primary);
}
.sticky-header--cloned .main-header__nav-btn span {
  background-color: var(--mosque-black);
}
.sticky-header--cloned .main-header__nav-btn:hover span {
  background-color: var(--mosque-primary);
}
.sticky-header--cloned .main-header__user {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}
.sticky-header--cloned .main-header__user:hover {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
}
.sticky-header--cloned .main-header__user::before {
  background-color: rgba(var(--mosque-black-rgb), 0.2);
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-overlay {
  width: 100%;
  height: 100%;
  cursor: crosshair;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transform: translateX(-100%);
  transform-origin: left center;
  visibility: hidden;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
}

.mobile-menu-overlay.active {
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-menu__wrapper {
  width: 320px;
  height: 100%;
  padding: 90px 15px 30px;
  background-color: var(--mosque-black);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  z-index: 9999;
  overflow-y: auto;
  overflow-y: scroll;
  /* hide scrollbar but allow scrolling */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.mobile-menu__wrapper::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}
.mobile-menu__wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}
.mobile-menu__close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--mosque-white);
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 2px;
  background-color: var(--mosque-primary);
  transition: all 500ms ease;
}
.mobile-menu__close:hover {
  color: var(--mosque-primary);
  background-color: var(--mosque-white);
}
.mobile-menu__logo {
  margin-bottom: 50px;
}
.mobile-menu__main {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mobile-menu__main li a {
  display: block;
  padding: 12px 0;
  font-family: var(--mosque-font);
  font-size: 16px;
  color: var(--mosque-white);
  line-height: 1.5;
  text-transform: capitalize;
  border-bottom: 1px solid RGBA(var(--mosque-white-rgb), 0.1);
  transition: all 500ms ease;
}
.mobile-menu__main li a:hover {
  color: var(--mosque-primary);
}
.mobile-menu__info {
  margin-top: 40px;
}
.mobile-menu__title {
  margin-bottom: 15px;
  font-size: 23px;
  color: var(--mosque-white);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
}
.mobile-menu__contact {
  margin-bottom: 40px;
}
.mobile-menu__contact__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--mosque-white);
  font-weight: 500;
}
.mobile-menu__contact__list li + li {
  margin-top: 15px;
}
.mobile-menu__contact__list li a {
  color: inherit;
}
.mobile-menu__contact__list li a:hover {
  color: var(--mosque-primary);
}
.mobile-menu__contact__icon {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mosque-white);
  text-align: center;
  background-color: var(--mosque-primary);
}
.mobile-menu .social-links a {
  width: 33px;
  height: 33px;
}
.mobile-menu .social-links__icon {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--mosque-black2);
}
.hero-slider__carousel {
  position: relative;
}
.hero-slider__carousel.owl-carousel {
  position: relative;
}
.hero-slider__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
}
@media (max-width: 1199px) {
  .hero-slider__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .hero-slider__carousel.owl-carousel .owl-nav {
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1400px) {
  .hero-slider__carousel.owl-carousel .owl-nav {
    left: 50px;
  }
}
.hero-slider__carousel.owl-carousel .owl-nav button {
  background-color: var(--mosque-white);
}
.hero-slider__item {
  position: relative;
  padding-top: 322px;
  padding-bottom: 210px;
  overflow: hidden;
  background-color: var(--mosque-black2);
}
@media (max-width: 1399px) {
  .hero-slider__item {
    padding-top: 282px;
    padding-bottom: 170px;
  }
}
@media (max-width: 1199px) {
  .hero-slider__item {
    padding-bottom: 270px;
  }
}
@media (max-width: 991px) {
  .hero-slider__item {
    padding-top: 257px;
    padding-bottom: 250px;
  }
}
@media (max-width: 767px) {
  .hero-slider__item {
    padding-top: 200px;
  }
}
@media (max-width: 575px) {
  .hero-slider__item {
    padding-top: 180px;
    padding-bottom: 230px;
  }
}
.hero-slider__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform: scale(1);
  transition: transform 8s ease;
}
.hero-slider__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--mosque-black-rgb), 0.8);
}
.hero-slider .container {
  position: relative;
  z-index: 2;
}
.hero-slider__content {
  text-align: center;
}
.hero-slider__title {
  margin-bottom: 10px;
  font-size: var(--heading-size-1);
  color: var(--mosque-white);
  font-weight: 700;
  line-height: 1.375;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .hero-slider__title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-slider__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-slider__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .hero-slider__title {
    font-size: 35px;
  }
}
@media (max-width: 390px) {
  .hero-slider__title {
    font-size: 30px;
  }
}
.hero-slider__title__inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.hero-slider__description {
  overflow: hidden;
}
.hero-slider__text {
  margin-bottom: 45px;
  font-size: 20px;
  color: var(--mosque-secondary);
  opacity: 0;
  transform: translateY(100%);
}
@media (max-width: 991px) {
  .hero-slider__text {
    font-size: 18px;
  }
}
@media (max-width: 390px) {
  .hero-slider__text {
    font-size: 16px;
  }
}
.hero-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
}
.hero-slider__button__inner {
  opacity: 0;
  transform: translateY(100%);
}
.hero-slider .active .hero-slider__bg {
  transform: scale(1.2);
}
.hero-slider .active .hero-slider__title__inner,
.hero-slider .active .hero-slider__text,
.hero-slider .active .hero-slider__button__inner {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider .active .hero-slider__title__inner {
  transition: transform 1300ms ease, opacity 1300ms ease;
}
.hero-slider .active .hero-slider__text,
.hero-slider .active .hero-slider__button__inner {
  transition: transform 800ms ease, opacity 800ms ease;
}
.hero-slider .active .hero-slider__text {
  transition-delay: 800ms;
}
.hero-slider .active .hero-slider__button__inner:nth-child(1) {
  transition-delay: 1100ms;
}
.hero-slider .active .hero-slider__button__inner:nth-child(2) {
  transition-delay: 1200ms;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-us {
  background-color: var(--mosque-white);
}
.about-us__image {
  position: relative;
}
.about-us__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.about-us__image__two {
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: -51px;
}
@media (max-width: 575px) {
  .about-us__image__two {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .about-us__image__two {
    right: -10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us__image__two {
    right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-us__image__two {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .about-us__content {
    margin-top: 70px;
  }
}
.about-us__text {
  margin-bottom: 40px;
}
.about-us__list {
  margin: 0px;
}
.about-us__list li + li {
  margin-top: 15px;
}
.about-us__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mosque-heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--mosque-black);
}
.about-us__list__shape {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: -2px;
  transform: rotate(47.395deg);
  flex-shrink: 0;
  background-color: var(--mosque-primary);
}

/*--------------------------------------------------------------
# Donate
--------------------------------------------------------------*/
.donate {
  background-color: var(--mosque-white2);
}
.donate__top {
  margin-bottom: 40px;
}
.donate .section-title {
  margin: 0px;
}
.donate__custom-navs {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.donate__custom-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mosque-black);
  border-radius: 50%;
  background-color: var(--mosque-white);
  transition: all 500ms ease;
}
.donate__custom-navs button:hover {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
}
.donate__custom-navs button span {
  border: none;
  outline: none;
  color: inherit;
}
.donate__carousel .owl-stage {
  display: flex;
}
.donate__carousel .item,
.donate__carousel .donate__card {
  height: 100%;
}
.donate__card {
  text-align: center;
  border-radius: 15px;
  background-color: var(--mosque-white);
}
.donate__card__image {
  display: block;
  border-radius: 15px 15px 0px 0px;
}
.donate__card__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.donate__card__content {
  padding: 21px 30px 30px;
}
@media (max-width: 390px) {
  .donate__card__content {
    padding: 21px 25px 25px;
  }
}
.donate__card__title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}
.donate__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donate__card__title a:hover {
  color: var(--mosque-primary);
}
.donate__card__title a:hover {
  background-size: 100% 1px;
}
.donate__card__text {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Five Pillars
--------------------------------------------------------------*/
.five-pillars {
  position: relative;
  background-color: var(--mosque-black2);
}
.five-pillars .section-title {
  margin-bottom: 20px;
}
.five-pillars .section-title__title {
  color: var(--mosque-white);
}
.five-pillars__description {
  margin-bottom: 40px;
}
.five-pillars__text {
  margin: 0px;
  color: var(--mosque-white);
}
.five-pillars__text span {
  display: inline-block;
  margin-top: 10px;
  color: var(--mosque-secondary);
}
.five-pillars__text br {
  display: inline;
}
.five-pillars__text + .five-pillars__text {
  margin-top: 20px;
}
.five-pillars__grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
.five-pillars__item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.five-pillars__item__icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.five-pillars__item__icon i {
  position: relative;
  z-index: 1;
  font-size: 33px;
  color: var(--mosque-primary);
}
.five-pillars__item__shape {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.five-pillars__item__title {
  margin-bottom: 10px;
  color: var(--mosque-white);
}
.five-pillars__item__text {
  margin: 0px;
  color: var(--mosque-primary);
}
.five-pillars__video {
  width: 35%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.five-pillars__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--mosque-black2-rgb), 0.5);
}
.five-pillars__video__btn {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 101px;
  height: 101px;
  font-size: 26px;
  color: var(--mosque-white);
  border-radius: 50%;
  background-color: var(--mosque-primary);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.five-pillars__video__btn:hover {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}
.five-pillars__video__ripple::before, .five-pillars__video__ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 RGBA(var(--mosque-primary-rgb), 0.7);
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
}
.five-pillars__video__btn:hover .five-pillars__video__ripple::before, .five-pillars__video__btn:hover .five-pillars__video__ripple::after {
  box-shadow: 0 0 0 0 RGBA(var(--mosque-secondary-rgb), 0.7);
}
.five-pillars__video__ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.five-pillars__video__ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 60px rgba(0, 125, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*--------------------------------------------------------------
# Activities
--------------------------------------------------------------*/
.activities {
  background-color: var(--mosque-white2);
}
.activities__card {
  position: relative;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--mosque-white);
}
@media (max-width: 412px) {
  .activities__card {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .activities__card {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.activities__card__bg {
  width: 70px;
  height: 70px;
  margin: 0px auto;
  position: relative;
  position: absolute;
  top: 35px;
  left: 0px;
  right: 0px;
  border-radius: 50%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: all 500ms ease;
}
.activities__card__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-color: RGBA(var(--mosque-black-rgb), 0.3);
}
.activities__card:hover .activities__card__bg {
  width: 100%;
  height: 100%;
  top: 0px;
  border-radius: 0px;
}
.activities__card__content {
  position: relative;
  z-index: 1;
}
.activities__card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 35px;
  border-radius: 50%;
  font-size: 40px;
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
  transition: all 500ms ease;
}
.activities__card:hover .activities__card__icon {
  color: var(--mosque-primary);
  background-color: var(--mosque-white);
}
.activities__card__title {
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--mosque-black);
  font-weight: 700;
  line-height: 1.371;
}
.activities__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.activities__card__title a:hover {
  background-size: 100% 1px;
}
.activities__card__text {
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.activities__card:hover .activities__card__title, .activities__card:hover .activities__card__text {
  color: var(--mosque-white);
}
.activities__card .mosque-btn::before {
  background-color: var(--mosque-white);
}
.activities__card:hover .mosque-btn::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.activities__card:hover .mosque-btn {
  color: var(--mosque-black);
}
.activities__button {
  margin-top: 60px;
  text-align: center;
}

/*--------------------------------------------------------------
# Member
--------------------------------------------------------------*/
.member-card {
  position: relative;
  padding: 15px;
  border-radius: 999px 999px 0 0;
  background-color: var(--mosque-white);
  border: 1px solid var(--mosque-border-color);
}
.member-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  transition: all 500ms ease;
}
.member-card__image__inner {
  position: relative;
  border-radius: 999px 999px 0 0;
}
.member-card__image__inner::after {
  content: "";
  width: 100%;
  height: calc(100% - 75px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  opacity: 0;
  transform: translateY(50%);
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 125, 58, 0.9) 81.4%);
  transition: all 500ms ease;
}
.member-card__image img {
  width: 100% !important;
  display: block;
  border-radius: inherit;
  transition: all 500ms ease;
}
.member-card.active .member-card__image__inner::after {
  opacity: 1;
  transform: translateY(0%);
}
.member-card .social-links {
  width: 100%;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 26px;
  opacity: 0;
  transform: translateX(-50%) translateY(-200%);
  z-index: 1;
  transition: all 500ms ease;
}
.member-card .social-links a {
  color: var(--mosque-black);
  background-color: var(--mosque-white);
}
.member-card .social-links a:hover {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}
.member-card .social-links a:hover i {
  color: var(--mosque-black);
}
.member-card__info {
  padding: 24px 23px 5px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 500ms ease;
}
@media (max-width: 375px) {
  .member-card__info {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .member-card__info {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.member-card__name {
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--mosque-black);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.318;
}
@media (max-width: 375px) {
  .member-card__name {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .member-card__name {
    font-size: 18px;
  }
}
.member-card__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.member-card__name a:hover {
  color: var(--mosque-primary);
}
.member-card__name a:hover {
  background-size: 100% 1px;
}
.member-card__designation {
  margin: 0px;
  text-transform: capitalize;
}
.member-card__btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  border: none;
  font-size: 18px;
  color: var(--mosque-white);
  border-radius: 50%;
  background-color: var(--mosque-primary);
  transition: all 500ms ease;
}
.member-card__btn i {
  vertical-align: middle;
}
.member-card__btn:hover, .member-card__btn.active {
  color: var(--mosque-black);
  background-color: var(--mosque-secondary);
}

.members {
  position: relative;
  background-color: var(--mosque-white);
}
.members__top {
  margin-bottom: 40px;
}
.members .section-title {
  margin: 0px;
}
.members__custom-navs {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.members__custom-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--mosque-black);
  border-radius: 50%;
  background-color: var(--mosque-white2);
  transition: all 500ms ease;
}
.members__custom-navs button:hover {
  color: var(--mosque-white);
  background-color: var(--mosque-primary);
}
.members__custom-navs button span {
  border: none;
  outline: none;
  color: inherit;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
  padding: 75px 0px 90px;
  position: relative;
}
.cta__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.cta__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--mosque-black-rgb), 0.6);
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta__content {
  text-align: center;
}
.cta .section-title__title, .cta__text {
  color: var(--mosque-white);
}
.cta .section-title__title {
  margin-bottom: 10px;
}
.cta__text {
  margin-bottom: 30px;
}
.cta__form {
  max-width: 500px;
  margin: 0px auto;
}
.cta__form__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media (max-width: 575px) {
  .cta__form__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cta__form__input {
  width: 100%;
  height: 56px;
  outline: none;
  border: none;
  padding-left: 25px;
  padding-right: 25px;
  font-family: var(--mosque-font-2);
  font-size: 16px;
  font-weight: 400;
  color: var(--mosque-text);
  border-radius: 8px;
  background-color: var(--mosque-white);
  transition: all 500ms ease;
}
.cta__form__input::placeholder {
  font-family: var(--mosque-font);
}
.cta__form__input:focus {
  color: var(--mosque-black);
}
.cta__form .mosque-btn {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  background-color: var(--mosque-white);
}
.gallery__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery__card img {
  display: block;
  width: 100%;
  border-radius: inherit;
}
.gallery__card__hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.gallery__card__hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
  right: -100%;
  bottom: -100%;
  border-radius: inherit;
  background-color: RGBA(var(--mosque-black-rgb), 0.6);
  transition: all 500ms ease;
}
.gallery__card__hover .img-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--mosque-secondary);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  border-radius: 50%;
  transition: all 500ms ease;
}
.gallery__card__hover .img-popup:hover {
  background-color: var(--mosque-primary);
}
.gallery__card:hover .gallery__card__hover {
  visibility: visible;
}
.gallery__card:hover .gallery__card__hover::after {
  right: 0px;
  bottom: 0px;
  visibility: visible;
}
.gallery__card:hover .img-popup {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.gallery__card__icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  transition: all 500ms ease;
}
.gallery__card__icon::after, .gallery__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--mosque-black);
  transition: all 500ms ease;
}
.gallery__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.img-popup:hover .gallery__card__icon::after, .img-popup:hover .gallery__card__icon::before {
  background-color: var(--mosque-white);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-card {
  position: relative;
  border-radius: 15px;
  background-color: var(--mosque-white);
  transition: all 500ms ease;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0px 0px;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  transition: all 500ms ease;
}
.blog-card__image__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transform: translateY(-30%);
  border-radius: inherit;
  background-color: RGBA(var(--mosque-black-rgb), 0.7);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--mosque-white);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}
.blog-card:hover .blog-card__image__link {
  opacity: 1;
  transform: translateY(0);
}
.blog-card__content {
  padding: 25px 30px 30px;
}
@media (max-width: 425px) {
  .blog-card__content {
    padding: 20px 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card__content {
    padding: 20px 20px 20px;
  }
}
.blog-card__meta {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.blog-card__meta li {
  position: relative;
  font-size: 18px;
  color: var(--mosque-text);
  font-weight: 400;
  line-height: 1.375;
}
.blog-card__meta li:not(:last-child)::after {
  content: "/";
  margin: 0px 13px;
  font-size: 16px;
  color: var(--mosque-text);
  font-weight: 400;
  line-height: 1.375;
}
.blog-card__meta li a {
  color: inherit;
}
.blog-card__meta li a:hover {
  color: var(--mosque-primary);
}
.blog-card__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (max-width: 425px) {
  .blog-card__title {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card__title {
    font-size: 22px;
  }
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  color: var(--mosque-primary);
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__text {
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-post {
  background-color: var(--mosque-white2);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--mosque-black2);
}
.main-footer__top {
  position: relative;
  padding: 120px 0px 80px;
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.main-footer .container {
  position: relative;
  z-index: 1;
}
.main-footer__bottom {
  padding: 20px 0px;
  text-align: center;
  background-color: var(--mosque-black3);
}
.main-footer__copyright {
  margin: 0px;
}

.footer-widget--about {
  padding-right: 50px;
}
@media (max-width: 767px) {
  .footer-widget--about {
    padding-right: 0px;
  }
}
.footer-widget__title {
  margin-bottom: 30px;
  position: relative;
  font-size: 20px;
  color: var(--mosque-white);
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize;
}
.footer-widget__logo {
  margin-bottom: 25px;
}
.footer-widget__text {
  margin-bottom: 30px;
}
.footer-widget__links {
  margin: 0px;
}
.footer-widget__links li + li {
  margin-top: 12px;
}
.footer-widget__links li {
  font-size: 18px;
  color: var(--mosque-text);
  font-weight: 500;
  line-height: 1.555;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  color: var(--mosque-primary);
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__newsletter-text {
  margin-bottom: 25px;
}
.footer-widget__newsletter {
  display: flex;
  align-items: center;
  gap: 20px 0px;
}
@media (max-width: 412px) {
  .footer-widget__newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-widget__newsletter input[type=email] {
  width: 100%;
  height: 60px;
  outline: none;
  padding-left: 20px;
  font-size: 16px;
  color: var(--mosque-text);
  background-color: transparent;
  border: 1px solid var(--mosque-text);
  border-right: 0px;
  border-radius: 6px 0px 0px 6px;
  transition: all 500ms ease;
}
@media (max-width: 412px) {
  .footer-widget__newsletter input[type=email] {
    border: 1px solid;
    border-radius: 6px;
  }
}
.footer-widget__newsletter input[type=email]:focus {
  color: var(--mosque-white);
  border-color: var(--mosque-primary);
}
.footer-widget__newsletter button[type=submit] {
  height: 60px;
  flex-shrink: 0;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  border-radius: 0px 6px 6px 0px;
}
@media (max-width: 412px) {
  .footer-widget__newsletter button[type=submit] {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 6px;
  }
}