/*
	Template Name: Ehtesab
*/


/*
	Global Css
*/

:root {
  --dark: #000;
  --black: #333333;
  --gray: #F9F9F9;
  --darkgray: #676767;
  --lightblack: #444444;
  --white: #ffffff; 
  --green: #2BB573; 
  --lightgreen: #5ED39B; 
  --ldgreen: #ECFFF6; 
  --fbg: #0C0B09; 
  --font: 'Kumbh Sans', sans-serif; 
}


body{
	font-family: var(--font);
	font-size: 15px;
	color: var(--lightblack);
	line-height: 29px;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--font);
	font-weight: 700;
	line-height: normal;
	color: var(--black);
}

a{
	transition: .5s;
	color: #555;
	text-decoration: none;
}

a:hover,
a:focus{
	color: var(--green);
	text-decoration: none;
}

img{
	display: block;
	max-width: 100%;
}
iframe{
	max-width: 100%;
	display: block;
}
.section-padding{
	padding-top: 100px;
	padding-bottom: 100px;
}
.gray-section{
	background-color: var(--gray);
}
.pt_0{
	padding-top: 0;
}
.pb_0{
	padding-bottom: 0;
}
.pb_40{
	padding-bottom: 40px;
}

.pt_100{
	padding-top: 100px;
}
.pb_100{
	padding-bottom: 100px;
}
.main_btn {
	background-color: var(--green);
	color: var(--white);
	padding: 8px 25px;
	display: inline-block;
	font-weight: 600;
	border-radius: 4px;
	border: 2px solid var(--green);
	font-size: 14px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: .5s;
}
.dwn_btn {
	color: var(--white);
	padding: 8px 25px;
	display: inline-block;
	font-weight: 600;
	border-radius: 4px;
	border: 2px solid var(--green);
	font-size: 14px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: .5s;
	background-image: url('../img/Google-Play-Icon.jpg');
}
.dwn_btn1 {
	color: var(--white);
	padding: 8px 25px;
	display: inline-block;
	font-weight: 600;
	border-radius: 4px;
	border: 2px solid var(--green);
	font-size: 14px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: .5s;
	background-image: url('../img/Apple-App-Store-Icon.jpg');
}
.main_btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--white);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: ease, ease;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	z-index: -1;
}
.main_btn:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
.main_btn:hover,
.main_btn:focus{
	color: var(--black);
}


.section-title{
	margin-bottom: 25px;
}
.section-title span {
	color: var(--green);
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
}

.section-title h2 {
	font-size: 27px;
	line-height: 40px;
}


.main-banner-area {
	background-size: cover;
	position: relative;
	padding: 176px 0 80px;
	text-align: left;
}
.main-banner-area:after{
	position: absolute;
	content: '';
	width:100%;
	height: 100%;
	background-image: url('../img/slider/slider-bg.png');
	opacity: 1;
	left: 0;
	top: 0;
}
.banner-content{
	position: relative;
	z-index: 1;
}
.banner-content h2{
	color: var(--white);
	font-size: 35px;
}


/*START PRELOADER DESIGN*/

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 4px solid rgba(0, 0, 0, 0.08);
    border-right: 4px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--green);
    border-radius: 50%;
    -webkit-animation: spinner 600ms infinite linear;
    animation: spinner 600ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*END PRELOADER DESIGN*/

/* #Back To Top
================================================== */

.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	color: var(--green);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: "Font Awesome 6 Free";
	content: '\f062';
	text-align: center;
	line-height: 46px;
	font-size: 17px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--green), var(--green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--green);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*
	Menu Css
*/

#header-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	padding: 25px 40px 20px;
}
.site-logo{
	width: 100px;
	display: block;
}
.navigation ul{
	padding: 0;
	margin: 0;
}
.navigation ul li{
	display: inline-table;
	padding: 10px 10px;
}
.navigation ul li a{
	display: block;
	color: var(--white);
	position: relative;
	transition: .5s;
	font-weight: 500;
}
.navigation ul li a:hover,
.navigation ul li a:focus{
	color: var(--green);
}

/* Drop Down Menu */

.navigation ul li{
	position: relative;
}
.navigation ul li i{
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 4px;
}
.navigation ul li ul{	
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	position: absolute;
	border: none;
	top: 80px;
	left: 0;
	width: 205px;
	z-index: 99;
	display: block;
	opacity: 0;
	visibility: hidden;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0px;
}

.navigation ul li ul li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
	display: block;
	text-align: left;
}
.navigation ul li ul li:last-child {
	border-bottom: 0px solid transparent;
}

.navigation ul li ul li a {
	text-transform: capitalize;
	padding: 4px 15px;
	margin: 0;
	position: relative;
	color: var(--black);
	font-size: 15px;
	font-weight: 500;
}
.navigation ul li ul li a:hover{
	background-color: var(--green);
	color: var(--white);
}
.navigation ul li:hover ul {
	opacity: 1;
	visibility: visible;
	top: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
#header-area .don_btn{
	float: right;
}
.don_btn{
	color: var(--white);
	background: transparent;
	border: 2px solid var(--white);
	display: inline-block;
	padding: 8px 25px;
	border-radius: 4px;
	transition: .5s;
	position: relative;
	overflow: hidden;
	font-weight: 600;
}

