/* Fonts */
:root {
  --default-font: "Inter", sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
	--default-color: #C5DB72;
	--heading-color: #2a2a2a;
	--accent-color: #00447C;
	--accent2-color: #1C63A0;
	--contrast-color: #ffffff;
	--text-color: #000;
}

/* Nav Menu Colors */
:root {
  --nav-color: #2a2a2a;
	--nav-hover-color: #000;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #212529;
	--nav-dropdown-hover-color: #ff7171;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--text-color);
  background-color: var(--contrast-color);
  font-family: var(--default-font);
}

body::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font)
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #5ec6ca;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	background: var(--accent-color);
	color: #fff;
	height: 36px;
	font-size: 14px;
	z-index: 996;
	transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
	font-size: 18px;
	color: #A9CF39;
	padding-right: 6px;
	line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 10px 0;
	top: 36px;
	border-bottom: 2px solid #EDEDED;
}
#header.header-scrolled {
	top: 0;
	padding: 8px 0;
	background: #ffffff8f;
	backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
	#header.header-scrolled {
    background: #fff;
    backdrop-filter: none;
	}
}


#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 46px;
}

@media (max-width: 991px) {
	#header .logo img {
    max-height: 38px;
	}
}

.search-bar {
	background: #F3F9FB;
	border-radius: 50px;
	height: 50px;
	min-width: 360px;
	display: none;
	align-items: center;
	padding: 4px 16px 4px 16px;
	display: none;
}
.product-page .search-bar {
	display: flex;
}
.product-page nav {
	display: none;
}
.search-bar i {
	color: #008ECC;
	font-size: 20px;
	transition: 0.3s;
	margin-right: 12px;
}
.search-bar .form-control {
	background: transparent;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: 16px;
}
.search-bar .form-control:focus {
	box-shadow: none;
}

@media (max-width: 991px) {
	.product-page .search-bar {
		display: none;
	}
}

/**
* Appointment Button
*/
#header ul.dropdown-menu {
	border: none;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
#header .dropdown-item {
	padding: 10px 16px;
}
.login-btn {
	background: var(--accent-color);
	color: #fff;
	border-radius: 50px;
	padding: 8px 20px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.login-btn i {
	font-size: 20px;
	margin-right: 6px;
}

.login-btn:hover {
  background: #65c9cd;
  color: #fff;
}
.icon-btn.dropdown-toggle::after {
	display: none;
}
.icon-btn {
	background: #f4f4f4;
	color: #008ECC;
	border-radius: 50px;
	padding: 8px;
	height: 40px;
	width: 40px;
	font-size: 20px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-btn:focus, 
.icon-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 768px) {
  .login-btn {
    margin: 0 0 0 15px;
    padding: 6px 15px;
  }
}
.separator {
	width: 2px;
	background: #D9D9D9;
	min-height: 26px;
	height: 100%;
	margin: 0 20px;
}

@media (max-width: 768px) {
	.separator {
		background: #fff;
		margin: 0 5px;
	}
}
/*--------------------------------------------------------------
# category-list
--------------------------------------------------------------*/
.category-list {
	background: #F0F2F3;
	transition: all 0.5s;
	z-index: 996;
	padding: 5px 0;
	height: 48px;
	top: 108px;
	overflow: visible;
}
.category-list .container {
  overflow-x: auto;
  cursor: grab;
	-webkit-overflow-scrolling: touch;
}

.category-list.header-scrolled {
	top: 66px;
}
.category-list .container::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}
.category-list .container::-webkit-scrollbar-track {
  background-color: #EFF2F3;
}
.category-list .container::-webkit-scrollbar-thumb {
	background-color: #cacaca;
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.category-list:hover .container::-webkit-scrollbar-thumb {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}


@media (max-width: 768px) {
	.category-list.header-scrolled {
    top: 58px;
	}
}
.category-list ul.list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
}
.category-list .dropdown-toggle::after {
	display: none;
}
.category-list .btn-list {
	background: #fff;
	color: #2a2a2a;
	border-radius: 50px;
	padding: 6px 14px;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	transition: 0.3s;
}

.category-list .btn-list i {
	font-size: 20px;
	margin-left: 6px;
}

