/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/


:root {
	--title: #222;
	--body: #555;
	--fbg: #042023;
	--33: #333;
	--gray: #F4F6F9;
	--f6: #f6f6f6;
	--f7: #f7f7f7;
	--dc: #DCE1F5;
	--dd: #ddd;
	--d8: #d8d8d8;
	--53: #535353;
	--ba: #BABABA;
	--fa: #fafafa;
	--f9: #f9f9f9;
	--fc: #FCFEFE;
	--white: #fff;
	--blue: #4A3AFF;
	--yellow: #dea65d;
	--green: #182738;
	/* --yellow: #dea65d;
	--green: #182738; */
	--red: #FF3636;
	--rating: #FF9C00;
	--box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
	--shadow-2: 0 6px 30px rgba(0, 0, 0, 0.02);
	--shadow-3: 0px 30px 50px rgba(0, 0, 0, 0.08);
	--Y5: translateY(-5px);
	--22: 22px;
}

body {
	color: var(--body);
	font-family: 'Lexend', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	overflow-x: hidden;
	position: relative;
}

html,
body {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0px;
	font-family: 'Lexend', sans-serif;
	color: var(--title);
	font-weight: 600;
}

a {
	color: var(--body);
	text-decoration: none;
	transition: .5s;
}

a:hover,
a:focus {
	text-decoration: none;
	color: var(--green);
}

p {
	margin-bottom: 15px;
}

ul,
li {
	margin: 0;
	padding: 0;
}

fieldset {
	border: 0 none;
	margin: 0 auto;
	padding: 0;
}

img {
	max-width: 100%;
}

.section-heading {}

.section-heading span {
	text-transform: uppercase;
	font-weight: 500;
	color: var(--green);
}

.section-heading h2 {
	font-size: 35px;
	color: var(--title);
	font-weight: 600;
	margin-top: 5px;
}

.section-padding {
	padding: 100px 0;
}

.pt-100 {
	padding-top: 100px;
}

.pb-100 {
	padding-bottom: 100px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-90 {
	margin-bottom: 90px;
}

.mb-100 {
	margin-bottom: 100px;
}

/** Button CSS **/
.green_btn,
.yellow_btn,
.green_border_btn,
.gray_btn {
	padding: 11px 29px;
	font-size: 15px;
	border-radius: 7px;
	pointer-events: auto;
	cursor: pointer;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	overflow: hidden;
	transition: .5s;
	z-index: 1;
	text-align: center;

}

button.green_btn,
button.yellow_btn {
	border: 1px solid var(--green);
}

.yellow_btn {
	background-color: var(--green);
	color: var(--title);
}

.green_btn {
	color: #fff;
	background: var(--yellow);

}

.yellow_btn:before,
.green_btn::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.yellow_btn span,
.green_btn span {
	position: relative;
}

.yellow_btn:before,
.green_btn::before {
	content: '';
	background: var(--green);
	width: 120%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.yellow_btn:before {
	background: var(--yellow);
}

.yellow_btn:hover::before,
.green_btn:hover::before {
	transform: translate3d(100%, 0, 0);
}

.green_btn:hover {
	color: var(--title);
	border-color: var(--yellow);
}

.yellow_btn:hover {
	color: var(--white);
}

.green_border_btn {
	background-color: transparent;
	border: 1px solid var(--green);
	color: var(--title);
}

.gray_btn {
	background-color: var(--gray);
	border: 1px solid var(--gray);
	color: var(--green);
}

.gray_btn:hover,
.gray_btn:focus,
.green_border_btn:hover,
.green_border_btn:focus {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}


/** Preloader **/
.preloader_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: var(--white);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999;
	overflow-x: hidden;
	overflow-y: hidden;
}

.preloader {
	width: 80px;
	height: 80px;
	border: 3px solid var(--yellow);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	background-color: var(--white);
}

.pre_logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	z-index: 11;
}

.preloader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-bottom-color: var(--green);
}



@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*** Header ***/
#navigation {
	background: rgba(245, 197, 11, .09);
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #FFFFFF, rgba(245, 197, 11, .09));
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #FFFFFF, rgba(245, 197, 11, .09));
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

/** Header Top **/
.header-top {
	background: #182738;
	background: linear-gradient(90deg, rgba(29, 142, 90, 1) 0%, #A48300 100%);
	padding: 15px 30px;

	/*border-radius: 0 0 25px 25px;*/
}

.header-top {
	color: var(--white);
}

.header-top a {
	color: var(--white);
}

.header-top ul {
	list-style-type: none;
}

.header-top ul li {
	display: inline-block;
}

.header-top .htleft ul li {
	padding-right: 15px;
}

.header-top .htright ul li:first-child {
	padding-left: 0;
}

.header-top .htright ul li {
	padding-left: 15px;
	padding-right: 15px;
}

.header-top ul li:last-child {
	padding-right: 0;
	padding-left: 0;
}

.header-top .social_icons a {
	color: var(--white);
	width: 28px;
	height: 28px;
	line-height: 28px;
	display: inline-block;
	text-align: center;
	border: 1px solid var(--white);
	border-radius: 50%;
	margin-left: 8px;
	transition: .5s;
	font-size: 13px;
}

.header-top .social_icons a:hover {
	border-color: var(--yellow);
	color: var(--yellow);
}

.bis_himage {
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
	width: auto;
	margin-top: 10px;
}

.bis_himage img {
	width: 200px;
}

/** Menu **/

.site-logo a {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-logo img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: .3s;
}

.site-logo a:hover img {
	transform: scale(1.05);
}

.site-logo .logo-text {
	font-size: 24px;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.5px;
	transition: .3s;
}

.site-logo a:hover .logo-text {
	color: var(--yellow);
}

.main-header {
	padding: 15px 0;
	margin: 0 30px;
}

#main-menu {}

#main-menu li {
	display: inline-block;
	position: relative;
	padding: 10px 13px;
}

#main-menu li a {
	font-weight: 600;
	color: var(--title);
	transition: .5s;
}

#main-menu li a:hover,
#main-menu li a:focus {
	color: var(--green);
}

.search_btn,
.widget_menu_icon,
.cart_icon {
	color: var(--title);
	text-align: center;
	border-radius: 8px;
	position: relative;
	font-size: 21px;
	width: 48px;
	height: 47px;
	border: 1px solid var(--dd);
	line-height: 47px;
	transition: .5s;
}

.header-2 .search_btn,
.header-2 .widget_menu_icon,
.header-2 .cart_icon {
	border-radius: 50%;
}

.header-2 .widget_menu_icon {
	display: none;
}

.widget_menu_icon:hover,
.cart_icon:hover,
.search_btn:hover,
.search_btn:focus {
	color: var(--title);
	background-color: var(--yellow);
	border-color: var(--yellow);
}

.cart_count {
	color: var(--body);
	font-size: 13px;
	position: absolute;
	top: -10px;
	right: 5px;
}

.header-2 .cart_count {
	right: 6px;
}

.menu_btn.sidebar__toggle img {
	width: 24px;
}

/* Mobile Menu */

.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--p2-clr);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
	display: none;
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}

.offcanvas__top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .text {
	color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--red);
	position: relative;
	z-index: 9;
	cursor: pointer;
	transition: .5s;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close:hover,
.offcanvas__wrapper .offcanvas__content .offcanvas__close:focus {
	background-color: var(--red);
	background-color: var(--red);
	color: var(--white);
}

.offcanvas__close button {
	border: none;
	background-color: transparent;
	padding: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--white);
}

.offcanvas__logo {
	width: 100px;
}

.offcanvas__logo img {
	border-radius: 8px;
}

.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}

.offcanvas__overlay.overlay-open {
	opacity: 0.8;
	visibility: visible;
}

.sidebar_contact_info {}

.sidebar_contact_info h3 {
	font-size: 18px;
}

.sidebar_contact_info ul {
	list-style-type: none;
}

.scinof {
	margin-bottom: 50px;
}

.sidebar_contact_info ul {
	list-style-type: none;
	margin-top: 28px;
	display: block;
}

.sidebar_contact_info li {
	margin-bottom: 12px;
}

.scinof i {
	color: var(--green);
	font-size: 20px;
	display: inline-block;
	padding-right: 2px;
}

.sidebar_contact_info .hsidebar_social {
	margin-top: 0;
}

.hsidebar_social li {
	display: inline-block;
	padding-right: 10px;
}

.hsidebar_social li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid var(--dc);
	border-radius: 50%;
	display: block;
	text-align: center;
	transition: .5s;
	color: var(--title);
}

.hsidebar_social li a:hover,
.hsidebar_social li a:focus {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
}

.hsidebar_social {}

.sidebar_contact_info h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 16px;
}

.mobile-menu .mean-bar {
	margin-bottom: 40px !important;
	overflow: hidden;
}

@media (max-width: 450px) {
	.offcanvas__info {
		width: 300px;
	}
}

@media (max-width: 575px) {
	.offcanvas__wrapper {
		padding: 20px;
	}
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}


.mean-container a.meanmenu-reveal {
	display: none;
}


.mean-container .mean-nav {
	background: none;
	list-style: none;
	margin: 0;
}

.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
}

.mean-container .mean-nav>ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}

@media (max-width: 1199px) {
	.mean-container .mean-nav>ul .homemenu-items {
		flex-wrap: wrap;
	}
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
	position: relative;
}

