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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
  line-height: 1.8;
  color: #585858;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* Main Btn */

.main-btn a {
  padding: 20px 50px;
  background-color: var(--c3);
  border-radius: 40px;
  color: var(--c2);
  transition: all 0.5s;
  font-size: 18px;
  font-weight: 500;
}
.main-btn a:hover {
  background-color: var(--c4);
  color: var(--c2);
}

/* Main Title */

.main-title h5 {
  color: var(--c3);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 400;
}
.main-title h2 {
  color: var(--c1);
  font-weight: 500;
  font-size: 46px;
}

/* Same Spacing */

.spacing {
  margin-top: 100px;
}

/* Custom Scroll Bar */

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--c4);
}
::-webkit-scrollbar-thumb {
  background: var(--c3);
}

/* Pre Loader */

#loading {
  background-color: #ffffffd9;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  margin-top: 0px;
  top: 0px;
}
#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}
.loading-icon img.loading-logo {
  width: 150px;
  height: 150px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Wrapper */

.wrapper {
  overflow: hidden;
}

/* Colors Root */

:root {
  --c1: #000;
  --c2: #fff;
  --c3: #005623;
  --c4: #edab00;
  --c5: #545855;
  --c6: #f4fff8;
  --c7: #0d233b;
}

/* Selection */

::selection {
  background: var(--c3);
  color: var(--c2);
}

/* Responsive Menu */

.ham-menu i {
  color: var(--c2);
  font-size: 20px;
  font-weight: 800;
  background: var(--c4);
  padding: 18px 20px;
  border-radius: 10px;
}
.responsive-links ul ul {
  display: none;
}
.responsive-links ul li i {
  font-size: 12px;
  position: absolute;
  right: -30px;
  top: 12px;
  transition: all .4s;
}
.responsive-links ul li i.active {
    transform: rotate(180deg);
}
.ham-menu a {
  display: block !important;
}
.responsive-menu.active {
  left: 0;
}
.ham-menu {
  display: flex;
  justify-content: end;
}
.responsive-menu-main {
  padding: 30px;
  position: relative;
  height: 100%;
}
.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c2);
}
.resp-social ul {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.resp-social ul li a {
  padding: 10px;
  color: #000;
  font-size: 18px;
}
.responsive-links {
  text-align: center;
}
.responsive-icon {
  position: absolute;
  top: 3%;
  right: 4%;
}
.responsive-icon a {
  padding: 10px;
  font-size: 30px;
  color: #fff;
}
.responsive-links ul li a {
  font-size: 17px;
  padding: 6px 0px;
  color: #fff;
  position: relative;
  font-weight: 600;
}
.responsive-links ul li {
  margin-bottom: 8px;
  position: relative;
}
.responsive-links {
  margin-top: 30px;
}
.responsive-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: var(--c1);
  z-index: 99999;
  left: -100%;
  top: 0;
  transition: all 0.7s;
}
.responsive-menu:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000000de;
}
.responsive-logo {
  width: 20%;
  margin: 0 0 60px 0;
}

/* Text Will Start From Right If Language is Urdu & Arabic */

/* html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3, 
html[lang="ar"] h4, 
html[lang="ar"] h5, 
html[lang="ar"] h6, 
html[lang="ar"] p, 
html[lang="ar"] ul,
html[lang="ar"] li, 
html[lang="ar"] label, 
html[lang="ar"] input[type="text"], 
html[lang="ar"] textarea, 
html[lang="ar"] th, 
html[lang="ar"] td, 
html[lang="ar"] span  
{
    text-align: right;
}

html[lang="ur"] h1, 
html[lang="ur"] h2, 
html[lang="ur"] h3, 
html[lang="ur"] h4, 
html[lang="ur"] h5, 
html[lang="ur"] h6, 
html[lang="ur"] p, 
html[lang="ur"] ul,
html[lang="ur"] li, 
html[lang="ur"] a, 
html[lang="ur"] button, 
html[lang="ur"] label, 
html[lang="ur"] input[type="text"], 
html[lang="ur"] textarea, 
html[lang="ur"] th, 
html[lang="ur"] td, 
html[lang="ur"] span 
{
    text-align: right;
} */


/* Header */

/* Sub Header */

.sub-header {
  background-color: var(--c3);
  padding: 10px 0px;
}
.info-social {
  display: flex;
  gap: 40px;
  align-items: center;
}
.gtranslate_wrapper img {
  width: 24px;
}
.gtranslate_wrapper .gt_languages a {
  color: var(--c3);
}
.h-social ul {
  display: flex;
  gap: 10px;
}
.location a i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #256f43;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
}
.location a {
  color: var(--c4);
  text-decoration: underline !important;
  transition: all 0.5s;
}
.h-social ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--c2);
  border: 1px solid #256f43;
  text-align: center;
  line-height: 35px;
  transition: all 0.5s;
}
.location {
  position: relative;
}
.location:after,
.h-items ul li:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background: #256f43;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.h-items ul li {
  position: relative;
}
.h-items ul li:last-child::after {
  display: none;
}
.h-items ul {
  display: flex;
  gap: 40px;
  justify-content: end;
}
.h-items ul li i {
  color: var(--c4);
  margin-right: 10px;
}
.h-items ul li a {
  color: var(--c2);
  transition: all 0.5s;
}
.h-items ul li a i {
  color: var(--c2);
  font-size: 12px;
  margin-left: 10px;
}
.h-social ul li a:hover {
  background: var(--c4);
  border-color: var(--c4);
}
.location a:hover {
  color: var(--c2);
}
.h-items ul li a:hover {
  color: var(--c4);
}

/* Main Header */

