/********** Template CSS **********/



:root {
	--primary: #eb3435;
	--secondary: #5f656f;
	--light: #f5f5f5;
	--dark: #d5d5d5cc;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
	font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
	font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
	font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity 0.5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	transition: 0.5s;
	font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
	color: #ffffff;
	/* border-radius:18px; */
	/* background-color: #d5d5d5cc !important; */
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-color: #fff;
}

.topbar-right {
	position: relative;
	background: #eb3435;
}

.topbar-right::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 100%;
	top: 0;
	left: -15px;
	transform: skewX(-30deg);
	background-color: #eb3435;
}

/*** Navbar ***/
.navbar.sticky-top {
	top: -100px;
	transition: 0.5s;
}

.navbar .navbar-brand {
	position: relative;
	padding-right: 50px;
	width: 233px;
	height: 88px;
	display: flex;
	align-items: center;
	/* background: var(--primary); */
}

.navbar .navbar-brand::after {
	position: absolute;
	content: "";
	width: 3px;
	height: 100%;
	top: 0;
	right: 25px;
	transform: skewX(-30deg);
	background-color: #eb3435;
	display: none;
}

.navbar .navbar-nav .nav-link {
	margin-right: 32px;
	padding: 20px 0;
	color: #000;
	font-size: 19px;
	font-weight: 500;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #eeeeee;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
		right: 0px;
		border-radius: 10px;
		width: auto !important;

	}

	.navbar .nav-item:hover .dropdown-menu {
		/* top: 174%; */
		top: 120%;
		visibility: visible;
		transition: 0.5s;
		opacity: 1;
		right: 0px;
		border-radius: 10px;
	}
}

/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	/* background: linear-gradient(
		to right,
		rgba(2, 36, 91, 1) 0%,
		rgba(2, 36, 91, 0) 100%
	); */

	/* background: linear-gradient(to right,
			rgb(0 0 0) 0%,
			rgba(2, 36, 91, 0) 100%); */
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: var(--primary);
	border: 15px solid var(--primary);
	border-radius: 3.5rem;
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	background: linear-gradient(to right,
			rgba(2, 36, 91, 1) 0%,
			rgba(2, 36, 91, 0) 100%),
		url(../img/banner/b1.jpg) center center no-repeat;

	background:
		url(../img/banner/b1.jpg) center center no-repeat;
	background-size: cover;

}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
	font-size: 18px;
	color: var(--light);
}

/*** Facts ***/
.facts {
	position: relative;
	margin: 6rem 0;
	background: #f1f1f1;
}

.facts .border {
	border-color: #eb3435 !important;
}

/*** Features ***/
.btn-play {
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	display: block;
	box-sizing: content-box;
	width: 16px;
	height: 26px;
	border-radius: 100%;
	border: none;
	outline: none !important;
	padding: 18px 20px 20px 28px;
	background: var(--primary);
}

@media (max-width: 992px) {
	.btn-play {
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
	}
}

.btn-play:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 100%;
	animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 100%;
	transition: all 200ms;
}

.btn-play span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	left: -1px;
	border-left: 16px solid #ffffff;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
		opacity: 0;
	}
}

.modal-video .modal-dialog {
	position: relative;
	max-width: 800px;
	margin: 60px auto 0 auto;
}

.modal-video .modal-body {
	position: relative;
	padding: 0px;
}

.modal-video .close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: -30px;
	z-index: 999;
	font-size: 30px;
	font-weight: normal;
	color: #ffffff;
	background: #000000;
	opacity: 1;
}




/*** Service ***/
.slider .service-item {
	position: relative;
	margin: 65px 0 25px 0;
	/* box-shadow: 0 0 5px rgba(0, 0, 0,); */
	animation: 25s linear;
	display: flex;
	box-shadow: 0 0 30px 0 #ccc;
}

.service-item {
	position: relative;
	margin: 65px 0 25px 0;
	/* box-shadow: 0 0 5px rgba(0, 0, 0,); */
	/* animation: animate 25s linear infinite; */
	display: flex;
	box-shadow: 0 0 30px 0 #ccc;
}

.service-item .service-img {
	position: absolute;
	padding: 12px;
	width: 215px;
	height: 215px;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
	z-index: 2;
}

.service-item .service-detail {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.service-item .service-title {
	position: absolute;
	padding: 108px 23px 1px 23px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fbeded;
	transition: 0.5s;
}


.service-item:hover .service-title {
	top: -100%;
}

.service-item .service-text {
	position: absolute;
	overflow: hidden;
	padding: 124px 30px 5px 30px;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0;
	display: flex;
	align-items: center;
	text-align: center;
	background: rgba(2, 36, 91, 0.7);
	transition: 0.5s;
	text-align: initial;
}

.service-item:hover .service-text {
	top: 0;
	font-size: 20px;
	font-weight: 500;
}

.service-item .service-text::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100px;
	top: -100%;
	left: 0;
	transform: skewY(-12deg);
	background: #ffffff;
	transition: 0.5s;
}

