@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap');
input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}
::placeholder {
  color: #000 !important;   
  opacity: .3 !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    margin: 0;
}
body{
	background:#f1f1f1;
}
.flexDouble{
  flex:2 !important;
}
:root {
  --theme-colour: #FEF104;
  --common-colour: #017437;
  --common-font: 'Sawarabi Mincho'; 
}
body,html {
    font-family: 'DM Sans';
    overflow-x: hidden;
}


.ramadanBtn{
  border: 2px solid #ccc;
  border-radius: 6px;
  animation: blinkBorder .9s linear infinite;
}

@keyframes blinkBorder {
  0%   { border-color: #ccc; }
  50%  { border-color: #bb7413; }
  100% { border-color: #ccc; }
}


p
{
    font-size: 16px;
    line-height: 22px;
    color: #151313;
    margin: 0;
    font-weight: 400;
	
}
*{
    margin: 0;
    padding: 0;
}
figure {
    margin-bottom: 0;
}
h1 {
    font-size: 70px;
    font-family: var(--common-font);
}
h2 {
    font-size: 60px;
}
.swal2-confirm{
	background:var(--common-colour) !important;
	color:#fff !important
}
h2{
font-family: var(--common-font);
}
.swal2-title{
	font-family:unset !important;
}
a,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
	 
}
a{
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    display: block;
}
figure {
    overflow: hidden;
}

/* Width */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: darkred;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #12491d transparent;
}

.navbar-dropdown.active a{
	border-bottom:4px solid var(--theme-colour) !important
}



.gap {
    padding-top: 0;
    padding-bottom: 0;
}
.no-top {
    padding-top: 0;
}
.no-bottom {
    padding-bottom: 0;
}
/* 01. header-top */
.content-header {
    display: flex;
    align-items: center;
}
.content-header svg {
    width: 24px;
    height: auto;
}
.content-header h4 {
    padding-left: 6px;
    font-size: 16px;
    color: #fff;
}
.header-search{display:flex}
.login a {
    font-size: 14px;
    color: #fff;
}
.login {
    justify-content: end;
}
.top-bar {
    padding: 15px 0;
}
header {
    position: absolute;
    width: 100%;
    z-index: 2;
}




.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-circle {
    width: 90px;
    height: 90px;
    border: 5px solid #ddd;
    border-top: 5px solid #12491d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 1s linear infinite;
}

.loader-circle img {
    width: 40px;
    height: 40px;
    animation: spin-reverse 1s linear infinite;
}

/* Rotate animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Optional: icon stable / reverse */
@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}




.bannr-section {
    padding-top: 250px;
    text-align: center;
    padding-bottom: 60px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}
.bannr-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #000;
    opacity: .3;
    left: 0;
}
.bannr-text {
    position: relative;
}
.bannr-text h2 {
    color: #fff;
    font-size: 70px;
    line-height: 70px;
    font-family: var(--common-font);
    padding-top: 30px;
    padding-bottom: 15px;
}
/* 54. breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 1rem;
    color: #ffffff;
    padding-left: 1rem;
}
ol.breadcrumb {
    justify-content: center;
}
ol.breadcrumb a {
    font-size: 18px;
    color: #fff;
}
.breadcrumb-item.active {
    color: #ffffff;
}

/* 02. navbar */
.navbar {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0;
}
.navbar-logo {
  color: #ff3f34;
  text-decoration: none;
  font-size: 25px;
  padding: 0px 20px;
}
.navbar-links {
  list-style-type: none;
  display: flex;
	
}
.navbar-links li:not(:last-child) {
    padding-right: 20px;
}
.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #707070;
    transition: 0.4s all;
    padding-bottom: 10px;
    padding-top: 10px;
}
.navbar-links li.navbar-dropdown {
  position: relative;
}
.mobile-nav > ul > li span {
    background-color: #fbc50b;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: capitalize;
    position: absolute;
    top: 0;
}
.navbar-links li.navbar-dropdown span {
    position: absolute;
    top: -9px;
    background-color: #fbc50b;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: bold;
    right: 18px;
}
.navbar-links li.navbar-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translatex(0px);
    z-index: 1;
}
.navbar-links li.navbar-dropdown .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translatex(50px);
    left: 0;
    width: 230px;
    box-shadow: 0px 10px 10px 3px hsl(0deg 0% 0% / 16%);
    z-index: 111;
    transition: 0.4s all;
}
.navbar-links li.navbar-dropdown .dropdown a {
    font-size: 16px;
    padding-left: 25px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 700;
    border: 0;
    position: relative;
    text-transform: capitalize;
    color: #000;
    background-color: #FFF;
}
.navbar-links li.navbar-dropdown .dropdown a:not(:last-child):before {
    content: "";
    z-index: 11;
    position: absolute;
    height: 1px;
    background-color: #58585829;
    width: 75%;
    bottom: 0;
}
.navbar-links li:hover > a {
    border-bottom: 5px solid var(--theme-colour);
}
.navbar-links li > a {
    border-bottom: 5px solid transparent;
    color: white;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
}
.hamburger-icon{
    display: flex;
    align-items: center;
    justify-content: end;
}
.hamburger-icon svg {
    width: 25px;
    height: 25px;
    fill: black;
    margin-right: 20px;
    display: block;
}


