/*----------------------------------------*/
/*  default CSS
/*----------------------------------------*/
html,
body {
	height: 100%;
	font-family: 'Raleway', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: 'Raleway', sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
	color: #6f6f6f;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a,
div {
	font-family: 'Raleway', sans-serif;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

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

/*---------------------
  Helper CSS
-----------------------*/
* {
	font-family: 'Raleway', sans-serif;
	box-sizing: border-box;
}

::selection {
	color: #FFFFFF;
	background: #1A4957;
}

.section-title {
	margin-bottom: 50px;
	text-align: center;
}

.section-title h2 {
	color: #1c1c1c;
	font-weight: 800 !important;
	position: relative;
	font-size: 2rem;
}

.section-title h2:after {
	position: absolute;
	left: 0;
	bottom: -15px;
	right: 0;
	height: 4px;
	width: 80px;
	background: #1A4957;
	content: "";
	margin: 0 auto;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	object-fit: cover;
	/* border-radius: 3rem; */
}

.set-bg-breadbcrumb {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	object-fit: cover;
	border-radius: 0;
}

.spad {
	/* padding-top: 100px; */
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 10px 28px 10px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #1A4957;
	letter-spacing: 2px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: #1A4957;
	border: none;
	border-radius: 7px;
	font-family: 'Raleway', sans-serif;
}

.site-btn:hover {
	background: #1A4957;
	color: white;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #0000005a;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header__top {
	background: #f5f5f5;
}

.header__top__left {
	padding: 10px 0 13px;
}

.header__top__left ul li {
	font-size: 14px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 45px;
	position: relative;
	font-family: 'Raleway', sans-serif;
}

.header__top__left ul li:after {
	position: absolute;
	right: -25px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

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

.header__top__left ul li:last-child:after {
	display: none;
}

.header__top__left ul li i {
	color: #252525;
	margin-right: 5px;
}

.header__top__right {
	text-align: right;
	padding: 10px 0 13px;
}

.header__top__right__social {
	position: relative;
	display: inline-block;
	margin-right: 35px;
}

.header__top__right__social:after {
	position: absolute;
	right: -20px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.header__top__right__social a {
	font-size: 14px;
	display: inline-block;
	color: #1c1c1c;
	margin-right: 20px;
}

.header__top__right__social a:last-child {
	margin-right: 0;
}

.header__top__right__language {
	position: relative;
	display: inline-block;
	margin-right: 40px;
	cursor: pointer;
}

.header__top__right__language:hover ul {
	top: 23px;
	opacity: 1;
	visibility: visible;
}

.header__top__right__language:after {
	position: absolute;
	right: -21px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.header__top__right__language img {
	margin-right: 6px;
}

.header__top__right__language div {
	font-size: 14px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 4px;
}

.header__top__right__language span {
	font-size: 14px;
	color: #1c1c1c;
	position: relative;
	top: 2px;
}

.header__top__right__language ul {
	background: #1A4957;
	width: 120px;
	border-radius: 5px;
	text-align: left;
	padding: 5px 0;
	position: absolute;
	left: 0;
	top: 43px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__top__right__language ul li {
	list-style: none;
}

.header__top__right__language ul li a {
	font-size: 14px;
	color: #ffffff;
	padding: 5px 1rem;
	display: block;
}

.header__top__right__language ul li:hover {
	color: #121212;
	background: #FAAA46;
}

.header__top__right__auth {
	display: inline-block;
}

.header__top__right__auth a {
	display: block;
	font-size: 14px;
	color: #1c1c1c;
}

.header__top__right__auth a i {
	margin-right: 6px;
}

.header__logo {
	padding: 15px 0;
}

.header__logo a {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.header__logo a img {
	width: 116px;
	height: auto;
}

.header__menu {
	padding: 24px 0;
}

.header__menu ul {
	padding-top: 12px;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

.header__menu ul li .header__menu__dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	background: #222222;
	width: 180px;
	z-index: 9;
	padding: 5px 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
}

.header__menu ul li .header__menu__dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .header__menu__dropdown li:hover>a {
	color: #1A4957;
}

.header__menu ul li .header__menu__dropdown li a {
	text-transform: capitalize;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 15px;
}

.header__menu ul li.active a {
	color: #FAAA46;
}

.header__menu ul li:hover .header__menu__dropdown {
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover>a {
	color: #1A4957;
}

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

.header__menu ul li a {
	font-size: 14px;
	color: #252525;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	padding: 5px 0;
	display: block;
}

.header__menu ul li a .active {
	color: #FAAA46;
}

.header__cart {
	text-align: right;
	padding: 40px 0;
}

.header__cart ul {
	display: inline-block;
	margin-right: 25px;
}

.header__cart ul li {
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

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

.header__cart ul li a {
	position: relative;
}

.header__cart ul li a i {
	font-size: 18px;
	color: #1c1c1c;
}

.header__cart ul li a span {
	height: 13px;
	width: 13px;
	background: #FAAA46;
	font-size: 10px;
	color: #ffffff;
	line-height: 13px;
	text-align: center;
	font-weight: 700;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -12px;
}

.header__cart .header__cart__price {
	font-size: 14px;
	color: #6f6f6f;
	display: inline-block;
}

.header__cart .header__cart__price span {
	color: #252525;
	font-weight: 700;
}

.humberger__menu__wrapper {
	display: none;
}

.humberger__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/
.fix__font__placeholder {
	font-family: 'Raleway', sans-serif;
	color: #121212 !important;
}

.fix__font__placeholder::placeholder {
	font-family: 'Raleway', sans-serif;
	font-size: 0.9rem;
}

.hero {
	padding-bottom: 50px;
}

.hero.hero-normal {
	padding-bottom: 30px;
}

.hero.hero-normal .hero__categories {
	position: relative;
}

.hero.hero-normal .hero__categories ul {
	display: none;
	position: absolute;
	left: 0;
	top: 46px;
	width: 100%;
	z-index: 9;
	background: #ffffff;
}

.hero.hero-normal .hero__search {
	margin-bottom: 0;
}

.hero__categories__all {
	background: #1A4957;
	position: relative;
	padding: 10px 25px 10px 40px;
	cursor: pointer;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero__categories__all i {
	font-size: 16px;
	color: #ffffff;
	margin-right: 10px;
}

.hero__categories__all span {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.hero__categories__all span i {
	font-size: 18px;
	/* transform: translate(40px, 2px); */
	color: #ffffff;
}

.hero__categories ul {
	border: 1px solid #ebebeb;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 12px;
	height: 465px;
	overflow-y: scroll;
}

.hero__categories ul::-webkit-scrollbar {
	width: 5px;
}

.hero__categories ul::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.hero__categories ul::-webkit-scrollbar-thumb {
	background: #1A4957;
	border-radius: 7px;
}

.hero__categories ul::-webkit-scrollbar-thumb:hover {
	background: #FAAA46;
}

.hero__categories ul li {
	list-style: none;
}

.hero__categories ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 39px;
	display: block;
}

.hero__search {
	overflow: hidden;
	margin-bottom: 30px;
}

.search-products:hover {
	background: #faa94688;
	color: #FFFFFF;
}

.hero__search__angle-down {}

.hero__search__form {
	/* width: 610px; */
	width: 100%;
	height: 50px;
	border: 1px solid #ebebeb;
	position: relative;
	float: left;
}

.hero__search__form form .hero__search__categories {
	width: 13%;
	float: left;
	font-size: 16px;
	color: #1c1c1cc2;
	font-weight: 700;
	padding-left: 18px;
	padding-top: 11px;
	position: relative;
}

.hero__search__form form .hero__search__categories:after {
	position: absolute;
	right: 0;
	top: 14px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.hero__search__form form .hero__search__categories span {
	position: absolute;
	right: 14px;
	top: 14px;
}

.hero__search__form form input {
	width: 70%;
	border: none;
	height: 48px;
	font-size: 16px;
	color: #b2b2b2;
	padding-left: 20px;
}

.hero__search__form form input::placeholder {
	color: #b2b2b2;
}

.hero__search__form form button {
	position: absolute;
	right: 0;
	top: -1px;
	height: 50px;
}

.hero__search__phone {
	float: right;
}

.hero__search__phone__icon {
	font-size: 18px;
	color: #1A4957;
	height: 50px;
	width: 50px;
	background: #f5f5f5;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	float: left;
	margin-right: 20px;
}

.hero__search__phone__text {
	overflow: hidden;
}

.hero__search__phone__text h5 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 5px;
}

.hero__search__phone__text span {
	font-size: 14px;
	color: #6f6f6f;
}

.hero__item {
	height: 431px;
	display: flex;
	align-items: center;
	/* padding-left: 75px; */
	position: relative;
	box-shadow: 1px 1px 10px 2px #1a495716;
	/* border: 1px solid red; */
}

.hero__item a {
	display: block;
	overflow: hidden;
	width: 100% !important;
	height: 100% !important;
}

.hero__search .owl-carousel a img {
	height: 100%;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	background: #00000022;
	z-index: 100;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.hero__item a img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	/* transform: scaleX(1.2); */
}

.hero__item .hero__text {
	position: absolute;
	top: 90px;
	left: 80px;
	background: linear-gradient(from right, #00000048, #00000094);
	width: 100%;
	height: 100%;
	z-index: 100;
}

.hero__text span {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 2px;
	color: #1A4957;
}

.hero__text h2 {
	font-size: 46px;
	color: #252525;
	line-height: 52px;
	font-weight: 700;
	margin: 10px 0;
}

.hero__text p {
	margin-bottom: 35px;
}

.btn__onhover:hover {
	background-color: #1A4957e3;
	color: #111111;
}

/*---------------------
	Banner Flash Card
-----------------------*/
.banner__pic a {
	height: 350px;
}

.banner a img {
	object-fit: cover;
	width: 100%;
	height: 320px;
	object-position: left;
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
	height: 270px;
	position: relative;
}

.categories__item h5 {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 20px;
	bottom: 20px;
	text-align: center;
}

.categories__item h5 a {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 0 10px;
	background: #ffffff;
	display: block;
}

.categories__slider .col-lg-3 {
	max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
	font-size: 18px;
	color: #1c1c1c;
	height: 70px;
	width: 30px;
	line-height: 70px;
	text-align: center;
	border: 1px solid #ebebeb;
	position: absolute;
	left: -35px;
	top: 50%;
	-webkit-transform: translateY(-35px);
	background: #ffffff;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -35px;
}

/*---------------------
	Services
-----------------------*/
.services {
	margin: 2rem 0 3.5rem;
}

.service-card {
	box-shadow: 1px 1px 7px 1px #faa94647;
	border: none;
	padding: 0.5rem 1rem;
	margin: 1rem;
}

.service-card:hover {
	background: #1A4957;
	cursor: pointer;
}

.service-card:hover p,
.service-card:hover span i,
.service-card:hover h3 {
	color: white;
}

.service-card:hover a {
	border: 0.3px solid #faa94648;
}

.service-card a {
	background: #1A4957;
	color: white;
}

.service-card a:hover {
	color: #FAAA46;
}

.material-service-icon {
	font-size: 4rem;
}

.material-service-icon i {
	color: #1A4957;
}

/*---------------------
  Featured
-----------------------*/

.featured {
	padding-top: 80px;
	padding-bottom: 40px;
}

.featured__controls {
	text-align: center;
	margin-bottom: 50px;
}

.featured__controls ul li {
	list-style: none;
	font-size: 1rem;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 25px;
	position: relative;
	cursor: pointer;
}

.featured__controls ul li.active:after {
	opacity: 1;
}

.featured__controls ul li:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #1A4957;
	content: "";
	opacity: 0;
}

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

.featured__item {
	margin-bottom: 50px;
	width: 230px;
}

.ifeatured__item {
	margin-bottom: 50px;
	width: 230px;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
	bottom: 20px;
}

.ifeatured__item:hover .ifeatured__item__pic .ifeatured__item__pic__hover {
	bottom: 20px;
}

.ifeatured__item__pic,
.ifeatured__item__text {
	width: 230px;
}

.featured__item__pic,
.ifeatured__item__pic {
	border-radius: 1rem;
	width: 350px;
	height: 285px;
	position: relative;
	overflow: hidden;
	background-position: center center;
	border: 1px solid #1f1c1c18;
	box-shadow: 1px 10px 20px 3px #8f43090d;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ifreatured__item__pic {
	width: 300px;
	height: 280px;
}

.featured__item__pic:hover {
	box-shadow: 1px 1px 10px 2px #faa9464b;
}

.featured__item__pic__hover,
.ifeatured__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li,
.ifeatured__item__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.featured__item__pic__hover li:last-child,
.ifeatured__item__pic__hover li:last-child {
	margin-right: 0;
}

.featured__item__pic__hover li:hover a,
.ifeatured__item__pic__hover li:hover a {
	background: #FAAA46;
	border-color: #FAAA46;
}

.featured__item__pic__hover li:hover a i,
.ifeatured__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.featured__item__pic__hover li a,
.ifeatured__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li a i,
.ifeatured__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.featured__item__text,
.ifeatured__item__text {
	text-align: center;
	padding-top: 15px;
	width: 350px;
}

.ifeatured__item__text {
	width: 230px;
}

.featured__item__text h6 {
	margin-bottom: 10px;
}

.featured__item__text h6 a {
	color: #252525;
	font-size: 1.2rem;
	font-weight: bold !important;
}

.featured__item__text h5 {
	color: #252525;
	font-weight: 700;
	font-size: 0.9rem;
}

.vendor-and-rating {
	display: flex;
	justify-content: space-between;
}

.vendor-and-rating span {
	font-size: 1.1rem;
}

.vendor-and-rating p {
	text-transform: uppercase;
}

.vendor-and-rating span i {
	color: #FAAA46;
	font-size: 1rem;
}

.featured__item__text a {
	text-decoration: none;
	font-size: 0.8rem;
	color: gray;
}

.see-more {
	display: flex;
	width: 100%;
	justify-content: center;
}


.see-more .btn-explore-more {
	background: #1A4957;
	color: white;
	padding: 0.3rem 1rem;
}

.btn-mismar {
	background: #1A4957;
	color: white;
	padding: 0.3rem 1rem;
	width: 100px;
	height: 50px;
	border: 1px solid red;
}

.featured__item__text a:hover {
	color: #FAAA46;
}

.featured__item__text .vendor-and-rating p {
	font-size: 0.8rem;
	color: gray;
}

.featured__item__text .description {
	font-size: 1rem !important;
}

/* .featured__item__text p:nth-child(2) {
	color: #121212;
	font-size: 1rem;
	text-justify: distribute;
} */

/*---------------------
  Deal of the day
-----------------------*/
.deal__of__the__day {
	width: 100%;
	height: 300px;
	border-radius: 10px;
	object-fit: cover;
}

.deal__of__the__day a,
.deal__of__the__day a img {
	width: 100%;
	height: inherit;
	border-radius: 10px;
	object-fit: cover;
}

/*---------------------
  About and Contact
-----------------------*/

.about-company-image-and-description {
	/* width: 100%; */
	height: 300px;
	text-align: justify;
}

.fix-map {
	height: 320px;
	width: 100%;
}

/* create quick account */
.create-quick-account-form {
	overflow-x: hidden;
	width: 90%;
	height: 100%;
}

.quick-register-ad {
	width: 100%;
	height: 350px;
	/* margin-left: 3rem; */
	border-radius: 10px;
}

.quick-register-ad img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

/* .create-quick-account-form::before {
	content: '';
	background: #1A4957dd;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	position: absolute;
	top: 4700px;
	left: -80px;
} */
.create-quick-account {
	font-weight: 700;
	font-size: 1.8rem;
}

/* end of create quick account */

/*---------------------
					FAQs
-----------------------*/

.faq {
	min-height: 70vh;
}

.faq .section-title {
	margin-bottom: 54px;
}

.faq .section-title h2 {
	margin-bottom: 22px;
}

.faq .accordion .card {
	border: none;
	margin-bottom: 30px;
}

.faq .accordion .card:not(:first-of-type) .card-header:first-child {
	border-radius: 10px;
}

.faq .accordion .card .card-header {
	border: none;
	border-radius: 10px;
	padding: 0;
}

.faq .accordion .card .card-header h5 {
	padding: 0;
}

.faq .accordion .card .card-header h5 button {
	color: #1e3056;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	padding: 0 30px 0 70px;
	height: 80px;
	display: block;
	width: 100%;
	color: rgba(30, 48, 86, 0.8);
	text-align: left;
	background: #fff;
	-webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
	box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
	border-radius: 10px 10px 0 0;
	position: relative;
}

.faq .accordion .card .card-header h5 button:after {
	position: absolute;
	left: 30px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	background-color: transparent;
	color: #1A4957;
	text-align: center;
	border: 1px solid #1A4957;
	border-radius: 50%;
	line-height: 100%;
	content: '\f067';
	font-size: 10px;
	line-height: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.faq .accordion .card .card-header h5 button.collapsed {
	background: #fff;
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid rgba(97, 125, 255, 0.2);
}

.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
	content: '\f068';
	color: #fff;
	background-image: -webkit-linear-gradient(-180deg, #eddfdf 0%, #1A4957 30%, #177015 100%);
}

.faq .accordion .card .card-body {
	-webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
	box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
	border-radius: 0 0 10px 10px;
	padding-top: 0;
	margin-top: -6px;
	padding-left: 72px;
	padding-right: 70px;
	padding-bottom: 23px;
	color: rgba(30, 48, 86, 0.8);
	line-height: 30px;
}


/*---------------------
  Latest Product
-----------------------*/

.latest-product {
	padding-top: 80px;
	padding-bottom: 0;
}

.latest-product__text h4 {
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 45px;
	font-size: 1rem;
}

.latest-product__slider.owl-carousel .owl-nav {
	position: absolute;
	right: 20px;
	top: -75px;
}

.latest-product__slider.owl-carousel .owl-nav button {
	height: 30px;
	width: 30px;
	background: #F3F6FA;
	border: 1px solid #e6e6e6;
	font-size: 14px;
	color: #636363;
	margin-right: 10px;
	line-height: 30px;
	text-align: center;
}

.latest-product__slider.owl-carousel .owl-nav button span {
	font-weight: 700;
}

.latest-product__slider.owl-carousel .owl-nav button:last-child {
	margin-right: 0;
}

.latest-product__item {
	margin-bottom: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.latest-product__item__pic {
	float: left;
	margin-right: 26px;
}

.latest-product__item__pic img {
	height: 110px;
	width: 110px;
}

.latest-product__item__text {
	overflow: hidden;
	margin-left: 35px;
	padding-top: 10px;
}

.latest-product__item__text h6 {
	color: #252525;
	margin-bottom: 8px;
}

.latest-product__item__text span {
	font-size: 18px;
	display: block;
	color: #252525;
	font-weight: 700;
}

.on-product-page-text {
	/* font-size: 0.8rem; */
	font-weight: 700;
}

.on-product-page-text+span {
	font-size: 0.9rem;
}


/*---------------------
   			Merchants Detail
-----------------------*/
.merchant-detail-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.merchant-image {
	padding: 0.3rem;
	display: flex;
	justify-content: center;
	box-shadow: 1px 1px 10px 2px #dfdfdf;
	border-radius: 10px;
	width: 100%;
	height: 250px;
	margin-bottom: 4.5rem;
}

.merchant-square-image {
	position: absolute;
	top: 180px;
	left: 50px;
	width: 130px;
	height: 130px;
	border-radius: 5px;
	box-shadow: 1px 1px 10px 2px #dfdfdf;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.merchant-square-image img {
	object-fit: contain;
	border-radius: 10px;
}

.merchant-image img {
	width: 100%;
	object-fit: cover;
}

.merchant-info-description {
	width: 100%;
	height: inherit;
	margin-bottom: 2rem !important;
}

.merchant-info-description>span {
	font-family: 'Open Sans' !important;
	display: block !important;
	padding: 0 0.8rem;
}

.merchant-info-description p,
.merchant-info-description p span,
.merchant-info-description span {
	font-family: 'Open Sans' !important;
	font-size: 1rem !important;
	text-transform: lowercase !important;
}

.merchant-info-description p::first-letter {
	text-transform: uppercase;
}

.merchant-info-description b {
	font-family: 'Open Sans' !important;
}

.merchant-detail-info h2 {
	font-size: 1.4rem;
	padding: 0.8rem;
}

.merchant-detail-info p {
	text-align: justify;
	text-justify: distribute;
	padding: 0 0.8rem;
}

.merchant-detail-info small {
	text-align: left !important;
	align-self: start;
	padding: 0 0.8rem;
	color: gray;
	display: block;
	margin-top: 1.2rem;
}

.btn-quotation {
	position: absolute;
	top: 250px;
	right: 0;
	width: 180px;
	color: white !important;
	background: teal;
	padding: 0.5rem;
	margin-top: 1rem;
}

.btn-quotation:hover {
	color: #FAAA46 !important;
	box-shadow: 1px 1px 10px 1px #1a495762;
}



/*---------------------
   			Merchants
-----------------------*/
.merchant__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: 100%;
	border: 1px solid rgb(230, 230, 230);
	border-radius: 10px;
	box-shadow: 1px 1px 10px 2px #efefef;
	background: white;
	margin-top: 2rem;
	position: relative;
}

.merchant-info-merged {
	display: flex;
	box-sizing: border-box;
}

.fix-merchant-product-preview-card {
	display: flex;
	flex-direction: column;
}

.verified-merchant {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #28A745;
	color: white;
	border-radius: 50px;
	z-index: 100;
	align-self: flex-start;
}

.verify-merchant-absolute {
	position: absolute !important;
	top: 20px !important;
	right: 5px !important;
}

.verified-merchant-right {
	/* position: absolute;
	top: 10px;
	right: 10px; */
	display: flex;
	justify-content: center;
	align-items: center;
	background: #28A745;
	color: white;
	border-radius: 50px;
	z-index: 100;
	align-self: flex-end;
	margin: -7px 0.8rem 0 0;
}

.verified-merchant i,
.verified-merchant-right i {
	font-size: 1.1rem;
	color: white;
	padding: 0.2rem;
}

.verified-merchant span,
.verified-merchant-right span {
	font-size: 0.7rem;
	font-weight: 500;
	margin-left: 0.1rem;
	color: white;
	padding: 0.2rem;
	padding-right: 0.5rem;
}

.merchant__info .merchant__image {
	flex: 1;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

.merchant__image img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	padding: 0.3rem;
	object-fit: contain;
	aspect-ratio: 1/1;
}

.merchant__description {
	flex: 2;
	padding: 0.5rem;
	height: inherit;
	overflow: hidden;
}

.merchant__description h3 a {
	font-size: 1.1rem;
	color: #121212;
	line-height: 2px;
}

.merchant__description h3 a:hover {
	color: #FAAA46;
}

.merchant__description p {
	text-overflow: ellipsis;
	margin-top: 10px;
	font-size: 0.85rem;
}

.merchant__description small {
	color: gray;
}

.merchant__pagination {
	margin: 1rem auto;
}

.quotation-modal {
	width: 950px;
	margin: 0 auto;
}

.quotation-modal .modal-dialog {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1000px !important;
	max-width: 1000px;
	height: 100%;
}

.quotation-modal .modal-title {
	font-weight: 700;
	text-transform: uppercase;
}

.btn-submit-quotation {
	background: #1A4957;
	color: #FFFFFF;
}

.btn-submit-quotation:hover {
	color: #FAAA46;
}

.modal-invoice-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 4px;
	margin: 0;
	margin-right: 2rem;
	width: 100%;
}

.modal-invoice-info .modal-invoice-title,
.modal-invoice-info .invoice-date,
.modal-invoice-info .due-date {
	padding: 0;
	margin: 0;
}

.modal-company-info {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-left: 2rem;
}

.modal-company-info img {
	width: 12%;
	height: auto;
}

.modal-company-info h3 {
	text-transform: uppercase;
	font-size: 0.9rem;
	font-weight: 700;
	padding-top: 10px;
	margin-bottom: 1rem;
}

.modal-company-info p {
	margin: 0;
	padding: 0.2rem;
}

.modal-payment-detail-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 2rem;
	margin-top: 1rem;
	width: 100%;
}

.invoice-to {
	flex: 1;
}

.payment-details {
	flex: 1;
	margin-right: 1rem;
}

.invoice-to h3 {
	font-weight: 700;
	font-size: 1rem;
	margin-top: 1rem;
}

.invoice-to p {
	padding: 0.2rem;
	margin: 0;
}

.payment-details .total-due,
.payment-details .bank-name,
.payment-details .country,
.payment-details .city,
.payment-details .address,
.payment-details .account-number {
	display: flex;
	justify-content: space-between;
}

.payment-details .total-due p,
.payment-details .bank-name p,
.payment-details .country p,
.payment-details .city p,
.payment-details .address p,
.payment-details .account-number p {
	padding: 0.2rem;
	margin: 0;
}

.other-info {
	padding: 0.2rem;
	margin: 0;
}

.other-info p {
	margin: 0;
	padding: 0.2rem;
}

.other-info .other-info-title {
	font-weight: 700;
	color: #121212;
}

/*---------------------
  Form BLog
-----------------------*/

.from-blog {
	padding-top: 50px;
	padding-bottom: 50px;
}

.from-blog .blog__item {
	margin-bottom: 30px;
}

.from-blog__title {
	margin-bottom: 70px;
}

/*---------------------
			 Trusted by
-----------------------*/
.trusted-by {
	height: 300px;
	margin-top: 1px;
	margin-bottom: 30px;
}

.trusted-by .owl-carousel .item {
	margin: 3px;
}

.trusted-by .owl-carousel .item img {
	display: block;
	width: 130px;
	height: 130px;
	aspect-ratio: 1/1;
}


.trusted-by .owl-carousel {
	margin-top: 50px;
	margin-bottom: 20px;
	height: 150px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
	display: flex;
	align-items: center;
	padding: 45px 0 40px;
}

.breadcrumb__text h2 {
	font-size: 46px;
	color: #ffffff;
	font-weight: 700;
}

.breadcrumb__option a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	margin-right: 20px;
	position: relative;
}

.breadcrumb__option a:after {
	position: absolute;
	right: -12px;
	top: 13px;
	height: 1px;
	width: 10px;
	background: #ffffff;
	content: "";
}

.breadcrumb__option span {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
}

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

.sidebar__item {
	margin-bottom: 35px;
}

.sidebar__item.sidebar__item__color--option {
	overflow: hidden;
}

.sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 1.3rem;
}

.sidebar__item ul li {
	list-style: none;
}

.sidebar__item ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 39px;
	display: block;
}

.sidebar__item .latest-product__text {
	position: relative;
}

.sidebar__item .latest-product__text h4 {
	margin-bottom: 45px;
}

.sidebar__item .latest-product__text .owl-carousel .owl-nav {
	right: 0;
}

.price-range-wrap .range-slider {
	margin-top: 20px;
}

.price-range-wrap .range-slider .price-input {
	position: relative;
}

.price-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 38px;
	top: 13px;
	height: 1px;
	width: 5px;
	background: #dd2222;
	content: "";
}

.price-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #dd2222;
	font-weight: 700;
	max-width: 20%;
	border: none;
	display: inline-block;
}

.price-range-wrap .price-range {
	border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background: #ffffff;
	border: none;
	-webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	outline: none;
	cursor: pointer;
}

.price-range-wrap .price-range .ui-slider-range {
	background: #1A4957;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #FAAA46;
}

.sidebar__item__color {
	float: left;
	width: 40%;
}

.sidebar__item__color.sidebar__item__color--white label:after {
	border: 2px solid #333333;
	background: transparent;
}

.sidebar__item__color.sidebar__item__color--gray label:after {
	background: #E9A625;
}

.sidebar__item__color.sidebar__item__color--red label:after {
	background: #D62D2D;
}

.sidebar__item__color.sidebar__item__color--black label:after {
	background: #252525;
}

.sidebar__item__color.sidebar__item__color--blue label:after {
	background: #249BC8;
}

.sidebar__item__color.sidebar__item__color--green label:after {
	background: #3CC032;
}

.sidebar__item__color label {
	font-size: 16px;
	color: #333333;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
}

.sidebar__item__color label input {
	position: absolute;
	visibility: hidden;
}

.sidebar__item__color label:after {
	position: absolute;
	left: 0;
	top: 5px;
	height: 14px;
	width: 14px;
	background: #222;
	content: "";
	border-radius: 50%;
}

.sidebar__item__size {
	display: inline-block;
	margin-right: 16px;
	margin-bottom: 10px;
}

.sidebar__item__size label {
	font-size: 12px;
	color: #6f6f6f;
	display: inline-block;
	padding: 8px 25px 6px;
	background: #f5f5f5;
	cursor: pointer;
	margin-bottom: 0;
}

.sidebar__item__size label input {
	position: absolute;
	visibility: hidden;
}

/*---------------------
  Shop Grid
-----------------------*/

.product {
	/* padding-top: 80px; */
	padding-bottom: 80px;
}

.product__discount {
	padding-bottom: 50px;
}

.product__discount__title {
	text-align: left;
	margin-bottom: 65px;
}

.product__discount__title h2 {
	display: inline-block;
}

.product__discount__title h2:after {
	margin: 0;
	width: 100%;
}

.product__discount__item {
	position: relative;
}

.merchant__product__discount__item {
	display: flex;
	flex-direction: column;

}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__discount__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
	background: white;
	border-radius: 15px;
	border: 1px solid #1f1c1c18;
	box-shadow: 1px 10px 20px 3px #8f43090d;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product__discount__item__pic img {
	margin: 0;
	/* width: 250px; */
	max-width: 100%;
	height: 250px;

}

.product__discount__item__pic .product__discount__percent {
	height: 45px;
	width: 45px;
	background: #dd2222;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	line-height: 45px;
	text-align: center;
	position: absolute;
	/* left: 15px; */
	/* top: 15px; */
	margin-left: 0px;
}

.product__item__pic {
	border: 1px solid #1f1c1c18;
	border-radius: 20px;
	box-shadow: 1px 10px 20px 3px #8f43090d;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .product_item_pic img{
	width: 100%;
	height: 100%;
} */

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #1A4957;
	border-color: #1A4957;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__discount__item__text {
	text-align: center;
	padding-top: 20px;
}

.merchant__product__item__text a {
	font-size: 1.1rem !important;
}

.product__discount__item__text span {
	font-size: 14px;
	color: #b2b2b2;
	display: block;
	margin-bottom: 4px;
}

.product__discount__item__text h5 {
	margin-bottom: 6px;
}

.product__discount__item__text h5 a {
	color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
}

.product__discount__item__text .product__item__price span {
	display: inline-block;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
	max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
	height: 12px;
	width: 12px;
	border: 1px solid #b2b2b2;
	border-radius: 50%;
	margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
	background: #707070;
	border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.filter__item {
	padding-top: 45px;
	border-top: 1px solid #ebebeb;
	padding-bottom: 20px;
}

.filter__sort {
	margin-bottom: 15px;
}

.filter__sort span {
	font-size: 16px;
	color: #6f6f6f;
	display: inline-block;
}

.filter__sort .nice-select {
	background-color: #fff;
	border-radius: 0;
	border: none;
	display: inline-block;
	float: none;
	height: 0;
	line-height: 0;
	padding-left: 18px;
	padding-right: 30px;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	cursor: pointer;
}

.filter__sort .nice-select span {
	color: #1c1c1c;
}

.filter__sort .nice-select:after {
	border-bottom: 1.5px solid #1c1c1c;
	border-right: 1.5px solid #1c1c1c;
	height: 8px;
	margin-top: 0;
	right: 16px;
	width: 8px;
	top: -5px;
}

.filter__sort .nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	top: 15px;
}

.filter__sort .nice-select .option {
	line-height: 30px;
	min-height: 30px;
}

.filter__found {
	text-align: center;
	margin-bottom: 15px;
}

.filter__found h6 {
	font-size: 16px;
	color: #b2b2b2;
}

.filter__found h6 span {
	color: #1c1c1c;
	font-weight: 700;
	margin-right: 5px;
}

.filter__option {
	text-align: right;
	margin-bottom: 15px;
}

.filter__option span {
	font-size: 24px;
	color: #b2b2b2;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__option span:last-child {
	margin: 0;
}

.filter__option span:hover {
	color: #1A4957;
}

.product__item {
	margin-bottom: 50px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #1A4957;
	border-color: #1A4957;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text {
	text-align: center;
	padding-top: 15px;
}

.product__item__text h6 {
	margin-bottom: 10px;
}

.product__item__text h6 a {
	color: #252525;
}

.product__item__text h5 {
	color: #252525;
	font-weight: 700;
}

.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: #1A4957;
	border-color: #1A4957;
	color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
	margin-right: 0;
}

.discount-product-price {
	display: inline-block;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 10px;
}

/*---------------------
  Shop Details
-----------------------*/

.product-details {
	padding-top: 10px;
}

.product__details__pic__item {
	margin-bottom: 20px;
}

.product__details__pic__item img {
	min-width: 100%;
}

.product__details__pic__slider img {
	cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
	width: auto;
}

.product__details__text h3 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 16px;
}