@media (max-width: 1199px) {
	.mean-container .mean-nav>ul .homemenu-items .homemenu {
		max-width: 300px;
		text-align: center;
		margin: 0 auto;
		border: 1px solid var(--border);
		padding: 10px;
	}
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
	position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	gap: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
	padding: 12px 20px;
	color: var(--white) !important;
	width: initial;
	font-size: 16px;
	text-align: center;
	border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
	color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
	width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px;
}

.mean-container a.meanmenu-reveal {
	display: none !important;
}

.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--title);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-transform: capitalize;
	border-bottom: 1px solid var(--dc) !important;
	border: none;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--p2-clr);
}

.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
	display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
	display: inline-block;
	font-size: 16px;
}

.mean-container .mean-nav>ul>li:first-child>a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

.offcanvas__contact {}

.offcanvas__contact h4 {
	font-size: 20px;
}

.offcanvas__contact ul {
	margin-top: 20px;
}

.offcanvas__contact i {
	margin-right: 15px;
	color: var(--yellow);
}

.offcanvas__contact li {
	margin-bottom: 15px;
}

.sidebar-social {}

.sidebar-social a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	border: 1px solid var(--dc);
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	transition: .5s;
	color: var(--title);
	text-align: center;
}

.sidebar-social a:hover,
.sidebar-social a:focus {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--title);
}

.sidebar-social a i {
	color: var(--title);
	margin: 0;
}

/*-------------------------------
# Dropdwon menu 
--------------------------------*/

#navigation #main-menu ul li ul,
#navigation #main-menu ul li ul li ul {
	background: var(--white);
	-webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);
	left: -55px;
	list-style: outside none none;
	margin: 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	padding: 10px;
	position: absolute;
	text-align: left;
	top: 120%;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	visibility: hidden;
	width: 210px;
	z-index: 999;
	border-radius: 4px;
	border-top: 2px solid var(--yellow);
}

#navigation #main-menu .menu-item-has-children {
	position: relative;
	margin-right: 28px;
}

#navigation #main-menu .menu-item-has-children::after {
	position: absolute;
	content: "\e64b";
	font-family: themify;
	margin-top: 0px;
	margin-left: 0;
	font-size: 10px;
	right: -10px;
	top: 14px;
	color: var(--title);
	font-size: 12px;
	font-weight: 600;
}

#navigation #main-menu ul li ul li {
	position: relative;
}

#navigation #main-menu ul li ul li ul {
	top: 0;
	right: auto;
	left: 205px;
}

#navigation.navbar-fixed #main-menu ul li li a {
	color: var(--title);
}

#navigation #main-menu ul li:hover ul,
#navigation #main-menu ul li ul li:hover>ul {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
	top: 100%;
}

#navigation #main-menu ul li ul li {
	display: block;
	margin: 0;
	padding: 0;
}

#navigation #main-menu ul li ul li a {
	color: var(--title);
	display: block;
	font-size: 15px;
	line-height: 30px;
	font-weight: 600;
	padding: 4px 16px;
	position: relative;
	transition: all 0.3s ease 0s !important;
	visibility: inherit !important;
	opacity: inherit !important;
	text-transform: capitalize;
	border-radius: 4px;
}

#navigation #main-menu ul li ul li a:hover {
	color: var(--white);
	background-color: var(--green);
	text-decoration: none;
}

#popup_searchbox {
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 40000;
}

.searchbox_drawer {
	position: absolute;
	padding: 0px 50px;
	width: 100%;
	z-index: 99;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	transition: background 0.5s, transform 0.5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	position: absolute;
	top: 0;
	left: 0;
	background: var(--white);
	border: 1px solid #E9EEF4;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);

}

#popup_searchbox.popupsbox_active .searchbox_drawer {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}


#popup_searchbox.popupsbox_active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.popup_searchform {
	padding: 97px 50px;
	background: var(--white);
}

.popup_close,
.popup_close:hover {
	width: 50px;
	height: 50px;
	line-height: 55px;
	background: var(--f9);
	border-radius: 50%;
	position: absolute;
	right: 40px;
	top: 40px;
	text-align: center;
	font-size: 28px;
	transition: .5s;
}

.popup_searchform {}

.popup_searchform input {
	width: 100%;
	height: 50px;
	border: 1px solid var(--dc);
	border-radius: 4px;
	padding: 5px 25px;
	transition: .5s;
}

.popup_searchform input:focus {
	border-color: var(--yellow);
	outline: none;
}

.popup_searchform button {
	height: 50px;
	background: var(--green);
	border: 1px solid var(--green);
	color: var(--white);
	display: block;
	padding: 5px 30px;
	border-radius: 4px;
	position: absolute;
	top: 0;
	right: 0;
	transition: .5s;
}

.popup_searchform button:hover {
	border-color: var(--yellow);
	background: var(--yellow);
}


/*
* ----------------------------------------------------------------------------------------
* Cart Drawer
* ----------------------------------------------------------------------------------------
*/

.min_cart_wrapper {
	background: rgba(0, 0, 0, 0.7);
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 40000;
}

#mini_cart.min_cart_active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
}

.cart_drawer {
	position: absolute;
	height: 100%;
	width: 380px;
	z-index: 99;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	transition: background 0.5s, transform 0.5s;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	position: absolute;
	right: 0;
	background: var(--white);
	border: 1px solid #E9EEF4;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .05);

}


#mini_cart.min_cart_active .cart_drawer {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	opacity: 1;
}


.cart_drawer .cart_close {
	cursor: pointer;
	position: absolute;
	top: 2px;
	left: 3px;
	width: 37px;
	height: 37px;
	color: var(--white);
	font-size: 23px;
	text-transform: uppercase;
	font-weight: 400;
	text-align: center;
	line-height: 40px;
	background: var(--red);
	border-radius: 50%;
	transition: .5s;
}

.cart_drawer .cart_close:hover,
.cart_drawer .cart_close:focus {
	background: var(--red);
}

.cart_drawer .cart_number {
	font-weight: 600;
	display: block;
	min-width: 45px;
	height: 45px;
	text-align: center;
	line-height: 46px;
	color: #111;
	position: absolute;
	right: 0;
	top: 0;
	border: 1px solid #ecebeb;
	border-top: transparent;
	border-right: transparent;
}

.cart_drawer .title {
	font-weight: 500;
	line-height: 43px;
	height: 45px;
	color: #111;
	border-bottom: 1px solid #ecebeb;
	padding-bottom: 0;
	margin-bottom: 0;
	text-align: center;
	font-size: 20px;
}

.minicart .mini-content .prod {
	position: relative;
	height: calc(100vh - 162px);
	max-height: 100%;
	overflow: auto;
	padding: 0 20px;
}

.woocommerce-mini-cart__empty-message {
	text-align: center;
	padding: 50% 0;
}

.cart_drawer li {
	border-bottom: 1px solid #e1e1e1;
	align-items: flex-start;
	position: relative;
	padding: 20px 0px;
}

.cart_drawer li:last-child {}

.thumb_img_cartmini {
	width: 25%;
}

.product-detail {
	width: 70%;
	padding-left: 20px
}

.produc_remove {
	width: 15%;
	text-align: center;
}

.cart_drawer h3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.cart_drawer h3 a {
	color: #222;
	transition: .5s;
}

.cart_drawer h3 a:hover,
.cart_drawer h3 a:focus {
	color: var(--green);
}

.mini_cart_list {
	position: relative;
	height: calc(100vh - 162px);
	max-height: 100%;
	overflow: auto;
	padding: 30px 20px 0;
}

.mini_cart_list img {
	border-radius: 4px;
	width: auto !important;
	height: auto !important;

}

.cart_drawer_btm .sub-total {
	height: 59px;
	line-height: 59px;
	background-color: var(--white);
	color: #111;
	padding: 0 15px;
	overflow: hidden;
	bottom: 59px;
	position: absolute;
	width: 100%;
	padding-bottom: 116px;
}

.cart_drawer_btm .sub-total strong {
	float: left;
}

.cart_drawer_btm .sub-total .woocommerce-Price-amount {
	float: right;
	font-weight: 600;
}

.cart_drawer_btm .total-price {
	font-weight: 600;
}

.cart_drawer_btm .bottom_group {
	width: 100%;
	max-width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 5px;
}

.cart_drawer_btm .total-title {
	font-weight: 600;
}

.cart_drawer_btm .button-viewcart,
.cart_drawer_btm .button-checkout {
	width: 100%;
	display: block;
	float: left;
	font-weight: 600;
	font-size: 16px;
	text-transform: capitalize;
	text-align: center;
	height: 50px;
	line-height: 50px;
	transition: color .3s ease 0s, background-color .3s ease 0s;
	border-radius: 4px;

}

.cart_drawer_btm .button-viewcart {
	background-color: var(--white);
	border: 2px solid var(--green);
	margin-bottom: 10px;
	color: var(--green);

}

.cart_drawer_btm .button-viewcart:hover,
.cart_drawer_btm .button-viewcart:focus {
	background: var(--green);
	color: var(--white);
}

.cart_drawer_btm .button-checkout {
	background-color: var(--yellow);
	color: var(--title);
}