.main-header {
  background-color: var(--c2);
  padding: 46px 0px;
  position: relative;
}
.navigation nav ul {
  display: flex;
  gap: 20px;
}
.navigation nav ul li a {
  transition: all 0.5s ease;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  color: var(--c1);
  border-bottom: 2px solid transparent;
}
.navigation nav ul li a:hover {
  border-color: var(--c4);
  color: var(--c4);
}
.navigation nav ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.logo {
  position: absolute;
  top: -30px;
  z-index: 1;
  width: 200px;
}

/* Header Sub Menu */

.navigation nav ul li {
  position: relative;
}
.navigation nav ul li ul {
  position: absolute;
  color: var(--c1);
  background-color: #196739;
  flex-direction: column;
  top: 100%;
  gap: 0px;
  width: 185px;
  transition: all 0.5s;
  transform: scaleY(0);
  transform-origin: 0 0 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 18px -10px #000000b3;
  z-index: 1;
}
.navigation nav ul li:hover ul {
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}
.navigation nav ul li ul li {
  border-bottom: 1px solid #256f43;
}
.navigation nav ul li ul li:last-child {
  border-bottom: 0;
}
.navigation nav ul li ul li a:hover {
  background-color: var(--c4);
  color: var(--c2);
}
.navigation nav ul li ul li a {
  color: var(--c2);
  padding: 12px 40px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}
.navigation.nav-two ul {
  justify-content: end;
}
.navigation nav ul li ul li {
  position: relative;
}
.navigation nav ul li ul li:before {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  top: 50%;
  transform: translateY(-50%);
  color: var(--c4);
  left: 12px;
  z-index: 1;
  transition: all 0.5s;
}
.navigation nav ul li ul li:hover:before {
  color: var(--c3);
}

/* Banner */

.banner {
  position: relative;
}
.main-home {
  position: relative;
}
.whatsapp-btn {
  position: fixed;
  right: 20px;
  width: 130px;
  z-index: 999;
  bottom: 0;
}
.banner-content {
  position: absolute;
  bottom: 60px;
  width: 100%;
  z-index: 1;
}
.banner-img img {
  height: 100vh;
  object-fit: cover;
}
.banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  background: linear-gradient(0deg, #075928 10%, transparent 100%);
  left: 0;
}
.banner-title h1 {
  font-size: 50px;
  color: var(--c2);
  text-shadow: 4px 5px 12px rgba(0, 0, 0, 0.6);
}
.banner-content-inner p {
  color: var(--c2);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.banner-content-inner {
  padding-left: 100px;
}
.h-btns {
  display: flex;
  gap: 20px;
}
.write-btn a {
  background: transparent;
  border: 1px solid var(--c2);
}
.explore-btn a {
  background-color: var(--c4);
}
.explore-btn a:hover {
  background-color: var(--c3);
}
.write-btn a:hover {
  background-color: var(--c3);
}
.hero-slider ul.slick-dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  gap: 25px;
  background-color: var(--c2);
  border-radius: 50px;
  display: flex;
  transform: translateX(-50%);
  padding: 20px 70px;
}
.hero-slider ul.slick-dots li button {
  width: 10px;
  height: 10px;
  font-size: 0px;
  border: 0;
  background-color: var(--c4);
  border-radius: 50%;
  display: block;
  transition: all 0.5s;
}
.hero-slider ul.slick-dots li.slick-active button {
  background-color: var(--c3);
}
.hero-slider .slick-arrow {
  position: absolute;
  bottom: -8px;
  z-index: 999;
  cursor: pointer;
}
.hero-slider .slick-prev {
  left: 44%;
}
.hero-slider .slick-next {
  left: 55.5%;
}
.hero-slider ul.slick-dots li.slick-active button:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c3);
  top: -10px;
  left: -10px;
}
.hero-slider li.slick-active {
  position: relative;
}

/* About Us */

.side-content {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
  font-weight: 500;
  margin: 20px 0px;
  font-size: 18px;
}
.side-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 90%;
  background-color: var(--c3);
  border-radius: 10px;
  transform: translateY(-50%);
}
.about-btn {
  margin-top: 30px;
}
.about-us-img img {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  object-fit: cover;
}
.about-us-img {
  width: max-content;
  border: 15px solid #eebc25;
  border-radius: 50%;
  padding: 20px;
}
.about-content {
  padding-left: 30px;
}
.abt-details {
  margin-top: 40px;
}
.history .row:last-child .col-lg-6:last-child .abt-details {
  padding-left: 30px;
  position: relative;
}
.history .row:last-child .col-lg-6:last-child .abt-details::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--c3);
  left: 0;
  top: 0;
}

/* Aspect */

.aspect-item-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
/* html[lang="ur"] .aspect-item-icon , html[lang="ar"] .aspect-item-icon {
	margin: 0 0 0 auto;
} */
.aspect-item-icon {
  width: max-content;
  border: 2px solid var(--c4);
  border-radius: 50%;
  padding: 20px;
  margin: 0 auto;
}
.aspect-item {
  text-align: center;
  padding: 40px 40px;
  position: relative;
  height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aspect-item-content h4 {
  font-weight: 500;
  font-size: 22px;
  margin: 20px 0px 10px 0px;
}
.aspect-title {
  margin-bottom: 50px;
}
.aspect-title h2 {
  margin-bottom: 10px;
}
.aspect .col-lg-4:nth-child(1) .aspect-item,
.aspect .col-lg-4:nth-child(4) .aspect-item {
  padding-left: 0px;
}
.aspect .col-lg-4:nth-child(3) .aspect-item,
.aspect .col-lg-4:nth-child(6) .aspect-item {
  padding-right: 0px;
}
.aspect-item::before,
.aspect .row:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  border: 1px dashed #80808029;
  transform: translateY(-50%);
}
.aspect-item::before {
  width: 2px;
  height: 70%;
  right: -4%;
}
.aspect .row:nth-child(2)::before {
  width: 100%;
  height: 2px;
}
.aspect .col-lg-4:nth-child(3) .aspect-item::before,
.aspect .col-lg-4:nth-child(6) .aspect-item::before {
  display: none;
}
.aspect .row {
  position: relative;
}
.aspect {
  padding: 100px 0px;
  background-color: #f4fff8;
}
.btn-track {
  margin-top: 30px;
}