.product__details__text .product__details__rating {
	font-size: 14px;
	margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
	margin-right: -2px;
	color: #EDBB0E;
}

.product__details__text .product__details__rating span {
	color: #dd2222;
	margin-left: 4px;
}

.product__details__text .product__details__price {
	font-size: 30px;
	color: #dd2222;
	font-weight: 600;
	margin-bottom: 15px;
}

.product__details__text p {
	margin-bottom: 45px;
}

.product__details__text .primary-btn {
	padding: 16px 28px 14px;
	margin-right: 6px;
	margin-bottom: 5px;
}

.product__details__text .heart-icon {
	display: inline-block;
	font-size: 16px;
	color: #6f6f6f;
	padding: 13px 16px 13px;
	background: #f5f5f5;
}

.product__details__text ul {
	border-top: 1px solid #ebebeb;
	padding-top: 40px;
	margin-top: 50px;
}

.product__details__text ul li {
	font-size: 16px;
	color: #1c1c1c;
	list-style: none;
	line-height: 36px;
}

.product__details__text ul li b {
	font-weight: 700;
	width: 170px;
	display: inline-block;
}

.product__details__text ul li span samp {
	color: #dd2222;
}

.product__details__text ul li .share {
	display: inline-block;
}

.product__details__text ul li .share a {
	display: inline-block;
	font-size: 15px;
	color: #1c1c1c;
	margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
	margin-right: 0;
}

