/*!
Theme Name: Glowify WP
Theme URI: https://themeforest.net/user/laralink
Author: laralink
Author URI: https://themeforest.net/user/laralink
Description: Beauty Ecommerce WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: glowify-wp
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Tags: grid-layout, blog, news, two-columns, right-sidebar, custom-background, custom-logo, custom-menu, featured-images, footer-widgets,  sticky-post, theme-options, threaded-comments,  translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Ecozone is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> CSS TABLE OF CONTENTS:
----------------------------------------------------------------
# Header CSS
# Blog CSS
# Shop CSS
# Page CSS
	Archive Page
	Search Page
	404 Page CSS
	Content none CSS
# BreadCrumbs CSS
# Pagination CSS
# WordPress Default CSS
# Others CSS
--------------------------------------------------------------*/

/*======================================
	Header CSS
========================================*/
/*--------------------------------------------------------------
7. Header
----------------------------------------------------------------*/
.cs_cart_card_wrap {
	position: fixed;
	z-index: 9999;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_cart_card_wrap.active {
	opacity: 1;
	visibility: visible;
  }
  .cs_cart_card_wrap.active .cs_cart_card {
	right: 0;
  }
  
  .cs_cart_overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	top: 0;
	left: 0;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
  }
  
  .cs_cart_card {
	position: fixed;
	height: 100vh;
	width: 375px;
	background-color: #fff;
	right: -375px;
	top: 0;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  
  .cs_cart_card_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	padding: 12px 25px;
  }
  
  .cs_cart_close {
	border: none;
	padding: 0;
	font-weight: 500;
	color: var(--primary);
  }
  .cs_cart_close:hover {
	color: var(--accent-color);
  }
  
  .cs_cart_card_footer {
	padding: 15px 25px;
  }
  
  .cs_cart_card_body {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	overflow: auto;
	padding: 25px 25px;
  }
  
  .cs_cart_card_subtotal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	border-top: 1px solid var(--br-color);
	padding: 15px 0;
  }
  
  .cs_cart_card_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
	gap: 10px;
	position: relative;
	padding-right: 22px;
  }
  .cs_cart_card_item h3 {
	margin-bottom: 5px;
  }
  .cs_cart_card_item .cs_quantity.cs_style_1 {
	max-width: 100px;
	height: 36px;
	margin-bottom: 8px;
  }
  .cs_cart_card_item .cs_quantity.cs_style_1 .cs_quantity_button {
	width: 34px;
	font-size: 14px;
  }
  
.cs_cart_card_item_left {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--br-color);
	border-radius: 4px;
}
.cs_cart_card_item_left img {
	max-height: 100%;
	object-fit: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding: 3px;
}
  .cs_cart_card_item_right {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
  }
  
  .cs_cart_card_item_remove {
	position: absolute;
	right: 0;
	top: 8px;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: none;
	outline: none;
	background-color: transparent;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_cart_card_item_remove:hover {
	color: var(--accent-color);
  }
  
  .cs_cart_card_list li:not(:last-child) {
	border-bottom: 1px solid var(--br-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
  }
  
  .cs_site_header_height_1 {
	height: 216px;
  }
  @media (max-width: 991px) {
	.cs_site_header_height_1 {
	  height: 81px;
	}
  }
  
  .cs_site_header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0px;
	z-index: 101;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  
  .cs_header_search_with_category_form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 550px;
	height: 55px;
	border-radius: 6px;
	border: 1px solid rgba(48, 48, 48, 0.5);
	position: relative;
	padding-right: 55px;
  }
  @media (max-width: 1400px) {
	.cs_header_search_with_category_form {
	  width: 450px;
	}
  }
  .cs_header_search_with_category_form .cs_header_submit_btn {
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 0 5px 5px 0;
	opacity: 1;
  }
  .cs_header_search_with_category_form .cs_header_submit_btn:hover {
	background-color: var(--primary);
	color: var(--white-color);
  }
  
  .cs_header_category_list {
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: 0px;
	width: 230px;
	background-color: var(--white-color);
	z-index: 3;
	border: 1px solid rgba(48, 48, 48, 0.5);
	border-radius: 0 6px 6px 6px;
	padding: 10px 0;
  }
  .cs_header_category_list li {
	position: relative;
	padding: 7px 25px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_header_category_list li:hover {
	background-color: rgba(48, 48, 48, 0.05);
  }
  .cs_header_category_list li input {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	cursor: pointer;
	height: 100%;
	width: 100%;
  }
  .cs_header_category_list li input:checked + span::before {
	border-color: var(--accent-color);
	background-color: var(--accent-color);
  }
  .cs_header_category_list li input:checked + span::after {
	opacity: 1;
	border-color: var(--white-color);
  }
  .cs_header_category_list li span {
	display: block;
	position: relative;
	padding-left: 25px;
	color: var(--primary);
}
.cs_header_category_list li label {
	margin: 0;
}
  .cs_header_category_list li span::before {
	content: "";
	height: 16px;
	width: 16px;
	border-radius: 3px;
	border: 1px solid var(--secondary);
	position: absolute;
	top: 5px;
	left: 0;
  }
  .cs_header_category_list li span::after {
	content: "";
	height: 8px;
	width: 5px;
	border: 1px solid var(--secondary);
	border-left: 0;
	border-top: 0;
	position: absolute;
	-webkit-transform: rotate(40deg);
			transform: rotate(40deg);
	left: 6px;
	top: 7px;
	opacity: 0;
  }
  
  .cs_header_search_with_category_field {
	height: 100%;
	border: none;
	background-color: transparent;
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
	padding: 0 20px;
	outline: none;
	width: 100%;
  }
  
  .cs_header_search_form {
	width: 450px;
	position: relative;
  }
  @media (max-width: 1400px) {
	.cs_header_search_form {
	  width: 400px;
	}
  }
  @media (max-width: 1199px) {
	.cs_header_search_form {
	  width: 350px;
	}
  }
  
  .cs_header_credential_btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 10px;
  }
  
  .cs_toolbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  }
  
  .cs_cart_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	position: relative;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
  }
