/* Arabic Font Embedd */
@font-face {
	font-family: 'PDMS_Saleem_QuranFont-signed';
		src: url('font/PDMS_Saleem_QuranFont-signed.ttf'); 
	src: 
		local('PDMS_Saleem_QuranFont-signed'),
		local('PDMS_Saleem_QuranFont-signed'),
		url('font/PDMS_Saleem_QuranFont-signed.ttf') 
		format('opentype');
}
/* Right Align Nav Bar */
 .navbar-nav {
      flex-direction: col;
    }
    
    .nav-link {
      padding-right: .5rem !important;
      padding-left: .5rem !important;
    }
    
/* Fixes dropdown menus placed on the right side */
    .ml-auto .dropdown-menu {
      left: auto !important;
      right: 0px;
	  }

/* Side Menu*/
body {
  font-family: "Lato", sans-serif;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 15px;
  color: #ffffff !important;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 50px;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  display: block;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: green;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}
	
/*	ACCORDION / TOGGLE */

.panel-group
{
    margin-bottom: 0;
}

.panel-group + .panel-group
{
    margin-top: 20px;
}

.panel-group .panel
{
    background: #fff;
    border: 0px solid #E6E9ED;
    border-bottom-width: 0px;
    border-radius: 0px;
    box-shadow: none;
}

.panel-group .panel + .panel
{
    margin-top: 10px;
}

.panel-group .panel-heading + .panel-collapse .panel-body
{
    border-top-color: #E6E9ED;
}

.panel-body
{
    padding: 25px;
}

.panel-heading
{
    background-color: inherit !important;
    color: inherit !important;
    padding: 0;
    border-color: inherit !important;
}

.panel-title
{
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-title > a
{
    display: block;
    padding: 15px 25px 15px;
    text-decoration: none;
    color: #fff;
}

.panel-title > a.collapsed
{
    background: #f5f5f5;
}

.panel-title > a.collapsed,
.panel-title > a.collapsed span
{
    color: #b6f0e4;
}

.panel-title > a,
.panel-title > a:hover
{
    background: #b6f0e4;
    color: #fff;
}

.panel-title > a span
{
    display: block;
    position: relative;
    top: 0;
    color: #fff;
    padding-right: 25px;
}

.text-right .panel-title > a span
{
    padding-left: 25px;
    padding-right: 0;
}

.text-center .panel-title > a span
{
    padding-left: 0;
    padding-right: 0;
}

.panel-title > a:hover span
{
    color: inherit;
}

.text-center .panel-title > a:hover span
{
    top: .5em;
    color: transparent;
}

.panel-title > a span:after
{
    font-family: "fontawesome";
    content: "\f077";
    position: absolute;
    top: 0;
    right: 0;
}

.text-right .panel-title > a span:after
{
    left: 0;
    right: auto;
}

.text-center .panel-title > a span:after
{
    top: -.75em;
    left: 0;
    opacity: 0;
}

.panel-title > a.collapsed span:after
{
    content: "\f078";
}


/* right-Left Button */

.btn-arrow-right,
.btn-arrow-left {
    position: relative;
    padding-left: 18px;
    padding-right: 18px;
}
.btn-arrow-right {
    padding-left: 36px;
}
.btn-arrow-left {
    padding-right: 36px;
}
.btn-arrow-right:before,
.btn-arrow-right:after,
.btn-arrow-left:before,
.btn-arrow-left:after { /* make two squares (before and after), looking similar to the button */
    content:"";
    position: absolute;
    top: 7px; /* move it down because of rounded corners */
    width: 22px; /* same as height */
    height: 22px; /* button_outer_height / sqrt(2) */
    background: inherit; /* use parent background */
    border: inherit; /* use parent border */
    border-left-color: transparent; /* hide left border */
    border-bottom-color: transparent; /* hide bottom border */
    border-radius: 0px 4px 0px 0px; /* round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
    -webkit-border-radius: 0px 4px 0px 0px;
    -moz-border-radius: 0px 4px 0px 0px;
}
.btn-arrow-right:before,
.btn-arrow-right:after {
    transform: rotate(45deg); /* rotate right arrow squares 45 deg to point right */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}
.btn-arrow-left:before,
.btn-arrow-left:after {
    transform: rotate(225deg); /* rotate left arrow squares 225 deg to point left */
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
}
.btn-arrow-right:before,
.btn-arrow-left:before { /* align the "before" square to the left */
    left: -11px;
}
.btn-arrow-right:after,
.btn-arrow-left:after { /* align the "after" square to the right */
    right: -11px;
}
.btn-arrow-right:after,
.btn-arrow-left:before { /* bring arrow pointers to front */
    z-index: 1;
}
.btn-arrow-right:before,
.btn-arrow-left:after { /* hide arrow tails background */
    background-color: white;
}
	
/* Custom Fonts and Styles */
a {    
	  color: #027536 !important;
	    font-weight: bold;

	  
	  }
	  a:hover {
		color: #027536 !important;
		  text-decoration: underline;

}
a:active {
		color: #ffffff !important;
		  text-decoration: underline;

}
a1 {    
	  font-family: 'PDMS_Saleem_QuranFont-signed', serif; 	
	  font-size: 38px;
	  }
t0 {
	  font-family: 'Rajdhani', sans-serif;
	  font-size: 25px;
	  }
t1 {
	  font-family: 'Ropa Sans', sans-serif;
	  	  font-size: 18px;
	  }
t2 {
	  font-family: 'Raleway', sans-serif;
	  font-size: 18px;
	  }
t3 {
	  font-family: 'Rajdhani', sans-serif;
	  font-size: 15px;
	  }
t31 {
	  font-family: 'Roboto', sans-serif;
	  font-size: 15px;
	  }
t4 {
	  font-family: 'Rajdhani', sans-serif;
	  font-size: 20px;
	  }

grey {
	    color: #8a8888;
		}
black {
	    color: #000000;
		}
red {
        color: #c40f02;
		}

trans {
	  font-family: 'Rajdhani', sans-serif;
	  font-size: 25px;
	  }

eid {
	  font-family: 'Berkshire Swash', cursive;
	  font-size: 60px;
	  }

ptitle {
	  font-family: 'Righteous', sans-serif;
	  font-size: 35px;
	  color: #0c4a1c;
	  }
dl {
    display: block;
    margin-bottom: 2px;
    font-size:2px;
    line-height: 20px;
}
dl1 {
    display: block;
    margin-bottom: 2px;
    font-size:2px;
    line-height: 15px;
}
hr.red1
{
  border-top: 1px solid red;
}
hr.red2
{
  border-top: 2px solid red;
}
hr.green1
{
  border-top: 1px solid green;
}
hr.green2
{
  border-top: 2px solid green;
}