/* Audio Mehfil */

.audio-mehfil-bg {
  background-repeat: no-repeat;
  background-size: cover;
  height: 403px;
  position: relative;
  border-radius: 10px;
}
.audio-mehfil-info .sharing-socials {
    margin-top: 10px;
}
.audio-mehfil-info .sharing-socials strong {
    color: var(--c4);
}
.audio-mehfil-info .sharing-socials ul li a {
    color: var(--c2);
}
.audio-mahafil-btn a {
  background: var(--c4);
}
.center-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c2);
}
.center-text h4 {
  font-size: 38px;
  text-align: center;
  font-weight: 800;
  padding: 0px 20px;
}
.audio-mehfil-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.audio-mehfil-info h6 {
  color: var(--c4);
  margin-bottom: 8px;
}
.audio-mehfil-info a {
  color: var(--c2);
  font-size: 20px;
}
.play-pause-btn {
  width: 35px;
  height: 35px;
  background: var(--c4);
  color: var(--c2);
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  margin: 6px 0px;
  transition: all 0.5s;
}
.play-now-btn {
  color: var(--c2);
  text-decoration: underline !important;
  font-size: 12px;
  transition: all 0.5s;
}
.audio-mehfil-info {
  flex: 0 0 70%;
}
.play-and-duration {
  text-align: center;
}
.audio-duration {
  color: var(--c2);
  font-size: 12px;
}
.play-pause-btn:hover {
  color: var(--c2);
}
.play-now-btn:hover {
  color: var(--c4);
}
.audio-mehfil-slider .slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c3);
  top: -100px;
  border-radius: 50%;
  z-index: 99;
  cursor: pointer;
  transition: all 0.5s;
}
.audio-mehfil-slider .arrow-left {
  right: 60px;
}
.audio-mehfil-slider .arrow-right {
  right: 0;
}
.audio-mehfil-slider .slick-arrow img {
  width: 12px;
}
.audio-mehfil-slider .slick-arrow:hover {
  background: var(--c4);
}
.audio-mehfil-title {
  margin-bottom: 50px;
}
.audio-mehfil-box {
  margin: 0px 20px;
}
.audio-mahafil-btn {
  text-align: center;
  margin-top: 60px;
}
.audio-mahafil-btn a:hover {
  background-color: var(--c3);
}

/* Audio Mahafil Page */

.aduio-mehfil-page {
  padding: 100px 0px;
  background: #f4fff8;
}
.page-id-106 .audio-mehfil-bg {
  background-size: cover;
}
.page-id-106 .audio-mehfil-box {
  margin: 0px 0px 25px 0px;
}

/* Video Mahafil */