.service-item:hover .service-text::before {
	top: -55px;
}

.service-item .btn {
	position: absolute;
	width: 100px;
	height: 40px;
	left: 28%;
	bottom: -25px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: #d5d5d5cc;
	border: none;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
	z-index: 2;
}

.service-item .btn:hover {
	color: #ffffff;
	background: var(--primary);
}

/*** Project ***/
.project-carousel {
	position: relative;
	background: var(--dark);
}

.project-item {
	position: relative;
	display: block;
}

.project-item img {
	transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
	margin-top: -60px;
}

.project-item .project-title {
	position: absolute;
	padding: 0 15px;
	width: 100%;
	height: 80px;
	bottom: -110px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--dark);
	transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
	bottom: -60px;
}

.project-item .project-title::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 30px;
	top: -15px;
	left: 0;
	transform: skewY(-5deg);
	background: var(--dark);
	transition: 0.5s;
}

.project-carousel .owl-nav {
	position: absolute;
	width: 100%;
	height: 45px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	transition: 0.5s;
	opacity: 0;
	z-index: 1;
}

.project-carousel:hover .owl-nav {
	opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
	margin: 0 30px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: var(--primary);
	border-radius: 45px;
	font-size: 22px;
	transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	display: flex;
	align-items: center;
	background: var(--primary);
	transition: 0.5s;
}

.team-item:hover .team-social {
	left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.testimonial-carousel::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to left,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

@media (min-width: 768px) {

	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 200px;
	}
}

@media (min-width: 992px) {

	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 300px;
	}
}

.testimonial-carousel .owl-nav {
	position: absolute;
	width: 350px;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: 0.5s;
	z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
	width: 300px;
	opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	position: relative;
	color: var(--primary);
	font-size: 45px;
	transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
	width: 100px;
	height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
	margin-bottom: 30px;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
	transform: scale(0.8);
	transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
	transform: scale(1);
}

/*** Footer ***/
.footer {
	color: #b0b9ae;
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #000;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.copyright {
	color: #b0b9ae;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}




.carousel-wrap {
	margin: 90px auto;
	padding: 0 5%;
	width: 100%;
	position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
	position: relative;
	z-index: 100;
	-webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav>div {
	margin-top: -26px;
	position: absolute;
	top: 50%;
	color: #cdcbcd;
}

.owl-nav i {
	font-size: 52px;
}

.owl-nav .owl-prev {
	left: -30px;
}

.owl-nav .owl-next {
	right: -30px;
}




.slider {
	display: flex;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 2.5rem;
}

.service-item {
	animation: animate 25s linear infinite;
}

*/ .item img {
	min-width: 200px;
	padding: 0 30px;
}

.slider:hover .service-item {
	animation-play-state: paused;
}

@keyframes animate {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-1800px, 0, 0);
	}

}





#product-info {
	display: flex;
	width: 95%;
	margin: 0 auto
}

.item-image-parent {
	order: 1;
	width: 50%;
	display: flex;
}

.item-info-parent {
	order: 2;
	width: 50%;
}

.item-list-vertical {
	order: 1;
	width: 10%;
	overflow-y: auto;
	margin-top: 50px;
}

.item-image-main {
	order: 2;
	width: 90%;
	height: 100%;
}

/* sectioning completed */


.thumb-box {
	width: 75%;
	margin: 10px auto;
	background: white;
	border: 1px solid gray;
}

.thumb-box img {
	width: 100%;
	height: 100%;
}

.item-image-main img {
	width: 100%;
	height: auto;
}

.thumb-box:hover {
	cursor: pointer;
	border-color: #e77600;
	;
	box-shadow: 0px 1px 5px 1px #e77600;
}

/* Item Info */
.main-info h4 {
	font-size: 21px;
	margin-bottom: 0;
	font-weight: 400
}

.star-rating {
	width: 70%;
	color: gray;
	font-size: 24px;
	/* border-bottom: 0.4px solid rgba(194, 194, 194, 0.829); */
}

.star-rating span {
	color: gold;
}

.main-info p {
	font-size: 15px;
	color: gray;
	margin-bottom: 30px;
}

#price {
	color: rgb(168, 14, 14);
	font-size: 21px;
}

/* Select Items */

.change-color {
	margin-bottom: 10px;
}

.change-color .thumb-box {
	margin: 10px 10px 10px 0;
	width: 40px;
	display: inline-block;
}

.change-size select {
	padding: 5px 10px;
	border-radius: 4px;
	border-color: rgb(189, 189, 189);
	margin-top: 10px;
}