.don_btn::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--green);
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition-timing-function: ease, ease;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}
.don_btn:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
.don_btn:hover,
.don_btn:focus{
	color: var(--white);
}
.don_btn {
	font-size: 14px;
}
.don_btn i{
	padding-right: 3px;
}
/* Mobile Menu */

#mobile_menu{
	display: none;
}

.slicknav_menu{
	position: relative;
}
.slicknav_nav{
	position: absolute;
}
.slicknav_menu .slicknav_icon{
	font-size: 22px;
}
.slicknav_btn,
.slicknav_btn:hover,
.slicknav_btn:focus{
	color: #fff;
}
.slicknav_nav{
	text-align: left;
	top: 36px;
	left: 0;
	width: 100%;
}

/* Slider */

.home-slider-area {
	background-size: cover;
	position: relative;
	padding-top: 20px;
}
.home-slider-area:after{
	position: absolute;
	content: '';
	width:100%;
	height: 100%;
	background-image: url('../img/slider/slider-bg.png');
	opacity: 1;
	left: 0;
	top: 0;
}	

.home-slider{
	height: 700px;	
}
.single-slide{
	position: relative;
	z-index: 1;
	color: var(--white);
}
.single-slide,
.home-slider .row{
	height: 100%;
}
.slider-content{
	padding-right: 22%;
}
.single-slide .subtitle {
	color: var(--white);
	display: inline-block;
	font-size: 17px;
	line-height: 30px;
	margin-bottom: 30px;
	background: hsla(0,0%,100%,.1);
	padding: 5px 28px;
	border-radius: 30px;
	font-weight: 500;
	border: 2px solid #fff;
}
.single-slide h2 {
	color: var(--white);
	font-size: 43px;
	line-height: 65px;
	margin-bottom: 22px;
}
.single-slide h2 span{
	font-weight: 400;
}
.single-slide p{
	padding-bottom: 20px;
	font-size: 17px;
}


/* About */

.paryer-time p {
	font-size: 18px;
	font-weight: 600;
}
.arabic-time {
	display: inline-block;
	text-align: left;
	margin-bottom: 20px;
}
.arabic-time span{
	font-size: 18px;
	text-decoration: underline;
	color: var(--green);
	
}
.arabic-time p{
	margin-bottom: 0!important;
	font-weight: 500;
	font-size: 16px;
}


.single-ptime {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 30px;
	text-align: center;
	padding-bottom: 5px;
	border-radius: 4px;
	border: 1px solid #f1f1f1;
}

.single-ptime span {
	background-color: var(--green);
	padding: 6px 15px;
	display: block;
	color: var(--white);
	font-weight: 500;
	font-size: 15px;
	border-radius: 4px 4px 0 0;
}
.single-ptime h3 {
	font-weight: 600;
	font-size: 17px;
	padding: 20px 0 37px;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.single-ptime p {
	font-size: 12px;
	background-color: var(--gray);
	color: var(--black);
	display: inline-block;
	padding: 0px 11px;
}

/* About */

.about_img {
	margin-right: 70px;
	position: relative;
}
.ab_vid_btn {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: var(--white);
	color: var(--green);
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%,-50%);
	transition: .5s;
}
.ab_vid_btn:hover,
.ab_vid_btn:hover{
	color: var(--white);
	background-color: var(--green);
}
.about_content ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 25px;
}
.about_content ul li {
	position: relative;
	padding: 4px 0;
	display: inline-block;
	width: 47%;
	font-size: 16px;
	font-weight: 500;
}
.about_content ul li i{
	padding-right: 4px;
	color: var(--green);
}

/* Services */

.single-service{
	background-color: var(--white);
	position: relative;
	padding: 30px 30px 20px;
	margin-bottom: 30px;
	border: 2px solid var(--green);
	transition: .5s;
	border-radius: 4px;
}
.single-service:hover{
	background: var(--green);
	border: 2px solid var(--green);
	color: var(--white);
}
.single-service:hover i,
.single-service:hover h3{
	color: var(--white);
}
.single-service i{
	font-size: 40px;
	color: var(--green);
}
.single-service h3 {
	padding: 20px 0 6px;
	font-size: 22px;
	line-height: 32px;
}

/* Pillar */

.single-pillar{
	margin-bottom: 30px;
	text-align: center;
	position: relative;
	background-color: var(--gray);
	border-radius: 4px;
	transition: .5s;
}
.single-pillar:hover{
	background: var(--green);
	color: var(--white);
}
.single-pillar:hover h3{
	color: var(--white);
}
.single-pillar img{
	border-radius: 4px 4px 0 0;
}
.single-pillar h3 {
	margin-top: 15px;
	font-size: 20px;
	line-height: 30px;
}

