/*====== STRUCTURE =======*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
	margin: 0px;
	max-width: 100%;
	font-family: 'Lato', sans-serif;
}

body[data-rtl="rtl"] {
	direction: rtl;
	text-align: right;
}

ul {
	padding-left: 0px;
}

ul li {
	list-style-type: none;
}

a {
	cursor: pointer;
}

a,
button,
input,
textarea {
	text-decoration: none !important;
	outline: none !important;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
	margin-bottom: 0px;
	margin-top: 0px;
}

.animated {
	opacity: 0;
	-webkit-animation-fill-mode: inherit !important;
	animation-fill-mode: inherit !important;
}

.visible {
	opacity: 1 !important;
}

.sec-heading h2 {
	font-weight: 800;
	font-size: 42px;
	line-height: 64px;
	text-align: center;
	color: #09A9F3;
	margin-bottom: 30px;
}

.sec-para p {
	font-weight: 350;
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 0.05em;
	color: #08133C;
}

.sec-space {
	margin-bottom: 50px;
}

.section {
	padding: 120px 0;
}

.section-bottom {
	padding-bottom: 120px;
}

.section-top {
	padding-top: 120px;
}

/*==== NAVBAR  ======*/
.navbar {
	padding: 20px 190px;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	background: #fff;
	height: 90px;
}