.cs_cart_label {
	position: absolute;
	top: -3px;
	left: 15px;
	height: 22px;
	min-width: 22px;
	text-align: center;
	line-height: 22px;
	font-size: 12px;
	border-radius: 11px;
	padding: 0 5px;
  }
  .cs_cart_btn b {
	font-weight: 600;
  }
  .cs_cart_btn:hover {
	color: var(--accent-color);
  }
  
  .cs_header_search_field {
	height: 55px;
	border-radius: 6px;
	border: 1px solid rgba(48, 48, 48, 0.5);
	width: 100%;
	padding: 5px 60px 5px 25px;
	outline: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: transparent;
  }
  .cs_header_search_field:focus {
	border-color: var(--primary);
  }
  
  .cs_header_submit_btn {
	position: absolute;
	right: 0;
	height: 100%;
	width: 55px;
	border: none;
	background-color: transparent;
	padding-bottom: 3px;
	color: var(--primary);
	opacity: 0.5;
	top: 0;
}
  .cs_header_submit_btn:hover {
	opacity: 1;
	color: var(--primary);
  }
  
  .cs_language_wrap,
  .cs_header_category_wrap {
	position: relative;
  }
  
  .cs_language_toggle,
  .cs_header_category_toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
	position: relative;
  }
  .cs_language_toggle svg,
  .cs_header_category_toggle svg {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_language_toggle.active svg,
  .cs_header_category_toggle.active svg {
	-webkit-transform: rotate(180deg);
			transform: rotate(180deg);
  }
  
  .cs_language_toggle {
	color: var(--white-color);
	text-transform: uppercase;
  }
  
  .cs_header_category_toggle {
	color: var(--primary);
	height: 100%;
	padding: 0 25px;
  }
  @media (max-width: 1400px) {
	.cs_header_category_toggle {
	  padding: 0 15px;
	}
  }
  .cs_header_category_toggle::before {
	content: "";
	position: absolute;
	height: 30px;
	width: 1px;
	top: 50%;
	margin-top: -15px;
	background-color: rgba(48, 48, 48, 0.5);
	left: 0;
  }
  
  .cs_dropdown_btn + * {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_dropdown_btn + *.active {
	opacity: 1;
	visibility: visible;
  }
  
  .cs_language_list {
	position: absolute;
	right: 0;
	width: 200px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	background-color: var(--primary);
	z-index: 2;
	top: 100%;
	margin-top: 16px;
	border-radius: 0 0 8px 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cs_language_list a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 8px 20px;
	gap: 10px;
  }
  .cs_language_list a:hover {
	background-color: rgba(255, 255, 255, 0.03);
  }
  
  .cs_top_header_left .cs_language_list {
	right: initial;
	left: 0;
  }
  
  .cs_header_social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 25px;
  }
  .cs_header_social a:hover {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
  }
  
  .cs_header_icon_box {
	display: inline-block;
	position: relative;
	padding-left: 22px;
	margin: 0;
  }
  .cs_header_icon_box svg {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
  }
  
  .cs_top_header_list,
  .cs_header_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  }
  @media (min-width: 992px) {
	.cs_top_header_list > li,
	.cs_header_list > li {
	  position: relative;
	}
	.cs_top_header_list > li:not(:last-child),
	.cs_header_list > li:not(:last-child) {
	  padding-right: 25px;
	  margin-right: 25px;
	}
	.cs_top_header_list > li:not(:last-child)::before,
	.cs_header_list > li:not(:last-child)::before {
	  content: "";
	  position: absolute;
	  height: 20px;
	  width: 1px;
	  background-color: currentColor;
	  right: 0;
	  opacity: 0.5;
	  top: 2px;
	}
  }
  @media (max-width: 991px) {
	.cs_top_header_list > li:not(:last-child),
	.cs_header_list > li:not(:last-child) {
	  margin-right: 15px;
	}
  }
  
  .cs_header_list > li:not(:last-child)::before {
	height: 30px;
	top: 3px;
  }
  .cs_header_list img {
	-webkit-box-flex: 0;
		-ms-flex: none;
			flex: none;
  }
  @media (max-width: 991px) {
	.cs_header_list img {
	  height: 30px;
	}
  }
  
  .cs_header_icon_btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 30px;
  }
  .cs_header_icon_btns button img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_header_icon_btns a:hover,
  .cs_header_icon_btns button img:hover {
	opacity: 0.7;
  }
  
  .cs_site_header.cs_style_1 .cs_main_header_in,
  .cs_site_header.cs_style_1 .cs_top_header_in,
  .cs_site_header.cs_style_1 .cs_bottom_header_in {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	position: relative;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .cs_site_header.cs_style_1 .cs_main_header_in {
	height: 100px;
  }
  .cs_site_header.cs_style_1 .cs_top_header_in {
	height: 50px;
  }
  .cs_site_header.cs_style_1 .cs_bottom_header {
	border: 1px solid var(--br-color);
	border-left: 0;
	border-right: 0;
	height: 66px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .cs_site_header.cs_style_1 .cs_bottom_header > * {
	height: 100%;
  }
  .cs_site_header.cs_style_1 .cs_bottom_header > * > * {
	height: 100%;
  }
  .cs_site_header.cs_style_1 .cs_main_header_right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	height: 100%;
	gap: 28px;
  }
  .cs_site_header.cs_style_1 .cs_bottom_header_left {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  .cs_site_header.cs_style_1.cs_type_1 .cs_bottom_header_in {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
}
  .cs_site_header.cs_style_1.cs_type_1 .cs_bottom_header {
	border: none;
	background-color: var(--accent-light);
  }
  .cs_site_header.cs_style_1.cs_type_2 {
	background-color: var(--accent-color);
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_bottom_header_in {
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
			gap:30px;
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_bottom_header {
	border-bottom: none;
	border-color: rgba(255, 255, 255, 0.5);
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_header_search_form {
	width: 300px;
  }
  @media (max-width: 991px) {
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_form {
	  width: 100%;
	}
  }
  @media (min-width: 992px) {
	.cs_site_header.cs_style_1.cs_type_2 .cs_nav .cs_nav_list > li > a {
	  color: var(--white-color);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_nav .cs_nav_list > li > a:hover {
	  opacity: 0.75;
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field {
	  border-color: var(--white-color);
	  color: var(--white-color);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field::-webkit-input-placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field::-moz-placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field:-ms-input-placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field::-ms-input-placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field::placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_search_field::-ms-input-placeholder {
	  color: rgba(255, 255, 255, 0.75);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_nav_category_btn {
	  color: #fff;
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_nav_category_btn::before {
	  background-color: var(--primary);
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_nav_category_list {
	  border-color: var(--primary);
	}
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_header_submit_btn {
	color: var(--white-color);
	opacity: 1;
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_header_submit_btn:hover {
	opacity: 0.75;
  }
  @media (max-width: 991px) {
	.cs_site_header.cs_style_1.cs_type_2 .cs_header_submit_btn {
	  border-radius: 0 6px 6px 0;
	  background-color: var(--primary);
	}
  }
  .cs_site_header.cs_style_1.cs_type_2 .cs_cart_label {
	background-color: var(--white-color);
	color: var(--accent-color);
  }
  
  .cs_site_header.cs_style_1.cs_sticky_active {
	background-color: var(--white-color);
	-webkit-box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
			box-shadow: 0 10px 10px -10px rgba(33, 43, 53, 0.1);
  }
  .cs_site_header.cs_style_1.cs_sticky_active.cs_type_2 {
	background-color: var(--accent-color);
  }
  
  .cs_site_header_full_width .container {
	max-width: 100%;
	padding: 0 100px;
  }
  
  .cs_site_header.cs_style_1 .cs_banner.cs_style_5 {
	height: calc(100% - 20px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
		-ms-flex-align: end;
			align-items: flex-end;
	padding: 30px 30px;
	min-height: 300px;
	z-index: 10;
	margin: 10px;
  }
  
  @media screen and (max-width: 1199px) {
	.cs_site_header .container {
	  max-width: 100%;
	}
	.cs_site_header.cs_style_1 .cs_nav {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	}
	.cs_nav > div {
		width: 100%;
	}
  }
  .cs_nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .cs_sticky_header {
	position: fixed !important;
	top: 0;
	width: 100%;
	z-index: 999;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
  }
  .cs_sticky_header.cs_sticky_active .cs_top_header_in {
	height: 0px;
	overflow: hidden;
  }
  .cs_sticky_header.cs_sticky_active .cs_main_header_in {
	height: 90px;
  }
  
  .cs_site_branding {
	display: inline-block;
	font-size: 24px;
}
  
  @media screen and (min-width: 992px) {
	.menu-item-has-children ul {
	  color: var(--secondary);
	}
	.cs_main_header {
	  position: relative;
	}
	.cs_main_header .container-fluid {
	  padding-right: 120px;
	  padding-left: 120px;
	}
	.cs_main_header_center {
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
			  transform: translate(-50%, -50%);
	}
	.cs_site_header.cs_style_1 .cs_main_header_center {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  height: 100%;
	  width: 100%;
	  max-width: 40%;
	}
	.cs_site_header.cs_style_1 .cs_main_header_left {
	  height: 100%;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  gap: 60px;
	}
	.cs_nav {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  height: 100%;
	  line-height: 1.6em;
	}
	.cs_nav .cs_nav_list {
	  display: -webkit-box !important;
	  display: -ms-flexbox !important;
	  display: flex !important;
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	  height: inherit;
	}
	.cs_nav .cs_nav_list > li {
	  margin-right: 40px;
	  height: inherit;
	}
	.cs_nav .cs_nav_list > li:last-child {
	  margin-right: 0;
	}
	.cs_nav .cs_nav_list > li > a {
		padding: 20px 0;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		position: relative;
		height: inherit;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.cs_nav .cs_nav_list > li > ul {
	  left: 0;
	  top: calc(100% + 15px);
	  pointer-events: none;
	}
	.cs_nav .cs_nav_list > li > ul::before {
	  content: "";
	  position: absolute;
	  height: 10px;
	  width: 10px;
	  background-color: #fff;
	  -webkit-transform: rotate(45deg);
			  transform: rotate(45deg);
	  left: 20px;
	  top: -6px;
	  border-radius: 2px 0 0 0;
	  border: 1px solid var(--br-color);
	  border-right: 0;
	  border-bottom: 0;
	}
	.cs_nav .cs_nav_list > li:hover > ul {
	  top: 100%;
	  opacity: 1;
	  visibility: visible;
	  pointer-events: auto;
	  -webkit-transition: all 0.4s ease;
	  transition: all 0.4s ease;
	}
	.cs_nav .cs_nav_list > li.menu-item-has-children > a,
	.cs_nav .cs_nav_list > li.cs_mega_menu > a {
	  position: relative;
	}
	.cs_nav .cs_nav_list li.menu-item-has-children > a::after,
	.cs_nav .cs_nav_list li.cs_mega_menu > a::after{
	  content: "";
	  display: inline-block;
	  height: 6px;
	  width: 6px;
	  border: 2px solid currentColor;
	  -webkit-transform: rotate(45deg);
			  transform: rotate(45deg);
	  border-left: 0;
	  border-top: 0;
	  margin-left: 6px;
	  position: relative;
	  top: -1px;
	  border-radius: 0px 0px 2px 0px;
	}
	.cs_nav .cs_nav_list li.menu-item-has-children ul li.menu-item-has-children > a::after {
		transform: rotate(-45deg);
	}
	.cs_nav .cs_nav_list li.menu-item-has-children ul li.menu-item-has-children > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.cs_nav .cs_nav_list li:not(.cs_mega_menu) {
	  position: relative;
	}
	.cs_nav .cs_nav_list ul {
	  width: 260px;
	  background-color: var(--white-color);
	  position: absolute;
	  border: 1px solid var(--br-color);
	  padding: 10px 0;
	  z-index: 100;
	  opacity: 0;
	  visibility: hidden;
	  display: block !important;
	  border-radius: 5px;
	  -webkit-transition: all 0.1s ease;
	  transition: all 0.1s ease;
	}
	.cs_nav .cs_nav_list ul li:hover ul {
	  top: 0px;
	}
	.cs_nav .cs_nav_list ul li:hover > ul {
	  opacity: 1;
	  visibility: visible;
	  -webkit-transition: all 0.4s ease;
	  transition: all 0.4s ease;
	}
	.cs_nav .cs_nav_list ul a {
	  display: block;
	  line-height: inherit;
	  padding: 10px 20px;
	}
	.cs_nav .cs_nav_list ul ul {
	  top: 15px;
	  left: 100%;
	}
	.cs_menu_toggle,
	.cs_munu_dropdown_toggle {
	  display: none;
	}
	.cs_nav .cs_nav_list .cs_mega_menu {
	  position: initial;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper {
	  width: 1300px;
	  display: -webkit-box !important;
	  display: -ms-flexbox !important;
	  display: flex !important;
	  position: absolute;
	  top: 100% !important;
	  left: 50%;
	  -webkit-transform: translateX(-50%);
			  transform: translateX(-50%);
	  padding: 0px;
	  border: 1px solid var(--br-color);
	  background-size: contain;
	  background-repeat: no-repeat;
	  background-position: right;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper a {
	  padding: 6px 10px;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li {
	  -webkit-box-flex: 1;
		  -ms-flex: 1;
			  flex: 1;
	  padding: 15px 15px;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li:not(:last-child) {
	  border-right: 1px solid var(--br-color);
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li h4 {
	  font-size: 20px;
	  font-weight: 600;
	  color: var(--primary);
	  padding: 0px 10px;
	  margin: 7px 0 7px 0;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li ul {
	  position: initial;
	  border: none;
	  padding: 0;
	  width: 100%;
	  -webkit-box-shadow: none;
			  box-shadow: none;
	  background-color: transparent;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li ul a {
	  -webkit-transition: all 0.4s ease;
	  transition: all 0.4s ease;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper .menu-item-has-children ul h4 {
	  padding-top: 10px;
	}
	.cs_nav .cs_nav_list .cs_mega_menu .cs_mega_wrapper {
	  border-top: 2px solid var(--accent-color);
	  border-radius: 0 0 5px 5px;
	}
	.cs_nav .cs_nav_list .cs_mega_menu .cs_mega_wrapper::before {
	  display: none;
	}
	.cs_nav .cs_nav_list .cs_mega_menu:hover .cs_mega_wrapper li ul {
	  opacity: 1;
	  visibility: visible;
	}
	.cs_nav .cs_nav_list > li ul:not(.cs_mega_wrapper) .menu-item-has-children > a {
	  position: relative;
	}
	.cs_nav_category_wrap {
	  height: 100%;
	  margin-right: 40px;
	  position: relative;
	}
	.cs_nav_wrap {
	  height: 100%;
	}
	.cs_nav_out {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  height: 100%;
	}
	.cs_mobile_show {
	  display: none;
	}
  }
  @media screen and (min-width: 1600px) {
	.cs_nav .cs_nav_list .cs_mega_wrapper {
	  width: 1544px;
	}
  }
  .cs_nav_category_btn {
	position: relative;
	height: 100%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	color: var(--accent-color);
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .cs_nav_category_btn:after {
	content: "";
	display: inline-block;
	height: 6px;
	width: 6px;
	border: 2px solid currentColor;
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
	border-left: 0;
	border-top: 0;
	margin-left: 6px;
	position: relative;
	top: -1px;
	border-radius: 0px 0px 2px 0px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_nav_category_btn::before {
	content: "";
	position: absolute;
	height: 2px;
	width: 92%;
	left: 0;
	bottom: -2px;
	opacity: 0;
	background-color: var(--accent-color);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .cs_nav_category_btn:hover::before {
	opacity: 1;
  }
  .cs_nav_category_btn.active::after {
	-webkit-transform: rotate(-135deg);
			transform: rotate(-135deg);
	top: 1px;
  }
  
  .cs_nav_category_list {
	position: absolute;
	width: 500px;
	background-color: #fff;
	top: 100%;
	-webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.07);
			box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.07);
	border-width: 0;
	border-top-style: solid;
	border-top-color: var(--accent-color);
	border-top-width: 2px;
	border-radius: 0 0 10px 10px;
	display: grid;
	grid-gap: 0px;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0;
	padding: 15px 15px;
  }
  .cs_nav_category_list > li > a {
	display: block;
	line-height: 1.5em;
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	text-align: center;
	padding: 15px 15px 8px;
	border-radius: 7px;
  }
  .cs_nav_category_list > li > a img {
	height: 80px;
	width: 80px;
	border-radius: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
  }
  .cs_nav_category_list > li > a:hover {
	background-color: rgba(230, 31, 127, 0.05);
  }
  .cs_nav_category_list > li img {
	margin-bottom: 10px;
  }
  
  .cs_header_number_wrap {
	position: relative;
	padding-left: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
  }
  .cs_header_number_wrap svg {
	position: absolute;
	left: 0;
	width: 40px;
	height: 40px;
	top: 3px;
  }
  .cs_header_number_wrap .cs_header_number {
	font-weight: 600;
	font-family: var(--primary-font);
	font-size: 26px;
	line-height: 1.1em;
  }
  .cs_header_number_wrap .cs_header_number_text {
	font-size: 12px;
	line-height: 1.5em;
	color: var(--secondary);
  }
  
  @media screen and (max-width: 1400px) {
	.cs_nav .cs_nav_list .cs_mega_wrapper {
	  width: 1120px;
	}
	.cs_site-branding {
	  max-width: 190px;
	}
	.cs_site_header_full_width .container {
	  max-width: 100%;
	}
  }
  @media screen and (max-width: 1199px) {
	.cs_site_header.cs_style_1 .cs_main_header_left {
	  gap: 30px;
	}
	.cs_header_search_with_category_form {
	  width: 400px;
	}
	.cs_header_category_toggle {
	  padding: 0 8px;
	}
	.cs_header_search_with_category_field {
	  padding: 0 10px 0 15px;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper {
	  width: 100%;
	}
  }
  @media screen and (max-width: 1100px) {
	.cs_site_header.cs_style_1 .cs_main_header_left {
	  gap: 25px;
	}
	.cs_header_search_with_category_form {
	  width: 350px;
	}
  }
  @media screen and (max-width: 991px) {
	.cs_site_header .container {
	  max-width: 100%;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper {
	  width: 100% !important;
	}
	.cs_site_header_full_width .container {
	  padding: 0 15px;
	}
	.cs_munu_dropdown_toggle {
	  position: absolute;
	  height: 40px;
	  width: 100%;
	  top: 0;
	  left: 0px;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -webkit-box-pack: end;
		  -ms-flex-pack: end;
			  justify-content: flex-end;
	  padding: 23px 18px;
	  cursor: pointer;
	  z-index: 3;
	}
	.cs_munu_dropdown_toggle span {
	  display: block;
	  position: relative;
	  height: 10px;
	  width: 10px;
	}
	.cs_munu_dropdown_toggle span:before, .cs_munu_dropdown_toggle span:after {
	  content: "";
	  display: block;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
			  transform: translate(-50%, -50%);
	  height: 2px;
	  width: 10px;
	  background-color: currentColor;
	  -webkit-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.cs_munu_dropdown_toggle span:before {
	  -webkit-transform: translate(-50%, -50%) rotate(90deg);
			  transform: translate(-50%, -50%) rotate(90deg);
	}
	.cs_munu_dropdown_toggle.active span:before {
	  -webkit-transform: translate(-50%, -50%) rotate(0deg);
			  transform: translate(-50%, -50%) rotate(0deg);
	}
	.menu-item-has-children .menu-item-has-children .cs_munu_dropdown_toggle {
	  padding: 20px 18px;
	}
	.cs_nav .cs_nav_list {
	  width: 100%;
	  color: var(--primary);
	  padding: 10px 0;
	  line-height: 1.6em;
	  -webkit-transition: all 0.4s ease;
	  transition: all 0.4s ease;
	}
	.cs_nav .cs_nav_list ul {
	  padding-left: 15px;
	  display: none;
	}
	.cs_nav .cs_nav_list a {
	  display: block;
	  padding: 12px 15px;
	  line-height: 16px;
	}
	.cs_nav .cs_nav_list > li > a {
	  font-size: 18px;
	  line-height: 22px;
	}
	.cs_nav .menu-item-has-children,
	.cs_nav .cs_mega_menu {
	  position: relative;
	}

	.cs_nav .elementor-icon-list-items {
		display: block !important;
	}

	/*Mobile Menu Button*/
	.cs_menu_toggle {
	  display: inline-block;
	  width: 30px;
	  height: 27px;
	  cursor: pointer;
	  position: absolute;
	  top: 27px;
	  right: 30px;
	}
	.cs_menu_toggle span,
	.cs_menu_toggle span:before,
	.cs_menu_toggle span:after {
	  width: 100%;
	  height: 2px;
	  background-color: currentColor;
	  display: block;
	}
	.cs_menu_toggle span {
	  margin: 0 auto;
	  position: relative;
	  top: 12px;
	  -webkit-transition-duration: 0s;
			  transition-duration: 0s;
	  -webkit-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}
	.cs_menu_toggle span:before {
	  content: "";
	  position: absolute;
	  margin-top: -9px;
	  -webkit-transition-property: margin, -webkit-transform;
	  transition-property: margin, -webkit-transform;
	  transition-property: margin, transform;
	  transition-property: margin, transform, -webkit-transform;
	  -webkit-transition-duration: 0.2s;
			  transition-duration: 0.2s;
	  -webkit-transition-delay: 0.2s, 0s;
			  transition-delay: 0.2s, 0s;
	}
	.cs_menu_toggle span:after {
	  content: "";
	  position: absolute;
	  margin-top: 9px;
	  -webkit-transition-property: margin, -webkit-transform;
	  transition-property: margin, -webkit-transform;
	  transition-property: margin, transform;
	  transition-property: margin, transform, -webkit-transform;
	  -webkit-transition-duration: 0.2s;
			  transition-duration: 0.2s;
	  -webkit-transition-delay: 0.2s, 0s;
			  transition-delay: 0.2s, 0s;
	}
	.cs_site_header.cs_style_1 .cs_menu_toggle {
	  top: 36%;
	  right: 10px;
	}
	.cs_site_header.cs_style_1 .cs_main_header_in {
	  height: 80px;
	  padding-right: 50px;
	  -ms-flex-wrap: initial;
		  flex-wrap: initial;
	  gap: 20px;
	}
	.cs_toggle_active span {
	  background-color: rgba(0, 0, 0, 0);
	  -webkit-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}
	.cs_toggle_active span:before {
	  margin-top: 0;
	  -webkit-transform: rotate(45deg);
			  transform: rotate(45deg);
	  -webkit-transition-delay: 0s, 0.2s;
			  transition-delay: 0s, 0.2s;
	}
	.cs_toggle_active span:after {
	  margin-top: 0;
	  -webkit-transform: rotate(-45deg);
			  transform: rotate(-45deg);
	  -webkit-transition-delay: 0s, 0.2s;
			  transition-delay: 0s, 0.2s;
	}
	.cs_nav .cs_nav_list a {
	  position: relative;
	}
	.cs_site_header .current-menu-item > a:before {
	  display: none;
	}
	.cs_site_header.cs_style_1 {
	  top: 0;
	}
	.cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
	  position: absolute;
	  left: 0px;
	  top: 50%;
	  -webkit-transform: translateY(-50%);
			  transform: translateY(-50%);
	}
	.cs_site_header.cs_style_1 .cs_header_credential_btns > span,
	.cs_site_header.cs_style_1 .cs_cart_btn > span:not(.cs_cart_label),
	.cs_site_header.cs_style_1 .cs_header_number_wrap {
	  display: none;
	}
	.cs_site_header.cs_style_1 .cs_bottom_header {
	  height: initial;
	  border-bottom: none;
	}
	.cs_site_header.cs_style_1 .cs_nav_wrap {
	  position: fixed;
	  left: -350px;
	  top: 0;
	  max-width: 350px;
	  width: 100%;
	  height: 100%;
	  background-color: #fff;
	  z-index: 1000;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.cs_has_main_nav {
	  display: none;
	}
	.cs_header_overlay_mobile {
	  position: fixed;
	  left: 0;
	  top: 0;
	  height: 100vh;
	  width: 100%;
	  background-color: rgba(0, 0, 0, 0.5);
	  -webkit-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	  opacity: 0;
	  visibility: hidden;
	  z-index: 100;
	}
	.cs_site_branding_wrap.cs_mobile_show {
	  padding: 20px 15px;
	  padding-right: 45px;
	  background-color: var(--gray-color) ;
	  height: 70px;
	  position: relative;
	}
	.cs_close_mobile_active {
	  position: absolute;
	  right: 15px;
	  padding: 0;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  top: 26px;
	  border: none;
	  outline: none;
	  background-color: transparent;
	  font-size: 18px;
	}
	.cs_nav_out {
	  height: calc(100vh - 154px);
	  overflow-y: auto;
	  overflow-x: hidden;
	  position: relative;
	  margin-top: 44px;
	  border-top: 1px solid var(--br-color);
	  padding-bottom: 25px;
	}
	.cs_mobile_tab_btn {
	  position: fixed;
	  top: 70px;
	  padding: 10px 0px;
	  left: 15px;
	}
	.cs_mobile_tab_btn::before {
	  content: "";
	  position: absolute;
	  height: 2px;
	  width: 100%;
	  left: 0;
	  bottom: -1px;
	  opacity: 0;
	  background-color: var(--accent-color);
	  -webkit-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.cs_nav_category_btn {
	  position: fixed;
	  left: 77px;
	  top: 70px;
	  padding: 10px 0px;
	  height: initial;
	  font-weight: 400;
	  color: var(--primary);
	}
	.cs_nav_category_btn:after {
	  display: none;
	}
	.cs_nav_category_btn::before {
	  bottom: -1px;
	  width: 100%;
	}
	.cs_nav_list {
	  display: none;
	}
	.cs_nav.cs_mobile_active .cs_nav_list {
	  display: block;
	}
	.cs_nav.cs_mobile_active .cs_mobile_tab_btn {
	  color: var(--accent-color);
	}
	.cs_nav.cs_mobile_active .cs_mobile_tab_btn::before {
	  opacity: 1;
	}
	.cs_nav_category_list {
	  position: initial;
	  opacity: 1;
	  visibility: visible;
	  width: 100%;
	  border: none;
	  grid-gap: 15px 10px;
	  font-size: 14px;
	  line-height: 1.5em;
	  -webkit-box-shadow: none;
			  box-shadow: none;
	  padding: 20px 15px;
	  display: none;
	}
	.cs_nav_category_list > li > a {
	  padding: 0;
	  border-radius: 0px;
	}
	.cs_nav_category_list > li > a img {
	  height: 70px;
	  width: 70px;
	  margin-bottom: 5px;
	}
	.cs_nav_category_wrap.cs_mobile_active .cs_nav_category_list {
	  display: grid;
	}
	.cs_nav_category_wrap.cs_mobile_active .cs_nav_category_btn::before {
	  opacity: 1;
	}
	.cs_nav .cs_nav_list .cs_mega_wrapper > li h4 {
	  font-size: 18px;
	  margin: 0;
	  font-weight: 500;
	  padding: 9px 15px;
	}
	.cs_site_header.cs_style_1 .cs_banner.cs_style_5 {
	  margin: 15px 15px 10px 14px;
	  height: 350px;
	}
	.cs_site_header.cs_mobile_active .cs_nav_wrap {
	  left: 0;
	  opacity: 1;
	  visibility: visible;
	}
	.cs_site_header.cs_mobile_active .cs_header_overlay_mobile {
	  opacity: 1;
	  visibility: visible;
	}
	.cs_site_header.cs_mobile_active .cs_top_header_info_list {
	  bottom: 0;
	  opacity: 1;
	  visibility: visible;
	  -webkit-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}
	.cs_nav_out .cs_header_social {
	  padding: 20px 15px 0 15px;
	}
	.cs_site_header.cs_style_1 .cs_main_header_right {
	  gap: 15px;
	  -webkit-box-flex: 0;
		  -ms-flex: none;
			  flex: none;
	}
	.cs_site_header.cs_style_1 .cs_top_header_in {
	  height: initial;
	}
	.cs_top_header .cs_top_header_info_list {
	  position: fixed;
	  left: 0;
	  bottom: -40px;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	  z-index: 1001;
	  width: 350px;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  padding: 0 15px;
	  height: 40px;
	  border-top: 1px solid var(--br-color);
	  color: var(--primary);
	}
	.cs_top_header .cs_top_header_info_list > li {
	  -webkit-box-flex: 1;
		  -ms-flex: 1;
			  flex: 1;
	  max-width: 62%;
	}
	.cs_top_header .cs_top_header_info_list > li:not(:last-child) {
	  border-right: 1px solid var(--br-color);
	}
	.cs_top_header .cs_top_header_info_list .cs_language_list {
	  top: initial;
	  bottom: 100%;
	  margin-top: 0;
	  color: #fff;
	  border-radius: 8px 8px 0 0;
	}
	.cs_top_header .cs_top_header_info_list .cs_language_toggle {
	  color: var(--primary);
	  padding: 8px 0px 8px 0px;
	  width: 100%;
	}
	.cs_top_header .cs_top_header_info_list .cs_header_icon_box {
	  padding: 8px 10px 8px 22px;
	}
	.cs_header_search_form_wrap {
	  position: fixed;
	  left: 0;
	  top: 80px;
	  width: 100%;
	  background-color: #fff;
	  padding: 20px 15px;
	  border: 1px solid var(--br-color);
	  border-width: 1px 0 1px 0;
	  z-index: 20;
	  opacity: 0;
	  visibility: visible;
	}
	.cs_header_search_form_wrap.active {
	  opacity: 1;
	  visibility: visible;
	}
	.cs_header_search_form {
	  width: 100%;
	}
	.cs_mobile_search_toggle {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  padding: 0;
	  border: none;
	  outline: none;
	  background-color: transparent;
	}
	.cs_mobile_search_toggle img {
	  height: 24px;
	}
	.cs_header_search_with_category_form {
	  width: 100%;
	}
	.cs_mobile_hide {
	  display: none;
	}
	.cs_header_category_list {
	  left: initial;
	  right: -57px;
	}
	.cs_header_icon_btns {
	  gap: 15px;
	}
	.cs_header_icon_btns img {
	  height: 30px;
	  max-width: 30px;
	}
	.cs_site_header.cs_style_1.cs_type_2 .cs_menu_toggle {
	  color: #fff;
	}
  }
  @media screen and (max-width: 575px) {
	.cs_mobile_hide_sm {
	  display: none;
	}
  }
  @media screen and (max-width: 410px) {
	.cs_site_branding {
	  max-width: 170px;
	}
	.cs_header_category_toggle {
	  padding: 0 15px;
	}
	.cs_header_category_toggle span {
	  display: none;
	}
  }
  @media screen and (max-width: 380px) {
	.cs_header_list img {
	  height: 25px;
	}
	.cs_site_header.cs_style_1 .cs_main_header_right {
	  gap: 12px;
	}
	.cs_header_list > li:not(:last-child) {
	  margin-right: 12px;
	}
	.cs_site_branding {
	  max-width: 140px;
	}
  }
  @media screen and (max-width: 345px) {
	.cs_site_header.cs_style_1 .cs_main_header_center .cs_site_branding {
	  max-width: 120px;
	}
  }

  .cs_default_header {
	position: relative !important;
}
.cs_default_header .cs_bottom_header_left {
	gap: 30px;
	display: flex !important;
	width: 100%;
}

@media screen and (min-width: 992px) {
.cs_default_header .cs_nav_wrap {
	width: 100%;
	justify-content: end;
	display: flex;
}
}

.cs_site_header.cs_default_header .cs_bottom_header{
	height: 80px;
}
.cs_default_header  .cs_nav_out {
	margin: 0;
}
.cs_default_header .cs_bottom_header {
	border-top: 0px;
}
@media screen and (min-width: 992px) {
.cs_mega_menu{
	position: static !important;
  }
}

  .cs_nav .cs_nav_list .cs_mega_menu .elementor-icon-list-items {
	position: relative !important;
	opacity: 1 !important;
	visibility: visible;
	border: none;
	left: 0;
	transform: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: 100% !important;
	top: 0;
  }
  .cs_nav .cs_nav_list .cs_mega_menu .elementor-icon-list-items a {
	position: relative;
	padding: 0;
	line-height: initial !important;
  }
  .cs_mega_wrapper > div{
	min-width: 100%;
  }
  .cs_top_header_list li {
	display: flex;
	align-items: center;
}

.cs_site_header.style-2  .cs_top_header_in {
	flex-direction: row-reverse;
	justify-content: space-between;
  }

  .cs_site_header.style-3  .cs_header_number_wrap {
	color: #fff;
  }
  .cs_site_header.style-3 .cs_header_number_wrap * {
	color: #fff !important;
  }
  .cs_header_icon_btns a {
	position: relative;
}
/*======================================
	End Header CSS
========================================*/

/*======================================
	Blog CSS
========================================*/

.glowify-entry-page ol li,.blog-single ol li {
  line-height: 30px;
}
.glowify-entry-page ul {
	margin-bottom: 0;
}
.glowify-entry-page ol li ol {
  margin-left: 14px;
}

.cs_post.cs_style_2 {
	border: 1px solid var(--br-color);
	padding: 28px;
	height: 100%;
}
  @media (max-width: 1400px) {
	.cs_post.cs_style_2 {
	  padding: 20px;
	}
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_2 {
	  padding: 15px 15px 20px 15px;
	}
  }
  .cs_post.cs_style_2 .cs_post_thumb {
	height: 464px;
	display: block;
	overflow: hidden;
  }
  @media (max-width: 1400px) {
	.cs_post.cs_style_2 .cs_post_thumb {
	  height: 415px;
	}
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_2 .cs_post_thumb {
	  height: initial;
	}
  }
  .cs_post.cs_style_2 .cs_post_thumb img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: inherit;
	-webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .cs_post.cs_style_2 .cs_post_thumb:hover img {
	-webkit-transform: scale(1.05);
			transform: scale(1.05);
  }
  .cs_post.cs_style_2 .cs_post_category {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	line-height: 1.5em;
	padding: 3px 15px;
	border-radius: 5px;
	margin-bottom: 23px;
  }
  @media (max-width: 991px) {
	.cs_post.cs_style_2 .cs_post_category {
	  margin-bottom: 15px;
	}
  }
  .cs_post.cs_style_2 .cs_post_meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 10px 30px;
  }
  @media (max-width: 1400px) {
	.cs_post.cs_style_2 .cs_post_meta {
	  gap: 10px 20px;
	}
  }
  .cs_post.cs_style_2 .cs_post_meta span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 10px;
  }
  .cs_post.cs_style_2 .cs_post_info {
	padding-top: 32px;
  }
  @media (max-width: 575px) {
	.cs_post.cs_style_2 .cs_post_info {
	  padding-top: 25px;
	}
  }
  .cs_post.cs_style_2 .cs_post_title {
	margin-bottom: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
  }
  .cs_post.cs_style_2 .cs_post_subtitle {
	margin-bottom: 25px;
  }
  .cs_post.cs_style_2.cs_type_1 {
	border: none;
	padding: 0;
  }
  .cs_post.cs_style_2.cs_type_1 .cs_post_title {
	margin-bottom: 0;
  }
  .cs_post.cs_style_2.cs_type_1 .cs_post_meta {
	gap: 10px 20px;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	margin-bottom: 13px;
  }
  @media (max-width: 991px) {
	.cs_post.cs_style_2.cs_type_1 .cs_post_meta {
	  margin-bottom: 7px;
	}
  }
  .cs_post.cs_style_2.cs_type_1 .cs_post_info {
	padding: 0 40px;
	margin-top: -15px;
	position: relative;
	z-index: 2;
  }
  @media (max-width: 1400px) {
	.cs_post.cs_style_2.cs_type_1 .cs_post_info {
	  padding: 0 20px;
	}
  }
  .cs_post.cs_style_2.cs_type_1 .cs_post_thumb {
	height: 416px;
  }
  @media (max-width: 1600px) {
	.cs_post.cs_style_2.cs_type_1 .cs_post_thumb {
	  height: 320px;
	}
  }
  .cs_post.cs_style_2 .cs_post_subtitle {
	margin-top: 15px;
}
.cs_post_info a.cs_accent_color {
	color: var(--accent-color);
}
/* Start Blog Details */
.cs_blog_details {
	font-size: 18px;
	line-height: 1.7em;
  }
  .cs_blog_details * {
	line-height: 1.7em;
}
  .cs_blog_details h1 {
	font-size: 54px;
	line-height: 1.11em;
	font-weight: 600;
	margin-bottom: 40px;
  }
  @media (max-width: 1600px) {
	.cs_blog_details h1 {
	  font-size: 48px;
	}
  }
  @media (max-width: 1400px) {
	.cs_blog_details h1 {
	  font-size: 42px;
	}
  }
 
  .cs_blog_details img {
	border-radius: 10px;
  }
  .cs_blog_details .cs_post_meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 10px 40px;
	margin-bottom: 20px;
  }
  @media (max-width: 575px) {
	.cs_blog_details .cs_post_meta {
	  gap: 5px 25px;
	}
  }
  .cs_blog_details .cs_post_meta > * {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 10px;
  }
  .cs_blog_details ul {
	list-style: disc;
  }
  .cs_blog_details ul strong {
	font-weight: 600;
  }
  .cs_blog_details ul li:not(:last-child) {
	margin-bottom: 10px;
  }
  .cs_blog_details blockquote {
	font-size: 24px;
	line-height: 1.41em;
	border-left: 10px solid var(--accent-strong);
	color: var(--primary);
	font-weight: 500;
	font-style: normal;
	background-color: rgba(88, 63, 168, 0.1);
	padding: 54px 90px;
	margin-bottom: 0;
}
  @media (max-width: 991px) {
	.cs_blog_details blockquote {
	  margin: 40px 0;
	  padding: 30px 25px;
	  font-size: 23px;
	  border-width: 5px;
	}
  }
  @media (max-width: 991px) {
	.cs_blog_details blockquote {
	  font-size: 22px;
	}
  }
  .cs_blog_details > *:last-child {
	margin-bottom: 0;
  }
  
  .cs_social_share {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
  }
  .cs_social_share a {
	height: 36px;
	width: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	border-radius: 50%;
	background-color: var(--primary);
	color: #fff;
  }
  .cs_social_share a:hover {
	background-color: var(--accent-strong);
  }
  
  .cs_post_share_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 30px 20px;
  }
  .cs_post_share_wrap .cs_tagcloud {
	max-width: 550px;
  }
  
  .cs_post_reply {
	padding: 60px;
	margin-top: 80px;
  }
  @media (max-width: 991px) {
	.cs_post_reply {
	  padding: 40px 25px;
	  margin-top: 65px;
	}
  }
  .cs_post_reply h3 {
	margin-bottom: 30px;
  }
  .cs_post_reply textarea {
	width: 100%;
	background-color: var(--white);
	padding: 15px 20px;
	border: none;
	outline: none;
	display: block;
	margin-bottom: 30px;
	border-radius: 6px;
  }
  
  .cs-comment_wrapper {
	padding: 45px 30px;
	margin-bottom: 70px;
	border-radius: 10px;
	background-color: #fff;
	padding-bottom: 4px;
  }
  
  .url {
	font-weight: 500;
	font-size: 24px;
	color: var(--primary);
  }
  @media (max-width: 1600px) {
	.url {
	  font-size: 23px;
	}
  }
  @media (max-width: 991px) {
	.url {
	  font-size: 22px;
	}
  }
  
  #commentform p.logged-in-as {
	font-size: 16px;
	margin-top: -5px;
  }
  
  #commentform p.logged-in-as a:hover {
	text-decoration: underline;
  }
  
  /* End Blog Details */

  #comments {
	clear: both;
}
#comments .comments-title {
	font-size: 26px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #202124;
	margin-bottom: 40px;
	line-height: 1.2em;
}
.comment-metadata a {
	color: var(--accent-color);
}
.comment-metadata time {
	font-weight: 400;
}
.comment-author .says, .comment-edit-link {
	color: var(--heading-color) !important;
	font-weight: 400 !important;
}
/* Comment List */
.comment-list {
	padding: 25px 20px;
	position: relative;
	border-radius: 4px;
	margin-bottom: 30px;
	list-style: none;
}
.comment-author.vcard img {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 50%;
	padding: 0;
}
.comment-author.vcard {
	display: inline-block;
}
.comment-meta a {
	color: var(--heading-color);
	font-weight: 500;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--it-common-black);
	position: relative;
}
.comment-meta a:hover{
	color:var(--accent-color);
}
.comment-author.vcard .fn, .comment-author .says {
	display: inline-block !important;
}

.logged-in-as a {
	color: var(--heading-color);
	font-weight: 400;
}
.logged-in-as a:hover {
	color: #00255D !important;
}
.logged-in-as a:first-child{
	color:#666;
}
.comment-meta {
	margin-bottom: 5px;
	position: relative;
}
.comment-metadata a {
	font-weight: 400;
	font-size: 13px;
}
.comment-author.vcard .fn {
	font-size: 20px;
	color: var(--heading-color);
	display: block;
	font-weight: 500;
}
.comment-reply-link {
	display: inline-block;
	font-weight: 600;
	font-size: 16px;
	transition: 0.3s;
	color: var(--accent-color);
}
.comment-reply-link:hover{
	color: var(--it-common-white);
	background: var(--it-common-blue-4);
	border-color:transparent;
}
.comment-list li.comment {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--it-border-1);
}
.comment-list ol.children {
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #ebebeb;
	list-style: none;
	margin-left: 15px;
	padding-left: 5px;
}
.comment-list ol.children ol.children {
	margin-left: 15px;
}
.comment-list li.comment:last-child {
	border: none;
}
.comment-list .comment-body .comment-content p {
	font-weight: normal;
	font-size: 16px;
}

#comments .comments-title,.bottom-title h2{
	position: relative;
}
.comment-list .reply, .comment-list .comment-body .comment-content, .comment-meta {
	padding-left: 70px;
}
.comment-list .reply {
	margin-top: 10px;
}
#respond .comment-reply-title {
	font-size: 20px;
}
.comment-respond p:last-child {
	margin: 0;
}
.comment-respond input, .comment-respond textarea {
	text-shadow: none;
	box-shadow: none;
	font-weight: 400;
	margin: 0;
}
.comment-respond input::-webkit-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond input::-moz-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond input::-ms-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-moz-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea::-ms-input-placeholder {
    opacity: 1;
    color: #666 !important;
}
.comment-respond textarea {
	width: 100%;
}
.comment-respond input {
	max-height: 50px;
}
.comment-form .form-group i,
 .comment-form .comment-message i {
    line-height: 25px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 10px;
    right: 15px;
    color: var(--accent-color);
}
.comment-respond textarea {
	height: 225px !important;
}
.comment-respond .form-submit {
	display: inline-block;
}
.comment-form-cookies-consent {
	display: none;
}
.comment-form button.btn i {
	margin-left: 10px;
}

/* Blog Comment Form */
.comment-respond {
	position: relative;
	padding: 60px;
	margin-top: 80px;
	background-color: var(--accent-light);
	border-radius: 10px;
}
.bottom-title h2 {
	font-weight: 600;
	font-size: 26px;
	line-height: 18px;
	letter-spacing: -0.02em;
	color: #202124;
	margin-bottom: 40px;
}
.blog-single .bottom-title h2 {
	margin-bottom: 25px;
}
.comment-form .form-group label span,
.comment-form .comment-message label span {
	color: var(--accent-color);
}
.logged-in-as a:hover {
	color: var(--accent-color);
}
.comment-form .comment-form-wrap {
	margin-top: 35px;
}
.comment-form .form-group,
.comment-form .comment-message {
	position: relative;
	display: block;
	margin: 0 0 25px;
}
.comment-form .form-group input:hover,
.comment-form .comment-message textarea:hover{
	border-color:var(--accent-color);
}
/* Comment Form Reply */
.comment-list .bottom-title h2.comments-heading {
	background: transparent !important;
	color: var(--heading-color);
	left: auto;
}
.comment-list .bottom-title h2.comments-heading a {
	color: var(--accent-color);
	font-size: 15px;
	margin-left:5px;
}
.comment-list .bottom-title h2.comments-heading a:hover{
	color:var(--heading-color);
}
.blog-post-tag ul {
	margin: 0 !important;
	top: 0 !important;
}
.blog-post-tag ul li a {
	margin: 0 !important;
}
@media (max-width: 767px) {
.blog-post-tag .share-tag.post-tag {
	flex-direction: column;
	align-items: start;
}
}

.glowify-blog-main-section {
	padding: 20px 0 120px;
}

@media screen and (max-width: 991px) {
	.glowify-blog-main-section {
		padding: 20px 0 80px;
	}
}

.glowify-blog-main-section .sidebar-main,
.glowify-blog-main-section__blog {
	margin-top: 50px;
}
.glowify-blog-main-section__archive {
	margin-top:20px;
}
.blog-single-column {
	margin-top:30px;
}
.glowify-blog-main-section.blog-single {
	padding: 0;
}

/*======================================
	End Blog CSS
========================================*/

/*====================================
	Page CSS
======================================*/
/* BLog Single */
.news-area.archive.single {
	padding-top: 70px 0 0;
}
/* Search Page CSS */
.search-page{
	padding:70px 0 100px;
}
/* Content None CSS*/
.no-results {
	margin-top: 30px;
	width: 100%;
}
.no-results .page-header {
  margin-bottom: 5px;
}
.no-results.not-found .page-content {
	max-width: 65%;
}
.no-results .page-header .page-title {
	font-size: 30px;
	font-weight: 600;
}
.no-results .search-form {
  margin-top: 15px;
}

/* 404 Page CSS */
.error__area {
	padding: 130px 0;
}
.error__heading {
	margin: 0 0 5px;
}

@media (max-width: 991px) {
	.cs_footer_logo {
	  display: none;
	}
	.error__area {
		padding: 80px 0;
	}
  }
/*====================================
	End Page CSS
======================================*/

/*====================================
	BreadCrumbs CSS
======================================*/
.breadcrumbs {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 100px 0;
	z-index: 10;
	background-color: #667D9E;
}
.bread-inner {
	text-align: center;
	z-index: 100;
	position: relative;
}
.breadcrumbs::before {
	background: var(--heading-color);
	opacity: 0.6;
}
.breadcrumbs .bread-title {
    z-index: 5553;
    position: relative;
    border-radius: 5px;
}
.breadcrumbs .bread-title p {
    color: #fff;
    font-size: 13px;
}
.breadcrumbs h2 {
	color: #fff;
	text-transform: capitalize;
	font-size: 45px;
	margin: 0;
	padding: 0;
	line-height: 45px;
	z-index: 555;
	position: relative;
}
.breadcrumbs .bread-list {
	display: block;
	margin-top:20px;
}
.breadcrumbs ul li {
	display: block;
	display: inline-block;
}
.breadcrumbs ul li span {
	margin: 0px 10px;
	font-size: 11px;
	font-weight: 400;
	color:#fff;
}
.breadcrumbs.style2 ul li span {
	font-size: 14px;
}
.breadcrumbs ul li a{
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}
.breadcrumbs ul li a:hover{
	opacity:0.8;
	color:#fff !important;
}
.breadcrumbs.style2 ul li a{
	font-weight:500;
}
.breadcrumbs.style2 ul li a:hover{
	color:var(--accent-color);
}
.breadcrumbs .bread-menu {
	color: #fff;
	z-index: 555;
	position: relative;
	line-height: initial;
	font-size: 0;
	margin-top: 15px;
}
.breadcrumbs .bread-menu span {
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 16px;
	padding-right: 8px;
	margin-right: 8px;
	display: inline-block;
	font-weight: 500;
}
.breadcrumbs .bread-menu span:hover{
	color:var(--accent-color);
}
.breadcrumbs .bread-menu span:last-child{
	margin:0;
	padding:0;
}
.breadcrumbs .bread-menu span + span::before {
	content: "\f105";
	font-family: 'FontAwesome';
	left: -7px;
	position: relative;
}
/* Blog Single */
.breadcrumb.bread-two {
	background: #F8F9FA;
	margin: 0;
	padding: 30px 0;
	border-top: 1px solid #cccccc61;
	text-align: center;
}
.breadcrumb.bread-two:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu {
	color: var(--accent-color);
	font-size: 0;
	line-height: initial;
}
.breadcrumb.bread-two .bread-menu span {
	color: var(--heading-color);
	font-size: 14px;
	margin-right: 15px;
	padding-right: 15px;
	position: relative;
	transition: all 0.3s ease;
	font-weight: 500;
}
.breadcrumb.bread-two .bread-menu span:last-child{
	margin:0;
	padding:0;
}
.breadcrumb.bread-two .bread-menu span:hover{
	color:var(--accent-color);
}
.breadcrumb.bread-two span::before {
	content: "/";
	position: absolute;
	right: -4px;
	width: 9px;
	height: 9px;
	top: 2px;
	border-radius: 100%;
	font-size: 12px;
}
.breadcrumb.bread-two .home::before {
	content: "\f015";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 5px;
}
.breadcrumb.bread-two span:last-child:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu span span{
	margin:0;
	padding:0;
}
.breadcrumb.bread-two .bread-menu span span:before{
	display:none;
}
.breadcrumb.bread-two .bread-menu span.current-item {
	color: var(--accent-color);
}
/*====================================
	End BreadCrumbs CSS
======================================*/

/*====================================
	Pagination CSS
======================================*/
.pagination-main {
	text-align: center;
	margin: 50px 0 0 0;
	display: flex;
	justify-content: center;
}
.pagination-main.full-width {
	text-align: center;
}
.pagination-main.full-width{
	text-align: left;
}
.pagination-list{
	list-style:none;
}
.pagination-list.pagination-list__center{
	justify-content: center;
}
.pagination-main .pagination-list li a, .pagination-list .page-numbers {
	display: inline-block;
	width: 45px;
	height: 46px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0px 4px 20px 0px rgba(21, 32, 70, 0.07);
	box-shadow: 0px 4px 20px 0px rgba(21, 32, 70, 0.07);
	line-height: 1.5em;
	border-radius: 10px;
	color: var(--primary);
}
.pagination-main .pagination-list li.active a, .pagination-main .pagination-list li:hover a, .pagination-list span.current, .pagination-list .page-numbers:hover {
	background: var(--accent-color);
	color: #fff;
	border-color: transparent !important;
}
.pagination-main .pagination-list li a span {
	color: inherit !important;
}
.pagination-main .pagination-list li .cs_accent_color,.pagination-main  .pagination-list  .next span,
.pagination-main  .pagination-list  .prev span {
	color: var(--accent-color);
}
.pagination-list a,
.pagination-list span{
	transition: all 0.3s ease;
}
.pagination-list .page-numbers:hover span {
	color: #fff;
}

.pagination-list {
	border-radius: 100px;
	display: flex;
	padding: 0;
	margin: 0;
	gap: 25px;
}
.pagination-plugin.align-left {
	justify-content: start;
}
/*====================================
	End Pagination CSS
======================================*/

/*====================================
	Wordpress Default CSS
======================================*/
p b, strong {
	color: var(--secondary);
}
.sidebar-main {
	background-color: var(--accent-light);
	padding: 40px;
}
.sidebar-main .widget ul li a {
	line-height: 30px;
	position: relative;
	width: 100%;
	display: block;
	background: transparent;
	font-weight: 300;
}
.sidebar-main .widget ul li a:hover{
	color:var(--accent-color) !important;
}
.single-news.news-large img {
	width: auto;
}
.widget {
	border-radius: 0;
}
.sidebar-main .widget {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--br-color) !important;
}
.sidebar-main .widget:last-child{
	margin:0 !important;
	border:none !important;
}
.wp-block-search .wp-block-search__label{
	display: none;
}
.wp-block-archives-dropdown label,
.wp-block-search .wp-block-search__label {
	color: var(--heading-color);
	font-weight: 500;
	padding-bottom: 5px;
}
.widget.widget_search {
	border: none;
}
/* Widget Select CSS*/
.widget select, .wp-block-categories select, .wp-block-archives select {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	margin-top:10px;
	appearance: none;
	background-image: url('assets/img/select-arrow.png');
	background-repeat: no-repeat;
	background-position: right;
	background-color: transparent;
	color: var(--heading-color);
	background-size: 24px;
}
/* Sidebar Default CSS */
.widget ul li {
	line-height: 35px;
	margin-bottom: 5px;
	list-style: none !important;
	padding-bottom: 5px;
}
.widget ul li:last-child{
	margin:0;
}
.widget a, .widget ul li a {
	color: var(--heading-color);
}
.widget ul li a:hover {
	color: var(--accent-color);
}
/* Akismet Widget */
.widget_akismet_widget .a-stats a {
	background: #F60 !important;
	border: none;
	color: #fff;
}
.widget_akismet_widget .a-stats a strong {
  color: #fff;
}

.sidebar-main .wp-block-social-links {
	margin-top: 10px;
}
/* Widget MENU */
.widget_nav_menu ul {
    border-radius: 8px;
    overflow: hidden;
    margin-left: 15px;
}
.widget_nav_menu ul li a {
    padding: 5px 10px;
    background: #fff;
    color: #666;
    display: block;
    font-size: 15px;
}
.widget_nav_menu ul li a::before, .widget_categories ul li a::before {
	content: "\f101";
	font-family: 'FontAwesome';
	margin-right: 12px;
	float: right;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.widget_nav_menu ul li a:hover:before,
.widget_categories ul li a:hover:before{
	color:#fff;
}

.widget_nav_menu ul li a:hover{
	color:var(--accent-color);
}
.widget_nav_menu ul li a i {
	display: inline-block;
	margin-right: 15px;
}
.about-us-text p {
	font-weight: 500;
	line-height: 24px;
	color: var(--body-color) !important;
}
/* Category List */
.widget_categories ul li {
	margin-bottom: 5px;
	padding-bottom: 5px;
}
.widget_categories ul li:last-child{
	margin-bottom:0px;
}
.widget.widget_categories ul li a {
    font-size: 15px;
}
.widget_categories ul li a:hover{
	color:var(--accent-color);
}
.widget_categories ul li a span{
	display:inline-block;
	color:var(--accent-color);
}

.widget_recent_entries .post-date,.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
	font-size: 13px;
	font-weight: 400;
}
.recentcomments,.tagcloud {
	padding-top: 5px;
}
.widget_recent_comments a,#recentcomments a {
  font-weight: 500;
  color: var(--heading-color);
}
.widget_recent_comments a:hover{
	color: var(--accent-color);
}
.widget_recent_comments .wp-block-latest-comments__comment-link, .widget_recent_comments .recentcomments a, .wp-block-latest-comments__comment .wp-block-latest-comments__comment-link {
	color: var(--accent-color) !important;
}
.widget_recent_comments .wp-block-latest-comments__comment-link:hover,#recentcomments a:hover,.wp-block-latest-comments__comment .wp-block-latest-comments__comment-link:hover{
	color:var(--heading-color);
}
.widget_recent_comments .comment-author-link a, .wp-block-latest-comments__comment a {
	color: var(--heading-color) !important;
}
.widget_recent_comments .comment-author-link a:hover{
	color:var(--accent-color);
}
#recentcomments a::before {
	display: none;
}

.wp-block-latest-comments li {
	border-bottom: 1px solid #cccccc87;
	padding-left: 0px;
}
.wp-block-latest-comments li:last-child{
	padding:0;
	border:none;
}
.wp-block-latest-comments__comment-date {
	display: block;
	font-size: 13px;
}
.wp-block-latest-comments__comment-excerpt p {
	color: var(--heading-color);
	line-height: 22px;
	margin: 0;
	font-weight: 400;
	margin-top: 5px;
}
.wp-block-latest-comments li {
	padding-bottom: 12px;
	margin-bottom: 12px;
}
.wp-block-latest-comments li:last-child{
	padding:0;
	margin:0;
}
.sidebar-main .widget_recent_comments ul li a {
	line-height: initial !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline !important;
}
.widget_recent_comments .comment-author-link {
	display: inline !important;
}
.sidebar-main .widget_recent_comments ul li {
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.sidebar-main .widget_recent_comments ul li:last-child{
	margin:0;
}
.sidebar-main .widget.widget_recent_comments a:hover {
	color: var(--heading-color) !important;
}
.wp-block-categories {
	padding: 0;
	margin: 0;
}
.sidebar-main  .wp-block-categories li {
	display: block;
  }
  .sidebar-main .wp-block-categories li a {
	width: initial !important;
	display: inline-block !important;
	color: var(--body-color) !important;
	font-size: 18px;
}
.sidebar-main .wp-block-categories li a:hover{
	text-decoration: none !important;
  color: var(--accent-color) !important;
}
.sidebar-main .wp-block-categories li {
	font-size: 16px;
	color: var(--body-color) !important;
	margin-bottom: 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
}
  .sidebar-main .widget  .wp-block-categories li:hover,
  .sidebar-main .widget .wp-block-categories li:hover a,
  .sidebar-main .widget .wp-block-categories li a:hover,
  .sidebar-main .widget ul.wp-block-categories li a:hover {
	color: var(--accent-color) !important;
  }

/* Subscribe */
@media (min-width: 992px) {
.glowify-blog-archive .sidebar-main {
	padding-left: 40px;
}
.glowify-blog-archive.left-sidebar .sidebar-main{
	padding-left: 0px;
	padding-right:40px;
}
}

.blog-sidebar .subscribe form,
.widget_mc4wp_form_widget .form-main{
	position:relative
}
.widget_mc4wp_form_widget .mc4wp-form-fields{
	position:relative;
}
.blog-sidebar .subscribe h2,
.blog-sidebar .widget_mc4wp_form_widget .widget-title {
	border: none !important;
	margin-bottom: 20px;
}
.widget_mc4wp_form_widget label {
	overflow: hidden;
	left: 0;
	top: 0;
	margin: 0 !important;
	font-size: 0px;
	display: block;
}
.footer .widget_mc4wp_form_widget .widget-title:before {
	display: none;
}
/* Widget Select */
.single-widget select {
	width: 100%;
	padding: 12px;
	font-size: 14px;
	border: 1px solid #ebebeb;
	background: #F5F8F9;
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	user-select: none;
	-ms-user-select: none;
	background-image: url(assets/img/select-arrow.png) !important;
	background-repeat: no-repeat !important;
	background-position: right 50% !important;
}
/* Widget Tags*/
.widget_tag_cloud .tagcloud a {
	color: var(--heading-color);
	font-size: 14px !important;
	display: inline-block;
	padding: 8px 12px;
	background: #fff;
	margin-top: 5px;
}
.widget_tag_cloud .tagcloud a:hover{
	background:var(--accent-color);
	color:var(--heading-color);
}
/* Tag */
.widget_tag_cloud .tagcloud a {
	background: #f6f6f6;
}
.widget_tag_cloud .tagcloud a:hover{
	background:var(--accent-color);
	color:var(--heading-color);
}
/* Widget RSS */
.widget_rss .rsswidget {
  display: inline-block;
}
.widget_rss ul.wp-block-rss li a, .widget_rss ul li a {
	line-height: 26px !important;
	color: var(--heading-color);
	margin-bottom: 5px;
}
.widget_rss ul.wp-block-rss li a:hover, .widget_rss ul li a:hover,ul.wp-block-rss li a:hover{
	color:var(--accent-color);
}
.widget_rss ul.wp-block-rss li, .widget_rss ul li {
	margin-bottom: 12px;
	padding-bottom: 12px;
}
.widget_rss .widget-title a {
	color: var(--heading-color);
	font-size: 20px;
	line-height: 28px;
}
.widget_rss .rss-date, .widget_rss cite {
	font-size: 13px;
}
.widget_rss cite{
	margin-top:5px;
}
.widget_rss .rss-date {
	display: block;
	line-height: initial;
}
.blog-detail ul li a:hover {
	color: var(--accent-color);
}
.sidebar-main .widget.widget_rss h2::before {
	display: none;
	padding: 0;
}
.widget_rss .rssSummary, .wp-block-rss__item-excerpt {
	line-height: 24px;
	font-weight: 400;
	color: var(--heading-color);
	font-size: 14px;
}
.widget_rss .widget-title {
	padding-left: 0 !important;
}
.sidebar-main .widget_rss ul li a::before {
	top: 14px;
}
.wp-block-rss__item-author, .widget_rss cite {
	color: var(--accent-color);
	font-style: initial;
}
.page-links {
	padding-left: 30px;
}
.btn.btn-learmore-2.post-btn span {
	transform: rotate(0);
	background: var(--accent-color);
}
/* RSS Block */
.wp-block-rss__item-excerpt, .widget_rss .rssSummary {
	margin-top: 10px;
}
.wp-block-rss__item-author, .wp-block-rss__item-publish-date {
	display: initial;
	font-size: 13px;
}

/* Default Search */
.search-form{
	position:relative;
}
.search-form input[type="search"] {
	width: 100%;
	height: 50px;
	border-radius: 0px;
	padding: 0 95px 0 20px;
	font-size: 14px;
	border: 1px solid rgba(48, 48, 48, 0.5);
}
.search-form label {
	width: 100%;
	position: relative;
	margin: 0;
}
.search-form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent-color);
	color: #fff;
	height: 50px;
	border: none;
	border-radius: 0px;
	padding: 0 20px;
	cursor: pointer;
	height: 100%;
}
.search-form input[type="submit"]:hover{
	background:var(--heading-color);
	color:#fff;
}
.glowify-entry-page ol.comment-list li {
	padding-left: 0;
}
/* Password Form */
form.post-password-form input {
    border-radius: 0px;
    height: 40px;
}
form.post-password-form input[type="submit"] {
    background: var(--accent-color);
    padding: 9px 15px;
    color: var(--heading-color);
    border-radius: 0px;
    border: none;
}
form.post-password-form input[type="submit"]:hover{
	background:var(--heading-color);
	color:#fff;
}
/* Caption */
.gallery-caption {
	display: block;
	font-size: 13px;
	line-height: 18px;
	margin-top: 8px;
}
.sidebar-main .gallery-size-thumbnail .gallery-item {
	margin: 0;
}
/* Pagiantion */
.page-links{
	margin-top:10px;
}
.page-links a, .page-links span {
	padding: 4px 12px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	width: auto;
	background: var(--heading-color);
	color: #fff;
}
.page-links span.current,.page-links a:hover {
    background: var(--accent-color);
    color: var(--heading-color);
}
.sidebar-main .widget_nav_menu ul{
	margin:0;
	padding-left:0px;
}
.sidebar-main .widget_nav_menu ul ul{
	padding-left:15px;
}
.sidebar-main .widget_nav_menu ul ul ul{
	padding-left:10px;
}

.widget_nav_menu ul li a::before {
	top: 15px;
}
.sidebar-main .widget_nav_menu ul ul {
	padding-left: 15px;
	padding-top: 10px;
}
.wp-block-latest-posts li a {
  line-height: 28px !important;
}
.wp-block-latest-posts li a:before {
  top: 15px !important;
}
ol.comment-list li {
	line-height: 24px;
	margin-bottom: 5px;
}
ol.comment-list li:last-child{
	margin-bottom:0;
	padding-bottom:0;
}
.comment-list li.comment::before {
	display: none;
}
ol.comment-list li a:hover{
	color:var(--accent-color);
}
.comment-list ul li a::before, .blog-detail ul li a::before, .blog-single ul li::before,.glowify-entry-page ul li:before{
	top: 14px;
}
.glowify-entry-page ul li::before {
	top: 15px;
}
ol.comment-list li:before{
	top:12px;
}
.logged-in-as {
	margin-bottom: 20px;
}

table {
	width: 100%;
	margin-bottom: 25px;
}
table th {
	font-weight: 400 !important;
	color: var(--body-color);
}
table td, table th {
	border-top: 1px solid var(--br-color) !important;
	padding: 14px 10px !important;
}
table tr:last-child th, table tr:last-child td{
	border-bottom: 1px solid var(--br-color) !important;
} 
  
.blog-single .comment-list {
	background: transparent;
	padding: 0;
	margin: 0;
	margin-bottom: 50px;
}
.share-tag.post-tag li a:hover {
	color: var(--accent-color);
}
p a {
	color: var(--accent-color);
}
p.has-large-font-size {
    line-height: 43px;
}

ol {
  padding-left: 18px;
}
ol li ol {
  padding-left: 10px;
}

.share-tag.post-tag {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.share-tag.post-tag h5 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	font-size: 16px;
	line-height: 12px;
	color: #202124;
	margin-right: 8px;
}
.share-tag.post-tag ul {
	display: flex;
	align-items: center;
	gap: 10px;
}
.share-tag.post-tag ul li a {
	color: var(--heading-color);
	display: inline-block;
	transition: 0.3s;
	font-weight: 400;
	font-size: 12px !important;
	border-radius: 5px;
	background-color: #ECEEF2;
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	box-shadow: none;
	font-weight: 500;
	margin: 0px 8px 8px 0px !important;
	font-size: 14px !important;
}
.wp-block-tag-cloud, .share-tag.post-tag ul {
	position: relative;
}
.wp-block-tag-cloud {
	margin: 0 !important;
}
.wp-block-tag-cloud a, .share-tag.post-tag ul a {
	margin-top: 10px;
}
.share-tag.post-tag ul li a:hover {
	background: var(--accent-color);
}
.share-tag.post-tag ul li {
	display: inline-block;
	padding-left: 0;
}
.share-tag.post-tag ul li:last-child{
	margin:0;
	padding:0;
	border:none;
}
.share-tag.post-tag ul {
	flex-wrap: wrap;
}

.wp-block-tag-cloud a {
	background-color: transparent;
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	box-shadow: none;
	margin: 0px 8px 8px 0px !important;
	font-size: 14px !important;
	display: inline-block;
	padding: 6px 20px;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	font-size: 18px !important;
	border-radius: 5px;
	font-weight: 300;
	font-size: 16px !important;
}
.wp-block-tag-cloud a:hover{
	color: #fff;
	background-color: var(--accent-color);
}
.wp-caption {
	padding: 20px 0;
}
.wp-block-latest-comments {
	margin: 0;
	margin-top: 10px !important;
}
/* Widget Calender CSS */
.widget .calendar_wrap,.gallery-size-thumbnail {
	padding-top: 5px;
}
.calendar_wrap th,
.calendar_wrap td {
	padding: 5px 10px;
	text-align: center;
	display: nherit;
	border: 1px solid #ebebeb;
	color: var(--heading-color);
}
.calendar_wrap #wp-calendar {
	max-width: 100%;
	margin-bottom: 15px;
}
.calendar_wrap #wp-calendar thead th,
.calendar_wrap #wp-calendar tfoot td,
.wp-block-calendar table th {
	background: #f6f6f6;
	color: var(--heading-color);
	font-size: 15px;
	font-weight: 500;
}
.calendar_wrap #wp-calendar caption {
	caption-side: top;
	background: #FFDC60;
	color: #fff;
	text-align: center;
	padding: 10px;
	font-size: 15px;
}
.calendar_wrap #wp-calendar tbody tr a {
	color: #fff;
	border-radius: 100%;
	display: inline-block;
	width: 26px;
	height: 26px;
	line-height: 26px;
	padding: 0;
	background: #FFDC60;
	padding: 0;
	text-align: center;
}
.calendar_wrap #wp-calendar tfoot tr a {
	color: #353535;
}
.calendar_wrap #wp-calendar tfoot tr a:hover{
	color:var(--accent-color);
}
.wp-block-gallery ul.blocks-gallery-grid li {
	padding-left: 0px !important;
}
.blocks-gallery-caption {
	padding-bottom: 10px;
}
.has-large-font-size {
	color: var(--heading-color);
}
.wp-calendar-nav {
	text-align: center;
}
.wp-block-calendar table caption {
	color: var(--heading-color);
}
.wp-block-calendar table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 5px;
}
.wp-calendar-nav a {
	color: #fff;
	padding: 5px 10px;
	display: inline-block;
	background: #232323;
	text-decoration: none;
}
.wp-calendar-nav a:hover {
	background: #FFDC60;
	color: #fff;
}
.wp-block-image {
	overflow: hidden;
	margin-bottom: 35px;
}
.widget_archive select {
	margin-top: 5px;
}
.widget_recent_entries ul li a:before {
  display: none;
}
.widget_recent_entries ul li a {
	padding: 0 !important;
	font-weight: 500;
	color: var(--accent-color);
	line-height: 26px !important;
}
.widget_recent_entries ul li a:hover{
	color:var(--heading-color);
}
.widget_recent_entries ul li {
	padding-bottom: 12px;
	margin-bottom: 8px;
}
.wp-block-latest-posts__post-excerpt {
  margin-top: 0;
  line-height: 25px;
}
.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date {
  display: inline-block;
  line-height: initial;
}
.wp-block-latest-posts__post-date {
	display: inline-block;
	margin-left: 0;
	background: none !important;
	line-height: 24px;
	color: var(--secondary);
	font-size: 16px;
}
.wp-block-latest-posts__post-date::before {
	font-family: "Font Awesome 6 Free";
	content: "\f017";
	color: var(--ternary);
	display: inline-flex;
	gap: 10px;
	margin-right: 10px;
	font-weight: 900 !important;
}
.wp-block-latest-posts__post-excerpt {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: var(--heading-color);
	margin-top: 5px;
}
ul.wp-block-latest-posts li a {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: 500 !important;
	line-height: 1.41em !important;
	font-family: var(--secondary-font);
}
.wp-block-latest-posts.wp-block-latest-posts__list{
	margin:0;
}
.wp-block-latest-posts__featured-image {
	margin-bottom: 5px;
	padding-top: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
	clear: both;
	margin-bottom: 20px;
}
.sidebar-main .wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
	padding: 0;
	margin: 0;
}
.footer-news-list li .wp-block-latest-posts__post-title {
	font-weight: 600;
	font-size: 17px;
	color: var(--it-common-white);
	margin-bottom: 0;
	line-height: 1.2;
	transition: 0.3s;
	display: block;
}

.comments-area .comment-list .comment-content ol li:before {
  display: none;
}
.comments-area .comment-list .comment-content ol li {
  padding-left: 2px;
}
.wp-block-cover p:not(.has-text-color) {
	color: #fff;
}

.blocks-gallery-grid,.blocks-gallery-grid li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blocks-gallery-grid li:before {
  display: none;
}
.blocks-gallery-grid {
	margin-left: -15px;
}
.blog-detail p{
	line-height:initial;
}
/* BLog Sidebar Widget */
.sidebar-main .widget .widget {
	box-shadow: none;
}
.sidebar-main .widget ul li {
	padding-left: 0px;
	line-height: 30px;
}
.sidebar-main .widget ul li:last-child {
	border: none;
	padding: 0;
	margin: 0;
}
.wp-block-latest-comments__comment a:hover{
	color:var(--accent-color);
}

/* Categories */
.wp-block-categories li {
	display: flex;
	align-items: center;
	font-weight: 400 !important;
	font-size: 14px;
	gap: 10px;
}
.wp-block-categories li a {
	color: var(--heading-color) !important;
}
.sidebar-main ol {
	padding-left: 0;
}
.sidebar-main .widget h2 {
	position: relative;
	font-size: 18px;
	line-height: 1.25em;
	margin-bottom: 28px;
	font-weight: 400 !important;
}
.wp-block-search .wp-block-search__label {
    width: auto;
}
.wp-block-search .wp-block-search__input {
	margin: 0 !important;
	width: 100%;
	border: 1px solid var(--br-color);
	height: 50px;
	padding: 5px 40px 5px 15px;
	border-radius: 5px;
	outline: none;
	background: transparent;
	background: #fff;
}
.wp-block-search .wp-block-search__input:focus {
	border-color: var(--accent-color) !important;
}
.wp-block-search .wp-block-search__button {
	right: 0;
	font-size: 0;
	line-height: 50%;
	position: absolute;
	right: 0;
	height: 50px;
	border: none;
	width: 55px;
	margin: 0;
	/* padding: 0 0 0 10px; */
	top: 0;
	background-color: none !important;
	-webkit-mask-size: contain;
	background: none !important;
}
.wp-block-search .wp-block-search__button::before{
	content: "";
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 100%;
	height: 18px;
	transition: all 0.3s ease;
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 50%;
	margin-left: -11px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.91484 16.976C4.64396 18.712 6.95263 19.7477 9.39783 19.8844C11.843 20.0211 14.2525 19.249 16.164 17.7164L20.1056 21.6731C20.2082 21.7767 20.3303 21.8589 20.4649 21.915C20.5994 21.9711 20.7437 22 20.8895 22C21.0353 22 21.1796 21.9711 21.3141 21.915C21.4487 21.8589 21.5708 21.7767 21.6734 21.6731C21.7769 21.5703 21.859 21.4481 21.9151 21.3134C21.9711 21.1787 22 21.0343 22 20.8884C22 20.7425 21.9711 20.598 21.9151 20.4634C21.859 20.3287 21.7769 20.2064 21.6734 20.1037L17.6655 16.1471C19.0951 14.3978 19.8754 12.2069 19.8737 9.94685C19.8737 7.30878 18.8268 4.77876 16.9633 2.91336C15.0998 1.04797 12.5723 0 9.93688 0C7.30146 0 4.77399 1.04797 2.91046 2.91336C1.04694 4.77876 2.76361e-05 7.30878 2.76361e-05 9.94685C-0.00306236 11.2533 0.252996 12.5473 0.753353 13.754C1.25371 14.9606 1.98841 16.0557 2.91484 16.976ZM4.47161 4.47608C5.92841 3.01782 7.90426 2.19857 9.96448 2.19857C12.0247 2.19857 14.0006 3.01782 15.4574 4.47608C16.9142 5.93435 17.7326 7.91218 17.7326 9.97448C17.7326 12.0368 16.9142 14.0146 15.4574 15.4729C14.0079 16.9238 12.042 17.7389 9.99209 17.7389C7.94221 17.7389 5.9763 16.9238 4.52682 15.4729C3.07734 14.0219 2.26303 12.054 2.26303 10.0021C2.26303 7.95018 3.07734 5.98228 4.52682 4.53134L4.47161 4.47608Z' fill='currentColor'/%3E%3C/svg%3E");
}
.wp-block-search__inside-wrapper {
	position: relative;
}
.wp-block-latest-posts {
	padding: 0 !important;
}
.wp-block-latest-posts__featured-image {
	left: 0;
	width: 94px;
	height: 94px;
	flex: 0 0 auto;
	object-fit: cover;
	overflow: hidden;
	margin: 0;
	/* float: left; */
	display: block;
	margin-bottom: 10px;
	float: left;
	margin-right: 15px;
	border-radius: 4px;
}
.widget_categories ul li a,
.widget_archive ul li a,
.widget_nav_menu ul li a,
.widget_pages ul li a,
.widget .wp-block-page-list li a{
	color:var(--heading-color);
}

article.page .page-links {
	padding-top: 15px;
}
.post-tag ul li::before {
	display: none;
}
.blog-single .blog-detail ul li::before {
	top: 15px;
}

.sidebar-main .widget_categories ul li a,.sidebar-main .widget_archive ul li a {
	display: inline !important;
}
.sidebar-main .widget_categories ul li a::before, .sidebar-main .widget_archive ul li a::before {
	top: 12px;
}
.sidebar-main .widget_pages ul li a::before{
	top:16px !important;
}
.widget_meta ul li a::before {
	top: 16px;
}
.widget_recent_comments ul li {
	margin-bottom: 6px !important;
	padding-bottom: 6px !important;
	line-height: 25px !important;
	padding-top: 0;
}
.blockquote strong {
  color: #fff !important;
}
blockquote strong {
  color: #fff;
}
blockquote code {
  color: var(--accent-color);
}
/*====================================
	Wordpress Default Sidebar
======================================*/

/*====================================
	Others CSS
======================================*/
.cs_footer_main {
	background-color: var(--accent-light);
}
.footer .widget_nav_menu ul li {
	margin-bottom: 0px;
	position: relative;
	padding-bottom: 0px;
	border: none;
}
.footer .widget_nav_menu ul li a {
	display: inline-block;
	color: #B4B4B4;
	padding: 0;
	margin: 0;
	background: transparent;
	font-weight: normal;
	font-size: 16px;
}
.footer .widget_nav_menu ul {
    box-shadow: none;
    margin: 0;
}
.footer .widget_nav_menu ul li a::before{
	display:none;
}
.footer .widget_nav_menu ul li a:hover {
	color:var(--accent-color);
}
/* Footer Mail Chimp */
.footer .widget_mc4wp_form_widget .widget-title {
	margin-bottom: 0px;
	font-size: 18px;
	font-weight: 600;
	text-align:center;
}
.footer .widget_mc4wp_form_widget .mc4wp-form-fields p:last-child {
    margin: 0;
    position: absolute;
    right: 0;
    top: -9px;
    border-radius: 0px;
}
.footer .widget_mc4wp_form_widget form {
    background: #fff;
    padding: 15px;
    line-height: initial;
}
/* Footer News */
.footer-news .single-f-news .content {
  padding-left: 85px;
}
.footer-news .single-f-news .content .title {
	font-size: 14px;
	margin: 0;
}
.footer .footer-newsletter .address {
	color: #777;
	font-size: 15px;
	margin-bottom: 20px;
}
.footer .single-f-news .post-meta i {
    color: var(--accent-color);
}
.footer .sidebar-main .address-widget-list li {
	display: block;
	margin-bottom: 10px;
	line-height: 25px;
	position: relative;
	padding-left: 40px !important;
	border: none;
	padding-bottom: 0;
}
.footer .address-widget-list li,
.footer .address-widget-list li a {
    font-weight: normal;
    color: #ccc;
    font-size: 15px;
}
.footer .address-widget-list li a{
	padding-left: 0px !important;
}
.footer .address-widget-list li a:before{
	display:none;
}
.footer .address-widget-list li i {
	color: #fff;
	text-align: center;
	border-radius: 100%;
	font-size: 15px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid transparent;
	margin-top: -15px !important;
}
.footer .address-widget-list li:hover i{
	background:#fff;
	color:var(--accent-color);
}
.footer .sidebar-main .address-widget-list li:last-child {
	margin-bottom: 0px;
}
.footer .address-widget-list li span{
	color:var(--accent-color);
	display:inline-block;
}
.footer_contact p {
	margin-bottom: 15px;
}
/* Social */
.footer .social{
	margin-top:22px;
}
.footer .sidebar-main .social li {
	display: inline-block;
	margin: 0 10px 0 0;
	border: none;
}
.footer .social li:last-child{
	margin-right:0px;
}
.footer .sidebar-main .social li a {
	display: block;
	font-size: 16px;
	text-align: center;
	width: 32px;
	height: 32px;
	line-height: 32px !important;
	border: 1px solid #fff !important;
	border-radius: 100%;
	background: #fff;
	color: var(--heading-color);
	padding:0;
}
.footer .social-icons li:before,.footer .sidebar-main .social li a:before {
  display: none;
}

/* Copyright */
.footer .copyright {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ebebeb3b;
	background: #fff;
	z-index: 10000;
	position: relative;
}
.footer .copyright-content p {
    font-size: 15px;
    color: inherit;
}
.footer .copyright-content p span{
	font-size:17px;
	font-weight:800;
	text-transform:uppercase;
}
.footer .copyright-content a:hover{
	color:var(--accent-color);
}

#footer-menu li {
  display: inline-block;
  font-size: 13px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #cccccca1;
  line-height: initial;
}
#footer-menu li:first-child {
  margin: 0;
  padding: 0;
  border: none;
}
#footer-menu li:hover a {
	color: var(--accent-color);
}
.footer-logo .img-logo img {
	max-width: 150px;
}
#footer-menu li{
	position:relative;
}
.newsletter-main .mc4wp-form input {
	background: #f6f6f6;
}
.newsletter-2__input-box input {
	height: 80px !important;
	border-radius: 50px;
	margin: 0;
}
/* Footer Widget */
.footer .sidebar-main .widget {
	box-shadow: none;
	padding: 0;
	background: transparent;
	border:none;
}
.footer #recentcomments .comment-author-link a, .footer .wp-block-latest-comments__comment a {
  color: #ccc;
}
.footer .sidebar-main .widget ul li.recentcomments {
	color: var(--accent-color);
}
.footer .widget_recent_entries .post-date, .footer .wp-block-latest-posts__post-author,
.footer .wp-block-latest-posts__post-date {
	color: #fff;
}
/*  Nav & Pages */
.footer .widget_categories ul li a, .footer .widget_archive ul li a, .footer .widget_nav_menu ul li a, .footer .widget_pages ul li a, .footer .widget .wp-block-page-list li a, .footer .widget_meta ul li a {
	color: var(--it-common-white);
	font-weight: 400;
	transition: 0.3s;
}
/*  Calendar */
.footer #calendar_wrap th, .footer #calendar_wrap td {
	color: #fff;
}
.footer .wp-block-calendar tbody td {
	color: #fff;
}
.footer-top.sidebar-main .wp-calendar-nav a:hover {
	background: #FFDC60;
	color: #fff;
}
.footer .widget_rss .widget-title a {
  color: #fff;
}
.footer .widget_rss .rss-date {
	color: #ccc;
}
.footer .widget_rss ul.wp-block-rss li a, .footer .widget_rss ul li a {
	color: #fff;
}
.footer .wp-block-calendar table caption,
.footer .wp-block-latest-comments__comment-meta,
.footer .wp-block-latest-comments__comment-date {
	color: #fff;
}
.footer .calendar_wrap th, .footer .calendar_wrap td {
	color: #ccc;
}
.footer .sidebar-main .widget_nav_menu ul ul {
	padding-left: 0;
}
.footer .widget_rss .rssSummary {
  color: #ccc;
}
.footer .wp-calendar-nav a {
	background: #fff;
	color: var(--heading-color);
}
.footer .widget_recent_comments li a::before {
	display: none;
}
.footer .sidebar-main .widget_recent_comments ul li a {
	color: #ccc !important;
}
.footer .sidebar-main .widget_recent_comments ul li a:hover{
	color:#fff !important;
}
.footer .single-widget .widget-title, .footer .wp-block-heading {
	font-size: 21px;
	/* color: #fff; */
	padding-bottom: 30px;
	margin: 0;
}
.footer {
	background: var(--primary);
}
.footer ul li a {
	color: var(--heading-color) !important;
}