.cart_drawer_btm .button-checkout:hover,
.cart_drawer_btm .button-checkout:focus {
	background: var(--green);
	color: var(--white);
}

/**** Slider ****/
.home-slider {
	position: relative;
	overflow: hidden;
}

.home-slider::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 140px;
	background-image: url(../img/slider/btm_shape.svg);
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-slider,
.home-slider .single-slide {}

.home-slider .single-slide {}

.slider_subtitle {
	display: inline;
	padding: 5px 20px;
	font-size: 15px;
	border-radius: 127px 25px 150px 11px;
	background: linear-gradient(90deg, rgba(29, 142, 90, 1) 0%, #caa304 100%);
	color: var(--white);

}

.slider-content {
	padding: 220px 0 220px;
}

.slider-content h1,
.banner-content h1 {
	font-size: 55px;
	line-height: 65px;
	color: var(--white);
	font-weight: 600;
	margin-top: 25px;
	margin-bottom: 20px;
}

.slider-content p,
.banner-content p {
	margin-bottom: 30px;
}

.home-slider .single-slide,
.home-banner {
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	color: var(--white);
}

.home-slider .single-slide:after,
.home-banner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

.home-slider .single-slide .slider-content {}

.home-slider .single-slide .slider-content h1 span {
	font-size: 48px;
	color: var(--yellow);
	font-weight: 600;
}

.slider_shape {
	position: absolute;
	top: 80px;
	right: 50px;
}

.hslider_image {
	width: 45%;
	position: absolute;
	right: 0;
	top: 0;
}

.slider_img {
	position: absolute;
	top: 40px;
	right: 80px;
}

.slider_arrows {
	position: absolute;
	left: 50%;
	bottom: 22%;
	z-index: 1;
	transform: translate(-50%, 0%);
}

/*** Home Banner ***/
.home-banner {
	z-index: 1;
}

.banner-content {
	padding: 200px 0;
}

.banner_subtitle {
	text-transform: uppercase;
	position: relative;
}

.banner_subtitle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	width: 10px;
	height: 10px;
	background-color: var(--yellow);
	border-radius: 50%;
	transform: translateY(-50%);
}

.banner_subtitle::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -20px;
	width: 10px;
	height: 10px;
	background-color: var(--yellow);
	border-radius: 50%;
	transform: translateY(-50%);
}

.banner-content h1 {
	margin-top: 23px;
	margin-bottom: 25px;
}

.banner-content p {
	margin-bottom: 40px;
}

.banner-content h1 span {
	color: var(--yellow);
}

/* Active Animation  */

.swiper-slide-visible.swiper-slide-active .slider-content .slider_subtitle {
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.swiper-slide-visible.swiper-slide-active .slider-content h1 {
	-webkit-animation-delay: .7s;
	animation-delay: .7s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.swiper-slide-visible.swiper-slide-active .slider-content p {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.swiper-slide-visible.swiper-slide-active .slider-content .yellow_btn {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.swiper-slide-visible.swiper-slide-active .slider_shape,
.swiper-slide-visible.swiper-slide-active .slider_img {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}


@keyframes upDown {
	0% {
		transform: translateY(-40px)
	}

	100% {
		transform: translateY(0px)
	}
}

@keyframes leftRight {
	0% {
		transform: translateX(-50px)
	}

	100% {
		transform: translateX(0px)
	}
}

@keyframes rightLeft {
	0% {
		transform: translateX(50px)
	}

	100% {
		transform: translateX(0px)
	}
}


/** About **/
.miner_icon {
	width: 119px;
	top: 0;
	left: -100px;
	position: absolute;
}

/** Pillar of Islam **/

.single-pillar {
	text-align: center;
	position: relative;
	padding: 60px 0 0;
}

.single-pillar::after {
	content: '';
	position: absolute;
	background-image: url(../img/shapes/pillar.svg);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 0 0 43px 43px;
}

.single-pillar img {
	width: 130px;
	margin-bottom: 20px;
	border-radius: 50%;
}

.single-pillar h3 {
	font-size: 22px;
	;
}

.pl_btm {
	background-color: var(--yellow);
	color: var(--title);
	padding: 14px 0;
	position: relative;
	z-index: 1;
	margin: 0 2px;
	border-radius: 0 0 35px 35px;
}

/* Services */

.services {
	background-size: cover;
	background-position: center;
	position: relative;
	color: var(--white);
	z-index: 1;
}

.services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(29, 142, 90, .5);
	background-image: url(../img/bg/overlay.svg);
	background-size: cover;
	z-index: -1;
}

.white-title h2 {
	color: var(--white);
}

.single-service {
	background-color: var(--white);
	color: var(--title);
	padding: 30px;
	border-radius: 15px;
}

.single-service h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.service_icon,
.counter_icon {
	width: 80px;
	height: 80px;
	line-height: 85px;
	border-radius: 50%;
	background-color: var(--yellow);
	text-align: center;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.service_icon img {
	width: 43px;
}

.service_icon:after,
.counter_icon:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	background-color: var(--green);
	border-radius: 50%;
	z-index: -1;
}

.ser-content {
	overflow: hidden;
}

/*** Courses **/
.single-course {
	border: 1px solid var(--dc);
	border-radius: 15px;
	overflow: hidden;
}

.course-image {
	position: relative;
	z-index: 1;
	transition: .5s;
}

.course-image img {
	width: 100%;
}

.course-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 15px 15px 0 0;
	opacity: 0;
	transition: .5s;
}

.single-course:hover .course-image:after {
	opacity: 1;
	width: 100%;
}

.single-course img {
	border-radius: 15px 15px 0 0;
}

.course_author {
	display: inline-block;
	background: #fff;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	padding: 7px 10px;
	position: absolute;
	bottom: -22px;
	left: 15px;
	z-index: 1;
}

.course_author img {
	border-radius: 50%;
	width: 30px !important;
	margin-right: 5px;
}

.course_author strong {
	color: var(--green);
}

.course_meta {
	margin-top: 15px;
	margin-bottom: 15px;
}

.course_meta i {
	color: var(--yellow);
}

.cor_rating {}

.cor_rating i {
	color: var(--rating);
	font-size: 14px;
}

.cor_price {
	color: var(--red);
	font-size: 20px;
	font-weight: 600;
}

.single-course h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.single-course h3 a {
	color: var(--title);
	transition: .5s;
}

.single-course h3 a:hover,
.single-course h3 a:focus {
	color: var(--green);
}

.course-content {
	margin-top: 47px;
	padding: 0 20px 25px;
}

.course_btn a {
	width: 100%;
	padding: 8px 0;
	text-align: center;
	letter-spacing: 0;
	color: var(--body);
	border-color: var(--dd);
}

.course_btn .gray_btn {
	border-color: var(--gray);
}

.more_courses a {
	text-decoration: underline;
	font-weight: 500;
	color: var(--title);
	transition: .5s;
}

.more_courses a:hover,
.more_courses a:focus {
	color: var(--green);
}

/** Prayer Time **/
.prayer_time_image {
	position: relative;
}

.cgreen {
	color: var(--green);
}

.prayer_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, .9);
	color: var(--yellow);
	width: 85px;
	height: 85px;
	line-height: 85px;
	font-size: 23px;
	border-radius: 50%;
	transition: .5s;
	text-align: center;
}

.prayer_btn:after {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 75px;
	height: 75px;
	line-height: 75px;
	border: 1px dashed var(--yellow);
	border-radius: 50%;
	z-index: -1;
}

.prayer-time-box {
	max-width: 90%;
	background: #ffffff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

}

.prayer-title {
	text-align: center;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 600;
}

.prayer-table {
	list-style: none;
	padding: 0;
	margin: 0;
}

.prayer-table li {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 12px 10px;
	border-bottom: 1px solid #eee;
	text-align: center;
	font-size: 15px;
}

.prayer-table li:last-child {
	border-bottom: none;
}

.prayer-table li span:first-child {
	font-weight: 600;
	text-align: left;
}

.prayer-head {
	background: #f4f6f8;
	font-weight: 700;
	border-radius: 6px;
}

.prayer-head span {
	text-align: center;
}

/** Islamic Scholars **/

.single-scholar {
	text-align: center;
	border: 1px solid var(--dc);
	border-radius: 15px;
	padding: 30px 0;
	position: relative;
	transition: .5s;
}

.single-scholar:hover {
	border-color: var(--green);
}

.scholar_img {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	border: 8px dashed rgba(245, 197, 11, 0.5);
	margin: 0 auto;
	transition: .5s;
}

.single-scholar:hover .scholar_img {
	border-color: var(--yellow);
}

.scholar_img:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-56deg, var(--yellow), var(--green));
	opacity: 0;
	border-radius: 50%;
	transition: .5s;
	z-index: 1;
}

.scholar_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* shows full image */
}

.single-scholar:hover .scholar_img:after {
	opacity: .7;
}

.scholar_social {
	list-style-type: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
	width: 100%;
	transition: .5s;
	opacity: 0;
}

.single-scholar:hover .scholar_social {
	opacity: 1;
}

.scholar_social li {
	display: inline-block;
	margin: 0 3px;
}

.scholar_social li a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	background-color: var(--white);
	text-align: center;
	transition: .5s;
	color: var(--title);
	display: block;
	font-size: 14px;
}