ul.social-media {
    display: flex;
    align-items: center;
}
.connect-with h4 {
    color: #fff;
    padding-bottom: 20px;
    font-family: var(--common-font);
}
ul.social-media li {
    margin-right: 10px;
}
ul.social-media i {
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 51%;
    font-size: 18px;
    color: white;
    border: 3px solid var(--theme-colour);
}
ul.social-media i:hover {
    background-color: var(--theme-colour);
    color: #000;
}
/* 03. two-bar */
.two-bar {
	background: var(--common-colour);
    padding: 5px 15px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-radius:60px
}
/*
.two-bar:before {
    border-top-left-radius: 50%;
    top: 0;
    content: "";
    position: absolute;
    width: 130px;
    height: 100%;
    background-color: var(--common-colour);
    left: -50px;
    border-bottom-left-radius: 50%;
}
.two-bar:after {
    border-top-right-radius: 50%;
    top: 0;
    content: "";
    position: absolute;
    width: 130px;
    height: 100%;
    background-color: var(--common-colour);
    right: -60px;
    border-bottom-right-radius: 50%;
}
*/
.logo {
    z-index: 1;
}

.header-search svg{
    fill: #fff;
    width: 20px;
    margin-right: 16px;
}
header ul.social-media i {
    height: 0;
    width: 50px;
    border: 0;
    background-color: transparent;
}
header ul.social-media li {
    position: relative;
}
/* header ul.social-media li:not(:last-child):after {
    top: -6px;
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    background-color: white;
    right: -6px;
} */
header ul.social-media i:hover {
    color: var(--theme-colour);
}
.location span {
    color: #fff;
}
/* 04. mobile-nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: #000;
    padding: 50px 40px 15px;
    z-index: 5;
    transition: 0.45s ease-in-out;
    transform: translateX(-101%);
    -webkit-transform: translateX(-101%);
    -moz-transform: translateX(-101%);
    -o-transform: translateX(-101%);
    overflow-y: auto;
}
.mobile-nav ul li a svg {
    width: 11px;
}
.for #nav-icon4{
  color: black;   
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.responsive-bar {
    display: none;
}
#nav-icon4 span:nth-child(3) {
  top: 25px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 35px;
  left: 8px;
}

i#nav-icon4 {
    display: none;
}
#nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  font-size: 25px;
  color: white;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.mobile-nav > ul > li.menu-item-has-children:before {
    color: #fff;
    position: absolute;
    top: 17px;
    right: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 11px;
}
.mobile-nav > ul > li.menu-item-has-children.active:before {
    transform: rotate(90deg);
    color: var(--theme-colour);
}
.mobile-nav > ul > li {
    position: relative;
    border-bottom: 0px solid #d4d4d4;
    padding: 10px 0;
    display: block;
}
.mobile-nav > ul > li:not(:last-child) {
    border-bottom: 1px solid #5b5b5b;
}
.mobile-nav > ul li > a {
    font-size: 14px;
    line-height: 26px;
    text-transform: capitalize;
    color: #fff;
}
.mobile-nav > ul > li > a {
    font-size: 16px;
    line-height: 30px;
}
.mobile-nav > ul > li.menu-item-has-children > ul.sub-menu {
    padding-left: 25px;
    padding-top: 10px;
    padding-bottom: 5px;
    position: absolute;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translatey(15px);
    -webkit-transform: translatey(15px);
    -moz-transform: translatey(15px);
    -o-transform: translatey(15px);
    border-top: 1px solid #5b5b5b;
    margin-top: 8px;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu {
    position: relative;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -o-transform: translatey(0);
    transition: .5s;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li {
    padding: 5px 0;
    position: relative;
}
.res-log img {
    width: auto;
}
.mobile-nav > ul > li.menu-item-has-children.active > ul.sub-menu li:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -13px;
    background-color: var(--theme-colour);
}
.res-log {
    margin-bottom: 30px;
}
.res-rights p{
    color: #d6d6d6;
    font-weight: bold;
    letter-spacing: 5px;
    margin-top: 30px;
}

.mobile-nav.open {
    transform: translateX(0) !important;
    z-index: 33333333;
    box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-webkit-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 39px -4px rgba(0,0,0,0.75);
}
li.menu-item-has-children.active {
    background-color: transparent;
}
.mobile-nav a#res-cross:before {
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 28px;
}
.bar-menu i {
    color: black;
    background-color: transparent;
    font-size: 24px;
}













/* 08. namaz-time */
.namaz-time img {
    position: relative;
}