.cs_bottom_footer {
	display: flex !important;
	justify-content: center !important;
	gap: 5px !important;
}
.footer-newsletter-main {
  position: relative;
}
.footer-shape-bg {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.footer-shape-bg img {
	width: 100%;
	height: 100%;
}
.footer-top div {
	position: relative;
	z-index: 333;
}

.footer-news-list {
	position: relative;
  }
  .footer-news-list .wp-block-latest-posts__featured-image {
	width: 85px;
	height: 85px;
	position: absolute;
	left: 0;
}
  .footer-news-list li .wp-block-latest-posts__post-title,.footer-news-list li a {
	color: #fff !important;
  }
  .footer-news-list .wp-block-latest-posts__featured-image img {
	border-radius: 100%;
  }

  .cs_footer_top {
	border-bottom: 1px solid #353535;
  }

  .cs_copyright a {
	color: var(--accent-color);
  }

  .cs_widget_title,
  .cs_newsletter_title {
	line-height: 1.6em;
  }

  .cs_menu_widget {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(2, 1fr);
  }

  .cs_text_widget p {
	margin: 0;
  }
  .cs_text_widget + .cs_social_btns {
	margin-top: 30px;
  }

  .cs_footer_row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px 80px;
	padding: 90px 0;
  }
  @media (max-width: 1400px) {
	.cs_footer_row {
	  gap: 50px 60px;
	}
  }
  @media (max-width: 1199px) {
	.cs_footer_row {
	  gap: 50px 30px;
	}
  }
  @media (max-width: 991px) {
	.cs_footer_row {
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	  gap: 50px 40px;
	  padding: 60px 0;
	}
  }
  .cs_footer_row .cs_footer_col {
	-webkit-box-flex: 1.2;
		-ms-flex: 1.2;
			flex: 1.2;
  }
  @media (max-width: 991px) {
	.cs_footer_row .cs_footer_col {
	  -webkit-box-flex: 0 !important;
		  -ms-flex: none !important;
			  flex: none !important;
	  width: calc(50% - 20px);
	}
  }
  @media (max-width: 470px) {
	.cs_footer_row .cs_footer_col {
	  width: 100%;
	}
  }
  .cs_footer_row .cs_footer_col:first-child {
	-webkit-box-flex: 1.5;
		-ms-flex: 1.5;
			flex: 1.5;
  }
  .cs_footer_row .cs_footer_col:nth-child(2) {
	-webkit-box-flex: 1;
		-ms-flex: 1;
			flex: 1;
  }
  
  .cs_footer_widget_menu {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  .cs_footer_widget_menu li:not(:last-child) {
	margin-bottom: 10px;
  }
  
  .cs_footer_text_widget p {
	margin-bottom: 0;
  }
  .cs_footer_text_widget img + p {
	margin-top: 35px;
  }
  
  .cs_copyright a {
	color: var(--accent-color);
  }
  
  .cs_footer_bottom {
	border-top: 1px solid var(--body-color);
  }
  
  .cs_footer_bottom_in {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 23px 0;
	gap: 5px 25px;
  }
  @media (max-width: 767px) {
	.cs_footer_bottom_in {
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  text-align: center;
	}
  }
  .cs_footer_bottom_in .cs_footer_widget_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 2px 30px;
  }
  .cs_footer_bottom_in .cs_footer_widget_menu li {
	margin-bottom: 0;
  }
  .cs_footer_widget_menu a,
  .cs_copyright a,
  .cs_page_heading .breadcrumb a,
  .cs_footer_link_hover a span,
  .cs_footer_link_hover p a{
	background-repeat: no-repeat;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
	background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
	-webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
	transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out;
	background-position: 100% calc(100% - 0px);
	background-size: 0 1px;
  }
  .cs_footer_widget_menu a:hover,
  .cs_copyright a:hover,
  .cs_page_heading .breadcrumb a:hover,
  .cs_footer_link_hover p a:hover{
	background-size: 100% 1px;
	background-position: 0 calc(100% - 0px);
  }
  
  .cs_footer_link_hover a span{
	-webkit-transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out !important;
	transition: background-size 0.42s cubic-bezier(0.49, 0.49, 0.08, 1), color 0.27s ease-out !important;
  }
  .cs_footer_link_hover a span:hover {
	background-size: 100% 1px !important;
	background-position: 0 calc(100% - 0px) !important;
  }
  
  .cs_footer.cs_style_1 {
	padding-top: 1px;
	margin-top: 134px;
  }
  .cs_footer.cs_style_1.cs_type_1 {
	margin-top: 0;
  }
  .cs_footer.cs_style_1 .cs_newsletter.cs_style_2 {
	margin-top: -134px;
  }
  .cs_footer.cs_style_1 .cs_social_btns.cs_style_1 {
	font-size: 14px;
	margin-top: 30px;
  }
  .cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a {
	height: 30px;
	width: 30px;
	border-color: #fff;
	color: #fff;
  }
  .cs_footer.cs_style_1 .cs_social_btns.cs_style_1 a:hover {
	border-color: var(--accent-color);
  }

  @media (max-width: 767px) {
	.cs_footer_logo {
	  display: none;
	}

  }
  .footer-list-style ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-gap: 10px !important;
	grid-template-columns: repeat(2, 1fr) !important;
}
.copyright-footer p {
	margin: 0;
}