.scholar_social li a:hover,
.scholar_social li a:focus {
	background-color: var(--green);
	color: var(--white);
}

.single-scholar h3 {
	font-size: 22px;
	margin-top: 25px;
	margin-bottom: 5px;
}

.single-scholar h3 a {
	color: var(--title);
	transition: .5s;
}

.single-scholar p {
	color: var(--green);
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 0;
}

/** Counter Up **/
.counter-up {}

.single-counter {
	background-image: url(../img/bg/counter.jpg);
	background-color: var(--f7);
	background-size: cover;
	border-radius: 15px;
	padding: 30px;
	gap: 20px;
}

.counter_icon {
	margin-bottom: 0;
}

.counter_icon img {
	width: 43px;
}

.single-counter h2 {
	font-size: 30px;
	margin-bottom: 0;
	color: var(--green);
}

.single-counter p {
	margin-bottom: 0;
}



/** Testimonial **/
.testimonial-area {
	background-size: cover;
}

.rev_arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	transition: .5s;
}

.slider_arrows a,
.rev_arrow a {
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	margin: 0 15px;
	background-color: var(--white);
	transition: .5s;
	text-align: center;
}

.rev_arrow img {
	width: 35px;
}

.rev_arrow a:hover,
.rev_arrow a:focus,
.slider_arrows a:hover {
	background-color: var(--yellow);
}

.single-testimonial {
	color: var(--white);
}

.testimonial_content p {
	font-size: 20px;
	font-style: italic;
	margin-bottom: 28px;
	margin-top: 15px;
}

.test_img {
	width: 95px;
	height: 95px;
	border-radius: 50%;
}

.test_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 9px solid var(--white);
	border-radius: 50%;
}

.test_rating {
	padding: 7px 19px;
	background-color: var(--white);
	display: inline-block;
	border-radius: 30px;
	color: var(--rating);
	margin-bottom: 16px;
	font-size: 14px;
}

.test_rating i {
	margin: 0 2px;
}

.testimonial_author {}

.testimonial_author h3 {
	font-size: 22px;
	margin-bottom: 5px;
	display: block;
	color: var(--white);
}

.testimonial_author span {
	font-size: 16px;
	display: block;
	color: var(--yellow);
}

/** Blog **/
.single-blog {}

.blog-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	width: 100%;
	background-image: url(../img/shapes/blog_shape.svg);
	background-size: cover;
	border-radius: 15px;
	padding: 15px;
	transition: .5s;
}

.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.blog_category {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

.blog_category a {
	padding: 7px 18px;
	background-color: var(--white);
	color: var(--title);
	font-size: 14px;
	border-radius: 30px;
	transition: .5s;
	display: block;
	transition: .5s;
}

.blog_category a:hover,
.blog_category a:focus {
	background-color: var(--yellow);
	color: var(--title);
}

.blog_content {
	margin-top: 25px;
	padding: 0 27px;
}

.blog_meta {
	font-size: 15px;
	color: var(--green);
	margin-bottom: 10px;
}

.blog_meta a {
	color: var(--green);
	transition: .5s;
}

.blog_content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.blog_content h3 a {
	color: var(--title);
	transition: .5s;
}

.blog_content h3 a:hover {
	color: var(--green);
}

.blog_btn {
	text-decoration: underline;
}

.blog-page .single-blog {
	margin-bottom: 30px;
}

.post_pagination {
	margin-top: 20px;
}

.post_pagination ul li {
	display: inline-block;
}

.post_pagination ul li a {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border: 1px solid var(--dc);
	background: var(--dc);
	color: var(--body);
	display: block;
	border-radius: 50%;
	margin: 0 10px;
	transition: .5s;
}

.post_pagination ul li.active a,
.post_pagination ul li a:hover,
.post_pagination ul li a:focus {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--title);
}

/** Footer **/
.footer-area {
	background-color: var(--fbg);
	color: rgba(255, 255, 255, .7);
	padding: 80px 0 15px;
}

.footer_social {
	text-align: center;
	margin-bottom: 0;
	position: relative;
	z-index: 11;
	border-radius: 150px;
	border-top: 1px dashed rgba(255, 255, 255, 0.2);
	margin-top: 20px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.footer-about {
	padding-right: 18px;
}

.footer-widget {}

.footer-widget .ftitle {
	font-size: 18px;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 27px;
}

.ftitle i {
	color: var(--yellow);
}

.footer-logo {
	display: block;
	margin-bottom: 25px;
}

.footer-logo img {
	width: 100px;
	border-radius: 8px;
}

.fsocial-option span {
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
}

.fsocial-option ul {
	list-style-type: none;
}

.footer-widget a {
	color: rgba(255, 255, 255, .7);
}

.fsocial-option ul li {
	display: inline-block;
	text-align: center;
	margin: 0 6px;
}

.fsocial-option ul li a {
	font-size: 15px;
	color: rgba(255, 255, 255, .7);
	transition: .5s;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	background-color: transparent;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, .7);
}

.fsocial-option ul li a:hover,
.fsocial-option ul li a:focus {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--title);
	box-shadow: 0px 14px 20px rgba(245, 197, 11, .1);
}

.footer-widget li {
	list-style-type: none;
	line-height: 35px;
}

.footer-widget li a:hover,
.footer-widget li a:focus {
	color: var(--yellow);
}

.footer-contact {}

.footer-contact li {
	line-height: 26px;
}

.footer-contact p {
	overflow: hidden;
}

.footer-contact i {
	/* color: var(--green); */
	font-size: 25px;
	margin-right: 10px;
	float: left;
}

.footer-contact li {
	margin-bottom: 23px;
}

.footer_news_form {
	position: relative;
}

.footer_news_form input {
	width: 100%;
	padding: 12px 20px;
	border-radius: 4px;
	border: none;
	height: 50px;
	border: 1px solid var(--white);
	margin-bottom: 20px;
}

.footer_news_form input:focus {
	border-color: var(--yellow);
	outline: none;
}

.footer_news_form button {
	width: 100%;
	padding: 12px 20px;
	border-radius: 4px;
	height: 50px;
	color: var(--white);
	border: 1px solid var(--green);
	transition: .5s;
}

.footer_news_form button:hover,
.footer_news_form button:focus {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--title);
}

.copyright {
	padding-top: 30px;
}

.shape1 {
	position: absolute;
	top: 105px;
	left: 3px;
	width: 80px;
}

.shape2 {
	position: absolute;
	left: 40%;
	bottom: 44%;
	width: 77px;
}

.shape3 {
	position: absolute;
	right: 27px;
	top: 100px
}

.shape4 {
	position: absolute;
	right: 25px;
	bottom: 123px;

}

/** Back To Top **/

.progress-wrap {
	position: fixed;
	left: 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;
	background: var(--white);
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	font-family: boxicons !important;
	content: '\ec5d';
	text-align: center;
	line-height: 49px;
	font-size: 25px;
	color: var(--yellow);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: .5s;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap::before {
	position: absolute;
	font-family: boxicons !important;
	content: '\ec5d';
	text-align: center;
	line-height: 49px;
	font-size: 25px;
	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;
	transition: .5s;
}

.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;
}

/***** Main Banner *****/

.main_banner {
	padding: 100px 0;
	z-index: 1;
	background-size: cover;

}

.main_banner i {
	font-size: 12px;
	color: var(--yellow);
}

.main_banner h2 {
	font-size: 40px;
}

.main_banner,
.main_banner a {
	color: var(--white);
}

.main_banner h2 {
	color: var(--yellow);
}

.main_banner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

/*** Contact Us ***/

.form-control {
	border: 1px solid var(--dc);
	border-radius: 5px;
	height: 50px;
	line-height: 50px;
	padding: 10px 20px;
}

.form-control:focus {
	border-color: var(--yellow);
	outline: none;
	box-shadow: none;
}

textarea.form-control {
	height: 150px;
	line-height: 20px;
	padding: 20px 20px;
}

.contact-info {
	border: 1px dashed var(--dc);
	border-radius: 15px;
	padding: 40px;
}

.contact-info ul {
	list-style-type: none;
}

.contact-info li {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-left: 65px;
	min-height: 50px;
}

.contact-info li:last-child {
	margin-bottom: 0;
}

.contact-info li .cicon {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	background-color: var(--green);
	text-align: center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.contact-info li .cicon i {
	position: relative;
	z-index: 1;
	color: var(--white);
}

.contact-info li .cicon:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: var(--yellow);
	border-radius: 50%;
	z-index: -1;
}

.contact-info li p {
	margin-bottom: 0;
	font-weight: 500;
	word-break: break-word;
}

/*
* ----------------------------------------------------------------------------------------
* Comment
* ----------------------------------------------------------------------------------------
*/

.comments {
	padding-top: 40px;
}

.bdtitle {
	margin-bottom: 25px;
	font-size: 24px;
}

.comment-list,
.comment {
	list-style-type: none;
}

.com-img {
	margin-right: 48px;
	position: relative;
}

.com-img h4 {
	font-size: 18px;
	margin-top: 15px;
	margin-bottom: 0;
}

.com-img h4 a {
	color: var(--title);
	transition: .5s;
}

.cdate {
	font-size: 15px;
}

.creplay {
	position: absolute;
	top: 50px;
	right: -13px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	color: var(--white);
	background: var(--green);
	font-size: 15px;
	text-align: center;
}