.product__details__quantity {
	display: inline-block;
	margin-right: 6px;
}

.pro-qty {
	width: 140px;
	height: 50px;
	display: inline-block;
	position: relative;
	text-align: center;
	background: #f5f5f5;
	margin-bottom: 5px;
}

.pro-qty input {
	height: 100%;
	width: 100%;
	font-size: 16px;
	color: #6f6f6f;
	width: 50px;
	border: none;
	background: #f5f5f5;
	text-align: center;
}

.pro-qty .qtybtn {
	width: 35px;
	font-size: 16px;
	color: #6f6f6f;
	cursor: pointer;
	display: inline-block;
}

.product__details__tab {
	padding-top: 85px;
}

.product__details__tab .nav-tabs {
	border-bottom: none;
	justify-content: center;
	position: relative;
}

.product__details__tab .nav-tabs:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs:after {
	position: absolute;
	right: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs li {
	margin-bottom: 0;
	margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs li a {
	font-size: 16px;
	color: #999999;
	font-weight: 700;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.product__details__tab .product__details__tab__desc {
	padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
	font-weight: 700;
	color: #333333;
	margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
	color: #666666;
}

/*---------------------
  Shop Details
-----------------------*/

.related-product {
	padding-bottom: 30px;
}

.related__product__title {
	margin-bottom: 70px;
}

/*---------------------
  Shop Cart
-----------------------*/

.cart-detail-banner {
	height: 150px;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.cart-detail-banner img {
	position: absolute;
	top: 0;
	object-fit: cover;
	object-position: top;
}

.cart-detail-banner-overlay {
	background: #11111190;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.cart-detail-banner img {
	width: 100%;
	height: inherit;
}

.cart__details__hero__text {
	position: relative;
	text-align: center;
	margin-top: 3rem;
}

.cart__details__hero__text h2 {
	font-size: 3rem;
	color: white;
	text-transform: uppercase;
}

.shoping-cart {
	padding-top: 80px;
	padding-bottom: 80px;
}

.shoping__cart__table {
	margin-bottom: 30px;
}

.shoping__cart__table table {
	width: 100%;
	text-align: center;
}

.shoping__cart__table table thead tr {
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
	font-size: 20px;
	font-weight: 700;
	color: #1c1c1c;
	padding-bottom: 20px;
}

.shoping__cart__table table thead th.shoping__product {
	text-align: left;
}

.shoping__cart__table table tbody tr td {
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
	width: 530px;
	text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
	display: inline-block;
	margin-right: 25px;
	width: 100px;
	height: 50px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
	color: #1c1c1c;
	display: inline-block;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
	text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
	font-size: 24px;
	color: #b2b2b2;
	cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
	width: 225px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
	width: 120px;
	height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtybtn {
	width: 15px;
}

.primary-btn.cart-btn {
	color: #6f6f6f;
	padding: 14px 30px 12px;
	background: #f5f5f5;
}

.primary-btn.cart-btn span {
	font-size: 14px;
}

.primary-btn.cart-btn.cart-btn-right {
	float: right;
}

.shoping__discount {
	margin-top: 45px;
}

.shoping__discount h5 {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.shoping__discount form input {
	width: 255px;
	height: 46px;
	border: 1px solid #cccccc;
	font-size: 16px;
	color: #b2b2b2;
	text-align: center;
	display: inline-block;
	margin-right: 15px;
}

.shoping__discount form input::placeholder {
	color: #b2b2b2;
}

.shoping__discount form button {
	padding: 15px 30px 11px;
	font-size: 12px;
	letter-spacing: 4px;
	background: #6f6f6f;
}

.shoping__checkout {
	background: #f5f5f5;
	padding: 30px;
	padding-top: 20px;
	margin-top: 50px;
}

.shoping__checkout h5 {
	color: #1c1c1c;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 28px;
}

.shoping__checkout ul {
	margin-bottom: 28px;
}

.shoping__checkout ul li {
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	list-style: none;
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 13px;
	margin-bottom: 18px;
}

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

.shoping__checkout ul li span {
	font-size: 18px;
	color: #dd2222;
	float: right;
}

.shoping__checkout .primary-btn {
	display: block;
	text-align: center;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
	padding-top: 80px;
	padding-bottom: 60px;
}

.checkout h6 {
	color: #999999;
	text-align: center;
	background: #f5f5f5;
	border-top: 1px solid #1A4957;
	padding: 12px 0 12px;
	margin-bottom: 75px;
}

.checkout h6 span {
	font-size: 16px;
	color: #1A4957;
	margin-right: 5px;
}

.checkout h6 a {
	text-decoration: underline;
	color: #999999;
}

.checkout__form h4 {
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.checkout__form p {
	column-rule: #b2b2b2;
}

.checkout__input {
	margin-bottom: 24px;
}

.checkout__input p {
	color: #1c1c1c;
	margin-bottom: 20px;
}

.checkout__input p span {
	color: #dd2222;
}

.checkout__input input {
	width: 100%;
	height: 46px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 16px;
	color: #b2b2b2;
	border-radius: 4px;
}

.checkout__input input.checkout__input__add {
	margin-bottom: 20px;
}

.checkout__input input::placeholder {
	color: #b2b2b2;
}

.checkout__input__checkbox {
	margin-bottom: 10px;
}

.checkout__input__checkbox label {
	position: relative;
	font-size: 16px;
	color: #1c1c1c;
	padding-left: 40px;
	cursor: pointer;
}

.checkout__input__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
	background: #1A4957;
	border-color: #1A4957;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
	opacity: 1;
}

.checkout__input__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 16px;
	width: 14px;
	border: 1px solid #a6a6a6;
	content: "";
	border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 10px;
	height: 8px;
	border: solid white;
	border-width: 3px 3px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__order {
	background: #fffdfd;
	padding: 40px;
	padding-top: 30px;
	box-shadow: 1px 1px 10px 2px #1A495729;
}

.checkout__order h4 {
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
	float: right;
}

.checkout__order ul {
	margin-bottom: 12px;
}

.checkout__order ul li {
	font-size: 16px;
	color: #6f6f6f;
	line-height: 40px;
	list-style: none;
}

.checkout__order ul li span {
	font-weight: 700;
	float: right;
}

.checkout__order .checkout__order__subtotal {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 15px;
	padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
	float: right;
}

.checkout__order .checkout__input__checkbox label {
	padding-left: 20px;
}

.checkout__order .checkout__order__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
	float: right;
	color: #dd2222;
}

.checkout__order button {
	font-size: 18px;
	letter-spacing: 2px;
	width: 100%;
	margin-top: 10px;
}

.pick-from-map {
	width: 100%;
	height: 200px;
}

.pick-from-map iframe {
	width: 100%;
	height: 100%;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 60px;
}

.blog__item__pic img {
	min-width: 100%;
}

.blog__item__text {
	padding-top: 25px;
}

.blog__item__text ul {
	margin-bottom: 15px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #b2b2b2;
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

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

.blog__item__text h5 {
	margin-bottom: 12px;
}

.blog__item__text h5 a {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 700;
}

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

.blog__item__text .blog__btn {
	display: inline-block;
	font-size: 14px;
	color: #1c1c1c;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid #b2b2b2;
	padding: 14px 20px 12px;
	border-radius: 25px;
}

.blog__item__text .blog__btn span {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.blog__pagination {
	padding-top: 5px;
	position: relative;
}

.blog__pagination:before {
	position: absolute;
	left: 0;
	top: -29px;
	height: 1px;
	width: 100%;
	background: #000000;
	opacity: 0.1;
	content: "";
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-top: 50px;
}

.blog__sidebar__item {
	margin-bottom: 50px;
}

.blog__sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.blog__sidebar__item ul li {
	list-style: none;
}

.blog__sidebar__item ul li a {
	font-size: 16px;
	color: #666666;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
	color: #1A4957;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
	color: #6f6f6f;
}

.blog__sidebar__search form button {
	font-size: 16px;
	color: #6f6f6f;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
	display: block;
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__recent__item {
	overflow: hidden;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__sidebar__recent__item__pic {
	width: 110px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
	font-weight: 700;
	color: #333333;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
}

.blog__sidebar__item__tags a {
	font-size: 16px;
	color: #6f6f6f;
	background: #f5f5f5;
	display: inline-block;
	padding: 7px 26px 5px;
	margin-right: 6px;
	margin-bottom: 10px;
}

.blog__btn:hover {
	color: #FAAA46;
	background: #faa9466a;
	border: none;
}

/*---------------------
  Blog Details Hero
-----------------------*/

/* .blog-details-hero {
	height: 300px;
	display: flex;
	align-items: center;
	border: 3px solid red;
} */

.blog-detail-banner {
	height: 330px;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.blog-detail-banner img {
	position: absolute;
	top: 0;
}

.blog-detail-banner-overlay {
	background: #11111190;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.blog-detail-banner img {
	width: 100%;
	height: inherit;
}

.blog__details__hero__text {
	position: relative;
	text-align: center;
	margin-top: 6rem;
}

.blog__details__hero__text h2 {
	font-size: 46px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__hero__text ul li {
	font-size: 16px;
	color: #ffffff;
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.blog__details__hero__text ul li:after {
	position: absolute;
	right: -26px;
	top: 0;
	content: "|";
}

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

.blog__details__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.related-blog {
	padding-top: 70px;
	padding-bottom: 10px;
}

.related-blog-title {
	margin-bottom: 70px;
}

.blog-details {
	padding-bottom: 75px;
	border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
	margin-bottom: 45px;
}

.blog__details__text img {
	margin-bottom: 30px;
}

.blog__details__text p {
	font-size: 18px;
	line-height: 30px;
}

.blog__details__text h3 {
	color: #333333;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 30px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 15px;
}

.blog__details__author__pic img {
	height: 92px;
	width: 92px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
	padding-top: 30px;
}

.blog__details__author__text h6 {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__author__text span {
	font-size: 16px;
	color: #6f6f6f;
}

.blog__details__widget ul {
	margin-bottom: 5px;
}

.blog__details__widget ul li {
	font-size: 16px;
	color: #6f6f6f;
	list-style: none;
	line-height: 30px;
}

.blog__details__widget ul li span {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__widget .blog__details__social a {
	display: inline-block;
	font-size: 20px;
	color: #6f6f6f;
	margin-right: 24px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
	color: #1A4957;
}

.blog__details__widget .blog__details__social a:last-child {
	margin-right: 0;
}

.noti-dot:before {
	content: '';
	width: 5px;
	height: 5px;
	border: 5px solid #faaa46;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color: #faaa46;
	z-index: 10;
	position: absolute;
	right: 37px;
	top: 15px;
}
.noti-dot:after {
	content: '';
	border: 4px solid #faaa46;
	background: transparent;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	height: 24px;
	width: 24px;
	-webkit-animation: pulse 3s ease-out;
	-moz-animation: pulse 3s ease-out;
	animation: pulse 3s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	position: absolute;
	top: 8px;
	right: 30px;
	z-index: 1;
	opacity: 0;
} 

/*---------------------
  Footer
-----------------------*/
.col_white_amrc {
	color: #FFF;
	font-weight: bold;
}

.powered-by a {
	color: #FAAA46;
	font-weight: 600;
}

.powered-by a:hover {
	color: #a9722d;
}

footer {
	width: 100%;
	/* background: linear-gradient(45deg, #faa946b4, #FAAA46); */
	background: #12343e;
	min-height: 250px;
	padding: 10px 0px 25px 0px;
}

.pt2 {
	padding-top: 40px;
	margin-bottom: 20px;
}

footer p {
	font-size: 13px;
	color: #FFF;
	padding-bottom: 0px;
	margin-bottom: 8px;
}

.mb10 {
	padding-bottom: 15px;
}

.footer_ul_amrc {
	margin: 0px;
	list-style-type: none;
	font-size: 14px;
	padding: 0px 0px 10px 0px;
}

.footer_ul_amrc li {
	padding: 0px 0px 5px 0px;
}

.footer_ul_amrc li a {
	color: #FFF;
}

.footer_ul_amrc a:hover {
	color: #FAAA46;
	text-decoration: none;
}

.footer_ul_amrc p:hover {
	color: #FAAA46;
	text-decoration: none;
}

.footer_ul_amrc h5:hover {
	color: #FAAA46;
	text-decoration: none;
}

.footer_ul_amrc li a:hover {
	color: #FAAA46;
	text-decoration: none;
}

.fleft {
	float: left;
}

.padding-right {
	padding-right: 10px;
}

.footer_ul2_amrc {
	margin: 0px;
	list-style-type: none;
	padding: 0px;
}

.footer_ul2_amrc li p {
	display: table;
}

.footer_ul2_amrc li a:hover {
	text-decoration: none;
}

.footer_ul2_amrc li i {
	margin-top: 5px;
}

.bottom_border {
	border-bottom: 1px solid #323f45;
	padding-bottom: 20px;
}

.foote_bottom_ul_amrc {
	list-style-type: none;
	padding: 0px;
	display: table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}

.foote_bottom_ul_amrc li {
	display: inline;
}

.foote_bottom_ul_amrc li a {
	color: #FFF;
	margin: 0 12px;
}

.foote_bottom_ul_amrc li a:hover,
.footer_ul2_amrc li p a:hover {
	color: #FAAA46;
}

.social_footer_ul {
	display: table;
	margin: 15px auto 0 auto;
	list-style-type: none;
}

.social_footer_ul li {
	padding-left: 20px;
	padding-top: 10px;
	float: left;
}

.social_footer_ul li a {
	color: #FFF;
	border: 1px solid #FFF;
	padding: 8px;
	border-radius: 50%;
}

.social_footer_ul li i {
	width: 20px;
	height: 20px;
	text-align: center;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-top: 80px;
	padding-bottom: 50px;
}

.contact__widget {
	margin-bottom: 30px;
}

.contact__widget span {
	font-size: 36px;
	color: #1A4957;
}

.contact__widget h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 6px;
	margin-top: 18px;
}

.contact__widget p {
	color: #666666;
	margin-bottom: 0;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
	height: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: #1A4957;
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: #ffffff;
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	border-radius: 10px;
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -30px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
	border: 12px solid transparent;
	border-top: 30px solid #ffffff;
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h4 {
	font-size: 22px;
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #666666;
	line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.contact__form__title {
	margin-bottom: 50px;
	text-align: center;
}

.contact__form__title h2 {
	color: #1c1c1c;
	font-weight: 700;
}

.contact-form {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-form form input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 30px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
}

.contact-form form input::placeholder {
	color: #6f6f6f;
}

.contact-form form textarea {
	width: 100%;
	height: 150px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 24px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	padding-top: 12px;
	resize: none;
}

.contact-form form textarea::placeholder {
	color: #6f6f6f;
}

.contact-form form button {
	font-size: 18px;
	letter-spacing: 2px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 45px;
	}

	.hero__search__form {
		/* width: 490px; */
		width: 100%;
	}

	.hero__categories__all {
		padding: 10px 25px 10px 20px;
		display: flex;
		gap: 5px;
		align-items: center;
		width: 100%;
	}

	.hero__categories__all span {
		display: flex;
		gap: 0px;
		font-size: 0.95rem;
		margin-right: 0.6rem;
		box-sizing: border-box;
	}

	.hero__categories ul {
		padding-left: 20px;
	}

	.fix-service-card-alignment {
		display: flex;
		flex-wrap: wrap;
		row-gap: 1rem;
		column-gap: 4rem;
		width: 100%;
	}

	.hero__search__form form .hero__search__categories {
		width: 14%;
	}

	.hero__search__form form input {
		padding-left: 15px;
	}

	.featured__filter {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}

	.latest-product__slider.owl-carousel .owl-nav {
		right: 0;
	}

	.product__details__tab .nav-tabs:before {
		width: 265px;
	}

	.product__details__tab .nav-tabs:after {
		width: 265px;
	}

	.shoping__discount form input {
		width: 240px;
	}

	.faq {
		min-height: 35vh;
	}

	.mini-sidebar .sidebar .noti-dot:before {
		display: none;
	}
	.mini-sidebar .sidebar .noti-dot:after {
		display: none;
	}
	.mini-sidebar.expand-menu .sidebar .noti-dot:before {
		display: block;
	}
	.mini-sidebar.expand-menu .sidebar .noti-dot:after {
		display: block;
	}
	
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero__categories {
		margin-bottom: 30px;
	}

	.hero__search__form {
		width: 680px;
	}

	.categories__slider.owl-carousel .owl-nav button {
		left: -20px;
	}

	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -20px;
	}

	.filter__sort .nice-select {
		padding-left: 5px;
		padding-right: 28px;
	}

	.product__details__quantity {
		margin-bottom: 10px;
	}

	.product__details__text .primary-btn {
		margin-bottom: 10px;
	}

	.product__details__tab .nav-tabs:before {
		width: 150px;
	}

	.product__details__tab .nav-tabs:after {
		width: 150px;
	}

	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}

	.humberger__open {
		display: block;
		font-size: 22px;
		color: #1c1c1c;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}

	.header .container {
		position: relative;
	}

	.humberger__menu__wrapper {
		width: 300px;
		background: #ffffff;
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 50px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
	}

	.humberger__menu__logo {
		margin-bottom: 30px;
	}

	.humberger__menu__logo a {
		display: inline-block;
	}

	.humberger__menu__contact {
		padding: 10px 0 13px;
	}

	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		line-height: 30px;
		list-style: none;
	}

	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}

	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}

	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}

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

	.humberger__menu__cart ul li a {
		position: relative;
	}

	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}

	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: #FAAA46;
		font-size: 10px;
		color: #ffffff;
		line-height: 13px;
		text-align: center;
		font-weight: 700;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: -12px;
	}

	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
	}

	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 700;
	}

	.humberger__menu__cart {
		margin-bottom: 25px;
	}

	.humberger__menu__widget {
		margin-bottom: 20px;
	}

	.humberger__menu__widget .header__top__right__language {
		margin-right: 20px;
	}

	.humberger__menu__nav {
		display: none;
	}

	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.humberger__menu__wrapper .slicknav_btn {
		display: none;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_item a {
		border-bottom: none !important;
	}

	.humberger__menu__wrapper .slicknav_nav {
		display: block !important;
	}

	.humberger__menu__wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}

	.humberger__menu__wrapper .slicknav_nav ul {
		margin: 0;
	}

	.humberger__menu__wrapper .slicknav_nav a {
		color: #1c1c1c;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		border-bottom: 1px solid #e1e1e1;
	}

	.humberger__menu__wrapper .slicknav_nav a:hover {
		-webkit-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #1A4957;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_row,
	.humberger__menu__wrapper .slicknav_nav a {
		padding: 8px 0;
	}

	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__overlay.active {
		visibility: visible;
	}

	.header__top {
		display: none;
	}

	.header__menu {
		display: none;
	}

	.header__cart {
		text-align: center;
		padding: 10px 0 24px;
	}

	.over_hid {
		overflow: hidden;
	}

	.hero__categories__all span i {
		/* transform: translate(445px, 2px) !important; */
	}

	.header__top__right__language img {
		width: 39px;
	}

	.contact-company-image-and-description {
		height: 400px;
	}

	.fix-map {
		width: 330px;
		height: 100%;
	}

	.fix-margin-for-FAQ-on-tab-mode {
		margin-top: 10rem;
	}

	.trusted-by .item img {
		width: 140px !important;
		height: 140px !important;
		object-fit: contain;
	}

	.dropdown:hover .dropdown-content {
		top: 50px;
		left: 15px;
		width: 648px;
	}

}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {

	.hero__categories {
		margin-bottom: 30px;
	}

	.hero__categories ul {
		display: none;
	}

	.hero__search {
		margin-bottom: 30px;
	}

	.hero__search__form {
		width: 100%;
	}

	.hero__search__form form input {
		width: 100%;
	}

	.hero__search__form form .hero__search__categories {
		display: none;
	}

	.hero__search__phone {
		float: left;
		margin-top: 30px;
	}

	.categories__slider.owl-carousel .owl-nav {
		text-align: center;
		margin-top: 40px;
	}

	.categories__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
		-webkit-transform: translateY(0);
	}

	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}

	.footer__copyright {
		text-align: center;
	}

	.footer__copyright__text {
		float: none;
		margin-bottom: 25px;
	}

	.footer__copyright__payment {
		float: none;
	}

	.filter__item {
		text-align: center;
	}

	.filter__option {
		text-align: center;
	}

	.product__details__pic {
		margin-bottom: 40px;
	}

	.product__details__tab .nav-tabs:before {
		display: none;
	}

	.product__details__tab .nav-tabs:after {
		display: none;
	}

	.shoping__cart__table {
		overflow-y: auto;
	}

	.shoping__discount form input {
		margin-bottom: 15px;
	}

	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}

	.humberger__open {
		display: block;
		font-size: 22px;
		color: #1c1c1c;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}

	.header .container {
		position: relative;
	}

	.humberger__menu__wrapper {
		width: 300px;
		background: #ffffff;
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 50px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
		z-index: 200px !important;
	}

	.humberger__menu__logo {
		margin-bottom: 30px;
	}

	.humberger__menu__logo a {
		display: inline-block;
	}

	.humberger__menu__contact {
		padding: 10px 0 13px;
	}

	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		line-height: 30px;
		list-style: none;
	}

	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}

	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}

	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}

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

	.humberger__menu__cart ul li a {
		position: relative;
	}

	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}

	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: #FAAA46;
		font-size: 10px;
		color: #ffffff;
		line-height: 13px;
		text-align: center;
		font-weight: 700;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: -12px;
	}

	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
	}

	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 700;
	}

	.humberger__menu__cart {
		margin-bottom: 25px;
	}

	.humberger__menu__widget {
		margin-bottom: 20px;
	}

	.humberger__menu__widget .header__top__right__language {
		margin-right: 20px;
	}

	.humberger__menu__nav {
		display: none;
	}

	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.humberger__menu__wrapper .slicknav_btn {
		display: none;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_item a {
		border-bottom: none !important;
	}

	.humberger__menu__wrapper .slicknav_nav {
		display: block !important;
	}

	.humberger__menu__wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}

	.humberger__menu__wrapper .slicknav_nav ul {
		margin: 0;
	}

	.humberger__menu__wrapper .slicknav_nav a {
		color: #1c1c1c;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		border-bottom: 1px solid #e1e1e1;
	}

	.humberger__menu__wrapper .slicknav_nav a:hover {
		-webkit-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #1A4957;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_row,
	.humberger__menu__wrapper .slicknav_nav a {
		padding: 8px 0;
	}

	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__overlay.active {
		visibility: visible;
	}

	.header__top {
		display: none;
	}

	.header__menu {
		display: none;
	}

	.header__cart {
		text-align: center;
		padding: 10px 0 24px;
	}

	.over_hid {
		overflow: hidden;
	}

	.fix-contact {
		/* margin-top: 13rem; */
	}

	.fix-map {
		width: 345px;
		max-width: 345px;
		height: 300px;
	}

	.service-card {
		width: 90% !important;
	}

	.hero__categories__all span i {
		/* transform: translate(125px, 2px) */
	}

	.trusted-by .owl-carousel .item img {
		width: 160px !important;
		height: 160px !important;
		object-fit: contain;
	}

	.dropdown:hover .dropdown-content {
		display: none !important;
	}

	.foote_bottom_ul_amrc {
		display: inline-flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}

	.latest-product__text h4 {
		font-size: 1.4rem;
		margin-top: 1rem;
	}

	.header__top__right__language img {
		width: 40px;
		height: auto;
	}

	.about-company-image-and-description h3 {
		text-align: center;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__search__form form .hero__search__categories {
		display: none;
	}

	.featured__controls ul li {
		margin-bottom: 10px;
	}

	.product__details__text ul li b {
		width: 100px;
	}

	.product__details__tab .nav-tabs li {
		margin-right: 20px;
	}

	.shoping__cart__btns {
		text-align: center;
	}

	.primary-btn.cart-btn.cart-btn-right {
		float: none;
		margin-top: 10px;
	}

	.shoping__checkout .primary-btn {
		display: block;
		text-align: center;
		padding: 10px 15px 10px;
	}

	.map .map-inside {
		-webkit-transform: translateX(-125px);
		-ms-transform: translateX(-125px);
		transform: translateX(-125px);
	}

	.map .map-inside .inside-widget {
		width: 250px;
	}

	.product__details__tab .nav-tabs li {
		margin-right: 15px;
	}

	.shoping__discount form input {
		width: 100%;
	}

	.checkout__order {
		padding: 20px;
	}

	.blog__details__hero__text h2 {
		font-size: 24px;
	}

	.featured__item {
		margin-left: 7px;
	}

	.trusted-by .owl-carousel .item img {
		width: 150px;
		height: 150px;
		margin-right: 100px;
		object-fit: contain;
	}


}

/*---------------------
  Product Grid
-----------------------*/

.product {
	/* padding-top: 80px; */
	padding-bottom: 80px;
}

.product__discount {
	padding-bottom: 50px;
}

.product__discount__title {
	text-align: left;
	margin-bottom: 65px;
}

.product__discount__title h2 {
	display: inline-block;
}

.product__discount__title h2:after {
	margin: 0;
	width: 100%;
}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__discount__item__pic {
	height: 100%;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.product__discount__item__pic .product__discount__percent {
	height: 45px;
	width: 45px;
	background: #dd2222;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	line-height: 45px;
	text-align: center;
	position: absolute;
	left: 15px;
	top: 15px;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #1A4957;
	border-color: #1A4957;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__discount__item__text {
	text-align: center;
	padding-top: 20px;
}

.product__discount__item__text span {
	font-size: 14px;
	color: #b2b2b2;
	display: block;
	margin-bottom: 4px;
}

.product__discount__item__text h5 {
	margin-bottom: 6px;
}

.product__discount__item__text h5 a {
	color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
}

.product__discount__item__text .product__item__price span {
	display: inline-block;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
	max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
	height: 12px;
	width: 12px;
	border: 1px solid #b2b2b2;
	border-radius: 50%;
	margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
	background: #707070;
	border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.filter__item {
	padding-top: 45px;
	border-top: 1px solid #ebebeb;
	padding-bottom: 20px;
}

.filter__sort {
	margin-bottom: 15px;
}

.filter__sort span {
	font-size: 16px;
	color: #6f6f6f;
	display: inline-block;
}

.filter__sort .nice-select {
	background-color: #fff;
	border-radius: 0;
	border: none;
	display: inline-block;
	float: none;
	height: 0;
	line-height: 0;
	padding-left: 18px;
	padding-right: 30px;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	cursor: pointer;
}

.filter__sort .nice-select span {
	color: #1c1c1c;
}

.filter__sort .nice-select:after {
	border-bottom: 1.5px solid #1c1c1c;
	border-right: 1.5px solid #1c1c1c;
	height: 8px;
	margin-top: 0;
	right: 16px;
	width: 8px;
	top: -5px;
}

.filter__sort .nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	top: 15px;
}

.filter__sort .nice-select .option {
	line-height: 30px;
	min-height: 30px;
}

.filter__found {
	text-align: center;
	margin-bottom: 15px;
}

.filter__found h6 {
	font-size: 16px;
	color: #b2b2b2;
}

.filter__found h6 span {
	color: #1c1c1c;
	font-weight: 700;
	margin-right: 5px;
}

.filter__option {
	text-align: right;
	margin-bottom: 15px;
}

.filter__option span {
	font-size: 24px;
	color: #b2b2b2;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__option span:last-child {
	margin: 0;
}

.filter__option span:hover {
	color: #1A4957;
}

.product__item {
	margin-bottom: 50px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #FAAA46;
	border-color: #FAAA46;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text {
	text-align: center;
	padding-top: 15px;
}

.product__item__text h6 {
	margin-bottom: 10px;
}

.product__item__text h6 a {
	color: #252525;
}

.product__item__text h5 {
	color: #252525;
	font-weight: 700;
}

.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: #1A4957;
	border-color: #1A4957;
	color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
	margin-right: 0;
}

.search-product-input:focus,
.search-merchant-input:focus {
	outline: none;
	border: 0.5px solid #dfdfdf;
	box-shadow: 0.5px 0.5px 5px 1px #faa9468e;
}

.search-product-input::placeholder {
	color: rgb(189, 188, 188);
}

/* product detail product review section */


/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 60px;
}