.namaz-time {
    text-align: center;
    width: 17%;
    padding-top: 10px;
    border: 1px solid #bcbcbc;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 151px;
    padding-bottom: 70px;
    position: relative;
    background-image: url(../../assets/images/icons/namaj-bg.png);
    overflow: hidden;
    margin-left: -1px;
    border-top: 0;
    margin-top: -1px;
}

.namaz-timing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* white overlay */
.namaz-time:before {
    background-color: #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

/* circle */
.namaz-time:after {
    left: 44%;
    bottom: 15px;
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid var(--theme-colour);
    opacity: 1;
}

/* 🔴 active ripple */
.namaz-time.active:after {
    opacity: 1;
    animation: ripple .6s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    70% {
        transform: scale(2.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.namaz-time h4 {
    font-size: 36px;
    color: var(--common-colour);
    padding-top: 6px;
    padding-bottom: 20px;
    font-family: var(--common-font);
    position: relative;
}

.namaz-time h5 {
    position: relative;
    font-size: 20px;
}

.namaz-time h5 span {
    display: block;
    font-size: 16px;
    padding-top: 4px;
}

/* hover effect */
.namaz-time:hover:before {
    bottom: 0;
    height: 0;
}

.namaz-time:hover h5,
.namaz-time:hover h4 {
    color: #fff;
}








.bar-menu i {
    color: black;
    background-color: transparent;
    font-size: 24px;
}
.bar-menu {
    z-index: 1;
    display: none;
}
.responsive-bar-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.bar-menu i {
    margin-right: 20px;
    font-size: 26px;
}
/* 05. btn */
.btn {
    text-transform: capitalize;
    border-radius: 50px;
    color: #000 !important;
    line-height: 16px;
    overflow: hidden;
    position: relative;
    font-weight: 700;
    text-align: center;
    z-index: 1;
    border: 0;
    background-color: var(--theme-colour) ;
    padding: 20px 43px;
    border-radius: 55px;
    font-weight: bold;
}
.btn:after {
    background-color: #1c1e211f;
    border-radius: 50%;
    content: '';
    height: 167px;
    min-width: 167px;
    position: absolute;
    top: 100%;
    transition: transform .7s cubic-bezier(.66, .00, .34, 1.00);
    width: 100%;
    z-index: -1;
    left: 0;
}
.btn:hover:after {
    transform: scale(2.47) translateY(0);
    top: 100%;
}
/* 06. hero-section */
.hero-section {
    padding-top: 320px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 200px;
    height: 100vh;
}

.hero-section2 {
    padding-top: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 30px;
    height: auto;
}
.hero-text,.hero-img {
    position: relative;
}

.hero-section:before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .3;
}
.hero-text h4 {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}
.hero-text2 h4 {
    font-size: 40px;
    font-weight: bold;
}
.hero-text h1 {
    font-size: 80px;
    color: #fff;
    font-weight: 300;
    padding-bottom: 10px;
}
.hero-text2 h1 {
    font-size: 60px;
    font-weight: 300;
    padding-bottom: 10px;
}
.hero-text p {
    padding-bottom: 08px;
    color: #fff;
    font-size: 22px;
    width: 98%;
}

.fridayText{margin-bottom:0;line-height:30px !important;font-family:'Sawarabi Mincho'}

.hero-text2 p {
    padding-bottom: 0px;
    font-size: 22px;
    width: 98%;
}
.hero-img {
    text-align: right;
}
.owl-carousel .owl-item img {
    width: auto;
}
.hero-img {
    display: flex;
    justify-content: end;
}
.slider-home-1 .owl-item img.hero-img-style {
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}
.slider-home-1 .owl-item .hero-text2 h1 {
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}
.slider-home-1 .owl-item.active img.hero-img-style {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.slider-home-1 .owl-item.active .hero-text2 h1 {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.slider-ayat button.owl-dot,
.slider-home-1 button.owl-dot{
    width: 45px;
    height: 3px;
    background-color: var(--theme-colour);
    opacity: .4;
    margin-left: 10px;
}
.slider-ayat button.owl-dot.active,
.slider-home-1 button.owl-dot.active{
    width: 45px;
    opacity: 1;
    height: 3px;
    background-color: var(--theme-colour);
}
.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}
.slider-home-1 .owl-dots {
    left: 14%;
    position: absolute;
    bottom: 60px;
}
.hero-section img.hero-img-style {
    position: absolute;
    top: 0;
    height: 100vh;
}

/* 79. donate-now */
.donate-now {
    position: relative;
}
.donate-now figure:before {
    bottom: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background-color: var(--common-colour);
    z-index: 1;
    opacity: .5;
}
.donate-now a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
}
.donate-now .circle canvas {
    vertical-align: middle;
    border-radius: 50%;
    width: 104px !important;
    height: auto !important;
}
.donate-now .circle {
    width: 120px;
    height: 104px;
}
.donate-now .circle div {
    color: #000;
    top: 41%;
    left: 67%;
    font-size: 20px;
}
.donate-now .progressbar {
     right: 28px;
    height: 120px;
    position: absolute;
    width: 120px;
    margin-right: 0px;
    bottom: -17%;
    background-color: #fff;
    z-index: 1;
    border-radius: 50%;
}
.Information.widget-title {
    border-bottom: 0;
}
/* 80. preloader */
.preloader {
    background-color: var(--theme-colour);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999999999999;
    right: 0;
    bottom: 0;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.preloader {
    bottom: 0%;
}
.page-loaded .preloader {
    bottom: -100%;
}
.loader {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr;
  gap: 40%;
  width: 80px;
  aspect-ratio: 1/1;
  animation: rotate 2s linear infinite;
}
.loader .dot {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000;
  animation: scale 2s infinite alternate;
}
.loader .dot:nth-child(3) {
  order: 1;
}
.loader .dot:nth-child(1) {
  animation-delay: -0.5s;
}
.loader .dot:nth-child(2) {
  animation-delay: -1s;
}
.loader .dot:nth-child(3) {
  animation-delay: -1.5s;
}
.loader .dot:nth-child(4) {
  animation-delay: -2s;
}

@keyframes scale {
  0% {
    scale: 0.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
