* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

:root{
    --main-color:#1DE091;
    --text-color:#fff;
    --bg-color: #302f2f;
    --big-font:4rem;
    --h2-font:2.25rem;
    --h1-font:2.25rem;
    --p-font:0.8rem;
}
*::selection{
    background: var(--main-color);
    color: #fff;
}
.clear {
	clear: both;
}
/*text*/

h1 {
	margin-top: 1em;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0.5em;
	font-size: 2.5em;
	font-weight: 700;
	font-family: "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	font-variant: normal;
	letter-spacing: 5px;
}

body{
    color:  var(--text-color);
    background: var(--bg-color);
}
#page { max-width: 1200px; margin: 0 auto; position: relative;
   
}


header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px;
    background: var(--bg-color);
    
}

 /*    Navigation  */
 
 nav {
    background: #666666;
	
	position: relative;
	padding: 20px 0 0 0;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
 
	
 }
 
 nav::after { content:''; display: block; clear: both; }
 
 nav a.mobile_menu {
	 width: 32px; height: 32px;
	 background: url(../img/icon_menu.svg) no-repeat 0 0;
	 background-size: contain;
	 position: absolute; top: 22px; left: 50%; margin-left: -16px;
	 display: none;
	 z-index: 1;
	 }
 
 nav ul { list-style: none; margin: 0; padding: 0px; }
 
 nav ul li:hover {
	background-color: #1DE091;
}
 nav ul li:hover > ul { 
    display: block; 
}
  
 nav ul li a {
	 display: inline-block;
	 color: #fff;
	 padding: 10px 20px;
	 text-decoration: none;
	 width: 125px;
	 position: relative;
 }

nav ul li a:visited { color: #fff; }

	 
 nav ul li a:hover {
   
    transition: .4s;
	background-color: none;
}
 
 nav ul ul {
	position: absolute;
	top: 100%;
	background-color: #666666;
	display: none;
}
 
 nav ul ul li {
	position: relative;
	border-bottom: 1px solid #E03481;
}
 nav ul ul ul { left: 100%; top: 0px; }
 
 
 /*  top level nav  */
 nav > ul {
	padding-left: 60px;
}
 nav > ul > li { float: left; }
 nav > ul > li > a { width: auto; padding: 10px 20px 15px 20px; }
 
 nav a[aria-haspopup="true"]::after {
	 content:'';
	 display: block; width: 0px; height: 0px;
	 position: absolute;
	 top: 16px; right: 15px;
	 border-top: 4px solid transparent;
	 border-bottom: 4px solid transparent;
	 border-left: 4px solid #fff;
 }
 
 nav > ul > li > a[aria-haspopup="true"]::after {
	 border-left: 4px solid transparent;
	 border-right: 4px solid transparent;
	 border-top: 4px solid #fff;
	 left: 20px; right: auto;
	 bottom: 6px; top: auto;
 }
 #slogan{
    width: 45%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: right;
    margin-bottom: 30px;
 }
 

 /* cycle slideshow*/
.cycle-slideshow {
	background-color: white;
	width: 100%;
	display: block;
	position: relative;
	
	margin-right: auto;
	margin-left: auto;
	
	overflow: hidden;
	
	z-index: -1;
	}
    .cycle-slideshow img{
        width: 100% ;
        height: auto;
    }

    #slides {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 50px;
        top: -40px;
        left: -15px;
    }
     
	
#menu-icon{
    font-size: 2rem;
    cursor: pointer;
    display: none;
}


section {
    padding: 20px 5%;
}
.home{
    width: 100%;
    min-height: 70vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    align-items: center;
   
    
}
.home-img img{
    max-width: 100%;
  
    height: auto;
    margin-left: 0px;
    margin-right: 0px;
}
.home-text h1{
    font-size: var(--big-font);
    color: var(--main-color);
}
.home-text h2{
    font-size: var(--h2-font);
    margin: 1rem 0 2rem;
}

.bannerLogo{
	width: 100%;
    min-height: 20vh;
	margin-top: 40px;
   
    align-items: center;
	background: none;
}
#leftbox {
	float:left;
	background:none;
	width:35%;
	
	height:100px;
	text-align: center;
}
#middlebox{
	float:left;
	background:none;
	width:30%;
	height:100px;
	text-align: center;
}
#rightbox{
	float:right;
	background:none;
	width:35%;
	height:100px;
	text-align: right;
	padding-right: 5%;
	font-size: small;
}
h1{
	color:green;
	text-align:center;
}



.welcome p{margin: 0.8rem 0 1.8rem;
    line-height: 1.9;
}