.video-box .sharing-socials {
    margin-top: 10px;
}
.video-box .sharing-socials strong {
    color: var(--c2);
}
.video-box .sharing-socials ul li a {
    color: var(--c2);
}
.video-container video {
  width: 100%;
  object-fit: cover;
}
.video-container a {
  display: block !important;
}
.video-mahafil-btn a:hover {
  background: var(--c3);
}
.fancybox__content {
  background: unset !important;
}
.video-placeholder iframe {
  width: 100%;
}
.video-mahafil-slider .slick-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c2);
  top: -100px;
  border-radius: 50%;
  z-index: 99;
  cursor: pointer;
  transition: all 0.5s;
}
.video-mahafil-slider .arrow-left {
  right: 60px;
}
.video-mahafil-slider .arrow-right {
  right: 0;
}
.video-mahafil-slider .slick-arrow img {
  width: 12px;
  filter: invert(1);
}
.video-mahafil-slider .slick-arrow:hover {
  background: var(--c4);
}
.video-mahafil-slider .slick-arrow:hover img {
  filter: invert(0);
}
.video-mahafil-title {
  margin-bottom: 50px;
}
.video-box {
  margin: 0px 15px;
}
.video-placeholder iframe,
.video-placeholder > img,
.video-container video {
  height: 300px;
  border-radius: 12px;
}
.video-content {
  margin-top: 15px;
}
.video-mahafil {
  padding: 100px 0px;
  background: var(--c7);
}
.video-mahafil-title h2 {
  color: var(--c2);
}
.video-mahafil-title h5 {
  color: #ebd154;
}
.video-content h4 {
  color: var(--c2);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 6px;
}
.video-content h5 {
  color: #8abd97;
  font-size: 16px;
}
.video-container {
  position: relative;
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-play-icon a img {
  width: 70px;
}
.video-mahafil-btn a {
  background: var(--c4);
}
.video-mahafil-btn {
  text-align: center;
  margin-top: 60px;
}

/* Video Mahafil Page */

.page-id-104 .video-box {
  margin: 0px 0px 40px 0px;
}
.page-id-104 .video-mahafil .sharing-socials strong {
    color: var(--c1);
}
.page-id-104 .video-mahafil .sharing-socials ul li a {
    color: var(--c3);
}
.page-id-104 .video-mahafil {
  background: #f6fff9;
}
.page-id-104 .video-mahafil-title h5 {
  color: var(--c3);
}
.page-id-104 .video-mahafil-title h2 {
  color: var(--c1);
}
.page-id-104 .video-content h4 {
  color: var(--c1);
}
.page-id-104 .video-content {
  display: flex;
  justify-content: space-between;
}
.video-download-btn a {
  color: var(--c3);
  font-size: 22px;
}
.page-id-104 .video-title {
  flex: 0 0 90%;
}

/* Resources */

.resource-title {
  padding: 0px 70px 0px 290px;
}
.learning-item .sharing-socials {
    margin-top: 10px;
}
.resource-title p {
  margin-bottom: 20px;
}
.resource-title h2 {
  margin-bottom: 10px;
}
.learning-item-content h3 {
  font-size: 22px;
  color: var(--c1);
  font-weight: 500;
}
.learning-item-img img {
  height: 468px;
  object-fit: cover;
	object-fit: contain;
	aspect-ratio: 900 / 1600;
	height: auto;
	width: 100%;
	object-position: bottom;
}
.learning-item {
  position: relative;
}
.counting-number {
  position: absolute;
  top: -37px;
  left: 0;
  color: var(--c1);
  font-size: 20px;
  font-weight: 500;
}
.learningslider .swiper-wrapper {
  padding: 40px 0px 80px 0px;
}
.learningslider .swiper-scrollbar-drag {
  background: var(--c3);
}
.learning-item-content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.read-more-btn a {
  padding: 12px 40px !important;
}
.read-more-btn {
  margin-top: 20px;
}
.learning-item-img a {
  display: block !important;
}

/* Resources Single Page */

.learning-resources {
  padding: 100px 0px;
}

.learning-title {
  margin-bottom: 50px;
}
.page-id-121 .read-more-btn a:hover {
  background: unset;
  color: unset;
}
.page-id-121 .read-more-btn {
  margin-top: 10px;
}
.page-id-121 .read-more-btn a {
  background: unset;
  color: var(--c3);
  padding: 0 !important;
}
.page-id-121 .learning-item {
  margin-bottom: 40px;
}
.page-id-121 .learning-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-id-121 .learning-item-content h3 {
  width: 80%;
}
.page-id-121 .learning-item-content a {
  color: var(--c3);
  font-size: 20px;
}

/* Naat */

.naat-view-btn a {
  background: var(--c3);
}
.naat-view-btn a:hover {
  background-color: var(--c3);
}
.naat-box {
  display: flex;
  background: var(--c2);
  align-items: center;
  margin-bottom: 30px;
}
.naat-image {
  flex: 0 0 20%;
  padding: 40px 30px;
}
.naat-btn {
  flex: 0 0 15%;
  background: #fdfaee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}
.naat-content {
  flex: 0 0 65%;
  padding: 40px 40px;
}
.naat {
  background-color: #f4fff8;
  padding: 100px 0px;
}
.naat-title {
  text-align: center;
  margin-bottom: 50px;
}
.naat-and-duration {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.naat-title-text {
  flex: 0 0 75%;
}
.wazaif-e-tarteeb .wpcf7-response-output, .contact-support .wpcf7-response-output {
    text-align: center;
}
.naats-btns ul li a {
    background: unset !important;
    border: 2px solid var(--c3) !important;
    border-radius: 50px !important;
    color: var(--c3) !important;
    padding: 15px 30px;
}
.naats-btns ul {
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border: 0;
}
.naats-btns ul li a.active {
    background-color: var(--c3) !important;
    color: var(--c2) !important;
}

.naat-bar {
  width: 100%;
  margin-top: 10px;
  position: relative;
}
.progress-bar:before {
  position: absolute;
  content: "\f111";
  right: -1px;
  font-family: "FontAwesome";
  color: var(--c2);
}

.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  height: 10px;
  cursor: pointer;
}

.progress-bar {
  height: 10px;
  background-color: #4caf50;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s;
}

.progress-indicator {
  width: 15px;
  height: 15px;
  background-color: #4caf50;
  border-radius: 50%;
  position: absolute;
  top: -2.5px;
  left: 0;
  transform: translateX(-50%);
  transition: left 0.1s;
  cursor: pointer;
}

.progress-times {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 12px;
  position: relative;
}

.start-time,
.end-time {
  position: absolute;
  top: 12px;
}
.end-time {
  right: 0;
}
.naat-title-text h3 {
  color: var(--c1);
  font-size: 26px;
}
.naat-duration h5 {
  text-transform: uppercase;
  font-size: 14px;
}
.naat-view-btn {
  text-align: center;
  margin-top: 60px;
}
.naat-view-btn a {
  background: var(--c4);
}
.naat-duration h2 {
  font-weight: 400;
  font-size: 28px !important;
}
.naat-play-pause-btn:hover {
  background: var(--c3);
  color: var(--c4);
}
.progress-times span {
  color: var(--c1);
  font-weight: 600;
}
.naat-play-pause-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  background: var(--c4);
  color: var(--c2);
  border-radius: 50%;
  font-size: 30px;
  transition: all 0.5s;
}
.naat-box:last-child {
  margin-bottom: 0;
}

/* Naat Single Page */

/* .page-id-76 .naat-content {
  flex: 0 0 55%;
} */
.naat-download-btn {
  flex: 0 0 10%;
}
.naat-download-btn a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  color: var(--c3);
  text-decoration: underline !important;
}
.naat-download-btn i {
  font-size: 22px;
  padding-bottom: 14px;
}

/*Naat & Video Mahafil Search Box*/

.single-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 10px;
  justify-content: center;
}
.searchbox-input {
  width: 100%;
}
.icon i {
  color: var(--c3);
  font-size: 18px;
}

