/*-----------------------------------------------------------------------------------
CSS INDEX
-----------------------------------------------------------------------------------*/


/* All Plugin CSS */

@import url('bootstrap.min.css');
@import url('bootstrap-icons.min.css');
@import url('slick.css');

/* All Plugin CSS */


/* **********************************
Reset CSS
************************************** */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/********************************
 Typography Style
******************************** */

body {
    margin: 0;
    font-family: "Rubik", sans-serif;
    /* font-family: "Josefin Sans", sans-serif; */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
}

a {
    text-decoration: none;
    font-size: 14px;
}

img {
    vertical-align: bottom;
}

* {
    letter-spacing: -0.4px;
}


/***************************
loader
*****************************/

.loaders {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(243, 246, 252, 0.8);
    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;
}

.loader {
    border: 10px solid #E5E5E5;
    border-radius: 50%;
    border-top: 10px solid #43C38F;
    border-bottom: 10px solid #43C38F;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.scrolltotop {
    color: #fff;
    background-color: rgba(54, 54, 54, 1);
    padding: 8px;
    position: fixed;
    line-height: 1;
    right: 15px;
    bottom: 10px;
    text-decoration: none;
    display: none;
    font-size: 24px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 999;
}

.scrolltotop:hover {
    color: #fff;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.containers {
    width: 90%;
    margin: 0 auto;
}