.menu-links {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.navbar-nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navbar-light .navbar-nav .nav-link {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #000000;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	margin-right: 55px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: #09A9F3;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #09A9F3;
}

.nav-btn {
	border-radius: 10px;
	width: 135px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.btn-light {
	background: rgba(9, 169, 243, 0.1);
	color: #09A9F3 !important;
}

.btn-light:hover {
	background: rgba(9, 169, 243, 0.2);
}

.nav-white {
	background: #fff;
	-webkit-box-shadow: 0 2px 3px 0px rgb(0 0 0 / 16%);
	box-shadow: 0 2px 3px 0px rgb(0 0 0 / 16%);
	padding: 15px 190px;
}

.btn-blue {
	background: #09A9F3;
	color: #fff !important;
}

.btn-blue:hover {
	box-shadow: 0px 10px 20px 0px rgb(9 169 243 / 50%);
}

/*=======SignIn CSS=======*/
.sign-right {
	width: calc(100% - 640px);
	height: 100vh;
}

.sign-right-img {
	height: 100%;
}

.sign-right-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.sign-left {
	width: 640px;
	padding: 0px 100px;
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.signin-main-container {
	height: 100vh;
	overflow: hidden;
}

.sign-right-img img {
	width: 100%;
	object-fit: cover;
}

.sign-logo {
	position: absolute;
	top: 35px;
}

.form-head {
	margin-bottom: 120px;
}

.form-head h2 {
	font-weight: 700;
	font-size: 40px;
	line-height: 48px;
	color: #000000;
	margin-bottom: 15px;
}

.form-head p {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
}

.form-input label {
	font-weight: 400;
	font-size: 19px;
	line-height: 23px;
	color: #000000;
	margin-bottom: 15px;
}

.form-input input {
	height: 65px;
	border: 2px solid rgba(217, 217, 217, 0.5);
	border-radius: 10px;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	padding: 20px 25px;
	background: transparent;
}

.form-input input::placeholder {
	color: #9E9E9E;
	font-weight: 400;
}

.form-input-addon input {
	padding: 20px 25px 20px 100px;
}

.input-addon {
	position: absolute;
	top: 22px;
	left: 25px;
}

.input-addon:after {
	content: '';
	position: absolute;
	background: #ECECEC;
	height: 40px;
	width: 2px;
	top: -8px;
	right: -32px;
}

.form-btn {
	background: #09A9F3;
	border-radius: 10px;
	height: 65px;
	width: 100%;
	border: none;
	cursor: pointer;
	transition: all .6s ease-in-out;
	margin-top: 30px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-align: center;

	color: #FBFBFC;
}

.form-btn:hover {
	box-shadow: 0px 10px 20px 0px rgba(9, 169, 243, 0.5);
}

.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	position: relative;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px !important;
	width: 100%;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-styled {
	position: relative;
	display: flex;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 0px !important;
	width: 170px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #000000;
	padding: 0px;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-styled:after {
	content: url(../images/d-arrow.png);
	width: 0;
	height: 0;
	border: none;
	position: absolute;
	top: 0px;
	right: -12px;
}

.select-options {
	display: none;
	position: absolute;
	top: 47px;
	right: 0;
	left: -50px;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #fff;
	-webkit-box-shadow: 0 11px 5px rgb(0 0 0 / 9%);
	box-shadow: 0 11px 5px rgb(0 0 0 / 9%);
	background: #fff;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	width: 260px;
	border: 1px solid rgba(217, 217, 217, 0.5);
}

.select-options li {
	position: relative;
	display: block;
	padding: 5px 10px;
	font-size: 17px;
	font-weight: 500;
	color: #000;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.select-options li:hover {
	color: #000;
}

.select-options li[rel="hide"] {
	display: none;
}

.otp-field input {
	width: 90px;
	height: 65px;
	padding: 20px 25px;
	background: transparent;
	margin-right: 20px;
	font-weight: 600;
	font-size: 25px;
	line-height: 30px;
	color: #000000;
}

.singup-form .form-input {
	margin-bottom: 22px;
}

/*===== HERO SECTION =====*/

.hero-main-container {
	background: url('../images/hero-bg.png');
	height: 100vh;
	width: 100%;
	padding-top: 90px;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero-main-container::before {
	content: '';
	position: absolute;
	background: linear-gradient(90deg, #FFFFFF 13.09%, rgba(255, 255, 255, 0) 100%);
	width: 886px;
	height: calc(100% - 90px);
}

.hero-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero-left h1 {
	font-weight: 700;
	font-size: 60px;
	line-height: 87px;
	color: #000000;
	margin-bottom: 90px;
	max-width: 590px;
}

.hero-left h1 span {
	color: #09A9F3;
}

.custom-container {
	padding: 0px 190px;
}

.hero-search-container {
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	box-shadow: 0px 13px 20px rgba(0, 0, 0, 0.06);
	border-radius: 15px;
	width: 675px;
	height: 80px;
	padding: 12px;
}

.hero-search {
	width: 450px;
	/* border-right: 1px solid #D3D3D3;
	margin-right: 20px; */
}

.hero-search input {
	padding: 10px 20px 10px 55px;
	width: 100%;
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #09A9F3;

}

.hero-search input::placeholder {
	color: #9E9E9E;
}

.search-icon {
	position: absolute;
	top: 12px;
	left: 12px;
}

.zip-code {
	font-weight: 500;
	font-size: 16px;
	line-height: 25px;
	color: #9E9E9E;
}

.zip-code svg {
	margin-right: 15px;
}

.search-btn {
	width: 160px;
	height: 60px;
	background: #09A9F3;
	border-radius: 5px;
	margin-left: 40px;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	cursor: pointer;
	color: #FFFFFF;
	transition: all .5s ease-in-out;
}

.search-btn:hover {
	box-shadow: 0px 10px 20px 0px rgb(9 169 243 / 50%);
}

.service-img {
	position: relative;
}

.service-img::before {
	content: '';
	position: absolute;
	background: linear-gradient(180deg, rgba(7, 7, 7, 0) 55.62%, #000000 100%);
	width: 100%;
	height: 100%;
	border-radius: 0px 0px 10px 10px;
}

.service-img h4 {
	position: absolute;
	bottom: 30px;
	font-weight: 700;
	font-size: 20px;
	line-height: 33px;
	text-align: center;
	color: #FFFFFF;
	left: 0;
	right: 0;
	margin: auto;
}

.service-card {
	margin-bottom: 35px;
}

/*======choose css======*/
.choose-info h4 {
	font-weight: 800;
	font-size: 21px;
	line-height: 30px;
	color: #000000;
}

.choose-info p {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.64);
}

.choose-info {
	margin-bottom: 30px;
}

.choose-inner {
	padding-top: 100px;
}

.choose-right,
.choose-img,
.choose-info {
	position: relative;
}

.choose-right:before {
	content: '';
	position: absolute;
	background: #F2F4F8;
	border-radius: 10px;
	width: 660px;
	height: 540px;
	top: -75px;
	left: -100px;
}

.choose-img {
	z-index: 1;
}

/*=======testimonial css=======*/
.test-card {
	background: #F2F4F8;
	padding: 0px 25px 25px;
	border-radius: 10px;
	transition: all .6s ease-in-out;
	margin: 0px 12px;
	cursor: pointer;
}

.test-card-top p {
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	color: #6E6E6E;
	transition: all .6s ease-in-out;

}

.test-card-top {
	border-bottom: 1px solid rgba(110, 110, 110, 0.45);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.test-card:hover .test-card-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.test-name h5 {
	font-weight: 500;
	font-size: 18px;
	line-height: 18px;
	color: #000000;
	margin-bottom: 8px;
	transition: all .6s ease-in-out;
}

.test-name span {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	color: #6E6E6E;
	transition: all .6s ease-in-out;
}

.test-img img {
	border: 7px solid #fff;
	border-radius: 50%;
}

.test-rating svg {
	margin: 0px 2px;
}

.test-img {
	margin-bottom: -30px;
	transform: translateY(-40px);
}

.test-card:hover {
	background: #09A9F3;
	box-shadow: 0px 5px 25px rgba(114, 167, 236, 0.5);

}

.test-card:hover .test-name h5,
.test-card:hover .test-name span,
.test-card:hover .test-card-top p {
	color: #fff;
}

.test-card:hover .test-rating svg path {
	fill: #fff;
}

svg path {
	transition: all .6s ease-in-out;
}

.test-card-main {
	padding-top: 50px;
}

.slick-arrows {
	margin-top: 50px;
}

.slick-arrow {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 0px 15px;
	background: #09A9F3;
	transition: all .4s ease-in-out;
}

.slick-arrow:hover {
	background: #080B16;
}

.download-main-container {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F2F4F8 100%);
}

.download-left p {
	font-weight: 600;
	font-size: 20px;
	line-height: 41px;
	color: rgba(0, 0, 0, 0.64);
	margin-bottom: 50px;
}

.partner-list li a {
	height: 100px;
	display: block;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.feature-list li a h4 {
	font-weight: 800;
	font-size: 22px;
	line-height: 36px;
	text-align: center;
	color: #676767;
}

/*======= FOOTER ====*/
footer {
	background: url('../images/foot-bg.png');
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	background: rgba(10, 14, 26, 0.95);
	width: 100%;
	height: 100%;
}

.footer-top {
	padding: 60px 0 60px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-logo {
	margin-bottom: 35px;
}

.foot-info p {
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	max-width: 180px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 20px;
}

.read-more {
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	color: #09A9F3;
}

.read-more svg {
	transform: translateY(3px);
	margin-left: 5px;
}

.footer-links a {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, 0.6);
	-webkit-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	margin-bottom: 12px;
	display: block;
	margin-right: 40px;

}

.footer-links a:hover {
	color: #56D2EF;
}

.footer-links li:first-child,
.footer-location li:first-child {
	font-weight: 700;
	font-size: 18px;
	line-height: 25px;
	color: #FFFFFF;
	margin-bottom: 20px;
}

.footer-location li a {
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 12px;
}

.footer-location li a svg {
	margin-right: 10px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.foot-btn button {
	width: auto;
	padding: 10px 25px;
	height: 44px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	color: #0F0A0A;
	cursor: pointer;
}

.foot-btn button svg {
	margin-right: 10px;
}

.social-icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0;
}

.social-icons li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0px 10px;
	-webkit-transition: 0.6s all ease-in-out;
	-o-transition: 0.6s all ease-in-out;
	transition: 0.6s all ease-in-out;
}



.social-icons li a:hover svg path {
	fill: #56D2EF;
	-webkit-transition: 0.6s all ease-in-out;
	-o-transition: 0.6s all ease-in-out;
	transition: 0.6s all ease-in-out;
}

.copyright p {
	font-weight: 400;
	font-size: 12px;
	line-height: 17px;
	color: rgba(255, 255, 255, 0.5);
}

.service-page-container,
.shop-main-container {
	padding-top: 180px;
}

.page-hero {
	position: relative;
}

.page-hero::before {
	content: '';
	position: absolute;
	background: #F2F4F8;
	height: 800px;
	width: 100%;
	top: 0;
	z-index: -1;
}

.product-card {
	background: #FFFFFF;
	border: 1px solid #D8D8D8;
	box-shadow: 0px 12px 26px rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	height: 368px;
	transition: all .6s ease-in-out;
	margin-bottom: 20px;
}

.product-img {
	padding: 25px 0;
}

.product-detail {
	padding: 0px 20px;
	margin-bottom: 25px;
}

.product-name {
	font-weight: 600;
	font-size: 18px;
	line-height: 34px;
	color: #000000;
	max-width: 200px;
}

.product-price {
	font-weight: 600;
	font-size: 22px;
	line-height: 34px;
	text-align: center;
	color: #09A9F3;
}

.btn-cart {
	width: calc(100% - 15px);
	height: 55px;
	background: #F2F4F8;
	border-radius: 0px 0px 11px 11px;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
	color: #000000;
	cursor: pointer;
	transition: all .4s ease-in-out;
}

.btn-cart:hover {
	background: #09A9F3;
	color: #fff;
}

.shop-inner {
	padding-top: 50px;
}

.shop-left {
	width: 285px;
}

.shop-right {
	width: calc(100% - 330px);
	margin-left: 35px;
}

.white-box {
	background: #FFFFFF;
	border: 1px solid #D9D9D9;
	box-shadow: 0px 5px 43px rgba(22, 32, 61, 0.09);
	border-radius: 10px;
	padding: 20px;
}

.shop-search {
	margin-bottom: 20px;
}

.shop-search input {
	background: rgba(0, 0, 0, 0.01);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	height: 55px;
	width: 100%;
	padding: 20px 20px 20px 50px;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;

	color: #000000;
}

.shop-search input::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.shop-addon {
	position: absolute;
	top: 20px;
	left: 20px;

}

.card {
	border-bottom: 1px solid #F3F3F3 !important;
	background: transparent;
	border-radius: 0;
	border: none;
}

.card:last-child {
	border-bottom: 0 !important;
}

.card-header {
	background: transparent;
	border: none;
	padding: 10px 0;
}

.shop-accordion-main .card .card-header button:after {

	content: url('../images/arrow.png');
	float: right;
	position: absolute;
	right: 20px;
}



.shop-accordion-main .card .collapse {
	border: 0;
}

.card-body {
	padding: 0px 20px 15px;
}

.accordions-links a {
	font-weight: 600;
	font-size: 18px;
	line-height: 34px;
	color: #545454;
	display: block;
	transition: all .6s ease-in-out;
}

.accordions-links a:hover {
	color: #09A9F3;
}

.card-header button {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	color: #000000;
}

.card-header button:hover {
	color: #000;
}

.page-hero-half {
	position: relative;
}

.page-hero-half::before {
	content: '';
	position: absolute;
	background: #F2F4F8;
	height: 300px;
	width: 100%;
	top: 0;
	z-index: -1;
}

.mech-detail {
	width: calc(100% - 270px);
}

.mech-img {
	margin-right: 30px;
}

.mech-name h3 {
	font-weight: 700;
	font-size: 40px;
	line-height: 59px;
	color: #000000;

}

.mech-name {
	margin-bottom: 25px;
}

.mech-rating-info {
	margin-top: 25px;
	margin-bottom: 15px;
	padding-top: 20px;
}

.mech-rating span {
	margin: 0px 2px;
}

.mech-rating-info p {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #000000;
	margin-left: 10px;
}

.mech-address {
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: rgba(0, 0, 0, 0.6);
}

.btn-mech {
	width: 150px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	line-height: 18px;
	text-align: center;
	transition: all .6s ease-in-out;
	cursor: pointer;
}

.btn-black {
	background: #000000;
	color: #fff;
}

.btn-black:hover {
	box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 50%)
}

.mech-profile-main {
	margin-bottom: 100px;
}

.mech-card {
	background: #FFFFFF;
	box-shadow: 0px 5px 25px rgba(22, 32, 61, 0.21);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
}

.mech-serv-img {
	margin-bottom: 15px;
}

.mech-serv-name h5 {
	font-weight: 500;
	font-size: 17px;
	line-height: 20px;
	color: #000000;
}

.mech-serv-name span {
	font-weight: 600;
	font-size: 17px;
	line-height: 20px;
	color: #09A9F3;
}

.mech-card-rating-main {
	margin-top: 12px;
}

.mech-card-rating span {
	margin: 0px 2px;
}

.mech-card-rating-main p {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #000000;
	margin-left: 5px;
}

.user-email {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #020202;
}

.mech-profile span {
	font-weight: 600;
	font-size: 25px;
	line-height: 36px;
	color: #000000;
	margin-left: 15px;
}

.mech-profile {
	padding-top: 40px;
}

.page-hero-half-car {
	position: relative;
}

.page-hero-half-car::before {
	content: '';
	position: absolute;
	background: #F2F4F8;
	height: 340px;
	width: 100%;
	top: 0;
	z-index: -1;
}

.history-card {
	background: #FFFFFF;
	box-shadow: 0px 5px 25px rgba(22, 32, 61, 0.21);
	border-radius: 10px;
	padding: 20px 30px;
	margin-bottom: 35px;
}

.history-info span {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 10px;
	display: block;
}

.history-info h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #000000;
}

.text-blue {
	color: #09A9F3 !important;
}

.page-head-info h4 {
	font-weight: 700;
	font-size: 49px;
	line-height: 59px;
	color: #000000;
	margin-bottom: 30px;
}

.page-head-info h4 span {
	color: #09A9F3;
}

.page-head-info p {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	color: rgba(0, 0, 0, 0.64);
	max-width: 390px;
}

.top-sec {
	padding: 80px 60px;
	border-radius: 15px;
	margin-bottom: 100px;
}

.service-top-sec,
.shop-top-sec {
	background: url(../images/serv-hero-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

}

.filter-sec {
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	width: 270px;
	height: 65px;
	padding: 15px 12px;
	display: flex;
	align-items: center;

}

.filter-icon {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #D2D2D2;
}

.app-box {
	background: #09A9F3;
	width: 756px;
	height: 155px;
	padding: 20px;
	margin: 0px auto -70px;
	position: relative;
	z-index: 1;
}

.app-box h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.app-btn a {
	margin: 0px 15px;
}

.first-box {
	position: relative;
}

.first-box::before {
	content: '';
	position: absolute;
	background: rgba(9, 169, 243, 0.12);
	width: 216px;
	height: 260px;
	top: -60px;
}

.get-tocuh-box {
	border: 1px solid rgba(9, 169, 243, 0.4);
	padding: 15px;
}

.producy-img {
	width: 78px;
	height: 78px;
}

.cart-card {
	background: #FFFFFF;
	box-shadow: 0px 5px 25px rgba(22, 32, 61, 0.21);
	border-radius: 10px;
	padding: 20px 50px;
	margin-bottom: 40px;
}

.cart-info span {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.64);
	margin-bottom: 15px;
	display: block;
}

.cart-info h4 {
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	color: #000000;
}

.left-seprator {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	padding-left: 90px;
}

.c-close-btn {
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.decrement-btn,
.increment-btn {
	cursor: pointer;
}

.qty-input {
	font-weight: 500 !important;
	font-size: 22px !important;
	line-height: 26px !important;

	color: #000000 !important;
	margin: 0px 12px 0 !important;
	width: 50px;

}

.qty-main span {
	margin-bottom: 0 !important;
	display: flex;
}

.total-box {
	background: rgba(9, 169, 243, 0.1);
	border-radius: 16px;
	padding: 40px;
	margin: 100px 0;
}

.total-text {
	font-weight: 500;
	font-size: 30px;
	line-height: 36px;
	color: #000000;
}

.checkout-box {
	background: #FFFFFF;
	box-shadow: 0px 5px 25px rgba(22, 32, 61, 0.21);
	border-radius: 10px;
	padding: 35px 50px;
}

.check-title {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.64);
}

.checkout-head {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 25px;
}

.checkout-body {
	padding: 35px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 35px;
}

.check-product-name {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
}

.pro-qty {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #09A9F3;
	margin-left: 60px;
}

.check-product {
	margin-bottom: 30px;
}

.check-price {
	font-weight: 400;
	font-size: 22px;
	line-height: 26px;
	text-align: right;

	color: rgba(0, 0, 0, 0.8);
}

.sub-total-text {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
}

.sub-total-count {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;

	text-align: right;

	color: #000000;
}

.checkout-bottom {
	margin-bottom: 30px;
}

.c-total-text {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
}

.c-total-count {
	font-weight: 600;
	font-size: 24px;
	line-height: 29px;
	text-align: right;

	color: #09A9F3;
}

.check-total-box {
	background: #09A9F3;
	border-radius: 14px;
	padding: 20px 40px;
	margin-top: 50px;
	margin-bottom: 100px;
}

.c-total-text {
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;

	color: #FFFFFF;
}

.btn-order {
	width: 237px;
	height: 64px;
	background: #FFFFFF;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: #09A9F3;
	cursor: pointer;
	transition: all .6s ease-in-out;
}

.btn-order:hover {
	box-shadow: 0px 10px 20px 0px rgb(255 255 255 / 50%);
}

.cart-list-small {
	display: none;
}

.shop-dropdown button.dropdown-toggle {
	background: transparent;
	border: none;
	display: flex;
	margin-left: 30px;
	cursor: pointer;
}

.shop-dropdown .dropdown-toggle::after {
	content: none;
}

.shop-dropdown .dropdown-menu {
	position: absolute;
	left: -150px;
	width: 350px;
	top: 55px;
	box-shadow: 0 0px 5px 5px rgb(0 0 0 / 10%);
	border: none;
	border-radius: 10px;
}

.shopping-cart {
	float: right;
	background: white;
	position: relative;
	border-radius: 10px;
	width: 100%;

}

.shopping-cart .shopping-cart-header {
	border-bottom: 1px solid #E8E8E8;
	padding: 5px 15px 15px;
}

.shopping-cart-header .badge {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #000000;
	padding: 0;

}

.shopping-cart-total {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-align: center;

}

.main-color-text {
	color: #09A9F3;
}

.lighter-text {
	color: rgba(0, 0, 0, 0.7);
}

.shopping-cart .shopping-cart-header .shopping-cart-total {
	float: right;
}

.shopping-cart .shopping-cart-items {
	padding: 20px 15px;
}

.shopping-cart .shopping-cart-items li {
	margin-bottom: 10px;
	border-bottom: 1px solid #f5f2f2;
	padding-bottom: 10px;
}

.shopping-cart .shopping-cart-items img {
	float: left;
	margin-right: 15px;
}

.shopping-cart .shopping-cart-items .item-name {
	display: block;
	font-weight: 600;
	font-size: 14px;
	line-height: 34px;
	color: #000000;
}

.shopping-cart .shopping-cart-items .item-price {
	color: #09A9F3;
	margin-right: 8px;
}

.shopping-cart .shopping-cart-items .item-quantity {
	color: #ABB0BE;
}

.shopping-cart:after {
	bottom: 102%;
	left: 52%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: white;
	border-width: 10px;
}

.cart-img {
	width: 40px;
	height: 40px;
}

.action-delete {
	background: #FFE5EA;
	cursor: pointer;
}

.action-delete svg {}

.shop-d-main {
	padding: 0px 0px 80px;
}

.shop-edit-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.shop-edit-btn a:hover svg {
	fill: rgb(72, 188, 144);
}

.shop-edit-btn svg {
	vertical-align: middle;
	transition: all.6s ease-in-out;
}

.shop-edit-btn a {
	height: 45px;
	width: 45px;
	line-height: 45px;
	background: #f4f4f4;
	border-radius: 2px;
	margin-bottom: 30px;
	transition: all.6s ease-in-out;
}

.shop-edit-btn a:last-child {
	margin-bottom: 0px;
}

.item-detail-page h5 {
	margin-bottom: 12px;
	font-size: 38px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
}

.item-detail-page p {
	color: rgb(0 0 0 / 50%);
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 40px;
	margin: 0px;
	font-weight: 500;
}


.item-detail-page .price,
.shop-price {
	display: inline-block;
	color: #09A9F3;
	font-size: 52px;
	margin-bottom: 25px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-top: 10px;
}

.item-detail-page .code {
	color: #b5b5b5;
	font-size: 15px;

	display: inline-block;
	font-weight: 300;
}

.item-detail-page .some-info {

	padding-bottom: 65px;
}

.item-detail-page .in-stoke {
	border: 1px solid #e3e3e3;
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	color: #909090;
	font-weight: 500;
}

.item-detail-page .in-stoke i {
	color: #59cca0;
	margin-right: 4px;
	font-size: 18px;
}

.item-detail-page .stars {
	display: inline-block;
	width: auto;
	margin: 0 20px;
}

.item-detail-page .review {
	color: #b8b8b8;
}


.slider-for {
	height: 580px;
	border: 1px solid #e5e5e5;
}

.slider-for .slick-slide img {
	display: block;
	margin: auto;
}

.nav-img {
	border: 1px solid #e5e5e5;
	height: 150px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 10px;
}

.nav-img img {
	width: auto !important;
	max-width: 120px;
}

.flexslider .slides img {
	width: auto !important;
}

.flexslider {
	margin-bottom: 40px !important;
	border: 0 !important;
	border-radius: 8px !important;
}

.flex-direction-nav {
	display: none;
}

.pro-img {
	width: 100%;
	height: 520px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
}

#carousel .slides>li {
	margin-right: 40px !important;
}

#carousel .slides>li:last-child {
	margin-right: 0 !important;
}

#carousel .flex-active-slide .nav-img {
	border: 1px solid #09A9F3;
}

.item-detail-page .item-select p {
	font-size: 18px;
	color: #121212;
	margin-top: 20px;
	font-weight: 600;
	text-transform: capitalize;
	padding-bottom: 20px !important;
}

.item-detail-page .item-select .bootstrap-select {
	width: 100% !important;
}

.item-detail-page .item-select .bootstrap-select .btn {
	background: #fff !important;
	border: 1px solid #ebebeb;
	color: #b5b5b5;
	font-size: 16px;
	text-transform: capitalize;
	border-radius: 2px;
	height: 45px;
	font-weight: 300;
	letter-spacing: 0.5px;
	padding: 12px;
}

.item-detail-page .item-select .bootstrap-select .dropdown-menu>li>a {
	font-size: 16px;
	line-height: 22px;
}

.item-detail-page .fun-share {
	display: inline-block;
	width: 100%;
	margin-top: 40px;
}

.item-detail-page .fun-share .btn {
	width: 210px;
	height: 55px;
	background: #09A9F3;
	border-radius: 5px;
	margin-left: 40px;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	cursor: pointer;
	color: #FFFFFF;
	transition: all .5s ease-in-out;
	border: none;
}

.price-gray {
	text-decoration: line-through;
	color: rgb(144 144 144);
	margin-left: 0;
	font-size: 20px;
	margin-left: 5px;
}

/*
.item-detail-page .fun-share .btn-cart:hover{
	background: #3acb94;
    color: #fff;
	border-color: #3acb94;
}*/
.item-detail-page .fun-share .cart {
	margin-left: 8px;
}

.item-detail-page .fun-share input {
	border: 1px solid #e3e3e3;
	width: 50px;
	height: 45px;
	float: left;
	display: inline-block;
	text-align: center;
	font-size: 16px;
	color: #121212;
	font-weight: 600;
	border-radius: 2px;
	margin-right: 20px;
	transition: all .5s ease-in-out;

}

.item-detail-page .share-sec {
	font-size: 20px;
	color: #272727;
	display: inline-block;
	text-align: center;
	border: 1px solid #e3e3e3;
	width: 50px;
	height: 45px;
	float: left;
	line-height: 45px;
	border: 1px solid #ebebeb;
	border-radius: 2px;
	transition: all .5s ease-in-out;
}

.item-detail-page .share-sec i {
	font-weight: bold;
}

.item-detail-page .share-sec:hover {
	background: #3acb94;
	color: #fff;
	border-color: #3acb94;
}

.item-detail-page .share-with {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}

.item-detail-page .share-with li {
	display: inline-block;
	margin-right: 10px;
}

.item-detail-page .share-with li p {
	font-size: 12px;
	color: #272727;
}

.shop-des-list h4 {
	font-size: 18px;
	color: #09A9F3;
	font-weight: 600;
	margin-bottom: 15px;
}

.shop-des-list li {
	font-size: 16px;
	color: rgba(0, 0, 0, 1);
	font-weight: 500;
	margin-bottom: 10px;
	list-style: disc;
	margin-left: 15px;
}

/* .shop-des-list li span{
	color: rgba(0, 0, 0, 7);
	font-weight: 600;
} */
.rate-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: rgba(0, 0, 0, 0.9);
	margin-left: 10px;
}