.btn{
    display: inline-block;
    padding: 5px 10px;
    background: var(--main-color);
    color: #fff;
    border-radius: 0.5rem;
    
}
.btn:hover{
    transform: scale(1.2) translateY(10px);
    transition: .4s;
}
.about{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 1.5rem;
    align-items: center;
}
.about-img img{
    max-width: 100%;
    width: 480px;
    height: auto;
    }
.about-text span{
    color: var(--main-color);
    font-weight: 600;
    
}
.about-text h2{
    font-size: var(--h2-font);
}
.about-text p{
    margin: 0.8rem 0 1.8rem;
    line-height: 1.7;
}





  
  
  
  /* section -  How - to Hadis*/
  
  section.how-to {
	background-color: #444;
	position: relative;
	width: 100%;
	min-height: 600px;
	margin-bottom: 100px;
}
section.how-to aside blockquote img {
	display: block;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	min-height: 0px;
}
section.how-to blockquote  {
	margin: 0;
	width: 38%;
	color: #444;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	right: 4%;
	min-height: 535px;
  }
  
  section.how-to blockquote .btn {
	font-size: 1em;
	text-decoration: none;
	color: grey;
	padding: 4px 15px;
	transition: background-color 1.5s;
	background-color: #F8F8F8;
	margin-left: 10%;
	margin-top: 0px;
}
section.how-to blockquote .btn:hover {
	color: #F7931E;
	}
	
	
section.how-to #blockquote_two  {
	margin: 0;
	width: 45%;
	color: #444;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	right: 4%;
	min-height: 535px;
  }
section.how-to #blockquote_one   {
	margin: 0;
	width: 45%;
	color: #444;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	right: 51%;
	min-height: 535px;
  }
  
  section.how-to blockquote p {
	margin: 30px 30px 20px 50px;
	text-align: justify;
}
  
  section.how-to blockquote p.quote {
	font-style: normal;
	font-size: 1em;
  }
  
 section.how-to blockquote p.credit { 
 color: #777;
 font-size: .9em; margin-top: 0; padding-left: 20px; line-height: 1.3em;
 position: relative;
 }
 
 

/* section -  How - to end */



 /*  section - Atmosphere */
 
 section.atmosphere { background-color: none; padding-top: 30px; padding-bottom: 30px; color: #fff; }
 /*-------#cc6633---->*/
 
  section.atmosphere article {
	padding: 0px 20px 0px 515px;
	background: url(../img/Turkey.JPG) no-repeat 0 5px;
	min-height: 220px;
	text-align: justify;
    font-size: small;
}

/*  section - Atmosphere end here*/




/*----------contact form--start  here----*/

.asideLeftContact {
	width: 40%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: left;
	margin-top: 20px;
}

.asideLeftContact2 {
	width: 45%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: left;
	margin-top: 20px;
}
.sectionRightContact {
	width: 85%;
	margin-left: 5%;
	margin-right: 5%;
	float: right;
	background-color: #FFFFFF;
	padding-top: 2.5%;
	padding-bottom: 2.5%;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid lightgrey;
	min-height: 450px;
	padding-left: auto;
	padding-right: auto;
}

/*-------------Form---------*/

#formWrap {
	width: 95%;
	margin-top: 30px;
	background: #FFF;
	border: 1px solid #F1F1F1;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 5px #999;
	-webkit-box-shadow: 2px 2px 5px #999;
	box-shadow: 2px 2px 5px #999;
	padding: 16px 10px 40px;
	margin-left: auto;
	margin-right: auto;
}

#formWrap #form {
	border-top: 1px solid #EEE;
	width: 100%;
	}
#form .rowx {
	border-bottom: 1px dotted #EEE;
	line-height: 38px;
	overflow: auto;
	padding: 24px 0px;
	width: 100%;
	height: auto;
	display: block;
	}
#form .rowx .label {
	font-size: 16px;
	font-weight: blod;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 180px;
	text-align: right;
	float: left;
	padding-right: 10px;
	margin-right: 10px;
	
	}