/* Newsletter Form */

  .sidebar-main ul.social-sidebar li{
	background: transparent !important;
  }
  .sidebar-main ul.social-sidebar a {
	width: 36px !important;
	height: 36px !important;
	border-radius: 100%;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 100% !important;
	display: flex !important;
	justify-content: center !important;
	background-color: #ECEEF2 !important;
	color: var(--heading-color) !important;
	align-items: center;
}
.sidebar-main ul.social-sidebar a svg {
	width: 18px;
}
  .sidebar-main ul.social-sidebar a:hover{
	background-color: var(--accent-color) !important;
	color:var(--heading-color) !important;

  }
  .sidebar-main .wp-block-social-links .wp-social-link svg {
	fill: var(--heading-color) !important;
	color: currentColor !important;
}
.sidebar-main .social-sidebar li {
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
  }
.wp-block-social-links {
	gap: 8px;
}
  .sidebar-main ul.social-sidebar a:hover {
	transform: translateY(-10px);
	animation: none;
	transform: translateY(-3px);
	transition-duration: 0.2s;
}
  .cs_post_meta * {
	color: var(--body-color);
	transition: all 0.3s ease;
}
.cs_post_meta.cs_white_color *{
	color:#fff;
} 

  .cs_post_meta * a:hover,
  .cs_post_meta * span a:hover,
  .cs_post_meta * span:hover {
	color: var(--accent-color) !important;
  }
  .breadcrumb-style-v1 .contact-head {
	background-color: #F4F6F9;
	border-radius: 16px;
	padding: 88px 0px;
  }

  .breadcrumb-style-v1.with-bg {
	  background-size: cover;
	  background-position: center;
	  min-height: 700px;
  }
  .breadcrumb-style-v1.with-bg .contact-head {
	  margin: 0;
	  background: none;
  }

  .cs_footer ul {
	padding: 0;
  }
  .cs_footer ul li a {
	color: #fff;
  }
  @media (max-width: 767px) {
  .breadcrumb-style-v1.with-bg {
	  height: initial;
	  min-height: initial;
  }
  }

  .container-breadcrumb {
	display: inline-block;
  }

  .sidebar .sidebar-right {
	margin-bottom: 50px;
  }

  .sidebar-search {
	position: relative;
  }
  .sidebar-search .form-search {
	position: relative;
  }
  .sidebar-search .form-search .form-control {
	height: 64px;
	border: 0px;
	background-color: #F4F6F9;
  }

  .list-popular-posts {
	margin-top: 27px;
  }

  .sidebar-right .list-categories li {
	list-style: none;
  }

  .box-tags-sidebar .btn.btn-neutral-100 {
	padding: 13px 18px;
	margin: 0px 8px 8px 0px;
	font-size: 14px;
	line-height: 14px;
  }

  .content-blog-2 .col-lg-9 {
	flex: 0 0 auto;
	width: 72%;
  }
  .content-blog-2 .col-lg-3 {
	flex: 0 0 auto;
	width: 28%;
  }

  .box-list-news-2 {
	padding-right: 80px;
  }

  .box-content-blog-post .blog-head {
	max-width: 905px;
	margin: auto;
  }

  .box-content-detail-blog {
	padding-top: 50px;
}
.box-content-detail-blog .box-image-header {
	margin-bottom: 60px;
}
  .box-content-detail-blog .box-detail-info img {
	width: 100%;
  }

  .box-content-recommended {
	background-color: #F4F6F9;
	padding: 145px 0px 170px 0px;
  }
  @media only screen and (max-width: 992px) {

	.box-content-recommended .col-lg-4 .card-news-style-2 {
		margin-bottom: 56px;
	}
	.box-content-recommended .col-lg-4:last-child .card-news-style-2 {
		margin: 0;
	}
  }