.pillar_content{
	padding: 10px 20px 10px;
}

.single-pillar span {
	position: absolute;
	background-color: var(--green);
	color: var(--white);
	top: 17px;
	left: 17px;
	padding: 1px 19px;
	display: inline-block;
	border-radius: 30px;
}

/* Support Us */

.support_us{
	padding: 120px 0;
	color: #fff;
	position: relative;
}
.support_us:before{
	position: absolute;
	content: '';
	background-color: var(--dark);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: .7;

}
.scontent{
	position: relative;
	z-index: 1;
}
.support_us span{
	color: var(--green);
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
	display: block;
}

.support_us h2{
	color: #fff;
	margin-bottom: 20px;
}
.support_us p {
	margin-bottom: 30px;
	font-size: 16px;
	padding: 0 50px;
}

/* Blog */

.single-blog{
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
	margin-bottom: 30px;
	position: relative;
	border-radius: 4px;
}

.blog_img{
	position: relative;
}
.blog_img img{
	border-radius: 4px 4px 0 0;
}
.meta-blog {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: var(--green);
	padding: 0px 7px 0px 0;
	font-size: 13px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.04);
	color: var(--white);
}
.meta-blog span{
	padding-left: 3px;
}
.meta-blog .category {
	display: inline-block;
	background-color: var(--green);
	padding: 0 7px;
	font-size: 15px;
	margin-bottom: -1px;
	font-weight: 500;
}
.meta-blog .category a{
	color: var(--white);
}
.blog-content {
	padding: 23px;
}
.single-blog h3 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 10px;
}
.single-blog h3 a{
	color: var(--black);
}
.single-blog h3 a:hover,
.single-blog h3 a:focus{
	color: var(--green);
}
.blog_btn {
	font-weight: 500;
	font-size: 14px;
}

/* Footer */

.footer{
	background-color: var(--fbg);
	padding: 100px 0 10px;
	color: var(--white);
}
.single-footer{
	margin-bottom: 40px;
}
.footer-about .site-logo{
	margin-bottom: 25px;
}
.footer-about p{
	margin-bottom: 22px;
}
.footer-about ul li{
	display: inline-block;
	padding-right: 5px;
}
.footer h3{
	color: var(--white);
	font-size: 22px;
	margin-bottom: 25px;
}

.footer ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.footer a{
	color: var(--white);
	transition: .5s;
}
.footer a:hover,
.footer a:focus{
	color: var(--green);
}
.footer ul li {
	line-height: 32px;
	margin-right: 2px;
}
.footer-about ul li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--green);
	display: block;
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
	transition: .5s;
}
.footer-about ul li a:hover,
.footer-about ul li a:focus{
	color: var(--green);
	background: var(--white);
}
.copyright {
	border-top: 1px solid rgb(255, 255, 255, 0.09);
	padding-top: 30px;
}

/* Shop */

.sshowing_product {
	margin-bottom: 35px;
}

.pcontent{
	padding: 20px 25px;
}
.pprice {
	color: var(--darkgray);
	font-weight: 500;
}
.single-product{
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
	background-color: var(--white);
	margin-bottom: 30px;
	border-radius: 4px;
}
.single-product img{
	border-radius: 4px 4px 0 0;
}
.single-product h3 {
	font-size: 20px;
	margin: 10px 0 20px;
}
.single-product h3 a{
	color: var(--black);
}

.pbtn,
.pbtn:hover,
.pbtn:focus{
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	padding: 3px 12px;
	border-radius: 3px;
	
}
.shop_pagination{
	margin-top: 80px;
}
.shop_pagination a,
.shop_pagination a:hover,
.shop_pagination a:focus{
	color: var(--black);
	box-shadow: inherit;
}
.shop_pagination .page-item.active a{
	background-color: var(--green);
	border-color: var(--green);
}

/* Contact */

.contact-info {
	background-color: var(--white);
	padding: 50px 30px 30px;
	text-align: center;
	border: 2px solid var(--green);
	position: relative;
	border-radius: 4px;
	margin-bottom: 30px;
}

.contact-info i {
	background-color: var(--green);
	color: var(--white);
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 50%;
	font-size: 22px;
	position: absolute;
	top: -29px;
	left: 50%;
	transform: translateX(-50%);
}
.contact-info h4{
	margin-bottom: 15px;
	font-size: 20px;
}
.contact-form h3{
	font-size: 28px;
	margin-bottom: 30px;
}
.contact-form textarea{
	height: 120px;
}
.contact-form label{
	cursor: pointer;
}
.form-control{
	border-radius: 4px;
	height: 40px;
	line-height: 40px;
	background: #fafafa;
}
.form-control:focus{
	box-shadow: inherit;
	border-color: var(--green);
}
.contact-map iframe{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}



/*
* ----------------------------------------------------------------------------------------
* 19.START Thank You DESIGN
* ----------------------------------------------------------------------------------------
*/

.thankyou-text{
	
}
.thankyou-text h2{
	font-size: 30px;
	margin-bottom: 40px;
}