#form .rowx .input {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 285px;
	}	
	
	#form .rowx .input2 {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 466px;
	}
    .detail {
        width: 260px;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 20px;
        padding: 7px 8px;
        margin:0;
        display: block;
        border-radius: 5px 5px 5px 5px;
        background: #E9E9E9;
        border: 1px solid #ccc;
        }
        
    .mess {
        width: 450px;
        max-width: 450px;
        height: 250px;
        overflow: auto;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 20px;
        padding: 7px 8px;
        line-height: 1em;
        margin: 0;
        display: block;
        border-radius: 5px 5px 5px 5px;
        background: #E9E9E9;
        border: 1px solid #ccc;
        }
    
    .detail:focus {
        background-color: #FFF;
        border: 1px solid #999;
        outline: none;
        }
        
    .mess:focus {
        background-color: #FFF;
        border: 1px solid #999;
        outline: none;
        }

    #form .rowx .context {
        color: #999;
        font-size: 11px;
        font-style: italic;
        line-height: 14px;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        width: 200px;
        float: left;
        }
    #form #submit {
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        margin-top: 25px;
        margin-left: 200px;
        color: #000;
        font-size: 16px;
        text-shadow: 1px 1px 1px #999;
        padding: 10px;
        }
        span.error {
            color: #000;
            display: block;
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 12px;
            background-image: url(../img/x.png);
            background-repeat: no-repeat;
            left: 6px;
            padding-left: 25px;
            top: auto;
            padding-top: 0px;
            background-position: 0% 10px;
            background-size: 17px 17px;
                }
                
        #formWrap h2 {
            font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
            text-shadow: 1px 1px 1px #CCC;
            color: #255E67;
            margin-top: 10px;
            margin-right: 10px;
            margin-left: 0px;
            margin-bottom: 10px;
            }
            
            
            
        
        /*---------form end--------------*/
        .asideLeftThankyou {
            width: 95%;
            margin-left: 5%;
            margin-right: 2.5%;
            float: left;
            margin-top: 10px;
            background-image: url(../images/Rose.png);
            height: auto;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: 50% 50%;
            min-height: 130px;
        }
        .sectionRightThankyou {
            width: 90%;
            margin-left: 2.5%;
            margin-right: 2.5%;
            float: right;
            background-color: #FFFFFF;
            padding-top: 2.5%;
            padding-right: 2.5%;
            padding-bottom: 2.5%;
            padding-left: 2.5%;
            margin-top: 20px;
            margin-bottom: 20px;
            min-height: 130px;
            font-size: 1em;
        }
        #page .sectionRightThankyou h1 {
            font-size: 1.5em;
        }
        
        
        #heroImage_contact {
            width: 95%;
            height: auto;
            position: relative;
            min-height: 50px;
            background-size: contain;
            background-repeat: no-repeat;
            background-color: #EDEDED;
            padding-left: 5%;
            padding-top: 25px;
            
        }
        #heroImage_thankyou {
            width: 95%;
            height: auto;
            position: relative;
            min-height: 25px;
            background-size: contain;
            background-repeat: no-repeat;
            background-color: #EDEDED;
            padding-left: 5%;
            padding-top: 5px;
            z-index: -1;
            
        }
        
        
        
        #heroImage_contact a { color: #06AB54; }
        #page #heroImage_thankyou #left  h4 {
        }




/*----------contact form--end here ----*/


.heading{
    text-align: center;
}
.heading span{
    color: var(--main-color);
    font-weight: 600;
}
.heading h2{
    font-size: var(--h2-font);
}
.menu-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 1.5rem;
    align-items: center;
}




.menu #Location .heading{
	align-items: center;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	
}






.box{
    position: relative;
    margin-top: 4rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #E03481;
    padding: 20px;
    border-radius: 0.5rem;
}
.box-img{
 
    width: 220px;
    height: auto;
}




.box-img img{
 
    width: 100%;
    height: 100%;
}
.box h2{
    font-size: 1.3rem;
    color: var(--bg-color);
}
.box h3{
    font-size: 1rem;
    color: var(--bg-color);
    font-weight: 400;
    margin: 4px 0 10px;
}
.box span{
    font-size: var(--p-font);
    color: var(--main-color);
    font-weight: 600;
}
.box .bx{
    background: var(--main-color);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    padding: 7px 10px;
    border-radius: 0 0.5rem 0 0.5rem;
}




.service-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, auto));
    grid-gap: 1.5rem;
    margin-top: 4rem;
    
}
.s-box{
    text-align: left;
    padding: 10px 10px;
}
.s-box img{
    width: 250px;
}
.s-box h3{
   margin: 4px 0 10px;
    color: var(--main-color);
    font-size: 1.8rem;
}
.s-box p{
   
    line-height: 1.5;
    font-size: 0.8rem;
}

.cta{
    background: #E03481;
    padding: 70px 0;
    text-align: center;
    width: 90%;
    margin: 10px auto;
    border-radius: 10px;
}
.cta h2{
    font-size: 1.5rem;
    color: var(--bg-color);
    margin-bottom: 20px;
}





.main{
    display: flex;
    flex-wrap: wrap;
}

/*.........Community service.............*/

.devider{
    background: #666666;
	
	position: relative;
	padding: 1.50px 0 0 0;
    width: 80%;
    margin: 0 auto;
}








    