.description ul {
	padding-left: 17px;
	font-size: 15px;
	line-height: 1.3rem;
}










.selected {
	margin: 0px 5px;
	padding: 5px 20px;
	width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: solid 1px #8E8E8E;
	color: #8E8E8E;
	outline: none;
}

.selected:focus {
	border: solid 1px #000;
	color: #000;
}





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

.product-content .left {
	width: 50%;
	display: flex;
	justify-content: flex-end;
	margin: 0px 20px;
}

.product-content .right {
	width: 50%;
	padding: 10px 0px;
	display: flex;
	align-items: center;
	margin: 0px 20px;
}

.product-content .content .tt {
	display: flex;
	flex-direction: column;
}

.product-content .content .category {
	font-size: 15px;
	color: #959595;
}

.product-content .content .title {
	font-size: 28px;
	font-weight: 600;
}

.product-content .content .descrp {
	font-size: 13px;
	color: #959595;
	margin: 20px 5px;
	width: 300px;
}

.product-content .content .options {
	display: flex;
	align-items: center;
}

.slider .service-item .counter__btn {
	border-color: #fff;
	color: #fff;
}

.slider .service-item .counter__input {
	width: 100%;
	text-align: center;
	background: transparent;
	border: none;
	font-size: 20px;
	color: #fff;

}

.options {
	display: flex;
	align-items: center;
	margin-top: 45px;
}

.product-content .content .actions {
	margin: 20px 5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-content .content .actions button {
	padding: 5px 10px;
	border: none;
	margin-right: 5px;
	background: none;
	cursor: pointer;
	outline: none;
}

.product-content .content .actions .buy {
	background: #000;
	color: #fff;
	padding: 10px 20px;
	border: solid 1px #000;
	transition: all 0.5s;
}

.product-content .content .actions .buy:Hover {
	background: #fff;
	color: #000;
}

.product-content .content .actions .act {
	border: solid 1px #898989;
	color: #898989;
	padding: 5px 15px;
	transition: all .5s;
}

.product-content .content .actions .act:hover {
	border: solid 1px #000;
	color: #000;
}

.product-content .content .actions svg {
	width: 25px;
}

.product-content .content .actions .basket {
	padding: 5px 10px;
	border: none;
	background: none;
	cursor: pointer;
	outline: none;
}

.thumbnails {
	margin: 10px 0px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.swiper-container {
	width: 350px;
	height: 250px;
	margin-left: auto;
	margin-right: auto;
	border: solid 1px #CBC5C5;
}

.swiper-slide {
	box-sizing: content-box;
	width: 345px;
	height: 295px;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}

.swiper-slide img {
	width: 250px;
	height: 250px;
}

.gallery-top {
	height: 300px;
	width: 350px;
}

.gallery-thumbs {
	height: 20%;
	width: 350px;
	box-sizing: border-box;
	padding: 20px 0;
	border: none;
}

.gallery-thumbs .swiper-slide {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: 70px;
	width: 70px;
	opacity: 0.4;
	border: solid 1px #CBC5C5;
	transform: translateY(-10px);
}

.gallery-thumbs .swiper-slide img {
	height: 70px;
	width: 70px;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

@media (max-width:750px) {
	.product-content {
		flex-direction: column;
	}

	.product-content .left {
		width: 100%;
		justify-content: center;
	}

	.product-content .right {
		width: 100%;
		justify-content: center;
		margin: 0px;
	}
}



.service-item1 {
	position: relative;
	margin: 65px 0 25px 0;
	/* box-shadow: 0 0 5px rgba(0, 0, 0,); */
	/* animation: animate 25s linear infinite; */
	display: flex;
	box-shadow: 0 0 30px 0 #ccc;
}

.service-item1 {
	position: relative;
	margin: 65px 0 25px 0;
	/* box-shadow: 0 0 5px rgba(0, 0, 0,); */
	/* animation: animate 25s linear infinite; */
	display: flex;
	box-shadow: 0 0 30px 0 #ccc;
}

.service-item1 .service-img {
	position: absolute;
	padding: 12px;
	width: 215px;
	height: 215px;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
	z-index: 2;
}

.service-item1 .service-detail {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.service-item1 .service-title {
	position: absolute;
	padding: 108px 23px 1px 23px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fbeded;
	transition: 0.5s;
}


.service-item1:hover .service-title {
	top: -100%;
}

.service-item1 .service-text {
	position: absolute;
	overflow: hidden;
	padding: 124px 30px 5px 30px;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0;
	display: flex;
	align-items: center;
	text-align: center;
	background: rgba(2, 36, 91, 0.7);
	transition: 0.5s;
	text-align: initial;
}

.service-item1:hover .service-text {
	top: 0;
	font-size: 20px;
	font-weight: 500;
}

.service-item1 .service-text::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100px;
	top: -100%;
	left: 0;
	transform: skewY(-12deg);
	background: #ffffff;
	transition: 0.5s;
}

.service-item1:hover .service-text::before {
	top: -55px;
}

.service-item1 .btn {
	position: absolute;
	width: 130px;
	height: 50px;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: #d5d5d5cc;
	border: none;
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
	z-index: 2;
}

.service-item1 .btn:hover {
	color: #ffffff;
	background: var(--primary);
}







.counter {
	display: inline-flex;
	justify-content: end;
	align-items: center;
	user-select: none;
	/* gap: 8px; */
	margin-left: 25px;
	/* gap: 8px; */
}

.counter__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 29px;
	height: 29px;
	font-size: 16px;
	font-weight: 700;
	border: 1px solid #eb3435;
	border-radius: 10px;
	cursor: pointer;
	background-color: transparent;
	color: #343434;
}
.counter__btn i{
	cursor: pointer;
}

.counter__input-box {
	flex: 0 0 35px;
}

.counter__input {
	width: 100%;
	text-align: center;
	background: transparent;
	border: none;
	font-size: 20px;
}

.counter__btn--minus.disabled,
.counter__btn--plus.disabled {
	border: 1px solid #c4c4c4;
	color: #c4c4c4;
	cursor: not-allowed;
}





.counter1 {
	display: inline-flex;
	justify-content: start;
	align-items: center;
	user-select: none;
	/* gap: 8px; */

	/* gap: 8px; */
}

.counter1__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 29px;
	height: 29px;
	font-size: 20px;
	font-weight: 700;
	border: 1px solid #000;
	border-radius: 50%;
	cursor: pointer;
}

.counter1__input-box {
	flex: 0 0 35px;
}

.counter1__input {
	width: 100%;
	text-align: center;
	background: transparent;
	border: none;
	font-size: 20px;
}

.counter1__btn--minus.disabled,
.counter1__btn--plus.disabled {
	border: 1px solid #c4c4c4;
	color: #c4c4c4;
	cursor: not-allowed;
}






.star-rating {
	width: 100%;
	color: #f5e207;
	font-size: 27px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	margin-left: 10px;


}



#not_found {
	text-align: center;
	color: red;
}