.select-input input {
  width: 100%;
  outline: 0;
  border: 1px solid transparent;
  color: var(--c1);
  transition: all 0.5s;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 15px;
}
.select-input input::placeholder {
  color: gray;
}
.select-input input:focus {
  border-color: var(--c3);
}

/*.select-input input[type="date"]::-webkit-calendar-picker-indicator {*/
/*    display: none;*/
/*}*/

/*.select-input #dateInput::placeholder {*/
/*    color: gray;*/
/*}*/
/*.select-input #dateInput:invalid {*/
/*    color: gray;*/
/*}*/

/*.select-input select {*/
/*  outline: 0;*/
/*  border: 0;*/
/*  color: var(--c1);*/
/*  font-size: 16px;*/
/*  font-weight: 500;*/
/*  letter-spacing: 0.3px;*/
/*  background-color: transparent;*/
/*  width: 100%;*/
/*  cursor: pointer;*/
/*  text-transform: capitalize;*/
/*}*/
/*.select-input option {*/
/*  background: var(--c4);*/
/*  color: var(--c2);*/
/*}*/

.search-box {
  background-color: var(--c2);
  padding: 6px 20px;
  position: relative;
  border-radius: 40px;
  margin: 0px 60px 50px 60px;
  border: 1px solid #dbe3de;
}
.search-btn button {
  position: absolute;
  right: 8px;
  color: var(--c2);
  font-size: 18px;
  font-weight: 500;
  padding: 18px 60px;
  border-radius: 40px;
  border: 0;
  transition: all 0.5s;
  background: var(--c4);
}
.single-search-box:after {
  position: absolute;
  content: "";
  right: -10px;
  background-color: #eeeeee;
  width: 1px;
  height: 50px;
}
.search-btn button:hover {
  background: var(--c3);
}
.search-btn button i {
  padding-right: 10px;
}

/* Naat & Video Mahafil Page Pagination*/

.paginations ul {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 30px;
  align-items: center;
}
.paginations ul li:first-child a:hover,
.paginations ul li:last-child a:hover {
  background: var(--c4);
  border-color: transparent;
}
.paginations ul li:first-child a,
.paginations ul li:last-child a {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: var(--c3);
  color: var(--c2);
}
.paginations ul li a,
.paginations ul li .current {
  color: var(--c1);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  transition: all 0.5s;
  cursor: pointer;
}
.paginations ul li .current {
  border-color: var(--c3);
  color: var(--c3);
}
.paginations ul li a:hover {
  border-color: var(--c3);
  color: var(--c3);
}
.paginations ul li:first-child a {
  background: #fff5e1;
  color: var(--c5);
}

/* Contact Us & Wazaif Tarteeb */