#main aside .content {
	width: 25.6%;
	float: left;
	padding-top: 2.5%;
	padding-right: 2.5%;
	padding-bottom: 2.5%;
	padding-left: 2.5%;
	margin-top: 20px;
	margin-right: 0%;
	margin-bottom: 0%;
	margin-left: 2.5%;
	height: auto;
	background-color:#E03481;
	min-height: 500px;
	border-left: 1px solid lightgrey;
}

	

#main aside .content#firstchild {

	border-left: none;
}
#main aside .content:hover  {
	width: 25.6%;
	float: left;
	padding-top: 2.5%;
	padding-right: 2.5%;
	padding-bottom: 2.5%;
	padding-left: 2.5%;
	margin-top: 20px;
	margin-right: 0%;
	margin-bottom: 0%;
	margin-left: 2.5%;
	-webkit-box-shadow: 1px 1px 5px 1px #555;
	box-shadow: 1px 1px 5px 1px #555;
	height: auto;
	background-color: #1DE091;
    color: #000;
}
section#main aside .content h4 {
	text-align: center;
}
section#main aside .content a {
	display: inline-block;
	color: #000;
	font-weight: 700;
	text-decoration: none;
}
section#main aside .content p {
	margin-bottom: .5em;
	;
}
section#main aside .contentP2 p {
	margin-bottom: .5em;
	;
}






/********************  footer   *****************/

.footer{
    padding: 10px 0;
   
    color: #fff;
}

.col{
    width: 25%;
}

.col h4{
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
}

.col h4::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 120px;
    left: 0;
    bottom: -8px;
    background: var(--main-color);
}

.col ul li:not(last-child){
    margin-bottom: 15px;
}

.col ul li a{
    color: #9897a9;
    font-size: 1.1rem;
    display: block;
    text-transform: capitalize;
    transition: .4s;
}

.col ul li a:hover{
    color: var(--text-color);
    transform: translateX(-12px);
}

.col .social{
    widows:220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col .social a{
    height: 40px;
    width: 40px;
    background: var(--main-color);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: .4s;    
    
    
}

.col .social a:hover{
      transform: scale(1.2);
    color: var(--bg-color);
    background: var(--text-color);
    
}








#Second_footer {
	width: 100%;
	height: 50px;
    text-align: center;
   
	
}
.copyright {
	border-top: 2px solid #4D4E50;
	text-align: center;
	font-size: small;
	max-height: 50px;
	color: #FFFFFF;
	background-color: #333333;
	padding-top: 10px;
	padding-bottom: 20px;
}
.copyright a {
	text-decoration: none;
}

#nav_video {
	width: 100%;
	height: 80px;
	background-color: #E03481;
	padding-left: 5%;
}

#nav_video h1 {
	width: 95%;
	padding-left: 5%;
	padding-top: 17px;
    color: #1DE091;
    font-weight: 700;
}
.videoTitle {
	width: 90%;
	padding-left: 10%;
	margin-top: 30px;
	
	}
.videoHolder .videoText {
	margin-top: 10px;
}

.videoHolder {
	width: 100%;
	height: auto;
	min-height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
	margin-top: 50px;
	margin-bottom: 0px;
	text-align: center;

	
}
#nav_aim_Q_H {
	margin-top: 60px;
	width: 100%;
	height: 30px;
	background-color: #E9E7E7;
}
#nav_aim_Q_H h5 {
	margin-top: 60px;
	width: 90%;
	height: 30px;
	background-color: #E9E7E7;
	padding-left: 10%;
	padding-top: 7px;
}
/*.......................Quran & Hadith PAGE ....................*/


.asideLeftQuranhadith {
	width: 40%;
	float: left;
	padding-top: 2.5px;
	padding-right: 2.5px;
	padding-bottom: 2.5px;
	padding-left: 2.5px;
	margin-left: 5%;
	margin-top: 20px;
	height: auto;
	min-height: 1600px;
	
	
}
.sectionRightQuranhadith {
	width: 40%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: right;
	background-color: #FFFFFF;
	padding-top: 2.5%;
	padding-right: 2.5%;
	padding-bottom: 2.5%;
	padding-left: 2.5%;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid lightgrey;
	min-height: 1600px;
}






/*.......................Quran & Hadith PAGE END....................*/








 









@media screen and(max-width: 1140px){

    #page {
        margin: 0 auto;
        position: relative;
        width: 100%;
        box-shadow: none;
    
    }


    section{
        padding: 50px 8%;
    }
    #menu-icon{
    display: initial;
    color: var(--text-color);
}
    
    header .navbar{
        position: absolute;
        top: -450px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: #2b2640;
        transition: .3s;
    }
    header .navbar.active{
        top: 70px;
        
    }
    .navbar a{
        padding: 1.5rem;
        display: block;
    }
    .col{
        width: 50%;
        margin-bottom: 10px;
        
    }
}