.grand-total {
	margin-top: 1rem;
	text-align: center;
	font-weight: 600;
}

.table {
	margin-bottom: 0 !important;
	white-space: nowrap !important;
}

.default-btn {
	padding: 12px 24px 10px;
	text-align: center;
	color: #fff;
	font-size: var(--fontSize);
	transition: var(--transition);
	display: inline-block;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 8px;
	z-index: 0;
	background: var(--pinkColor);
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	background: #d5d5d5cc;
}

.default-btn:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 550px;
	height: 550px;
	margin: auto;
	background: var(--lightblueColor);
	border-radius: 8px;
	z-index: -1;
	transform-origin: top center;
	transform: translateX(-50%) translateY(-5%) scale(0.4);
	transition: transform .9s;
}

.default-btn:hover {
	/* color: var(--whiteColor) !important; */
	color: #fff !important;
}

.default-btn:hover:before {
	transition: transform 1s;
	transform: translateX(-45%) translateY(0) scale(1);
	transform-origin: bottom center;
}


.default-btn1 {
	padding: 12px 25px 10px;
	text-align: center;
	color: #fff;
	font-size: var(--fontSize);
	transition: var(--transition);
	display: inline-block;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 8px;
	z-index: 0;
	background: var(--pinkColor);
	overflow: hidden;
	white-space: nowrap;
	border: 0;
	background: #000;
}

.default-btn1:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 550px;
	height: 550px;
	margin: auto;
	background: var(--lightblueColor);
	border-radius: 8px;
	z-index: -1;
	transform-origin: top center;
	transform: translateX(-50%) translateY(-5%) scale(0.4);
	transition: transform .9s;
}

.default-btn1:hover {
	color: #fff !important;
}

.default-btn1:hover:before {
	transition: transform 1s;
	transform: translateX(-45%) translateY(0) scale(1);
	transform-origin: bottom center;
}

.btn-success {
	background-color: #eb3435 !important;
	border-color: #d5d5d5cc !important;
}

/* .featured-area {
	background-color: #EDEFF9;
  } */
.featured-tab-area .tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}

.featured-tab-area .tabs li {
	display: inline-block;
	line-height: initial;
	margin-right: 20px;
}