.contact-us {
  padding: 100px 0px;
}
.contact-us .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--c4);
}
.contact-us .wpcf7 form .wpcf7-response-output {
  margin: 0px 20px 30px 20px;
}
.send-btn {
  margin-bottom: 0;
}
.contact-us .wpcf7-spinner {
  position: absolute;
  top: 32px;
  left: 150px;
}
.form-textarea i {
  top: 70px !important;
}
.form-field .wpcf7-field-group-add,
button.wpcf7-field-group-remove {
  position: absolute;
  right: -60px;
  top: 55px;
  border: 0;
  background: var(--c4);
  color: var(--c2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
}
.form-field .wpcf7-field-group:last-child {
  margin-bottom: 0;
}
.form-field .wpcf7-field-group {
  margin-bottom: 20px;
}
.form-field .wpcf7-field-group-remove {
  right: -110px;
}
.contact-title {
  margin-bottom: 50px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  outline: 0;
  border: 0;
  border: 1px solid #b5b5b5;
  padding: 20px 30px;
  border-radius: 10px;
  transition: all 0.5s;
}
.form-field i {
  position: absolute;
  right: 30px;
  top: 60%;
  color: var(--c3);
  font-size: 20px;
}
.form-field {
  position: relative;
  margin: 0px 20px 30px 20px;
}
.form-field label {
  color: var(--c1);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.send-btn input {
  background: var(--c4);
  padding: 22px 30px;
  color: var(--c2);
  text-align: start;
  font-size: 26px;
  font-weight: 500;
  transition: all 0.5s;
  border: unset;
}
.send-btn i {
  top: 28px;
  right: 30px;
  color: var(--c2);
  font-size: 40px;
}
.send-btn input:hover {
  background: var(--c3);
}
.form-field input:focus,
.form-field textarea:focus {
  box-shadow: -30px 30px 80px -30px #00000094;
  border-color: transparent;
}
.form-field .wpcf7-list-item {
  border: 1px solid #b5b5b5;
  padding: 18px 30px;
  border-radius: 10px;
  width: 30%;
  margin-left: 0;
}
.form-field span.wpcf7-list-item label {
  display: flex;
  margin-bottom: 0;
  gap: 50px;
}
.form-field span.wpcf7-list-item.first {
  margin-right: 20px;
}

/* Nearest Mahafil */

.near-map iframe {
  width: 100%;
  height: 100%;
}
.near-map {
  height: 100%;
}
.near-mahafil {
  padding: 100px 0px;
}
.near-item-content {
  padding: 30px 20px 40px 20px;
  background-color: var(--c2);
  margin-top: -15px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.near-item {
  box-shadow: 0px 0px 20px -12px;
  border-radius: 15px;
  overflow: hidden;
}
.near-item-content h3 {
  font-weight: 500;
  font-size: 24px;
}
.near-item-content .main-btn a {
  padding: 15px 35px;
  font-size: 16px;
}
.page-id-118 .search-box {
  width: 60%;
  margin: 0px auto 120px auto;
}
.near-item-content p {
  position: relative;
  padding-left: 20px;
  margin: 10px 0px;
}
.near-item-content p i {
  position: absolute;
  top: 6px;
  left: 0;
}
.near-item-img {
  position: relative;
}
.near-item-img i {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: var(--c2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 9px -3px;
}

/* History */

.about-content p {
  margin-top: 20px;
}

/* Mission */

.mission-box {
  background: #f4fff8;
  padding: 100px 60px;
  position: relative;
}
.mission-title .side-content:before {
  width: 3px;
}
.mission-title .side-content {
  width: 90%;
  font-weight: 400;
}
.mission-image {
  position: absolute;
  top: -50px;
  width: 510px;
  right: 15px;
}

/* Aspect In About Us Page */

.page-id-160 .aspect {
  background-color: transparent;
  padding: unset;
}

/* Joining */

.joining {
  background-size: cover;
  background-position: center;
  padding: 265px 0px;
}
.joining-content p {
  margin: 20px 0px;
  width: 90%;
}

/* Recent Updates */

.recent-updates {
  background: #f4fff8;
  padding: 100px 0px;
}
.recent-title.main-title {
  margin-bottom: 50px;
}
.recent-box {
  background: var(--c2);
  border-radius: 10px;
  box-shadow: 0px 0px 15px -14px;
  padding: 40px 0px;
  transition: all 0.5s;
  margin-bottom: 15px;
}
.recent-box:hover {
  background: #0c223b;
}
.recent-icon h4 {
  color: var(--c3);
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}
.recent-icon h4 i {
  font-size: 24px;
  margin-right: 10px;
}
.recent-content h2 {
  font-size: 22px;
  position: relative;
  padding-top: 20px;
  width: 80%;
}
.recent-content h2:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 5px;
  background: var(--c3);
  top: 0;
}
.recent-content p {
  padding: 10px 0px;
  color: var(--c5);
  font-size: 15px;
  width: 92%;
}
.recent-content span {
  color: var(--c5);
  display: inline-block;
  font-size: 15px;
}
.recent-content span i {
  color: var(--c3);
  margin-right: 10px;
}
.recent-content {
  position: relative;
}
.recent-content:before,
.recent-content:after {
  position: absolute;
  content: "";
}
.recent-content:after {
  width: 2px;
  height: 100%;
  background: #e5e5e5;
  right: 0;
  top: 0;
}
.recent-content:before {
  width: 2px;
  height: 40px;
  background: var(--c3);
  right: 0;
  z-index: 1;
}
.date-and-read ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.date-and-read ul li:first-child i {
  color: var(--c3);
  margin-right: 15px;
}
.date-and-read ul li:first-child {
  color: var(--c1);
  font-weight: 400;
}
.date-and-read ul li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background: var(--c4);
  line-height: 50px;
  color: var(--c2);
}
.read-btn {
  margin-left: 70px;
  display: none;
  margin-top: 15px;
}
.read-btn a {
  padding: 14px 40px;
}
.recent-box:hover .recent-icon h4 {
  color: var(--c4);
}
.recent-box:hover .recent-content h2,
.recent-box:hover .date-and-read ul li:first-child {
  color: var(--c2);
}
.recent-box:hover .recent-content p,
.recent-box:hover .recent-content span {
  color: gray;
}
.recent-box:hover .recent-content span i,
.recent-box:hover .date-and-read ul li:first-child i {
  color: var(--c4);
}
.recent-box:hover .recent-content:before,
.recent-box:hover .recent-content h2:before {
  background: var(--c4);
}
.recent-box:hover .date-and-read ul li a {
  background: var(--c2);
  color: var(--c4);
}
.recent-box:hover .read-btn {
  display: block;
}
.recent-box:hover .date-and-read ul li a i {
  transform: rotate(180deg);
}

/* Recent Updates Single Page  */

.service-details {
  padding: 100px 0px;
}
.key-points-image {
    flex: 0 0 50%;
}
.key-points h5 {
    width: 70%;
}
.blog-title {
    margin-bottom: 40px;
}
.single-post .wrapper {
  overflow: unset;
}
.service-details-main-image {
  position: relative;
}
.service-details-content h5,
.key-points h5 {
  color: var(--c4);
  font-weight: 600;
  margin-top: 20px;
  text-transform: capitalize;
}
.service-details-content ul {
  margin-top: 20px;
}
.service-details-content ul li {
  list-style: disc;
  margin-left: 20px;
  color: var(--c4);
  font-weight: 500;
  padding-bottom: 10px;
}
.service-details-content span {
  color: var(--c3);
}
/* .service-details-main-image:before {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--c3);
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 0px 0px 0px 170px;
  z-index: 999;
} */
.service-details-main-image,
.key-points-image {
  border-radius: 20px;
  overflow: hidden;
}
.service-details-main-image img,
.key-points-image img {
  transition: all 0.5s;
}
.service-details-main-image img:hover,
.key-points-image img:hover {
  transform: scale(1.1);
}
.current-menu-item {
  color: var(--c2) !important;
}
.service-details-main-image img {
  height: 500px;
  object-fit: cover;
}
.key-points-image img {
  height: 380px;
  object-fit: cover;
}
.service-details-content h6 {
  padding-top: 20px;
  color: var(--c3);
}
.single-services .project {
  margin-top: 80px;
}
.service-details-end-content {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.key-points {
  flex: 0 0 50%;
}
.service-details-content h4 {
  padding-top: 40px;
  font-size: 32px;
  color: #010e37;
  font-weight: 600;
}
.service-details-content > p {
  padding-top: 20px;
}
.key-points ul {
  margin-top: 30px;
}
.key-points ul li {
  margin-bottom: 10px;
  font-size: 18px;
}
.key-points ul li i {
  margin-right: 12px;
  color: var(--c3);
}

/* Recent Updates Single Page Sidebar */

.side-bar {
  position: sticky;
  top: 40px;
}
.side-links-main {
  background-color: var(--c3);
  padding: 20px 30px;
  border-radius: 18px;
}
.side-links-main h4 {
  font-size: 20px;
  padding: 15px 0px;
  color: var(--c2);
}
.side-links-main ul li a {
  padding: 20px 0px;
  font-size: 15px;
  display: flex !important;
  color: var(--c2);
  justify-content: space-between;
  transition: all 0.5s;
  font-weight: 600;
  align-items: center;
  border-bottom: 1px solid #e3e8f4;
}
.side-links-main ul li:last-child a {
  border: 0;
}
.side-links-main ul li a:hover {
  color: var(--c4);
}

/* Journey Circle */

.journey {
  background: #f4fff8;
  padding: 100px 0px;
}
.journey-title {
  margin-bottom: 50px;
}
.journey-image {
  border: 10px solid #eebc25;
  border-radius: 50%;
  padding: 6px;
  width: max-content;
  margin: 0 auto;
}
.journey-image img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
}
.journey-circle {
  text-align: center;
  padding: 70px 20px 20px 20px;
  position: relative;
  border-top: 3px dashed #868d89a1;
}
.journey-description p {
  color: var(--c5);
  margin-top: 20px;
  font-weight: 500;
}
.journey-date span {
  display: inline-block;
  color: var(--c3);
  font-weight: 500;
  font-=si: ;
  font-=si: 2;
  font-size: 18px;
}

/* Guidence */

.guidance {
  background: #f4fff8;
}
.bg-prop {
  background-size: cover;
  background-position: center;
}
.guidance-title h2 {
  font-weight: 400;
  margin-bottom: 20px;
}
.guidance-title {
  padding: 200px;
}

/*Team*/

.team-content {
  box-shadow: 0px 0px 20px -12px;
  text-align: center;
  padding: 100px 0px 50px 0px;
}
.team-main {
  margin-bottom: 60px;
}
section.team .row:last-child .col-lg-4:nth-child(4) .team-main,
section.team .row:last-child .col-lg-4:last-child .team-main {
  margin-bottom: 0;
}
.team-title {
  margin-bottom: 50px;
}
.team-image img {
  border-radius: 50%;
  width: 200px;
  margin: 0 auto;
  object-fit: cover;
  height: 200px;
}
.team-image {
  margin-bottom: -100px;
}
.team-content h2 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}
.team-content h5 {
  margin-bottom: 0;
  margin-top: 30px;
}

/*Accountability*/

section.accountability {
  background: #f4fff8;
  padding: 100px 0px;
}

.accountability-title h2 {
  font-weight: 400;
  margin-bottom: 20px;
}

.accountability-title {
  margin-bottom: 50px;
}

.accountability-table h3 {
  background: var(--c4);
  padding: 20px 0px 20px 30px;
  font-size: 20px;
  color: var(--c2);
  font-weight: 400;
}

.accountability-table ul {
  background: var(--c2);
  padding: 20px 0px 20px 30px;
}

.accountability-table ul li {
  margin-bottom: 20px;
  font-size: 15px;
}

.accountability-table ul li:last-child {
  margin-bottom: 0;
}

/*Fundaing*/

.funding {
  background-size: cover;
  background-position: center;
  padding: 290px 0px;
  position: relative;
  z-index: 1;
}
.funding-content h2 {
  color: var(--c4);
}

.funding:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00000069;
  z-index: -1;
}
.funding-content p {
  padding: 20px 0px;
  width: 90%;
  color: var(--c2);
}