@media screen and (max-width: 1000px){

    



 




	/*  Section Atmosphere  */
	
	section.atmosphere article { 

        padding-left: 300px;
         background-size: 275px auto;
         }


#page {
	margin: 0 auto;
	position: relative;
	width: 1000px;
	box-shadow: none;

}

/* cycle slideshow*/
.cycle-slideshow {
	background-color: white;
	width: 100%;
	display: block;
	position: relative;
	
	margin-right: auto;
	margin-left: auto;
	
	overflow: hidden;
	
	z-index: -1;
	}


section.how-to {
	background-color: #eee9d9;
	position: relative;
	width: 94%;
	min-height: 680px;
}
	


	/* section -  How - to */
	 /* section -  How - to */
      

	 section.how-to {
	background-color: #444;
	position: relative;
	width: 100%;
	min-height: 400px;
}
  

section.how-to blockquote p {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 20px;
	text-align: justify;
	width: auto;
	font-size: small;
}
section.how-to aside blockquote img {
	display: block;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	
	min-height: 0px;
	width: 50%;
	height: auto;
	padding-top: 30px; 
}

section.how-to #blockquote_two  {
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
section.how-to #blockquote_one   {
   
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }





/*-------------Form---------*/

#formWrap {
	width: 90%;
	margin-top: 30px;
	background: #FFF;
	border: 1px solid #F1F1F1;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 5px;
	-moz-box-shadow: 2px 2px 5px #999;
	-webkit-box-shadow: 2px 2px 5px #999;
	box-shadow: 2px 2px 5px #999;
	padding-top: 16px;
	padding-right: 2.5%;
	padding-left: 7.5%;
	padding-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
}
#form .rowx .label {
	font-size: 16px;
	font-weight: blod;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 180px;
	text-align: left;
	float: left;
	padding-right: 10px;
	margin-right: 10px;
	
	}
#form .rowx .context {
	color: #999;
	font-size: 11px;
	font-style: italic;
	line-height: 14px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 160px;
	float: left;
	}
#form #submit {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 25px;
	margin-left: 340px;
	color: #000;
	font-size: 16px;
	text-shadow: 1px 1px 1px #999;
	padding: 10px;
	}
	#nav_aim_Q_H {
		margin-top: 60px;
		width: 100%;
		height: 30px;
		background-color: #E9E7E7;
	}
	#nav_aim_Q_H h5 {
		margin-top: 60px;
		width: 90%;
		height: 30px;
		background-color: #E9E7E7;
		padding-left: 10%;
		padding-top: 7px;
	}
	             	/*  Navigation  */
					 nav {
						padding-top: 50px;
						padding-right: 0px;
						padding-left: 0px;
						padding-bottom: 20px;
						height: 0px;
						overflow: hidden;
						width: 100%;
						
					}
				
						nav a.mobile_menu { display: block; }
				
						nav ul,
						nav ul ul,
						nav ul ul ul {
						display: block;
						position: static;
						width: 100%;
						background-color: #1DE091;
					}
						
						nav > ul {
						padding-left: 0;
						padding-bottom: 10px;
						padding-top: 0px;
					}
						nav > ul li { float: none; margin-top: 25px; }
						
						nav ul li:hover { background: none; }
						
						nav ul li a {
						width: auto;
						display: block;
						margin: 30px 5px;
						margin-top: 0;
						padding-top: 6px;
						padding-right: 15px;
						padding-left: 20px;
						padding-bottom: 6px;
						border: 1px solid rgba(255,255,255,.25);
						background-color: #E03481;
						border-radius: 5px;
						}
						
						nav ul li a:hover { background-color: rgba(255,255,255,.2); }
						
						nav ul ul { background: none; }
						
						nav ul ul li a {
						margin-left: 30px;
						background-color: #666666;
						padding-left: 20px;
					}
						nav ul ul ul li a { margin-left: 60px; }
						
						nav a[aria-haspopup="true"]::after { display: none; }
						
						nav ul ul li {
						
						border-bottom: none;
					} 
				
					
					nav > ul {
					padding-left: 10px;
				}
					
				
					.home{
						grid-template-columns: 1fr;
						text-align: center;
					}
					.about{
						grid-template-columns: 1fr;
						text-align: center;
					}
					.about-img{
						order: 2;
					}
					section{
						padding: 100px 7%;
				
				
				
					}
				
}





@media screen and (max-width: 825px){


    #page {
        margin: 0 auto;
        position: relative;
        width: 100%;
        box-shadow: none;
    
    }
    header{
        position: relative;
    }

    /* cycle slideshow*/


    	/*  Section Atmosphere  */
	section.atmosphere {
        width: 92.5%;
    }
        section.atmosphere article { 
            padding-left:5px; 
            padding-top: 200px;
            background-size: 300px auto;
         }
        

	