.featured-tab-area .tabs li a {
	display: inline-block;
	position: relative;
	color: var(--titleColor);
	padding: 13px 26px 10px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.featured-tab-area .tabs li.active a {
	background-color: var(--pinkColor);
	color: var(--whiteColor);
}

.featured-tab-area .tabs li.current a {
	background-color: var(--pinkColor);
	color: var(--whiteColor);
}

.featured-tab-area-ml .tabs {
	margin-top: 0 !important;
	float: left;
}

.tab .tabs_item {
	display: none;
}

.tab .tabs_item:first-child {
	display: block;
}

.featured-item {
	margin: 30px 10px 10px 10px;
	background-color: var(--whiteColor);
	border-radius: 5px;
	box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.featured-item .featured-item-img {
	position: relative;
	z-index: 1;
	transition: 0.3s linear;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;

}

.featured-item .featured-item-img a {
	display: block;


}

.featured-item .featured-item-img a img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: 4px solid var(--whiteColor);
	transition: 0.3s linear;
	< !--width: 70%;
	margin-left: 50px;
	-->object-fit: cover;
	height: 235px;
	margin: 5px
}

.featured-item .featured-item-img a img:hover {
	scale: 1.08;
}

.featured-item .content {
	padding: 10px 15px;
}

.featured-item .content h3 {
	margin-bottom: 10px;
}

.featured-item .content h3 a {
	color: var(--titleColor);
	-webkit-transition: var(--transition);
	transition: var(--transition);
	font-weight: bold;
}

.featured-item .content .content-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 12px 10px;
	border-radius: 3px;
}

.featured-item .content .content-in i {
	color: #ffcc00;
}

.featured-item .content .content-in span {
	font-size: 15px;
	color: var(--titleColor);
	font-weight: 500;
}

.featured-item .content .content-in h4 {
	font-size: 15px;
	color: var(--titleColor);
	font-weight: 500;
	margin-bottom: 0;
	width: 100px;
}

.featured-item .content .featured-content-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0 0;
}

.featured-tab-area .tabs li {
	margin-right: 5px;
}

#staticBackdropLabel {
	font-weight: bold;
}

img {
	max-width: 100%;
}