.creplay:hover,
.creplay:focus {
	color: var(--white);
}

.com-img img {
	border-radius: 50%;
	width: 100px;
}

li.comment {

	display: block;
}

.comments .children {
	padding-left: 30px;
}

.single-comment {
	overflow: hidden;
	border: 1px solid #d9d9d9;
	padding: 35px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.comment-form {
	padding-top: 30px;
}

.comment-form .form-control {}

.comment-form label {
	padding-bottom: 7px;
	cursor: pointer;
}

.name_email {
	gap: 25px;
}

.comment-form p {
	margin-bottom: 20px;
}

.name_email p {
	width: 50%;
}

#submit {
	background-color: var(--green);
	border: 1px solid var(--green);
	color: var(--white);
	padding: 10px 35px;
	border-radius: 30px;
	transition: .5s;
	font-weight: 400;
	font-size: 16px;
}

#submit:hover,
#submit:focus {
	color: var(--title);
	background-color: var(--yellow);
	border-color: var(--yellow);
}

/*
* ----------------------------------------------------------------------------------------
* Login Register
* ----------------------------------------------------------------------------------------
*/
.login_register {
	background-size: cover;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
}

.login_register::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgb(29, 142, 90) 0%, #5f110d 100%);
	z-index: -1;
	opacity: 0.9;
}

.login,
.register {
	background: var(--white);
	-webkit-box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	overflow: hidden;
	padding: 30px 40px;
	border: 1px solid var(--fa);
	border-radius: 8px;
}

.login_register_title {
	margin-bottom: 20px;
	text-align: left;
	text-transform: capitalize;
	font-size: 25px;
	color: var(--title);
	margin-top: 15px;
}

.logreg_text {
	color: var(--white)
}

.logreg_text h2 {
	color: var(--white) font-size: 35px;
}


.login input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

.login input[type="text"],
.login input[type="email"],
.login input[type="password"],
.register input[type="text"],
.register input[type="email"],
.register input[type="password"] {}

.login label,
.register label {
	cursor: pointer;
	color: var(--title);

}

#rpaword {
	margin-top: 6px;

}


.login label {
	margin-bottom: 5px;
	font-weight: 500;
}

.register label {
	margin-bottom: 5px;
	font-weight: 500;
}

.login button,
.register button {
	width: 100%;
}

.login button i,
.register button i {
	padding-left: 5px;
}

.login p,
.register p {
	color: #232434;
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
}

.login p a,
.register p a {
	color: var(--green);
}


/*
* ----------------------------------------------------------------------------------------
* 404
* ----------------------------------------------------------------------------------------
*/


.page_not_found h2 {
	font-size: 35px;
	margin-bottom: 15px;
}

.page_not_found p {
	margin-bottom: 25px;
}

.page_not_found .bg-btn i {
	padding-right: 5px;
}

.page_not_found img {
	margin-bottom: 40px;
	width: 600px;
	display: inline-block;
	height: auto;
}

.page_not_found .blue_btn i {
	margin-right: 8px;
}

/*-------------------------------
# Sidebar
--------------------------------*/

.search-control {
	height: 56px;
	line-height: 45px;
	padding: 5px 30px;
	border-radius: 5px;
	border: 1px solid #D9D9D9;
	width: 100%;
	transition: .5s;
}

.search-control:focus {
	border-color: var(--green);
	outline: none;
}

.form-control option {
	font-weight: 400;
}

.form-control:focus {
	outline: none;
	box-shadow: inherit;
	border-color: var(--green);
	background: var(--white);
}

textarea.form-control {
	height: 160px;
}

.widget.search-widget {
	border: unset;
	padding: 0;
}

.search-form {
	position: relative;
}

.search-form button {
	position: absolute;
	width: 56px;
	height: 56px;
	line-height: 56px;
	border-radius: 0 5px 5px 0;
	border: 1px solid var(--green);
	background: var(--green);
	color: var(--white);
	right: 0;
	top: 0;
	transition: .5s;
}

.search-form button:hover,
.search-form button:focus {
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--title);
}

.widget {
	margin-bottom: 30px;
	padding: 30px;
	border: 1px solid #E9EEF4;
	border-radius: 4px;
}

.widget-title {
	margin-bottom: 25px;
	font-size: 25px;
}

.widget ul {
	list-style-type: none;
}

.widget.category-widget li {
	line-height: 40px;
	position: relative;
	padding-left: 24px;
	font-size: 17px;
	font-weight: 500;
}

.category-widget li::before {
	content: "\f15c";
	position: absolute;
	width: 15px;
	height: 15px;
	color: var(--green);
	border-radius: 50%;
	left: 0;
	top: 0px;
	font-family: "Font Awesome 7 Free";
	font-size: 18px;
}

.popular-posts-widget {}

.popular-posts-widget li {
	display: block;
	margin-bottom: 22px;
	overflow: hidden;
}

.popular-posts-widget li:last-child {
	margin-bottom: 0;
}

.popular-posts-widget h4 {
	transition: .5s;
}

.popular-posts-widget a {
	display: block;
	transition: .5s;
}

.popular-posts-widget a:hover h4,
.popular-posts-widget a:focus h4 {
	color: var(--green);
}

.popular-posts-widget img {
	max-width: 100%;
}

.ppimage {
	width: 100px;
	margin-right: 15px;
}

.ppimage img {
	border-radius: 10px;
}

.ppcontent {
	overflow: hidden;
}

.ppcontent h4 {
	font-size: 18px;
	margin-top: 0px;
	line-height: auto;
	font-weight: 500;
}

.ppcontent span {
	position: relative;
	padding-left: 19px;
	font-size: 16px;
	color: var(--green);
}

.ppcontent span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 1px;
	background: var(--green);
	display: block;
}

.tags_clouds a {
	display: inline-block;
	position: relative;
	margin-right: 10px;
	font-weight: 500;
	padding: 4px 15px;
	background: var(--f6);
	margin-bottom: 13px;
	border-radius: 4px;
	transition: .5s;
}

.tags_clouds a:hover,
.tags_clouds a:focus {
	background: var(--green);
	color: var(--white);
}

/* Start Blog Details */

.post-image {
	margin-bottom: 30px;
}

.post-nav.pnavigation {
	margin-top: 40px;
	text-align: center;
}

.post-nav.pnavigation a {
	display: inline-block;
	background: var(--green);
	color: var(--white);
	padding: 8px 22px;
	font-weight: 600;
	border-radius: 4px;
	transition: .5s;
	margin: 0 15px;
}

.post-nav.pnavigation a:hover,
.post-nav.pnavigation a:focus {
	background: var(--yellow);
	color: var(--title);
}

/* End Blog Details */


/*-------------------------------
# Course Details
--------------------------------*/

.scourse_image {
	position: relative;
}

.scourse_image:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	left: 0;
	top: 0;
	border-radius: 15px;
}

.vid_btn_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
}

.scourse_image img {
	border-radius: 15px;
}

.scbtn {
	width: 80px;
	height: 80px;
	line-height: 74px;
	border: 3px dashed var(--white);
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
	transition: .5s;
	z-index: 11;

}

.scbtn:hover,
.scbtn:focus {
	background-color: var(--green);
}

.scbtn svg {
	width: 31px;
}

.scbtn svg path {
	fill: var(--white);
}

.courses-details {}

.scourse-title {
	font-size: 24px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.courses-details img {
	width: 100%;
}

.scourse_meta {
	margin-top: 30px;
	margin-bottom: 30px;
}

.scourse_meta img {
	width: 70px;
	border-radius: 50%;
	margin-right: 15px;
	float: left;
}

.scourse_meta span {
	font-size: 16px;
}

.scourse_meta p {
	font-size: 17px;
	font-weight: 600;
	line-height: 25px;
	margin-bottom: 0;
}

.scourse_meta p {
	color: #222;
}

.scourse_meta .smeta_text {
	display: inline-block;
}

.scourse_meta .smeta {
	display: inline-block;
	margin-right: 30px;
	position: relative;
}

.scourse_meta .smeta::after {
	width: 1px;
	height: 52px;
	background-color: #C9C8C8;
	content: '';
	position: absolute;
	right: 0;
	top: 5px;
}

.scourse_meta .smeta {
	padding-right: 30px;
	margin-right: 30px;
}

.smeta:last-child:after {
	display: none;
}

.scourse_meta .smeta:last-child {
	padding-right: 0;
	margin-right: 0;
}

.scourse_meta .rev_icons {
	color: #ffb608;
}

.scourse_meta .rev_content {
	padding-left: 5px;
}

.rev_content {}

.cd_tab #nav-tab {
	background: var(--white);
	border: 1px solid var(--dc);
	text-align: center;
	margin-bottom: 30px;
	display: block;
	border-radius: 4px;
}

.cd_tab #nav-tab button {
	display: inline-block;
	color: var(--title);
	font-weight: 500;
	margin: 15px 17px 15px;
	padding: 5px 25px;
	border-radius: 30px;
	outline: none;
	font-size: 16px;
}

.cd_tab #nav-tab button:hover,
.cd_tab #nav-tab button:focus {
	border-color: var(--f9);
	color: #222;
	outline: none;
}