.blog__item__pic img {
	min-width: 100%;
}

.blog__item__text {
	padding-top: 25px;
}

.blog__item__text ul {
	margin-bottom: 15px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #b2b2b2;
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

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

.blog__item__text h5 {
	margin-bottom: 12px;
}

.blog__item__text h5 a {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 700;
}

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

.blog__item__text .blog__btn {
	display: inline-block;
	font-size: 14px;
	color: #1c1c1c;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid #b2b2b2;
	padding: 14px 20px 12px;
	border-radius: 25px;
}

.blog__item__text .blog__btn span {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.blog__pagination {
	padding-top: 5px;
	position: relative;
}

.blog__pagination:before {
	position: absolute;
	left: 0;
	top: -29px;
	height: 1px;
	width: 100%;
	background: #000000;
	opacity: 0.1;
	content: "";
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-top: 50px;
}

.blog__sidebar__item {
	margin-bottom: 50px;
}

.blog__sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.blog__sidebar__item ul li {
	list-style: none;
}

.blog__sidebar__item ul li a {
	font-size: 16px;
	color: #666666;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
	color: #1A4957;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
	color: #6f6f6f;
}

.blog__sidebar__search form button {
	font-size: 16px;
	color: #6f6f6f;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
	display: block;
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__recent__item {
	overflow: hidden;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
	font-weight: 700;
	color: #333333;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
}

.blog__sidebar__item__tags a {
	font-size: 16px;
	color: #6f6f6f;
	background: #f5f5f5;
	display: inline-block;
	padding: 7px 26px 5px;
	margin-right: 6px;
	margin-bottom: 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-details-hero {
	height: 350px;
	display: flex;
	align-items: center;
}

.blog__details__hero__text {
	text-align: center;
}

.blog__details__hero__text h2 {
	font-size: 46px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__hero__text ul li {
	font-size: 16px;
	color: #ffffff;
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.blog__details__hero__text ul li:after {
	position: absolute;
	right: -26px;
	top: 0;
	content: "|";
}

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

.blog__details__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.related-blog {
	padding-top: 70px;
	padding-bottom: 10px;
}

.related-blog-title {
	margin-bottom: 70px;
}

.blog-details {
	padding-bottom: 75px;
	border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
	margin-bottom: 45px;
}

.blog__details__text img {
	margin-bottom: 30px;
}

.blog__details__text p {
	font-size: 18px;
	line-height: 30px;
}

.blog__details__text h3 {
	color: #333333;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 30px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 15px;
}

.blog__details__author__pic img {
	height: 92px;
	width: 92px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
	padding-top: 30px;
}

.blog__details__author__text h6 {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__author__text span {
	font-size: 16px;
	color: #6f6f6f;
}

.blog__details__widget ul {
	margin-bottom: 5px;
}

.blog__details__widget ul li {
	font-size: 16px;
	color: #6f6f6f;
	list-style: none;
	line-height: 30px;
}

.blog__details__widget ul li span {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__widget .blog__details__social a {
	display: inline-block;
	font-size: 20px;
	color: #6f6f6f;
	margin-right: 24px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
	color: #1A4957;
}

.blog__details__widget .blog__details__social a:last-child {
	margin-right: 0;
}

.dropdown {
	position: relative;
}

.dropbtn {
	display: block;
	border-radius: 2px;
	padding-left: 1rem;
}

.dropbtn:hover {
	background: #1A495734;
	/* color: #1A4957; */
}

.dropdown-content {
	position: absolute;
	top: 0;
	/* left: 231px; */
	left: 200px;
	background: #fdfdfd;
	min-width: 200px;
	/* width: 300px; */
	/* height: 470px; */
	height: 100%;
	z-index: 101;
	border-radius: 0 10px 10px 10px;
	border: 1px solid #1A49573f;
	box-shadow: 1px 1px 10px 2px #1A495720;
	display: none;
	box-sizing: border-box;
	list-style-type: none;
	padding: 0;
	margin: 0;
	grid-template: repeat(8, 1fr) / repeat(2, 1fr);
	grid-auto-flow: column dense;
	padding: 10px 20px 0px 10px
		/* overflow-y: scroll; */
}

.dropdown:hover .dropdown-content {
	display: grid;
	transition: all ease-in-out 1s;
}

.more__categories {
	/* border: 3px solid red; */
	padding: 1rem;
}

.dropdown__content__categories {
	/* border: 2px solid green; */
	box-shadow: 1px 1px 10px 2px #1A49572c;
	border-radius: 0.7rem;
	display: flex;
	text-align: center;
	width: 100%;
	height: auto;

}

.dropdown__content__categories:hover {
	background: #faa94640;
}

.dropdown__content__categories img {
	width: 150px;
	height: 100px;
	transform: scale(0.9);
	mix-blend-mode: multiply;
}

.dropdown__content__text {
	font-size: 1rem;
	width: 150px;
	/* text-decoration-color: black !important; */
	/* text-size-adjust: 5px; */
	text-transform: capitalize;
}

/* professionals style */

.professionals {
	display: flex;
	/*   justify-content: center; */
	align-items: center;
	height: auto;
	margin: 1rem;
}

.all-professionals-categories-list .owl-carousel .owl-item img {
	margin-left: 0 !important;
}

.all-professionals-categories-list .owl-carousel .owl-item {
	width: auto !important;
}

.professional-avatar {
	width: 40px;
	height: 40px;
}

.professionals-rate-and-review {
	gap: 0.4rem;
	align-items: center;
	height: 100%;
}

.professionals-rating {
	gap: 0.2rem;
	color: #FFA800;
}

.professionals-category-name {
	display: flex;
	align-items: center;
	background: #e8edee;
	color: black;
	font-size: 0.91rem;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
}

.professionals-category-name:hover {
	background: #1A4957;
	color: white;
	cursor: pointer;
}

.professionals-card-body {
	display: flex;
	flex-direction: column;
	gap: 7px;
	background: #FAFAFA !important;
	padding: 0.8rem;
	border-radius: 7px;
}

.professionals-card-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #1a1a1a;
	margin-bottom: 0.8rem;
}

.professionals-card-title:hover {
	color: #faa946;
}

.professionals-category-and-price .price {
	font-size: 1.1rem;
	font-weight: bold;
}

.professionals-gig-worker {
	gap: 1rem;
	align-items: center;
}

.professionals-btn-teal {
	background-color: teal !important;
	color: white !important;
}

.professionals-btn-teal:hover {
	opacity: 0.9;
	color: white;
}

.professionals {
	gap: 1rem;
}

.all-professionals-categories-list {
	display: flex;
}

.professionals-category-card {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	gap: 1rem;
	background: #e8edee !important;
	margin: 12px;
	height: 233px;
}

.professionals-category-image {
	width: 80px;
	height: 80px;
	border-radius: 100%;
	display: block;
	margin: 1.2rem auto 0;
	padding: 20px;
	background: white;
}

.professionals-category-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #1a1a1a;
	text-transform: capitalize;
}

.professionals-total-services {
	color: #1a1a1a;
}

.professionals-category-card:hover {
	background: #1A4957 !important;
}

.professionals-category-card:hover .professionals-category-title,
.professionals-category-card:hover .professionals-total-services {
	color: white !important;
}

.professionals-card {
	width: 15rem;
	display: flex;
	flex-direction: column;
}

.professionals-card-image-preview {
	height: 200px;
}

.professionals-card-image-preview img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}

/* end of professionals style */

/* about page additional styles*/
.contact__widget i {
	font-size: 36px;
	color: #1A4957;
}
.about__page__banner {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: #1A4957;
	color: #fff;
	padding: 3rem 2rem;
}
.about__page__banner h2 {
	font-size: 3rem;
}
.breadcrumb__nav__links a {
	color: #FAAA46;
}
.breadcrumb__nav__links a:hover {
	text-decoration: underline;
}
/* end of about page addtional styles*/