@media (min-width: 1399.98px) {
	.box-faqs-list.box-faqs-list--v2 .item-faqs .item-info p {
	  margin: 0;
	  padding-right: 120px;
	}
	.top-bar {
	  margin-bottom: 38px;
	}
  }
body.logged-in .header{
	top:32px;
}
@media (max-width: 780px) {
	body.logged-in .header{
		top:46px;
	}
}

/* Update CSS */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand {
	top: 12px;
}
.card-news-style-2 .card-info .card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.elementor-editor-active .header {
    top: 0 !important;
}
@media (max-width: 780px) {
body.logged-in .header.stick {
	top: 0;
}
}

@media (max-width: 767px) {
.header .main-header .header-right {
	position: absolute;
	right: 0;
}
.hero-5 .banner-inner-top {
	padding-top: 120px;
	padding-bottom: 10px;
}
.box-button-slider {
	justify-content: start !important;
}
.hero-4 .banner-inner {
	padding: 120px 0px 0px 0px;
}
h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br{
	display: none !important;
}

.top-bar-inner {
	flex-direction: column;
	text-align: center;
  }
  .box-top-bar-left,.box-top-bar-right {
	width: 100%;
  }
  .box-top-bar-right {
	/*! min-width: 100%; */
	display: flex;
	justify-content: center;
	flex-direction: row;
	text-align: center;
	min-width: 100% !important;
	padding: 0;
  }
  .box-top-bar-right a {
	overflow: visible;
	text-indent: initial;
	width: initial;
	margin-right: 0;
	padding-right: 0;
  }
.text-96 {
	font-size: 50px !important;
	line-height: 60px !important;
}
.list-partners li a span {
	font-size: 30px;
	line-height: 42px;
  }
.box-content-detail-blog .box-detail-info p {
	padding: 0 20px !important;
}
.glowify-blog-main-section.blog-single {
	padding-top: 20px;
}
.box-content-recommended {
	padding: 80px 0;
}
}

.sidebar-main ul {
	padding-left: 0;
	margin: 0;
}
/*====================================
	Others CSS
======================================*/