/* responsive css */
@media only screen and (max-width: 767px) {
	.featured-tab-area .tabs {
		margin: 20px 0 0;
		float: none;
		text-align: left;
	}

	.featured-tab-area .tabs li:last-child {
		margin-right: 5px;
	}

	.featured-tab-area .tabs li a {
		font-size: 14px;
		padding: 12px 16px 9px;
	}

	.featured-item .content {
		padding: 20px 10px;
	}

	.featured-item .content h3 {
		font-size: 19px;
	}

	.featured-item .content .content-in span {
		font-size: 14px;
	}

	.featured-item .content .content-in h4 {
		font-size: 14px;
	}

	.featured-item .content .featured-content-list {
		padding: 12px 0 0;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.featured-item .content {
		padding: 20px 15px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.featured-tab-area .tabs li a {
		font-size: 14px;
		padding: 12px 16px 9px;
	}

	.featured-item .featured-item-img .featured-user {
		top: 20px;
	}

	.featured-item .featured-item-img .featured-user .featured-user-option img {
		margin-right: 7px;
		width: 25px !important;
		height: 25px !important;
	}

	.featured-item .featured-item-img .featured-user .featured-user-option span {
		font-size: 13px;
		padding-top: 2px;
	}

	.featured-item .featured-item-img .featured-item-clock {
		font-size: 18px;
	}

	.featured-item .content {
		padding: 20px 10px;
	}

	.featured-item .content h3 {
		font-size: 19px;
	}

	.featured-item .content .content-in span {
		font-size: 14px;
	}

	.featured-item .content .content-in h4 {
		font-size: 14px;
	}

	.featured-item .content .featured-content-list {
		padding: 12px 0 0;
	}

	.featured-item .content .featured-content-list p {
		font-size: 14px;
	}

	.featured-item .content .featured-content-list p i {
		font-size: 16px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.featured-tab-area .tabs li {
		margin-right: 5px;
	}

	.featured-tab-area .tabs li a {
		font-size: 14px;
		padding: 12px 16px 9px;
	}

	.featured-item .content h3 {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1299px) {
	.featured-tab-area .tabs li a {
		font-size: 14px;
		padding: 12px 16px 9px;
	}

	.featured-item .content {
		padding: 20px 20px;
	}

	.featured-item .content .content-in {
		padding: 10px 5px 8px;
	}

	.featured-item .content h3 {
		font-size: 18px;
	}
}






.card {
	width: 380px;
	height: 510px;
	position: relative;
	margin: auto;
	border-radius: 10px;
	font-family: tahoma;
	transform-style: preserve-3d;
	transition: all 1s ease-in-out;
}

/* .card:hover
{
    transform: rotateY(180deg);
} */
.card>div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	text-align: center;
	background-color: #02245b;
}

/*front card*/
.card .front {
	z-index: 1;
	backface-visibility: hidden;
	box-shadow: rgb(255 255 255 / 40%) 0px 7px 29px 0px;
}

.card .front p {
	text-align: center;
}

.card .front form button {
	background-color: #FFB30E;
	padding: 12px 40px 12px 40px;
	margin-top: 30px;
	cursor: pointer;
}

.f1 {
	padding: 13px 90px 13px 13px;
	border-radius: 8px;
	background-color: #f0f5f9;
	margin: 7px;
	border: 1px solid #ccc;
	/* text-align: center; */
	font-size: 15px;
}

.card .front img {
	width: 150px;
	height: 150px;

}

.login_word {
	/* margin: 30px auto; */
	/* border-bottom: 2px solid #FFB30E; */
	/* width: 170px; */
	font-weight: bold;
	color: #fff;
	font-size: 20px;
}

.not_registered_word {
	margin-top: 35px;
	font-size: 14px;
}

.card .front form p {
	margin-top: 20px;
	font-size: 15px;
	color: #e3e3e3;
}

.card .back form p {
	margin-top: 20px;
	font-size: 15px;
	color: #e3e3e3;
}

.card .front span {
	cursor: pointer;
	color: #ffffff;
	font-size: 20px;

}

.card .back span {
	cursor: pointer;
	color: #ffffff;
	font-size: 20px;

}

/*back card*/
.card .back {
	z-index: 2;
	transform: rotateY(180deg);
	backface-visibility: hidden;
	box-shadow: rgb(255 255 255 / 40%) 0px 7px 29px 0px;

}

.signup_word {
	margin: 45px auto 0px auto;
	border-bottom: 2px solid #FFB30E;
	width: 80px;
	font-weight: bold;
	color: #fff;
}

#signUp button {
	background-color: #FFB30E;
	padding: 12px 60px 12px 60px;
	margin-top: 30px
}




.content {
	/* display: flex; */
	/* gap: 30px; */
	/* justify-content: space-between !important; */
	text-align: center;
}

.content-in {
	padding: 0px 10px;
	display: flex;
	/* margin-left: 50px; */
}

.content-in select {
	border-radius: 10px;
	background-color: #fff;
}

.star-rating h4 {
	margin-right: 30px;
	margin-top: 10px;


}


.badge {
	padding-left: 9px;
	padding-right: 9px;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
}

.label-warning[href],
.badge-warning[href] {
	background-color: #c67605;
}

#lblCartCount {
	font-size: 12px;
	background: #eb3435;
	color: #fff;
	padding: 3px 5px;
	vertical-align: top;
	margin-left: -7px;
	margin-top: -6px;

}


.hh-grayBox {
	background-color: #F8F8F8;
	margin-bottom: 20px;
	padding: 35px;
	margin-top: 20px;
}

.pt45 {
	padding-top: 45px;
}

.order-tracking {
	text-align: center;
	width: 33.33%;
	position: relative;
	display: block;
}

.order-tracking .is-complete {
	display: block;
	position: relative;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	border: 0px solid #AFAFAF;
	background-color: #eb3435;
	margin: 0 auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
	z-index: 2;
}

.order-tracking .is-complete:after {
	display: block;
	position: absolute;
	content: '';
	height: 14px;
	width: 7px;
	top: -2px;
	bottom: 0;
	left: 5px;
	margin: auto 0;
	border: 0px solid #AFAFAF;
	border-width: 0px 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
}

.order-tracking.completed .is-complete {
	border-color: #d5d5d5cc;
	border-width: 0px;
	background-color: #d5d5d5cc;
}

.order-tracking.completed .is-complete:after {
	border-color: #000;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}

.order-tracking p {
	color: #A4A4A4;
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}

.order-tracking p span {
	font-size: 14px;
}

.order-tracking.completed p {
	color: #000;
}

.order-tracking::before {
	content: '';
	display: block;
	height: 3px;
	width: calc(100% - 40px);
	background-color: #d5d5d5cc;
	top: 13px;
	position: absolute;
	left: calc(-50% + 20px);
	z-index: 0;
}

.order-tracking:first-child:before {
	display: none;
}

.order-tracking.completed:before {
	background-color: #d5d5d5cc;
}

.view_data {
	margin-top: 15px;
	margin-bottom: 25px;
	color: #000;
	font-size: 17px;
}

.cart-image {
	width: 20%
}

.cart_name {
	width: 20%;
}

.cart_weight {
	width: 11%;
}

.cart_Price {
	width: 10%;
}

.cart_qty {
	width: 18%;
}

.cart_type {
	width: 10%;
}

.cart_total {
	width: 10%;
}

.cart_action {
	width: 10%;
}

.checkout-form h3 {
	text-align: center;
}

.checkout-details h3 {
	text-align: center;
}

.sub-content {
	text-align: center;
}

.stars {
	display: flex;
	align-items: center;
	/* gap: 25px; */
}

.stars i {
	font-size: 16px;
	color: #b5b8b1;
	transition: all 0.2s;
	cursor: pointer;
}

.stars i.active {
	color: #ffb851;
	transform: scale(1.2);
}




.notification-drop {
	padding: 10px;
	font-size: 18px;
	position: relative;
	border-bottom: 1px solid #ddd;
}

.notification-drop:hover {
	cursor: pointer;
}

.notification-drop ul {

	position: absolute;
	top: 140%;
	background: #fff;
	left: -178px;
	right: 0;
	z-index: 1;
	border-top: 1px solid #ddd;
}

.notification-drop .item ul li {
	font-size: 16px;
	padding: 15px 0 15px 25px;
}





.top-text-block {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: inherit !important;
	border-bottom: 1px solid #f4f4f4;
	position: relative;
}

.top-text-block:hover:before {
	content: '';
	width: 4px;
	background: #f05a1a;
	left: 0;
	top: 0;
	bottom: 0;
	position: absolute;
}

.top-text-block.unread {
	background: #ffc;
}

.top-text-block .top-text-light {
	color: #999;
	font-size: 0.8em;
}

.notification-drop .dropdown-menu {
	width: 305px;
	height: 200px;
	overflow: auto;
	border-radius: 10px;
}

.top-head-dropdown li:last-child .top-text-block {
	border-bottom: 0;
}


.notification-drop-dropdown-header {
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding-left: 15px;
	padding-right: 15px;
	border-bottom: 1px solid #cccccc;

}

.clear-noti {
	color: #1A1F36;
	float: right;
	font-size: 14px;
	font-weight: 500;

}

.notification-drop-dropdown-header .notification-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
}

.notification-drop-content {
	margin-top: 13px;
}

.do-flip {
	-o-transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}



/* features */
serviceBox {
	color: #777;
	font-family: 'Poppins', sans-serif;
	text-align: center;
}

.serviceBox .service-icon {
	color: #0098e5;
	background: #fff;
	font-size: 60px;
	line-height: 115px;
	height: 120px;
	width: 120px;
	margin: 0 auto 15px;
	border: 3px solid #0098e5;
	border-right-color: transparent;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transform: rotate(45deg);
	text-align: center;
}

.serviceBox .service-icon span {
	display: block;
	transform: rotate(-45deg);
}

.serviceBox .service-content {
	background-color: #fff;
	padding: 30px 20px;
	border-radius: 150px/50px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-top: -35px;
	height: 250px;
}

.serviceBox .title {
	color: #0098e5;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	margin: 0 0 7px;
}

.serviceBox .description {
	font-size: 15px;
	letter-spacing: 0.5px;
	line-height: 23px;
	margin: 0;
	font-weight: 600;
}

.serviceBox.red .service-icon {
	color: #CD283E;
	border-color: #CD283E;
	border-left-color: transparent;
}

.serviceBox.red .title {
	color: #CD283E;
}

.serviceBox.yellow .service-icon {
	color: #FD7B19;
	border-color: #FD7B19;
	border-right-color: transparent;
}

.serviceBox.yellow .title {
	color: #FD7B19;
}

.serviceBox.blue .service-icon {
	color: #122984;
	border-color: #122984;
	border-right-color: transparent;
}

.serviceBox.blue .title {
	color: #122984;
}

@media only screen and (max-width: 990px) {
	.serviceBox {
		margin: 0 0 40px;
	}
}


/*** FAQ ***/
.accordion .accordion-item {
	border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
	border-bottom: 1px solid #eb3435;
}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 20px;
	color: #000;
	font-size: 1.15rem;
	font-weight: 600;
	border: none;
	background: #f3f3f3;
	outline: none;
	margin-bottom: 10px;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: #3a3a3a;
}