/* Inner Banner */

.inner-header {
  position: relative;
}
.inner-header .banner-img {
  background-position: center;
  height: 500px;
  background-size: cover;
  background-attachment: fixed;
}
.inner-header .banner-title h5 {
  color: var(--c4);
}
/*.page-id-112 .banner-title h5 , .page-id-113 .banner-title h5 {*/
/*    color: var(--c3);*/
/*}*/
/*.page-id-112 .banner-title h1 , .page-id-113 .banner-title h1 {*/
/*    color: var(--c1);*/
/*    text-shadow: unset;*/
/*}*/

/* Footer */

.footer {
  background-color: var(--c7);
}
.footer-logo {
  width: 140px;
  margin: 0 auto;
}
.foot-logo-bottom {
  text-align: center;
}
.foot-logo-bottom ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.foot-logo-bottom ul li img {
  width: 250px;
}
.foot-logo-bottom p {
  color: #88909c;
  font-size: 20px;
  font-weight: 400;
  margin: 20px 0px 30px 0px;
  line-height: 1.9;
}
.footer-item h3 {
  color: var(--c2);
  font-size: 24px;
  position: relative;
  margin-bottom: 50px;
}
.footer-item h3::before,
.footer-item h3::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  height: 3px;
}
.footer-item h3::before {
  width: 70px;
  background-color: #7d6922;
}
.footer-item h3::after {
  background-color: #edab00;
  width: 40px;
}
.footer-links ul li a {
  color: #88909c;
  font-weight: 400;
  transition: all 0.4s;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a:hover {
  padding-left: 10px;
}
.footer-contact ul li {
  color: #88909c;
  font-weight: 400;
  transition: all 0.4s;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
}
.footer-contact ul li a {
  color: inherit;
}
.footer-contact ul li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--c4);
  font-size: 20px;
}
.footer-socials ul li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--c2);
  font-size: 22px;
  transition: all 0.4s;
}
.footer-socials ul {
  display: flex;
  gap: 6px;
}
.footer-socials ul li a:hover {
  background-color: var(--c4);
}
.talk-to-us h3 {
  margin-bottom: 40px;
}
.talk-to-us .write-btn {
  margin-bottom: 30px;
}
.top-footer {
  padding: 30px 0px 60px 0px;
}
.middle-footer {
  padding: 60px 0px 50px 0px;
  border-top: 1px solid rgb(128 128 128 / 34%);
  border-bottom: 1px solid rgb(128 128 128 / 34%);
}
.copyrights p {
  font-weight: 400;
  color: #88909c;
  font-size: 18px;
}
.bottom-footer {
  padding: 30px 0px;
  text-align: center;
}