.product-bottom-detail {
	margin-top: 30px;
}

.product-bottom-detail .qty-main {
	border: 1px solid #e5e5e5;
	height: 60px;
	padding: 10px 15px;
	border-radius: 8px;
	margin-right: 15px;
}

.add-to-cart-btn {
	width: 270px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
	color: #fff;
	cursor: pointer;
	transition: all .4s ease-in-out;
	background: #09A9F3;
	border-radius: 8px;
}

.add-to-cart-btn:hover {
	box-shadow: 0px 10px 20px 0px rgb(9 169 243 / 50%);
}

.wishlist-btn {
	width: 60px;
	height: 60px;
	border: 1px solid #e5e5e5;
	background: transparent;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	cursor: pointer;
}

.page-hero-pro {
	position: relative;
}

.page-hero-pro::before {
	content: '';
	position: absolute;
	background: #F2F4F8;
	height: 480px;
	width: 100%;
	top: 0;
	z-index: -1;
}

.product-tab {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 40px;
}

.product-tab li {
	margin-right: 20px;
}

.product-tab li a {
	padding: 15px 20px;
	font-size: 18px;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
	border-bottom: 1px solid transparent !important;
	transition: all .6s ease-in-out;
	border: none !important;
}

.product-tab .nav-item.show .nav-link,
.product-tab .nav-link.active {
	border-bottom: 1px solid #09A9F3 !important;
	color: #09A9F3;
	border: none;
}