.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #03b5d2;
	border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
	padding: 1em 1.5em 1em;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 25px;
	width: 22px;
	height: 22px;
	border: 1px solid #eb3435;
	border-radius: 22px;
}

.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: #eb3435;
}

.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: #eb3435;
}

.accordion button[aria-expanded='true'] {
	color: #000;
}

.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
	opacity: 1;
	max-height: 100%;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}

.accordion .accordion-content p {
	font-size: 1rem;
	font-weight: 300;
	margin: 2em 30px;
}

.contact {
	text-align: center;
	margin-top: 20px;
}

.testimonial-img .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: bold;
	color: #ffffe4;/ You can change the text color to your preference /
}

.bg-gray {
	background-color: #ccc;
}



.resendButtonContainer {
	display: flex;
	flex-direction: column !important;
	align-items: center;
}



.perks_left {
	/* margin-top: 40px; */
}

.perks_left_icon {
	width: 41px;
	flex-shrink: 0
}

.perks_left li {
	gap: 15px;
	color: #333;
	align-items: baseline;
	border-radius: 18px;
	background-color: #fff;
	border: 1px solid #acacac;
	padding: 10px 15px;
	margin-bottom: 10px
}

.perks_left li .perks_left_contect p {
	opacity: 0;
	height: 0
}