/* cycle slideshow*/
.cycle-slideshow {
	background-color: white;
	width: 100%;
	display: block;
	position: relative;
	
	margin-right: auto;
	margin-left: auto;
	
	overflow: hidden;
	
	z-index: -1;
	}


}









@media screen and(max-width: 760px){

    header{
        position: relative;
        padding: 10px 16px;
    }
                	/*  Navigation  */
	nav {
        padding-top: 50px;
        padding-right: 0px;
        padding-left: 0px;
        padding-bottom: 20px;
        height: 0px;
        overflow: hidden;
        width: 100%;
        
    }

        nav a.mobile_menu { display: block; }

        nav ul,
        nav ul ul,
        nav ul ul ul {
        display: block;
        position: static;
        width: 100%;
        background-color: #1DE091;
    }
        
        nav > ul {
        padding-left: 0;
        padding-bottom: 10px;
        padding-top: 0px;
    }
        nav > ul li { float: none; margin-top: 25px; }
        
        nav ul li:hover { background: none; }
        
        nav ul li a {
        width: auto;
        display: block;
        margin: 30px 5px;
        margin-top: 0;
        padding-top: 6px;
        padding-right: 15px;
        padding-left: 20px;
        padding-bottom: 6px;
        border: 1px solid rgba(255,255,255,.25);
        background-color: #E03481;
        border-radius: 5px;
        }
        
        nav ul li a:hover { background-color: rgba(255,255,255,.2); }
        
        nav ul ul { background: none; }
        
        nav ul ul li a {
        margin-left: 30px;
        background-color: #666666;
        padding-left: 20px;
    }
        nav ul ul ul li a { margin-left: 60px; }
        
        nav a[aria-haspopup="true"]::after { display: none; }
        
        nav ul ul li {
        
        border-bottom: none;
    } 

	
    nav > ul {
	padding-left: 10px;
}
	

    .home{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-img{
        order: 2;
    }
    section{
        padding: 100px 7%;



    }


   


    /* section -  How - to */
	 /* section -  How - to */
      

	 section.how-to {
	background-color: #444;
	position: relative;
	width: 100%;
	min-height: 400px;
}
  

section.how-to blockquote p {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 20px;
	text-align: justify;
	width: auto;
	font-size: small;
}
section.how-to aside blockquote img {
	display: block;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	
	min-height: 0px;
	width: 50%;
	height: auto;
	padding-top: 30px; 
}

section.how-to #blockquote_two  {
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
section.how-to #blockquote_one   {
   
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }

    



	
	/*  Navigation  */
	


 section.how-to {
	background-color: #444;
	position: relative;
	width: 95%;
	min-height: 600px;
}
	
	
  /* cycle slideshow*/
.cycle-slideshow {
	background-color: white;
	width: 100%;
	display: block;
	position: relative;
	
	margin-right: auto;
	margin-left: auto;
	
	overflow: hidden;
	
	z-index: -1;
	}
	
	
	.service-container{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 1.5rem;
    align-items: center;
}




.s-box{
    position: relative;
    margin-top: 4rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 20px;
    border-radius: 0.5rem;
}
.s-box-img{
 
    width: 220px;
    height: auto;
}




.s-box-img img{
 
    width: 100%;
    height: 100%;
}
	
	
	.cta{
    background: #E03481;
    padding: 40px 0;
    text-align: center;
    width: 90%;
    margin: 0px auto;
    border-radius: 10px;
}
.cta h2{
    font-size: 1.2rem;
    color: var(--bg-color);
    margin-bottom: 0px;
}
	
	
	


/*.......................CONTACT PAGE ....................*/

.asideLeftContact {
	width: 90%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: left;
	margin-top: 20px;
}
/*......................Video  PAGE  end....................*/




/*.......................CONTACT PAGE ....................*/

.asideLeftContact2 {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	float: left;
	margin-top: 20px;
}
/*.......................Quran & Hadith PAGE ....................*/

.asideLeftQuranhadith {
	width: 100%;
	float: none;
	padding-top: 2.5px;
	padding-bottom: 2.5px;
	margin-top: 20px;
	height: auto;
	min-height: 1400px;
	
	
}
.sectionRightQuranhadith {
	width: 100%;
	float: none;
	background-color: #FFFFFF;
	padding-top: 2.5%;
	padding-bottom: 2.5%;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid lightgrey;
	min-height: 1600px;
}
/*.......................Aim PAGE  end....................*/


}