.serial-wrap {
    display: flex;
    align-items: start;
    gap: 6px;
    flex-direction: column;
}
.audio-box .naat-and-duration {
    margin-bottom: 15px;
}

.audio-box .naat-title {
    margin-bottom: 15px;
}
.audio-box .naat-content {
    flex: 0 0 60%;
}

.audio-box .naat-download {flex: 0 0 6%;text-align: left;font-size: 35px;}

.audio-box .naat-download a {
    color: var(--c3);
}



.resp-trans a.gt_switcher-popup {
    color: var(--c2);
    padding: 10px;
}
html.translated-rtl .responsive-links ul li {
    text-align: center;
}
html.translated-rtl .video-mahafil-slider .arrow-left, html.translated-rtl .audio-mehfil-slider .arrow-left {
    left: 0;
	right: unset;
}
html.translated-rtl .video-mahafil-slider .arrow-right, html.translated-rtl .audio-mehfil-slider .arrow-right {
    left: 60px;
	right: unset;
}
.learning-item-content a {
    color: var(--c3);
    font-size: 24px;
}
.audio-down-btn a {
    color: var(--c2);
    font-size: 22px;
}
html.translated-rtl, html.translated-rtl  body {
    direction: rtl !important;
}
.translated-rtl .slick-track, .translated-rtl .slick-slide {
    float: left;
}
html.translated-rtl .h-items ul li i {
    margin-right: 0px;
    margin-left: 10px;
}
html.translated-rtl .location:after, html.translated-rtl .h-items ul li:after {
    right: unset;
    left: -20px;
}
html.translated-rtl .location a i {
    margin-right: unset;
    margin-left: 10px;
}
html.translated-rtl .side-content {
    padding-left: unset;
    padding-right: 20px;
}
html.translated-rtl .side-content::before {
    right: 0;
    left: unset;
}
html.translated-rtl .aspect-item::before {
    right: unset;
    left: -4%;
}
html.translated-rtl .aspect .col-lg-4:nth-child(1) .aspect-item, html.translated-rtl .aspect .col-lg-4:nth-child(4) .aspect-item {
    padding-right: unset;
    padding-left: 40px;
}
html.translated-rtl .aspect .col-lg-4:nth-child(3) .aspect-item, html.translated-rtl .aspect .col-lg-4:nth-child(6) .aspect-item{
	padding-left: unset;
    padding-right: 40px;
}
html.translated-rtl .audio-box .naat-download {
    text-align: right;
}
html.translated-rtl .resource-title {
    padding: 0px 290px 0px 70px;
}
html.translated-rtl .footer-item h3::before, html.translated-rtl .footer-item h3::after {
    left: unset;
    right: 0;
}
html.translated-rtl .footer-contact ul li i {
    left: unset;
    right: 0;
}
html.translated-rtl .footer-contact ul li {
    padding-left: unset;
    padding-right: 40px;
}
html.translated-rtl .history .row:last-child .col-lg-6:last-child .abt-details {
    padding-left: unset;
    padding-right: 30px;
}
html.translated-rtl .history .row:last-child .col-lg-6:last-child .abt-details::before {
    left: unset;
    right: 0;
}
html.translated-rtl .mission-image {
    left: 15px;
    right: unset;
}
html.translated-rtl .form-field input, html.translated-rtl .form-field textarea {
    padding: 20px 70px 20px 30px;
    text-align: right;
}
.site-map-item h3 {
    font-size: 32px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.site-map-item h3::before {
    position: absolute;
    bottom: 0;
    left: 2px;
    width: 60px;
    height: 4px;
    background-color: var(--c3);
    content: '';
}
.site-map-item ul {
    margin: 0px !important;
}
.site-map-item ul li a {
    font-size: 18px;
    color: var(--c1);
    transition: all .4s;
}
.site-map-item ul li {
    margin-bottom: 10px;
}
.site-map-item ul li a:hover {
    padding-left: 10px;
    color: var(--c3);
}
.site-map-item {
    padding-right: 30px;
}
.sitemap-sec {
    padding: 100px 0px;
}

.sharing-socials {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.sharing-socials ul {
    display: flex;
    gap: 15px;
	align-items: center;
}
.sharing-socials strong {
    font-weight: 600;
    color: #000;
}
.sharing-socials ul li a {
    font-size: 16px;
    color: var(--c3);
}

p.form-content {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--c3);
}

.funds-table {
							width: 100%;
							margin: 20px 0;
						}
						.table-header h1 {
							font-size: 24px;
							margin-bottom: 20px;
						}
						.table-content {
							list-style: none;
							padding: 0;
							margin: 0;
							border: 1px solid #ddd;
						}
						.table-row {
							display: flex;
							justify-content: space-between;
							padding: 15px;
							border-bottom: 1px solid #ddd;
						}
						.table-row:last-child {
							border-bottom: none;
						}
						.table-row.header {
							background-color: #F7B614;
							color: #fff;
							font-weight: bold;
						}
						.table-row .col {
							flex: 1;
							padding: 0 10px;
						}