.product-tab .nav-link:focus,
.product-tab .nav-link:hover {
	border: none;
}

.product-tab-des {
	margin-bottom: 40px;
}

.product-tab-des h6 {
	font-size: 18px;
	color: rgba(0, 0, 0, 1);
	font-weight: 600;
	margin-bottom: 15px;
}

.product-tab-des p {
	color: rgb(0, 0, 0, 0.6);
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	font-weight: 500;
}

.pro-list li {
	color: rgb(0 0 0 / 60%);
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	font-weight: 500;
	list-style: disc;
	margin-left: 20px;
}

.comment-item {
	border: 1px solid #e4e4e4;
	border-radius: 10px;
	padding: 30px;
}

.c-user-img {
	margin-right: 10px;
}

.comment-user-name h4 {
	color: rgb(0, 0, 0);
	font-size: 18px;
	line-height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	font-weight: 600;
}

.comment-user-name span {
	color: rgb(0, 0, 0, 0.5);
	font-size: 14px;
	font-weight: 500;
}

.comment-author {
	margin-bottom: 20px;
}

.comment-text {
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.sub-comment-item {
	padding-left: 50px;

}

.comment-item p {
	color: #000;
}

.comment-right {
	padding-left: 60px;
	margin-top: -10px;
}

.comment-right span {
	display: flex;
}

.comment-user-rate {
	color: rgb(0, 0, 0, 1);
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 0px;
	margin: 0px;
	font-weight: 600;
}

.review-input {
	margin-bottom: 30px;
}

.review-input input,
.review-input textarea {
	height: 65px;
	border: 2px solid rgba(217, 217, 217, 0.5);
	border-radius: 10px;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	padding: 20px 25px;
	background: transparent;
}

.review-input textarea {
	height: 180px;
	resize: none;
}