@media (max-width: 575px){

  	/*  Navigation  */
	nav {
        padding-top: 60px;
        padding-right: 0px;
        padding-left: 0px;
        padding-bottom: 5px;
        height: 10px;
        overflow: hidden;
        width: 100%;
        font-size: small;
       
    }

        nav a.mobile_menu { display: block; }
        nav ul,
        nav ul ul,
        nav ul ul ul {
        display: block;
        position: static;
        width: 100%;
        background-color: #1DE091;
    }
        
        nav > ul {
        padding-left: 0;
        padding-bottom: 5px;
        padding-top: 0px;
        height: 700px;
    }
        nav > ul li { float: none; margin-top: 5px; }
        
        nav ul li:hover { background: none; }
        
        nav ul li a {
        width: auto;
        display: block;
        margin: 4px 5px;
        padding-top: 1px;
        padding-right: 15px;
        padding-left: 20px;
        padding-bottom: 2px;
        border: 1px solid rgba(255,255,255,.25);
        background-color: #E03481;
        border-radius: 10px;
        }
        
        nav ul li a:hover { background-color: rgba(255,255,255,.2); }
        
        nav ul ul { background: none; }
        
        nav ul ul li a {
        margin-left: 30px;
        background-color: #666666;
        padding-left: 20px;
    }
        nav ul ul ul li a { margin-left: 60px; }
        
        nav a[aria-haspopup="true"]::after { display: none; }
        
        nav ul ul li {
        
        border-bottom: none;
    }  
    .col{
        width: 100%;
    }
	
	/* section -  How - to */
	 /* section -  How - to */
      

	 section.how-to {
	background-color: #444;
	position: relative;
	width: 100%;
	min-height: 400px;
}
  

section.how-to blockquote p {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 20px;
	text-align: justify;
	width: auto;
	font-size: small;
}
section.how-to aside blockquote img {
	display: block;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	
	min-height: 0px;
	width: 50%;
	height: auto;
	padding-top: 30px; 
}

section.how-to #blockquote_two  {
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
section.how-to #blockquote_one   {
   
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
	
	

	

.service-container{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    grid-gap: 1.5rem;
    align-items: center;
}




.s-box{
    position: relative;
    margin-top: 0.5rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 20px;
    border-radius: 0.5rem;
   
}
.s-box-img{
 
    width: 220px;
    height: auto;
    
}




.s-box-img img{
 
    width: 100%;
    height: 100%;
}
		.cta{
    background: #E03481;
    padding: 30px 10px;
    text-align: center;
    width: 90%;
    margin: 0px auto;
    border-radius: 10px;
}
.cta h2{
    font-size: 1.0rem;
    color: var(--bg-color);
    margin-bottom: 0px;
}
.mess {
	width: 350px;
	max-width: 350px;
	height: 250px;
	overflow: auto;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 20px;
	padding: 7px 8px;
	line-height: 1em;
	margin: 0;
	display: block;
	border-radius: 5px 5px 5px 5px;
	background: #E9E9E9;
	border: 1px solid #ccc;
	}

#form #submit {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 25px;
	margin-left: 240px;
	color: #000;
	font-size: 16px;
	text-shadow: 1px 1px 1px #999;
	padding: 10px;
	}
/*......................Video  PAGE  end....................*/




/*.......................CONTACT PAGE ....................*/

.asideLeftContact {
	width: 90%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	float: left;
	margin-top: 20px;
}
/*......................Video  PAGE  end....................*/




/*.......................CONTACT PAGE ....................*/

.asideLeftContact2 {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	float: left;
	margin-top: 20px;
}
#page .asideLeftContact2 img {
	width: 50%;
	height: 50%;

}
.videoHolder {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	margin-top: 50px;
	width: 95%;
	margin-right: 2.5%;
	margin-left: 2.5%;
	min-height: 311px;
}

.videoHolder iframe,
.videoHolder object,
.videoHolder embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 90%;
}
.bannerLogo{
	width: 100%;
    min-height: 10vh;
	margin-top: 20px;
   
    align-items: center;
	background: none;
}
#leftbox {
	float:left;
	background:none;
	width:90%;
	height:90px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
}
#middlebox{
	float:left;
	background:none;
	width:90%;
	height:90px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
}
#rightbox{
	float:right;
	background:none;
	width:90%;
	height:90px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: right;
	font-size: small;
}


	
}