/* **********************************
header-area
*********************************** */

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header-area.shadows {
    background: #fff;
    -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blacklogo {
    display: none;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shadows .blacklogo {
    display: block;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shadows .whitelogo {
    display: none;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shadows .navbar-expand-xl .navbar-nav .nav-link {
    color: #000;
}

.me-auto {
    margin-right: auto !important;
    margin-left: auto;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 15px;
    padding-left: 15px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #fff;
}

.donate a {
    display: inline-block;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    border: 1px solid #fff;
    padding: 14px 40px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.donate a:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shadows .donate a {
    color: #fff;
    border: 1px solid #43C38F;
    background: #43C38F;
}

.shadows .donate a:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* ****************************
hero-banner
**************************** */

.hero-banner {
    position: relative;
}

.banner-img {
    overflow: hidden;
    position: relative;
}

.banner-img::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.40);
}

.banner-img img {
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: relative;
    -webkit-animation-name: example;
    animation-name: example;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes example {
    0% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes example {
    0% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.heading {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
}

.heading h3 {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.heading h1 {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
}

.heading ul {
    width: 60%;
    margin: 0 auto;
}

.heading li {
    display: inline;
}

.heading li a {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    padding: 14px 45px;
    margin: 10px;
    border-radius: 10px;
    background: #43C38F;
    border: 1px solid #43C38F;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.heading li a:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* ***********************************
salah-table
********************************* */

.whitebg {
    background: url('../img/whitebg.png');
    background-size: cover;
    background-repeat: repeat-y;
}

.salah-area {
    padding-bottom: 40px;
    margin-top: -100px;
    position: relative;
}

.salah-table {
    border-radius: 25px;
    background: #FFF;
    -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 0 !important;
}

.salah-table table {
    margin-top: -42px;
    background: transparent;
    margin-bottom: 0;
}

.salah-table th {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    background: #43C38F;
    padding: 20px 10px;
    border-right: 1px solid #DEDEDE;
    position: relative;
}

.salah-table th:last-child {
    border: none;
}

.salah-table th:nth-child(2)::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: -12px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0px 12px 12px;
    border-color: transparent transparent #1E855B transparent;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.salah-table th:last-child::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    right: -12px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0px 12px 12px;
    border-color: transparent transparent #1E855B transparent;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.salah-table tr td:first-child {
    color: #383434;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border: none;
}

.salah-table tfoot tr td {
    color: #383434;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border: none;
    padding: 10px 5px;
    padding-top: 25px;
}

.salah-table tr td {
    color: #383434;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    background: transparent;
    padding: 10px 5px;
    border: 1px solid #DEDEDE;
}


/* *********************************
current-events
******************************* */

.current-events {
    padding: 50px 0;
}

.current-event .videos {
    height: 100%;

}

.current-event .videos iframe {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
}

.event-con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

.event-text h3 {
    color: #383434;
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.event-text h2 {
    color: #383434;
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.event-text p {
    color: #737373;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
}

.calendar h4 {
    color: #43C38F;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.calendar.border-end {
    border-right: 1px solid #000 !important;
}

.calendar h3 {
    font-size: 25px;
}

a.cusbtn {
    display: inline-block;
    padding: 14px 40px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    background: #43C38F;
    border: 1px solid #43C38F;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a.cusbtn:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.event-text a.cusbtn {
    margin-top: 30px;
}

.prev i {
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    border-radius: 10px;
    background: #E8E8E8;
    padding: 15px;
    cursor: pointer;
}

.next i {
    color: #000;
    font-size: 20px;
    line-height: 1.3;
    border-radius: 10px;
    background: #E8E8E8;
    padding: 15px;
    cursor: pointer;
}

.current-event .prev i {
    position: absolute;
    top: 42%;
    left: 50%;
    -webkit-transform: translate(-50%, -42%);
    -ms-transform: translate(-50%, -42%);
    transform: translate(-50%, -42%);
    z-index: 8;
}

.current-event .next i {
    position: absolute;
    top: 57%;
    left: 50%;
    -webkit-transform: translate(-57%, -50%);
    -ms-transform: translate(-57%, -50%);
    transform: translate(-57%, -50%);
    z-index: 8;
}


/* *****************************
latest-khutbah
******************************* */

.latest-khutbah {
    padding: 50px 0;
}

.title {
    text-align: center;
    margin-bottom: 30px;
}

.title h4 {
    font-family: "Josefin Sans", sans-serif;
    color: #383434;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.title h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #383434;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.videos {
    margin-bottom: 15px;
}

.videos iframe {
    border-radius: 10px;
}


/* *****************************
communities
******************************* */

.communities-area {
    background: url('../img/blaxkbg.png');
    background-size: cover;
    background-repeat: repeat-y;
    padding-top: 400px;
    margin-top: -300px;
}

.communities-img img {
    width: 100%;
    margin-bottom: -50px;
}

.communities h4 {
    color: #FFF;
    font-family: "Josefin Sans", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.communities h2 {
    color: #FFF;
    font-family: "Josefin Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
}

.communities p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.communities {
    padding-bottom: 30px;
}

ul.donetecall {
    padding-top: 25px;
}

.donetecall li {
    display: inline;
}

.donetecall li a {
    display: inline-block;
    padding: 14px 40px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    background: #43C38F;
    border: 1px solid #43C38F;
    margin-right: 15px;
    margin-bottom: 15px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.donetecall li:last-child a {
    color: #43C38F;
    background: transparent;
    border: 1px solid #43C38F;
}

.donetecall li a:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.communities-con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}


/* ************************************
our-events
**************************************** */

.our-events {
    padding: 180px 0 50px 0;
}

.our-event {
    border-radius: 20px;
    background: #FFF;
    -webkit-box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 50px;
}

.our-event .items img {
    width: 100%;
}

.counts {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.50);
    padding: 10px;
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

#timer div {
    display: inline-block;
    text-align: center;
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    width: 60px;
}

#timer div span {
    display: block;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
}

.eventing {
    position: relative;
}

.ourenent-con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.ourenent h5 {
    color: #43C38F;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.ourenent h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #383434;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
}

.ourenent p {
    color: #383434;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ourenent p i {
    padding-right: 10px;
}

.ourenent a.cusbtn {
    margin-top: 25px;
}

.our-event .prev i {
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 8;
}

.our-event .next i {
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 8;
}

.clodeevent {
    border-radius: 10px;
    background: #FFF;
    -webkit-box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 15px;
    margin-bottom: 30px;
}

.closeimg img {
    width: 100%;
}

.closecon h3 {
    color: #000;
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.closecon p {
    color: #737373;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

.eventover h4 {
    color: #FF1B1B;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}


/* *******************************
support-area
****************************** */

.support-area {
    background: url('../img/supportbg.png');
    background-size: cover;
    background-repeat: repeat-y;
    padding: 50px 0;
}

.support-con h4 {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
}

.support-con h2 {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
}

.support-count h3 {
    color: #43C38F;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.support-count p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.support-count h2 {
    line-height: 1;
    margin-bottom: 5px;
}

.support-con .donetecall {
    margin-top: 15px;
}

.support-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.support-img img {
    width: 100%;
}


/* *****************************
latest-news
******************************* */

.latest-news {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.latest-news::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: url('../img/latestbg.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.latst-slider .news-img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.latst-slider .slick-slide {
    margin: 0 15px;
    padding-bottom: 30px;
}

.news-img {
    position: relative;
}

.news-img i {
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    background: #43C38F;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: -18px;
}

.news-con {
    border-radius: 10px;
    background: #FFF;
    -webkit-box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, 0.06);
    padding: 15px;
}

.news-con h4 {
    color: #43C38F;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.news-con a {
    display: inline-block;
    color: #101828;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-con p {
    color: #787878;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}

.latst-slider .prev i {
    position: absolute;
    top: 45%;
    left: -15px;
    -webkit-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    transform: translate(0, -45%);
    z-index: 8;
}

.latst-slider .next i {
    position: absolute;
    top: 45%;
    right: -15px;
    -webkit-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    transform: translate(0, -45%);
    z-index: 8;
}


/* ******************************
our-gallery
***************************** */

.our-gallery {
    padding: 50px 0;
    padding-bottom: 100px;
    position: relative;
}

.gallery-slider .items img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.15);
}

.gallery-slider .slick-slide {
    margin: 0 15px;
    padding: 50px 0;
}

.gallery-slider .prev i {
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 8;
}

.gallery-slider .next i {
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 8;
}

.gallery-slider .slick-slide.slick-active:nth-child(odd) {
    margin-top: -40px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.our-gallery .title {
    text-align: left;
    margin-bottom: 0;
}

.buttonmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}


/* ****************************************
newsletter
************************************** */

.newsletter {
    margin-top: -50px;
    position: relative;
}

.newsletter::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    height: 300px;
    background: url(../img/gallerybg.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.newsletter-box {
    border-radius: 25px;
    background: #43C38F;
    -webkit-box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 25px 40px 0px rgba(0, 0, 0, 0.08);
    padding: 50px 80px;
}

.newslater h2 {
    color: #FFF;
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.newslater h3 {
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.newslater .form-control {
    display: block;
    width: 100%;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #fff;
    border-radius: 10px;
}

.form-control:focus {
    outline: 0;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

button {
    border: none;
}

.submit {
    padding: 16px 10px;
    color: #43C38F;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
}

.submit:hover {
    color: #fff;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* **********************************
footer-area
************************************ */

.footer-area {
    background: url('../img/footerbg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 30px 0;
    margin-top: -100px;
}

.footer-grid {
    margin-bottom: 30px;
}

.logo {
    margin-bottom: 25px;
}

.footer-grid p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-grid h3 {
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-grid li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.social li {
    display: inline;
}

.social li a {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footerbottom {
    border-top: 1px solid #717171;
    padding-top: 30px;
}

.copy p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.powerd p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.powerd {
    text-align: end;
}


/* *******************************
banner-area
******************************* */

.banner-area {
    background: url(../img/quran-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 490px;
    z-index: 1;
}

.banner-area::before {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(13, 13, 13, 0.70);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.banner-content {
    padding-top: 150px;
    text-align: center;
}

.banner-content h1 {
    font-family: "Josefin Sans", sans-serif;
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.banner-content p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}


/* *****************************
quran-class
******************************* */

.quran-class {
    margin-top: -150px;
    padding-bottom: 200px;
    position: relative;
    z-index: 2;
}

.quran-class::after {
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 65%;
    background: url('../img/latestbg.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.classes {
    background: #FFF;
    -webkit-box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
}

.classes .videos iframe {
    border-radius: 10px 10px 0px 0px;
}

.classes .videos {
    margin-bottom: 0;
}

.class-con {
    position: relative;
    padding: 15px;
    border-radius: 10px;
}

.agelimit p {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 6px;
    background: #E8A939;
    padding: 6px 12px;
    position: absolute;
    top: -22px;
}

.class-con h2 {
    color: #383434;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
}

.class-con h2 a {
    color: #383434;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
}

.class-con h4 {
    color: #43C38F;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.scholar {
    margin-bottom: 25px;
}

.scholar img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.scholar h3 {
    color: #383434;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.scholar p {
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.class-con a.cusbtn {
    width: 100%;
}
.navbar-brand img {
	height: 90px;
}
.footer-grid .logo img {
	height: 90px;
}


/* ****************************
donationboxs-area
**************************** */

.donationboxs-area {
    padding-bottom: 150px;
}

iframe.donationboxs {
    display: flex;
    width: auto;
    justify-content: center;
    height: 100%;
    min-height: 350px !important;
}


.galleryimg {
    margin-bottom: 30px;
}

.galleryimg img {
    width: 100%;
}


/* **********************************
contact-area
*********************************** */

.contact-area {
    padding: 100px 0;
}

.contacts {
    background: #FFF;
    -webkit-box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
}

.contacts .form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.submit {
    border: none;
    display: inline-block;
    padding: 14px 40px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 10px;
    background: #43C38F;
    border: 1px solid #43C38F;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.submit:hover {
    color: #fff;
    border: 1px solid #1f7652;
    background: #1f7652;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.map {
    height: 500px;
    width: 100%;
}

.map iframe {
    height: 100%;
    width: 100%;
}

.events .event {
	text-align: center; padding: 50px;
}
.events .event img{
	max-height:550px; width: auto;     border-radius: 16px;
}
.salah-table  .text-primary-text {
    color: var(--primary-text);
    border-radius: 20px 20px 0px 0;
}