.cd_tab #nav-tab.nav-tabs button.nav-link.active {
	background-color: var(--green);
	border-color: var(--green);
	color: var(--white);
	outline: none !important;

}

#nav-overview ul {
	list-style-type: none;
}

#nav-overview ul li {
	position: relative;
	padding-left: 37px;
	line-height: 30px;
}

#nav-overview ul li::before {
	content: "\ecb6";
	position: absolute;
	left: 0;
	top: 4px;
	font-family: boxicons !important;
	font-size: 25px;
	color: var(--green);
}

.cdtitle {
	margin-bottom: 15px;
	font-size: 20px;
}

.cd_curriculum h3,
.cd_rating h3 {
	font-size: 20px;
}

.benefits {
	background: var(--f9);
	overflow: hidden;
	padding: 30px;
	margin-top: 30px;
}

.benefits h3 {
	margin-bottom: 20px;
	font-size: 22px;
}

.benefits ul {
	margin-left: -20px;
	display: block;

}

.benefits ul li {
	width: 47%;
	float: left;
	margin-left: 20px;
	margin-bottom: 15px;
}

.cd_curriculum {
	border: 1px solid var(--fa);
	padding: 40px;
}

.cd_curriculum h3 {
	margin-bottom: 20px;
}

.cd_curriculum ul {
	list-style-type: none;
}

.cd_curriculum ul li {
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-weight: 500;
}

.cd_curriculum ul li i {
	padding-right: 5px;
	font-size: 21px;
	display: inline-block;
	position: relative;
	top: 4px;
	color: var(--green);
}

.cd_curriculum ul li:last-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.cd_cur_right {
	float: right;
	font-size: 15px;
}

.cd_cur_right a {
	font-weight: 600;
	color: #444;
	background: #E5F8F8;
	padding: 0px 16px;
	display: inline-block;
	margin-right: 25px;
	font-size: 15px;
	border-radius: 4px;
	margin-right: 100px;
	transition: .5s;
}

.cd_cur_right a:hover,
.cd_cur_right a:focus {
	background: var(--green);
	color: var(--white);
}

.cd_rating {}

.cd_rating h3 {
	margin-bottom: 20px;
}

.cd_rating_top {
	border: 1px solid #f1f1f1;
	padding: 35px;
	overflow: hidden;
	margin-bottom: 60px;
	border-radius: 8px;
}

.cdr_rate_summary {
	float: left;
	width: 25%;
	text-align: center;
}

.cdr_rate_summary h1 {
	font-size: 65px;
	margin-bottom: 16px;
}

.cdr_rating {
	color: #ffb608;
}

.cdr_rating i {
	margin: 0 3px;
}

.cdr_rate_summary p {
	margin-bottom: 0;
}

.cdr_rate_number ul {
	list-style-type: none;
}

.cdr_rate_number {
	width: 75%;
	float: left;
}

.cdr_rate_number ul li {
	display: flex;
	margin: 0 0 10px 0;
}

.cdr_rate_number ul li:last-child {
	margin: 0;
}

.cdr_rate_value {
	flex: 1;
	position: relative;
	margin: 13px 86px 0 15px;
	height: 7px;
	background: #f2f2f2;
}

.rating_width {
	height: 7px;
	background-color: #ffb608;
	display: block;
}

.cdr_rate_count {
	display: inline-block;
	position: absolute;
	right: -80px;
	text-align: right;
	line-height: 1;
	font-size: 16px;
	margin: -12px 0;
}

.cdr_rate_star {
	flex: 0 0 40px;
	text-align: center;
}

.rating_item_avatar {
	float: left;
	margin-right: 30px;
}

.rating_item_avatar img {
	width: 100px;
	float: left;
	margin-right: 25px;
	border-radius: 50%;
}

.rava_conent {
	overflow: hidden;
}

.rava_conent h3 {
	font-size: 22px;
	margin-bottom: 5px;
}

.rava_conent p {
	margin-bottom: 0;

}

.rating_item_ricon {
	color: #ffb608;
}

.rating_item {
	overflow: hidden;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #f1f1f1;
}

.rating_item:last-child {
	border-bottom: 0;
}

.cdr_review_form h3 {
	font-size: 24px;
	margin-bottom: 6px;
}

.review_form_ricon {
	margin-bottom: 12px;
}

.review_form_ricon i {
	cursor: pointer;
	transition: .5s;
	color: #222;
}

.review_form_ricon i:hover {
	color: var(--yellow);
}

.rating_form textarea {
	border: 1px solid #f1f1f1;
	width: 60%;
	height: 120px;
	margin-bottom: 20px;
	border-radius: 5px;
	padding: 10px 25px;
}

.rating_form textarea:focus {
	border-color: var(--green);
	outline: none;
}

.cd_instructor {
	display: flex;
	gap: 30px;
}

.cdin_image {
	width: 300px;
	text-align: center;
}

.cdin_image ul {
	list-style-type: none;
	display: inline-block;
	margin-top: 25px;
}

.cdin_image ul li {
	display: inline-block;
	margin: 0 5px;
}

.cdin_image ul li a {
	width: 35px;
	height: 35px;
	line-height: 38px;
	background: var(--f7);
	color: var(--body);
	transition: .5s;
	border-radius: 50%;
	display: block;
	font-size: 15px;
}

.cdin_image ul li a:hover,
.cdin_image ul li a:focus {
	background: var(--green);
	color: var(--white);
}

.cdin_content {
	padding-top: 20px;
}

.cdin_content h4 a {
	color: #222;
}

.cdin_content span {
	color: var(--body);
	margin-bottom: 8px;
	display: block;
	font-weight: 500;
}

.cdin_meta {
	font-weight: 500;
	display: flex;
	gap: 25px;
	border-top: 1px solid var(--dc);
	padding-top: 14px;
	margin-top: 15px;
}

.cdin_meta_item i {
	color: var(--green);
}

.course-sidebar {
	border: 1px solid var(--fa);
	box-shadow: var(--shadow-2);
	padding: 25px;
	border-radius: 5px;
	position: -webkit-sticky;
	/* For Safari */
	position: sticky;
	top: 0;
	margin-left: 40px;
}

.course-sidebar .cd-video {}

.course-sidebar .cd-video iframe {
	width: 100%;
	border-radius: 5px;
	height: 220px;
}

.course-sidebar .blue_btn {
	width: 100%;
	text-align: center;
}

.course-sidebar h3 {
	margin-bottom: 20px;
	font-size: 24px;
}

.course-sidebar .scourse_list li {
	width: 100%;
	float: left;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.cside-label {
	float: left;
	font-weight: 600;
	color: var(--title);
}

.cside-value {
	float: right;
	font-weight: 600;
}

.course-sidebar ul {
	list-style-type: none;
	overflow: hidden;
}

.cd_price {
	text-align: left;
	font-weight: 600;
	font-size: 25px;
	color: var(--title);
}

.cd_price del {
	font-size: 20px;
	color: var(--red);

}

.cd_price span {
	color: var(--green);
}

.cd_btn {
	display: inline-block;
	padding: 10px 35px;
	border-radius: 30px;
	background-color: var(--green);
	border: 1px solid var(--green);
	color: var(--white);
	font-weight: 600;
	font-size: 17px;
	transition: .5s;
}

.cd_btn:hover,
.cd_btn:focus {
	background-color: #002935;
	border-color: 1px solid #002935;
	color: var(--white);
	box-shadow: 0;
}

.cd_social {
	margin-top: 0;
	text-align: left;
}

.cd_social span {
	display: inline-block;
	margin-right: 8px;
	color: var(--title);
	font-weight: 500;
}

.cd_social ul {
	position: relative;
	top: 10px;
}

.cd_social ul,
.cd_social li {
	display: inline-block;
}

.cd_social li {
	margin: 0 3px;
}

.cd_social li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 15px;
	color: var(--title);
	border: 1px solid var(--dc);
	display: block;
	text-align: center;
	border-radius: 50%;
	transition: .5s;
}

.cd_social li a:hover,
.cd_social li a:focus {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}

.cd_social li i {}

.scourse_list i {
	color: var(--green);
	margin-right: 5px;
}

.related-courses {
	padding-top: 80px;
}

.created-title {
	margin-bottom: 15px;
	font-size: 25px;
}

.relcourse_slider .c_author img {
	width: auto !important;
	display: inline-block;
}

.course-sidebar .green_btn {
	width: 100%;
	text-align: center;
}



/*
* ----------------------------------------------------------------------------------------
* Shopping Cart
* ----------------------------------------------------------------------------------------
*/


.table.shopping-summery {
	background: var(--white);
	border: 1px solid #eee;
	-webkit-border-radius: 0;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 0;
}

.shopping-cart {
	background: var(--white);
}

.shopping-summery thead .main-hading {
	padding: 0px 50px;
}

.shopping-summery thead {}

.shopping-summery thead tr th {
	border: none;
	font-weight: 600;
	text-align: left;
	padding: 20px;
	background: var(--f7);
}

.shopping-summery tbody tr {
	border-bottom: 1px solid #eee;
	margin-top: 20px;
}

.shopping-summery tbody tr img {
	border-radius: 4px;
	width: 100px;
}

.shopping-summery tbody tr:last-child {}

.shopping-summery tbody .product-name a {
	font-weight: 600;
	color: #282828;
	font-weight: 500;
	font-size: 15px;
}