.category-list .btn-list:hover,
.category-list .btn-list.active {
	background: var(--accent-color);
	color: #fff
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--accent-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
	margin-left: 10px;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent-color);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--accent-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: calc(100vh - 106px);
	position: relative;
	margin-top: 104px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 3;
}
.hero::after {
	content: "";
	background: rgb(44,76,100);
	background: linear-gradient(90deg, rgb(255 255 255 / 80%) 5%, rgb(255 255 255) 80%), url(../img/pattern.svg);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero .banner-img {
	height: calc(100vh - 150px);
	border-radius: 24px;
	padding: 50px;
	overflow: hidden;
	position: relative;
	display: grid;
	align-items: end;
}
.hero .banner-img img {
	border-radius: 20px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}


.hero h1 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-size: 52px;
	line-height: 60px;
	letter-spacing: -2px;
	font-weight: 600;
	position: relative;
}

.hero h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: #000;
  left: 0;
  bottom: 0;
  margin: auto;
}

.hero h4 {
	color: #4C505E;
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 24px;
	width: 80%;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero {
    padding: 15px 0px;
		min-height: auto;
  }
}

@media (max-width: 768px) {
	.hero .banner-img {
    height: calc(50vh - 150px);
	}
	.hero h1 {
    margin-top: 20px;
    font-size: 34px;
    line-height: 40px;
	}
  .hero h2 {
    font-size: 36px;
		line-height: 44px;
  }
	.hero h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}

.hero-list {
	width: 100%;
	height: 35px;
	display: inline-flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	margin-top: 40px;
}

.hero-list .item {
	align-self: stretch;
	padding: 10px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 100%;
	white-space: nowrap;
}

.hero-list .text {
  color: #2C2C2C;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  word-wrap: break-word;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 16px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 16px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
	visibility: hidden;
	opacity: 0;
}

.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon {
	visibility: visible;
	opacity: 1;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8f8f8;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
}

.title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 14px;
}

.section-title h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
	color: var(--accent-color);
	border-left: 5px solid var(--default-color);
}

.section-title p {
	font-size: 18px;
}

@media (max-width: 768px) {
	section {
    padding: 60px 0;
    overflow: hidden;
	}
	.section-title {
		padding-bottom: 24px;
	}
  .section-title h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
	}
	.section-title p {
    font-size: 16px;
	}
}

.page-title {
	background: #c5db7129;
	border-radius: 10px;
	margin-right: 10px;
	padding: 12px;
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	display: flex;
	align-items: center;
}
.page-title i {
	background: #aacf38;
	color: #fff;
	padding: 3px;
	font-size: 19px;
	height: 38px;
	width: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.section .lg-img {
	border-radius: 20px;
}

.btn-phone {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--default-font);
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -1px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	padding: 8px 20px 8px 8px;
	border-radius: 50px;
	transition: 0.5s;
}