.perks_left li:hover .perks_left_contect p {
	opacity: 1;
	height: auto;
	transition: all 0.5s;
	margin-top: 8px;
	color: #000;
	font-size: 15px;
}

.perks_left li:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	transition: all 0.3s
}

.perks_left li:hover h4 {
	color: #046091;
	transition: all 0.3s
}

.perks_left li:hover p {
	display: block;
	transition: all 0.3s
}

.perks_left li:hover .perks_left_icon {
	background: #d5d5d5cc;
	text-align: center;
	height: 41px;
	width: 41px;
	line-height: 38px;
	border-radius: 50px
}

.perks_left li:hover .perks_left_icon img {
	padding: 5px;
	filter: brightness(7) invert(1)
}

.section-title.style-white .title {
	color: #000;
}

.section-title.style-white .content {
	color: #eb3435;
	font-size: 20px;
	text-align: initial;
	font-weight: 600;
}

.bg-base {
	background-color: #f3f3f3cc;
	padding: 25px;
	border: 1px solid #eb3435;
}

.joinform {
	margin: auto;
	width: 30%;
	border-radius: 5px;
	background-color: #ededed;
	padding: 20px;
	font-family: 'Work Sans', sans-serif;
}

.py-7 {
	padding-top: 5rem;
}

.single-service-inner {
	padding: 40px 20px 35px 20px;
	border-radius: 5px;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.40);
	box-shadow: 0px 6px 16px 0px rgb(165 165 165 / 33%);
	margin-bottom: 30px;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #ccc;
	height: 430px;
}

.single-service-inner .icon-box {
	margin-bottom: 13px;
}

.single-service-inner .icon-box i {
	font-size: 44px;
}

.single-service-inner .icon-box-bg {
	background: #c50001;
	height: 90px;
	width: 90px;
	line-height: 85px;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 15px;
}

.single-service-inner .icon-box-bg i {
	font-size: 40px;
	color: #fff;
}

.single-service-inner .details h3 {
	font-weight: 600;
}

.single-service-inner .details p {
	margin-bottom: 0;
	text-align: initial;
}

.payment-details-menu {
	margin-bottom: 1rem !important;
}

.payment-details {
	margin-bottom: 2rem !important;
}






.wrap-table-shopping-cart {
	overflow: auto;
	border-left: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
}

.table-shopping-cart {
	border-collapse: collapse;
	width: 100%;
	min-width: 680px;
}

.table-shopping-cart tr {
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
	width: 133px;
	padding-left: 20px;
}

.table-shopping-cart .column-2 {
	width: 220px;
	font-size: 15px;
}

.table-shopping-cart .column-3 {
	width: 120px;
	font-size: 16px;
}

.table-shopping-cart .column-4 {
	width: 145px;
	text-align: right;
}

.table-shopping-cart .column-5 {
	width: 172px;
	padding-right: 50px;
	text-align: right;
	font-size: 16px;
}

.table-shopping-cart .table_row {
	height: 185px;
}

.table-shopping-cart .table_row td {
	padding-bottom: 20px;
}

.table-shopping-cart .table_row td.column-1 {
	/* padding-bottom: 30px; */
	padding-left: 40px;
}

.table-shopping-cart .table_head th {
	font-family: Poppins-Bold;
	font-size: 13px;
	color: #555;
	text-transform: uppercase;
	line-height: 1.6;
	padding-top: 15px;
	padding-bottom: 15px;
}

.table-shopping-cart td {
	font-family: Poppins-Regular;
	color: #555;
	line-height: 1.6;
}



.service-box {
	--space-x: 10px;
	--space-y: -17px;
	text-align: center;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.service-box_wrapper {
	max-width: calc(100% - var(--space-x)*2);
	margin-left: var(--space-x);
	margin-bottom: -125px;
	border-radius: 30px;
	position: relative;
	z-index: 3
}

.service-box_img {
	overflow: hidden;
	border-radius: 30px
}

.service-box_img img {
	border-radius: 30px;
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out
}

.service-box .box-content {
	padding: 85px 0px 18px;
	background-color: var(--white-color);
	border-radius: 30px;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
}

.service-box_text{
	padding: 5px 15px;
    text-align: left;
	margin-bottom: 0px !important;
}

.service-box_text span{
	color: #eb3435;
	
	
}

.service-box .box-title {
	margin: 60px 0 10px 0
}


.service-box:hover .service-box_img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.captcha {
    margin-left: 35px;
}