a.pthumb {
	width: 75px;
	display: inline-block;
}

.shopping-cart .table p {
	font-size: 14px;
	color: #666;
}

.shopping-summery tbody .product-name a:hover {
	color: var(--blue);
}

.shopping-summery tbody .product img {
	max-width: 70px;
	border-radius: 100%;
	max-height: 65px;
	border: 1px solid #e6e6e6;
	padding: 4px;
}

.shopping-summery tbody .product:hover img {
	border-color: var(--green);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	transform: rotate(360deg);
}

.shopping-cart .border {}

.shopping-cart .table .remove-icon {
	font-size: 16px;
}

.shopping-cart .table td {
	vertical-align: middle;
	border-top: 1px solid #eee;
	padding: 20px;
}

.shopping-summery tbody .price {
	text-align: center;
	font-weight: 600;
}

.shopping-summery tbody .price span {}

.shopping-cart tbody .qty .input-group {
	width: 175px;
	display: inline-block;
}

.shopping-cart .qty .button {
	display: inline-block;
	position: absolute;
	top: 0;
}

.shopping-cart .qty .button.minus {
	left: 0;
	border-radius: 0;
	overflow: hidden;
}

.shopping-cart .qty .button.plus {
	right: 0;
	border-radius: 0;
	overflow: hidden;
}

.shopping-cart .qty .button .btn {
	padding: 0;
	width: 44px;
	height: 47px;
	line-height: 50px;
	border-radius: 0px;
	background: transparent;
	color: #282828;
	border: none;
	font-size: 20px;
}

.shopping-cart .qty .button .btn:hover {
	color: var(--blue);
}

.shopping-cart .qty .input-number {
	border: 1px solid #eceded;
	width: 100%;
	text-align: center;
	height: 47px;
	border-radius: 0;
	overflow: hidden;
	padding: 0px 45px;
}

.shopping-summery tbody .total-amount {
	text-align: center;
}

.shopping-summery tbody .total-amount span {}

.shopping-summery tbody .action {
	text-align: center;
}

.shopping-summery tbody .action a:hover {
	color: var(--blue);
}

.shopping-cart .total-amount {
	margin-top: 50px;
}

.woocommerce-cart-form .actions .bottom-cart {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.woocommerce-cart-form .actions .coupon {
	flex: 0 0 55%;
	display: flex;
}

.woocommerce-cart-form .product-name {
	display: inline-block;
	margin-left: 8px;
}

#coupon_code {
	border: 1px solid #eee;
	padding: 5px 15px;
	font-size: 16px;
	border-radius: 4px 0 0 4px;
	width: 50%;
}

#coupon_code:focus {
	border-color: var(--green);
	outline: none;
}

.woocommerce-cart-form .coupon button,
.woocommerce-cart-form .coupon input[type="submit"] {
	background: var(--green);
	border: 1px solid var(--green);
	color: var(--white);
	padding: 8px 22px;
	border-radius: 0 4px 4px 0;
	font-weight: 500;
	transition: .5s;
	font-size: 15px;
}

.woocommerce-cart-form .coupon button:hover,
.woocommerce-cart-form .coupon button:focus,
.woocommerce-cart-form .coupon input[type="submit"]:hover,
.woocommerce-cart-form .coupon input[type="submit"]:focus {
	border-color: var(--green);
	background: var(--green);
}

.btn_border {
	border: 2px solid #002935;
	color: #222;
	padding: 8px 25px;
	font-weight: 600;
	border-radius: 4px;
	transition: .5s;
}

.btn_border:hover,
.btn_border:focus {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
}

.cart-collaterals {
	padding: 30px;
	box-shadow: var(--shadow-3);
}

.cart-collaterals h2 {
	font-size: 24px;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.cart-collaterals .shop_table_responsive>div {
	display: flex;
	padding: 7px 0px;
	align-items: center;
}

.cart-collaterals .shop_table_responsive>div>* {
	flex: 1;
}

.cart-collaterals .bt {
	text-align: center;
}

.shop_table .amount,
.shop_table .woocommerce-shipping-destination {
	color: #222;
}

.cart-subtotal .amount {
	font-weight: 600;
}

/*
* ----------------------------------------------------------------------------------------
* Start Checkout Page
* ----------------------------------------------------------------------------------------
*/

.shop.checkout {
	background: var(--white);
}

.shop.checkout .checkout-form h2 {
	font-size: 25px;
	color: #333;
	font-weight: 700;
	line-height: 27px;
	margin-bottom: 25px;
}

.shop.checkout .checkout-form p {
	font-size: 16px;
	color: #333;
	font-weight: 400;
	margin-top: 12px;
	margin-bottom: 30px;
}

.shop.checkout .form {}

.shop.checkout .form .form-group {
	margin-bottom: 0;
}

.shop.checkout .form .form-group label,
.register label,
.login label {
	color: var(--33);
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
}

.register .form-group {
	margin-bottom: 1.5rem !important;
}

.register label span,
.login label span,
.shop.checkout .form .form-group label span {
	color: #ff2c18;
	display: inline-block;
	position: absolute;
	right: -12px;
	top: 4px;
	font-size: 16px;
}

.shop.checkout .form .form-group input {
	background-color: var(--white);
	border: 1px solid #e5e5e5;
	color: #555;
	font-size: 15px;
	height: 50px;
	outline: 0;
	padding: 14px 30px;
	width: 100%;
	margin-bottom: 25px;
	border-radius: var(--bs-border-radius);
}

.shop.checkout .form .form-group input:focus {
	outline: none;
	border-color: var(--green);
}

.shop.checkout .nice-select {
	width: 100%;
	height: 50px;
	line-height: 50px;
	margin-bottom: 25px;
	background-color: var(--white);
	border: 1px solid #e5e5e5;
	border-radius: var(--bs-border-radius);
}

.shop.checkout .nice-select .list {
	width: 100%;
	height: 300px;
	overflow: scroll;
}

.shop.checkout .nice-select .list li {}

.shop.checkout .nice-select .list li.option {
	color: #333;
}

.shop.checkout .nice-select .list li.option:hover {
	background: #F6F7FB;
	color: #333;
}

.shop.checkout .form .address input {
	margin-bottom: 15px;
}

.shop.checkout .form .address input:last-child {
	margin: 0;
}

.shop.checkout .form .create-account {
	margin: 0;
}

.shop.checkout .form .create-account input {
	width: auto;
	display: inline-block;
	height: auto;
	border-radius: 100%;
	margin-right: 3px;
}

.shop.checkout .form .create-account label {
	display: inline-block;
	margin: 0;
}

.shop.checkout .order-details {
	margin-top: 30px;
	background: var(--white);
	padding: 40px 0 50px 0;
	box-shadow: var(--shadow-3);
}

.shop.checkout .single-widget {
	margin-bottom: 30px;
}

.shop.checkout .single-widget:last-child {
	margin: 0;
}

.shop.checkout .single-widget h2 {
	position: relative;
	font-size: 24px;
	font-weight: 600;
	padding: 10px 30px 0;
	text-transform: capitalize;
	color: #222;
}

.shop.checkout .single-widget .content ul {
	margin-top: 30px;
}

.shop.checkout .single-widget .content ul li {
	display: block;
	padding: 0px 30px;
	font-weight: 500;
	margin-bottom: 12px;
}

.shop.checkout .single-widget .content ul li span {
	display: inline-block;
	float: right;
}

.shop.checkout .single-widget .content ul li.last {
	padding-top: 12px;
	border-top: 1px solid #ebebeb;
	display: block;
	font-weight: 600;
	color: var(--title);
}

.shop.checkout .single-widget .checkbox {
	text-align: left;
	margin: 0;
	padding: 0px 30px;
	margin-top: 30px;
}

.shop.checkout .single-widget .checkbox input {
	margin-top: 9px;
}

.shop.checkout .single-widget .checkbox .form-check {
	margin-bottom: 14px;
	background: var(--fa);
	width: auto;
	display: block;
	padding: 8px 15px 6px;
	overflow: hidden;
	border-radius: 4px;
}

.shop.checkout .single-widget .checkbox label {
	color: #555555;
	position: relative;
	margin-top: -5px;
	font-weight: 500;
	display: block;
	margin-bottom: 15px;
	margin-left: 27px;
}

.payment-methods .checkbox input {
	margin-top: 3px !important;
	margin-left: 0;
}

.payment-methods .form-check-input:checked {
	background-color: var(--green);
	border-color: var(--green);
}

.shop.checkout .single-widget .checkbox label:last-child {
	margin-bottom: 0;
}

.shop.checkout .single-widget .checkbox label:hover {
	cursor: pointer;
}

.shop.checkout .single-widget .checkbox label input {
	margin-right: 5px;
	display: inline-block;
}

.shop.checkout .single-widget.get-button {
	text-align: center;
	padding: 0px 35px;
}

.shop.checkout .single-widget .bg_btn {
	display: block;
}

/*
* ----------------------------------------------------------------------------------------
* End Checkout Page
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* Start 404 Page
* ----------------------------------------------------------------------------------------
*/


.page_not_found h2 {
	font-size: 35px;
	margin-bottom: 15px;
}

.page_not_found p {
	margin-bottom: 25px;
}

.page_not_found .bg-btn i {
	padding-right: 5px;
}

.page_not_found img {
	margin-bottom: 20px;
	width: 600px;
	display: inline-block;
	height: auto;
}

.page_not_found .blue_btn i {
	margin-right: 8px;
}

/*
* ----------------------------------------------------------------------------------------
* End 404 Page
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* Start Instructor Details
* ----------------------------------------------------------------------------------------
*/


.id_image img {}

.id_image .id_meta {
	border-bottom: 1px dashed var(--dd);
}

.id_image .id_meta span {
	margin: 0 10px;
}

.id_image .id_meta i {
	color: var(--green);
}

.id_image i {
	color: var(--rating);
}

.id_content {}

.id_content span {
	font-weight: 600;
	color: var(--green);
	margin-bottom: 15px;
	display: block;
}

.id_cinfo {
	list-style-type: none;
	color: var(--green);
}

.id_cinfo a {
	color: var(--green);
}

.id_cinfo strong {
	color: var(--title);
}

.id_social {
	list-style-type: none;
	margin-top: 15px;
}

.id_social li {
	display: inline-block;
	padding-right: 8px;
}

.id_social li a {
	width: 38px;
	height: 38px;
	line-height: 38px;
	background: rgba(20, 200, 140, 0.06);
	color: var(--title);
	display: block;
	text-align: center;
	border-radius: 50%;
	font-size: 15px;
	transition: .5s;
}

.id_social li a:hover {
	background: var(--green);
	color: var(--white);
}

.id_cinfo {}

.id_cinfo li {
	margin-bottom: 5px;
}

/** FAQ **/

#faq_accordion .accordion-item {}

#faq_accordion .accordion-item {
	border: 1px solid var(--dc);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
}