.btn-phone i {
	color: var(--accent-color);
	background: var(--default-color);
	border-radius: 50px;
	width: 36px;
	height: 36px;
	padding: 5px;
	margin-right: 8px;
	font-size: 25px;
	transform: rotate(0deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.btn-phone:hover {
	color: var(--accent-color);
	background: var(--default-color);
}

.btn-phone:hover i{
	color: var(--contrast-color);
	background: var(--accent-color);
	transform: rotate(360deg);
}

.btn-contact {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	padding: 8px 8px 8px 20px;
	border-radius: 50px;
	transition: 0.5s;
}

.btn-contact i {
	color: var(--accent-color);
	background: var(--default-color);
	border-radius: 50px;
	width: 36px;
	height: 36px;
	padding: 5px;
	margin-left: 8px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.btn-contact:hover {
	color: var(--accent-color);
	background: var(--default-color);
}

.btn-contact:hover i{
	color: var(--contrast-color);
	background: var(--accent-color);
	transform: rotate(450deg);
}

.btn-products {
	color: var(--accent-color);
	background: var(--default-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	padding: 8px 8px 8px 20px;
	border-radius: 50px;
	transition: 0.5s;
}

.btn-products i {
	color: var(--default-color);
	background: var(--accent-color);
	border-radius: 50px;
	width: 36px;
	height: 36px;
	padding: 5px;
	margin-left: 8px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.btn-products:hover {
	color: var(--contrast-color);
  background: var(--accent-color);
}

.btn-products:hover i{
	color: var(--accent-color);
	background: var(--default-color);
	transform: rotate(450deg);
}

/* ======Tabs====== */

.multi-tab .nav {
	border-bottom: 2px solid #EDEDED;
}
.multi-tab .nav-link {
	color: #000;
	background-color: transparent;
	border-bottom: 2px solid #fff;
	border-radius: 0;
	font-weight: 600;
	margin-right: 50px;
	padding: 0 0 10px 0;
}
.multi-tab .nav-link.active {
	color: var(--accent-color);
	background-color: transparent;
	border-bottom: 2px solid var(--accent-color);
}

.multi-tab .nav-link:hover {
	border-bottom: 2px solid #8a8a8a;
}

.multi-tab h2 {
	font-size: 22px;
}

.multi-tab p {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.bread-section {
	padding: 0;
}
.breadcrumbs {
	padding: 10px 0;
	/* background-color: #fff;
	border-bottom: 2px solid #EDEDED; */
	min-height: 25px;
	margin-top: 156px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: ">";
}

@media (max-width: 768px) {
	.bread-section {
    padding-top: 86px;
	}
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Eco-friendly
--------------------------------------------------------------*/
.eco-box img {
	background: #F8F8F8;
	border-radius: 5px;
	margin-bottom: 14px;
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: 0.3s ease;
}
.eco-box h2 {
	font-size: 22px;
	font-weight: 600;
}
.eco-box p {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--accent-color);
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Category
--------------------------------------------------------------*/

.category .swiper-slide {
	position: relative;
}
.category .swiper-slide img{
	background: #F8F8F8;
	border-radius: 5px;
	padding: 20px;
	width: 100%;
	height: 200px;
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
  transition: 0.3s ease;
}

.cat-slider .swiper-slide:first-child img{
	background: #D2BFB6;
}
.cat-slider .swiper-slide:nth-child(2) img {
	background: #C5B2DB;
}
.cat-slider .swiper-slide:nth-child(3) img {
	background: #E6E6E4;
}
.cat-slider .swiper-slide:nth-child(4) img {
	background: #E1DFEA;
}
.cat-slider .swiper-slide:nth-child(5) img {
	background: #798f5d;
}
.cat-slider .swiper-slide:nth-child(6) img {
	background: #FCDE97;
}
.cat-slider .swiper-slide:nth-child(7) img {
	background: #eec19d;
}
.category .swiper-slide p {
	color: transparent;
	background: transparent;
	border-radius: 50px;
	padding: 4px 13px;
	margin: 0;
	font-size: 14px;
	transition: 0.3s ease;
	position: absolute;
	bottom: 10px;
	left: 10px;
}
.category .swiper-slide:hover img {
	box-shadow: inset 0 0 90px #00000021;
}
.category .swiper-slide:hover p{
	color: #000;
	background: #fff;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: var(--accent-color);
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: var(--accent-color);
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f0fafa;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: var(--accent-color);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--accent-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #65c9cd;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #D6E5FF;
  padding: 0;
  color: #000000;
  font-size: 14px;
}

#footer .footer-top {
  background: #F3F4F6;
  padding: 60px 0 30px 0;
}

#footer .footer-top .logo img {
	height: 48px;
	width: auto;
	margin-bottom: 20px;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-info i{
	font-size: 28px;
	margin-right: 8px;
}

#footer .footer-top .footer-info h3 {
	font-size: 18px;
	font-family: var(--default-font);
	margin: 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #BDC4CD;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 700;
	position: relative;
	padding-bottom: 12px;
	color: #000;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--accent-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #8B96A5;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--accent-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--accent-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #65c9cd;
}

#footer .copyright {
  text-align: center;
  padding: 30px 0;
}

#footer .credits {
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  #footer .copyright {
    padding: 30px 0 10px 0;
  }
  #footer .credits {
    padding: 10px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

#rtl-hero .hero-image {
	position: absolute;
	top: 0 !important;
	inset: 0px;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.login {
	height: 100vh;
	padding: 20px;
}
.login .logo {
	display: block;
	width: 260px;
	margin: 0 auto;
	margin-bottom: 50px;
}
.login .banner-img {
	height: calc(100vh - 40px);
	border-radius: 24px;
	padding: 50px;
	overflow: hidden;
	position: relative;
	display: grid;
	align-items: end;
}
.login .banner-img::before {
	content: "";
	background: linear-gradient(45deg, rgb(0 0 0 / 75%) 5%, rgb(0 0 0 / 0%) 80%);
	position: absolute;
	inset: 0;
	z-index: 1;
}
.login .form-signin {
	display: grid;
}
.login .form-signin h2 {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -1px;
}
.login .form-signin p {
	color: #999999;
	font-size: 15px;
}
.login .or {
	padding: 16px 0;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login .or:before {
	content: "";
	background: #eeeeee;
	display: block;
	height: 2px;
	margin-top: 3px;
	position: absolute;
	right: 0;
	z-index: -2;
	width: 45%;
}
.login .or:after {
	content: "";
	background: #eeeeee;
	display: block;
	height: 2px;
	margin-top: 3px;
	position: absolute;
	left: 0;
	z-index: -2;
	width: 45%;
}
.btn-login {
	background: var(--accent-color);
	color: #fff;
	padding: 11px 20px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 18px;
}
.btn-login:hover {
  background: var(--accent2-color);
  color: #fff;
}
.btn-create {
	background: #EFF2FB;
	color: var(--accent2-color);
	padding: 11px 20px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 18px;
}
.btn-create:hover {
  background: var(--accent2-color);
  color: #fff;
}
/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/

.filter .accordion-item {
	border: none;
	border-top: 1px solid #DEE2E7;
	border-radius: 0!important;
}
.filter .accordion-item:not(:first-of-type) {
	border-top: 1px solid #DEE2E7;
}
.filter .accordion-button {
	color: var(--bs-accordion-active-color);
	padding: 15px 0;
	font-size: 16px;
	font-weight: 600;
  transition: all 0.4s;
}
.filter .accordion-button:not(.collapsed) {
	padding: 15px 0;
	color: #000000;
	font-weight: 700;
	background-color: transparent;
	box-shadow: none;
}
.filter .accordion-button:focus {
	box-shadow: none;
}
.accordion-button::after {
	background-size: 14px!important;
	height: 14px !important;
	width: 14px !important;
}
.filter .accordion-body {
	padding: 0 0 10px 0;
}
.filter .accordion-body ul {
	list-style: none;
	padding: 0;
}
.filter .accordion-body li {
	margin-bottom: 6px;
}
.filter .accordion-body a {
	padding: 1px 0 1px;
	color: #505050;
	display: block;
	width: 100%;
  transition: all 0.4s;
}
.filter .accordion-body a:hover {
	color: var(--accent-color);
	padding: 1px 5px;
	border-radius: 5px;
	background: #EFF2F3;
}
.filter .accordion-body ul .form-check {
	padding: 1px 0 1px;
	display: flex;
	justify-content: space-between;
  transition: all 0.4s;
}
.filter .accordion-body ul .form-check:hover {
	padding: 1px 5px;
	border-radius: 5px;
	background: #EFF2F3;
}
.filter .accordion-body ul .form-check .form-check-input {
	float: none;
	margin-left: 0;
}
.filter .accordion-body ul .form-check label {
	display: inline-block;
	width: 100%;
}
.mobile-filter-toggle {
	color: #555555;
	font-size: 28px;
	cursor: pointer;
	display: none;
	margin-right: 10px;
	line-height: 0;
	transition: 0.5s;
}
@media (max-width: 991px) {
	.mobile-filter-toggle {
    font-size: 24px;
    border: 1px solid #b6b6b6;
    border-radius: 3px;
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
	}
	.filter {
    position: absolute;
    width: calc(100% - 77px);
    right: -400px;
    z-index: 10;
    background: #fff;
    border: 2px solid #00447c;
    padding: 15px;
    border-radius: 5px;
		transition: all 0.4s ease-in-out;
	}
	.filter.toggled {
    right: 10px;
		transition: all 0.4s ease-in-out;
	}
}
.title-box {
	border: 1px solid #dedede;
	padding: 10px; 
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.title-box h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.title-box .results {
	color: #9b9b9b;
	font-size: 14px;
	font-weight: 500;
}

@media (max-width: 768px) {
	.title-box h2 {
    font-size: 18px;
	}
	.title-box .results {
    font-size: 12px;
	}
}

.filtered-list {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  cursor: grab;
}
.filtered-list ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filtered-list ul li {
  border: 1px solid #0D6EFD;
  padding: 4px 4px 4px 8px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.filtered-list ul li .btn-list {
	padding: 0;
	color: #3d3d3d3d;
	background:#f8f8f8;
	width: 20px;
	height: 20px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
  transition: all 0.4s;
}
.filtered-list ul li:hover .btn-list {
	color: #fff;
	background: rgb(255, 86, 86);
}
.filtered-list span {
	color: #0D6EFD;
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 5px;
  transition: all 0.4s;
}
.filtered-list span i {
	font-size: 20px;
	border-radius: 50px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.filtered-list span:hover i {
	color: #fff;
	background: rgb(255, 86, 86);
}
@media (max-width: 768px) {
	.filtered-list {
    margin-bottom: 20px;
	}
	.filtered-list span {
    font-size: 14px;
	}
	.filtered-list ul li {
    padding: 2px 2px 2px 4px;
    font-size: 12px;
	}
	.title-box select.form-select {
		font-size: 12px;
		width: auto!important;
	}
}

.product-box {
	background: #fff;
	border-radius: 10px;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
  transition: all 0.4s;
}
.product-box .status {
	color: #fff;
	background: #01AD5A;
	border-radius: 5px;
	padding: 2px 6px;
	font-size: 14px;
	position: absolute;
	top: 10px;
	left: 10px;
  transition: all 0.4s;
}
.product-box .image {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 10px;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
  transition: all 0.4s;
}
.product-box .image img {
	width: 100%;
	height: 100%;	
	object-fit: contain;
}
.product-box .content {
	padding: 10px;
	text-align: center;
  transition: all 0.4s;
}
.product-box .content .name {
	color: #747474;
	font-size: 16px;
	font-weight: 600;
}
.product-box .content .price {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
}
.product-box:hover {
	padding: 10px;
	box-shadow: 0px 0px 18px rgb(0 0 0 / 15%);
}
.product-box:hover .image {
	height: calc(210px - 10px);
}
.product-box:hover .content {
	padding-bottom: 0;
}

/* Product slider */

.product-images {
	top: 120px;
}
.product-images .slider {
	position: relative;
	overflow: hidden;
}
.product-images .slider .swiper-slide {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 10px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s;
}
.product-images .slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.4s;
}
.product-images .slider-thumbnail .swiper-slide {
	background: #f8f8f8;
	border: 2px solid #f8f8f8;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 10px;
	width: 100%;
	height: 120px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s;
}
.product-images .slider-thumbnail .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.4s;
}
.product-images .slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
	padding: 6px;
	border: 2px solid #c2c2c2;
}
.product-images .slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
	width: calc(100% - 6px);
	height: calc(120px - 6px);
}

/* Product details */

.product-details h1 {
	color: #000;
	font-size: 36px;
	font-weight: 500;
}
.product-details h2 {
	color: var(--accent-color);
	font-size: 24px;
	font-weight: 500;
}
.product-details .rating {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 10px 0;
	font-size: 20px;
	color: #F6AD08;
}
.product-details .form-label {
	font-weight: 600;
}
.product-details select.form-select {
	padding: 10px
}
.product-details .number {
	height: 45px;
	padding: 0 0 0 10px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.product-details .number span {
	cursor:pointer;
}
.product-details .minus,
.product-details .plus {
	width: 48px;
	height: 100%;
	padding: 8px 5px 8px 5px;
	border-left: 1px solid #dee2e6;
	font-size: 28px;
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-details .minus:hover,
.product-details .plus:hover {
	color: #fff;
	background-color: var(--accent-color);
}
.product-details .number input {
	height: 34px;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
}
.product-details .number input:focus {
	box-shadow: none;
}
.product-details .price {
	display: flex;
	align-items: end;
	padding: 10px 0;
}
.product-details .price h2 {
	font-family: var(--default-color);
	margin: 0 15px 0 0;
	letter-spacing: -2px;
	font-size: 34px;
	font-weight: 600;
}
.product-details .price p {
	font-family: var(--default-color);
	color: #797979;
	margin: 0;
	padding: 0 5px;
	letter-spacing: 0px;
	font-size: 18px;
	font-weight: 600;
	position: relative;
}
.product-details .price p:after {
	content: "";
	background: #000000;
	opacity: 0.3;
	position: absolute;
	top: 50%;
	left: 0;
	height: 2px;
	width: 100%;
}
.product-details .btn-buy {
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: #fff;
	border-radius: 5px;
	padding: 10px 20px;
	width: 150px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-details .btn-buy:hover {
	color: #000;
	background: var(--default-color);
	border: 2px solid var(--default-color);
}
.product-details .btn-cart {
	color: var(--accent-color);
	background: var(--contrast-color);
	border: 2px solid var(--accent-color);
	border-radius: 5px;
	padding: 10px 20px;
	width: 150px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-details .btn-cart:hover {
	color: #fff;
	background: var(--accent2-color);
	border: 2px solid var(--accent2-color);
}

/* cart */
.cart-list {
	display: flex;
	width: 100%;
	margin-bottom: 10px;
}
.cart-list .image {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 5px;
	height: 128px;
	min-width: 128px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s;
}
.cart-list .image img {
	width: 100%;
	height: 100%;	
	object-fit: contain;
}
.cart-list .btn-remove {
	color: #fff;
	background: #f8f8f8;
	border-radius: 10px;
	padding: 5px;
	height: 128px;
	width: 30px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s;
}
.cart-list tr:hover .btn-remove {
	color: #fff;
	background: #ff5656;
}
.cart-list tr:hover .btn-remove:hover {
	color: #fff;
	background: #ff2727;
}
.cart-list td {
	border: none;
	vertical-align: middle;
}
.cart-list .content h2 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
}
.cart-list .content p {
	color: #747474;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0;
}
.cart-list .number {
	height: 45px;
	width: 116px;
	padding: 0px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.cart-list .number span {
	cursor:pointer;
}
.cart-list .minus,
.cart-list .plus {
	width: 70px;
	height: 100%;
	padding: 8px 5px 8px 5px;
	border-right: 1px solid #dee2e6;
	border-left: 1px solid #dee2e6;
	font-size: 28px;
	line-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-list .minus:hover,
.cart-list .plus:hover {
	color: #fff;
	background-color: var(--accent-color);
}
.cart-list .number input {
	height: 34px;
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
.cart-list .number input:focus {
	box-shadow: none;
}

.cart-summary {
	top: 120px;
}
.cart-summary {
	background: #bae7ff;
	padding: 15px;
	border-radius: 10px;
}
.cart-summary .title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 14px;
}
.cart-summary table th,
.cart-summary table td {
	background: transparent;
}
.cart-summary .btn-coupon {
	color: #fff;
	background: var(--accent-color);
}
.cart-summary .btn-coupon:hover {
	color: #fff;
	background: var(--accent2-color);
}
.btn-checkout {
	color: var(--accent-color);
	background: var(--default-color);
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 5px;
	transition: 0.5s;
}

.btn-checkout i {
	color: var(--default-color);
	background: var(--accent-color);
	border-radius: 50px;
	width: 36px;
	height: 36px;
	padding: 5px;
	margin-left: 8px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.btn-checkout:hover {
	color: var(--contrast-color);
  background: var(--accent-color);
}

.btn-checkout:hover i{
	color: var(--accent-color);
	background: var(--default-color);
	transform: rotate(450deg);
}

/* checkout-page  */

.address-box {
	background: #fafafa;
	padding: 15px;
	border-radius: 10px;
}

.btn-update {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	padding: 8px 8px 8px 20px;
	border-radius: 50px;
	transition: 0.5s;
}

.btn-update i {
	color: var(--accent-color);
	background: var(--default-color);
	border-radius: 50px;
	width: 36px;
	height: 36px;
	padding: 5px;
	margin-left: 8px;
	font-size: 25px;
	transform: rotate(45deg);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.btn-update:hover {
	color: var(--accent-color);
	background: var(--default-color);
}

.btn-update:hover i{
	color: var(--contrast-color);
	background: var(--accent-color);
	transform: rotate(450deg);
}

.account-card {
	background: #fafafa;
	padding: 15px;
	border-radius: 10px;
}
.account-ct {
	background: #bae7ff;
	padding: 15px;
	border-radius: 10px;
	height: fit-content;
}
.account-ct h4 {
	font-size: 16px;
	font-weight: 700;
	position: relative;
	padding-bottom: 12px;
	color: #000;
}
.account-ct .info {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}
.account-ct .info i {
	font-size: 40px;
	margin-right: 14px;
}
.account-ct .info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
}
.account-ct .info h3 {
	font-size: 18px;
	font-family: var(--default-font);
	margin: 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
}