@media screen and (max-width: 425px) {
    @-webkit-keyframes text-in {
        5%, 80%{ -webkit-transform: translateX(240px); 
                         transform: translateX(240px);
               }
        90%, 100%{ -webkit-transform: translateX(-220px);
                           transform: translateX(-220px);
                 }
        }
   
        @-webkit-keyframes text-in2 {
        5%, 80%{-webkit-transform: translatey(86px);
                        transform: translatey(86px);
                         }
        90%, 100%{ -webkit-transform: translatey(-66px);
                           transform: translatey(-66px);
                 }
        }
            @-webkit-keyframes text-in3 {
        5%, 80%{-webkit-transform: translatey(66px);
                        transform: translatey(66px);
               }
        90%, 100%{ -webkit-transform: translatey(-46px);
                           transform: translatey(-46px);
                 }
        }
        
    nav a.mobile_menu { left: auto; right: 40px; top: 8px; margin-left: opx; }
    nav { padding-top: 20px;  }





    /* cycle slideshow*/

    
.cycle-slideshow {
	background-color: white;
	
    min-width: 425px;
	display: block;
	position: relative;
	
	margin-right: auto;
	margin-left: auto;

	overflow: hidden;
	
	z-index: -1;
	}




/* section -  How - to */
  

section.atmosphere article {
	padding-top: 140px;
	padding-right: 20px;
	padding-left: 0px;
	padding-bottom: 0px;
	background-size: 250px auto;
	min-height: initial;
	margin-bottom: 0px;
	width: 50%;
}
/* section -  How - to */
	 /* section -  How - to */
      

	 section.how-to {
	background-color: #444;
	position: relative;
	width: 100%;
	min-height: 400px;
}
  

section.how-to blockquote p {
	margin-top: 30px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 20px;
	text-align: justify;
	width: auto;
	font-size: small;
}
section.how-to aside blockquote img {
	display: block;
	margin-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
	
	min-height: 0px;
	width: 50%;
	height: auto;
	padding-top: 30px; 
}

section.how-to #blockquote_two  {
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
section.how-to #blockquote_one   {
   
	margin: 0;
	width: 100%;
	color: #444;
	background-color: #fff;
	position: relative;
	bottom: 0;
	right: 0.5%;
	min-height: 435px;
	font-size: small;
  }
	
	.cta #cta{
    background: #E03481;
    padding:20px 0;
    text-align: center;
    width: 66%;
    margin: 50px auto;
    border-radius: 10px;
}
.cta #cta h2{
    font-size: 0.5rem;
    color: var(--bg-color);
    margin-bottom: 10px;
}

#heroImage_thankyou {
	width: 95%;
	height: auto;
	position: relative;
	min-height: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #EDEDED;
	padding-left: 5%;
	padding-top: 5px;
	margin-top: 60px;
	
}
#heroImage_contact {
	width: 95%;
	height: auto;
	position: relative;
	min-height: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #EDEDED;
	padding-left: 5%;
	padding-top: 25px;
	margin-top: 60px;
	
}

#form .rowx .input {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 235px;
	}
#form .rowx .input2 {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 466px;
	}
.detail {
	width: 215px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 20px;
	padding: 7px 8px;
	margin: 0;
	display: block;
	border-radius: 5px 5px 5px 5px;
	background: #E9E9E9;
	border: 1px solid #ccc;
	}
.mess {
	width: 215px;
	max-width: 215px;
	height: 250px;
	overflow: auto;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 20px;
	padding: 7px 8px;
	line-height: 1em;
	margin: 0;
	display: block;
	border-radius: 5px 5px 5px 5px;
	background: #E9E9E9;
	border: 1px solid #ccc;
	}
#form .rowx .input2 {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 235px;
	margin-top: 10px;
	}
#form #submit {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 15px;
	margin-left: 103px;
	color: #000;
	font-size: 16px;
	text-shadow: 1px 1px 1px #999;
	padding: 5px;
	}
#form .rowx {
	border-bottom: 1px dotted #EEE;
	line-height: 20px;
	overflow: auto;
	padding-top: 14px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 14px;
	width: 100%;
	height: auto;
	display: block;
	}
#form .rowx .input {
	float: left;
	margin-right: 10px;
	/* width: auto;  */
	width: 285px;
	margin-top: 5px;
	margin-bottom: 5px;
	}

    #nav_video {
        width: 95%;
        height: 50px;
        background-color: #E5E3E3;
        padding-left: 5%;
        margin-top: 60px;
    }
    .videoHolder {
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
        margin-top: 50px;
        width: 95%;
        margin-right: 2.5%;
        margin-left: 2.5%;
        min-height: 200px;
        height: auto;
    }
    .videoHolder iframe, 
    .videoHolder object, 
    .videoHolder embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 85%;
    }
	#nav_aim_Q_H {
		margin-top: 60px;
		width: 100%;
		height: 30px;
		background-color: #E9E7E7;
	}
	#nav_aim_Q_H h5 {
		margin-top: 60px;
		width: 90%;
		height: 30px;
		background-color: #E9E7E7;
		padding-left: 10%;
		padding-top: 7px;
	}



}