#faq_accordion .accordion-button {
	background-color: var(--green);
	color: var(--white);
	font-size: 17px;
	font-weight: 600;
	padding: 14px 24px;
}

#faq_accordion .accordion-button.collapsed {
	background-color: rgba(20, 200, 140, 0.04);
	color: var(--title);
}

#faq_accordion .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

#faq_accordion .accordion-button[aria-expanded="true"]::after,
#faq_accordion .accordion-button[aria-expanded="false"]::after {
	font-family: "Phosphor";
	font-weight: 900;
	content: "\e3d4";
	color: var(--white);
	display: inline-block;
	position: absolute;
	inset-block-start: 50%;
	transform: translateY(-50%);
	inset-inline-end: 18px;
	height: 30px;
	width: 30px;
	background-color: var(--green);
	background-image: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #fff;
	text-align: center;
}

#faq_accordion .accordion-item:has(.accordion-collapse.collapse.show) .accordion-button::after,
#faq_accordion .accordion-item:has(.accordion-collapse.collapsing) .accordion-button::after {
	color: var(--title);
	background-color: var(--yellow);
	content: "\e32a";
}

/** Audio Player**/

/* Card */
.player {
	padding: 50px 30px;
	border-radius: 20px;
	text-align: center;
	background-color: rgba(255, 255, 255, .8);
	border: 1px solid #ddd;
	/* Islamic pattern (light) */
	background-image: url('../img/bg/prayer_bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}

/* Title */
.player h2 {
	margin-bottom: 15px;
	color: var(--title);
	font-size: 24px;
	font-weight: 500;
}

/* Arabic text */
.bismillah {
	margin: 17px 0 0;
}

.bismillah img {
	width: 195px;
}

/* Surah text */
.player .surah {
	color: var(--body);
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: 500;
	margin-top: 15px;
}

/* Time row */
.player .time-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Progress bar */
.player .progress-container {
	flex: 1;
	height: 10px;
	background: #ddd;
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
}

/* Gradient progress */
.player .progress {
	height: 100%;
	width: 0%;
	background: linear-gradient(to right, green, gold);
}

/* Controls */
.player .controls {
	margin-top: 20px;
}

.controls button {
	border: none;
	background: none;
	font-size: 20px;
	margin: 0 15px;
	cursor: pointer;
}

/* Play button circle */
.controls .play {
	background: var(--green);
	color: var(--white);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 18px;
}

.controls .play.active {
	background-color: var(--yellow);
	color: var(--title);
}

/* Custom Info Sections */
.why-choose-us .feature-item {
	transition: 0.3s;
}

.why-choose-us .feature-item:hover {
	transform: translateY(-5px);
}

.why-choose-us .experience-badge {
	z-index: 2;
}

.core-values .value-card {
	transition: all 0.3s ease;
	height: 100%;
}

.core-values .value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.transition {
	transition: all 0.3s ease;
}

.hover-shadow:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Player Dropdowns & Ayah text styles */
.player-selectors {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 20px;
}

.player-select {
	flex: 1;
	padding: 10px 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	background-color: var(--white);
	color: var(--title);
	font-family: 'Lexend', sans-serif;
	font-size: 14px;
	outline: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.player-select:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 2px rgba(29, 142, 90, 0.2);
}

.ayah-display {
	background-color: rgba(29, 142, 90, 0.05);
	border-left: 3px solid var(--green);
	border-right: 3px solid var(--green);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.ayah-text {
	font-size: 20px;
	color: var(--green);
	line-height: 1.8;
	font-family: 'Lexend', sans-serif;
	margin: 0;
	font-weight: 500;
}

.player-spinner {
	display: none;
	width: 30px;
	height: 30px;
	border: 3px solid rgba(29, 142, 90, 0.2);
	border-top-color: var(--green);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   Prayer Times Area Styles
   ========================================================================== */
.prayer-times-area {
	background-color: #faf8f5;
	/* background-image: url('../img/bg/pattern.png'); */
	background-repeat: repeat;
	position: relative;
	z-index: 1;
}

.prayer-date {
	font-size: 16px;
	font-weight: 500;
	color: var(--body);
}

.prayer-location-wrap {
	font-size: 15px;
	color: var(--green);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(29, 142, 90, 0.08);
	padding: 6px 16px;
	border-radius: 50px;
	border: 1px solid rgba(29, 142, 90, 0.15);
}

.prayer-cards-row {
	margin-top: 30px;
}

.prayer-card {
	background: var(--white);
	border: 1px solid #eaeaea;
	border-radius: 12px;
	padding: 25px 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.prayer-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: transparent;
	transition: all 0.3s ease;
}

.prayer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	border-color: rgba(29, 142, 90, 0.2);
}

.prayer-card:hover::before {
	background: var(--green);
}

.prayer-icon {
	font-size: 28px;
	color: var(--green);
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.prayer-name {
	font-size: 18px;
	font-weight: 600;
	color: var(--title);
	margin-bottom: 8px;
}

.prayer-time {
	font-size: 16px;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 6px;
}

.prayer-label-en {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #888;
	display: block;
}

/* Active Card Highlights */
.prayer-card.active-prayer {
	background: var(--green);
	border-color: var(--green);
	color: var(--white);
	box-shadow: 0 10px 30px rgba(29, 142, 90, 0.3);
	transform: translateY(-8px);
}

.prayer-card.active-prayer::before {
	background: var(--yellow);
}

.prayer-card.active-prayer .prayer-icon {
	color: var(--yellow);
	transform: scale(1.1);
}

.prayer-card.active-prayer .prayer-name {
	color: var(--white);
}

.prayer-card.active-prayer .prayer-time {
	color: var(--white);
}

.prayer-card.active-prayer .prayer-label-en {
	color: rgba(255, 255, 255, 0.7);
}

/* Countdown Ticker styles */
.prayer-next-countdown-box {
	background: var(--white);
	border: 1px solid #eaeaea;
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	margin-top: 25px;
	display: inline-block;
	min-width: 320px;
	max-width: 100%;
}

.countdown-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--body);
	margin-bottom: 8px;
}

.countdown-label strong {
	color: var(--green);
	font-weight: 600;
}

.countdown-timer {
	font-size: 36px;
	font-weight: 700;
	color: var(--title);
	letter-spacing: 1px;
	font-family: 'Lexend', sans-serif;
	font-variant-numeric: tabular-nums;
	margin: 10px 0;
	display: block;
}

.countdown-label-en {
	font-size: 13px;
	color: #777;
	margin-bottom: 0;
}

.countdown-label-en span {
	color: var(--green);
	font-weight: 600;
}

/* Custom Green Helper Classes using var(--green) */
.bg-custom-green {
	background-color: var(--green) !important;
}

.text-custom-green {
	color: var(--green) !important;
}

.btn-custom-green {
	background-color: var(--green) !important;
	border-color: var(--green) !important;
	color: white !important;
}

.btn-custom-green:hover,
.btn-custom-green:focus {
	opacity: 0.9;
	color: white !important;
}

.btn-outline-custom-green {
	background-color: transparent !important;
	border-color: var(--green) !important;
	color: var(--green) !important;
}

.btn-outline-custom-green:hover {
	background-color: var(--green) !important;
	color: white !important;
}

/* Contact Info Icon Colors Reversal (Dark Front, Beige/Gold in Back) */
.contact-info li .cicon {
	background-color: var(--yellow) !important;
	/* Dark Navy in Front */
}

.contact-info li .cicon i {
	color: var(--white) !important;
}

.contact-info li .cicon:after {
	background-color: var(--green) !important;
	/* Beige/Gold in Back */
}