/*-------------------------------- 
# Top bar menu
----------------------------------*/
.main-menu ul li > .sub-menu li.menu-item-has-children > a {
  position: relative;
}
.main-menu ul li > .sub-menu li.menu-item-has-children > a:before {
  position: absolute;
  content: "\f2fb";
  right: 15px;
  font-family: Material-Design-Iconic-Font;
  font-size: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-top-area {
	background: #ffffff none repeat scroll 0 0;
	padding: 12px 0;
	border-bottom: 1px solid #eeeeee;
}
.top-bar-left-content a,
.header-info a {
	color: #acabab;
}
.header-info span {
  color: #acabab;
  font-size: 12px;
  position: relative;
}
.header-top-area .header-info span > a {
  color: #818181;
  font-weight: 400;
}
.header-top-area .header-info span > a:hover{
    color: #0099d1;
}
.header-info span + span {
	margin-left: 8px;
	padding-left: 8px;
}
.header-info span + span::before {
	background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
	content: "";
	height: 20px;
	left: -2px;
	position: absolute;
	top: 0;
	width: 1px;
}
/*-------------------------------- 
# Top bar left side menu
----------------------------------*/

.top-bar-left-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.top-bar-left-menu ul li {
	display: inline-block;
}
.top-bar-left-menu ul li a {
	padding: 5px 10px;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 14px;
	color: #fff;
}
.top-bar-left-content a:hover,
.header-info a:hover,
.header-social ul li a:hover,
.top-bar-left-menu ul li a:hover {
	color: #0099d1;
}
.top-bar-left-content {
	color: #fff;
}
.top-bar-left-content p {
	margin-bottom: 0;
}
/*-------------------------------- 
# Header Top Social icons
----------------------------------*/

.header-social ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-social ul li {
	display: inline-block;
	line-height: 1;
}
.header-social ul li a {
	color: #9a9a9a;
	font-size: 14px;
}
.header-social.text-white > a {
	color: #fff;
}
.menu-middle-area {
	border-top: 1px solid #ddd;
}
.header-social ul li + li {
  margin-left: 30px;
}
/*-------------------------------- 
# Header Search
----------------------------------*/

.header-search {
	margin: 29px 0;
}
.header-search form {
	display: block;
	position: relative;
}
.header-search form input {
	border: 1px solid #ddd;
	height: 40px;
	line-height: 24px;
	padding: 7px 40px 7px 15px;
	width: 250px;
}
.header-search form button {
	background-color: transparent;
	border: 0 none;
	color: #999;
	height: 40px;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 40px;
}
.header-search form button i {
	display: block;
	line-height: 38px;
}
.header-search form button:hover {
	color: #26c7cc;
}
/**
* Header Transparent Enable
*/

header.header-transparent {
	background: transparent none repeat scroll 0 0;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99999;
	-webkit-box-shadow: 0 1px 3px rgba(50, 50, 50, 0);
	box-shadow: 0 1px 3px rgba(50, 50, 50, 0);
}
.logged-in.admin-bar header.header-transparent {
	top: 32px;
}
/**
* Header Sticky 
*/

header.is-sticky {
	position: fixed;
	left: 0;
	top: 0 !important;
	right: 0;
	background-color: rgba(255, 255, 255, 1) !important;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
body.logged-in.admin-bar .is-sticky {
	padding-top: 32px;
}
header.is-sticky .default-menu nav > ul > li > a {
  padding: 33px 0;
}
/**
* Default Menu Style
*/

.default-menu nav > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	list-style: none;
	padding: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.default-menu nav > ul > li {
	position: relative;
}
.default-menu nav > ul > li > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	line-height: 30px;
	padding: 30px 15px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.default-menu nav > ul > li:hover > .sub-menu {
	margin-top: 0;
	opacity: 1;
	visibility: visible;
	z-index: 999;
}
.sub-menu li {
	position: relative;
}
.sub-menu li a {
	line-height: 25px;
	padding: 10px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.main-menu ul.sub-menu li a {
	border-bottom: 1px solid #eee;
}
.main-menu ul.sub-menu li:last-child a {
	border-bottom: none;
}
.sub-menu li .sub-menu {
	top: 0;
	left: 100%;
	right: auto;
}
.sub-menu li .sub-menu li .sub-menu {
	left: auto;
	right: 100%;
}
.sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
	left: auto;
	right: 100%;
}
.sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
	left: 100%;
	right: auto;
}
/* Last 2 Element drop-down position */

.last-elements .sub-menu {
	left: auto;
	right: 0;
}
.last-elements .sub-menu li .sub-menu {
	top: 0;
	left: auto;
	right: 100%;
}
.last-elements .sub-menu li .sub-menu li .sub-menu {
	right: 100%;
	left: auto;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu {
	right: 100%;
	left: auto;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
	right: auto;
	left: 100%;
}
.last-elements .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu li .sub-menu {
	right: 100%;
	left: auto;
}
.menu_inner ul.menu {
  margin: 0;
}

/**
* Hover Animation 
*/

.sub-menu li:hover > .sub-menu {
	margin-top: 0;
	opacity: 1;
	visibility: visible;
	z-index: 999;
}
/**
* Mobile Menu 
*/

.mean-bar {
	background-color: #0c1923;
	min-height: auto;
	padding: 0;
	z-index: 9;
}
a.meanmenu-reveal {
    color: #444444;
}
.mobile-menu .mean-nav .sub-menu {
  background: inherit;
}
.mobile-menu .mean-nav > ul {
  padding: 0;
}
.mobile-menu .mean-nav > ul li > a {
  color: rgba(255, 255, 255, 0.8);
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-menu .mean-nav > ul li > ul > li > a {
  font-size: 12px;
  padding-left: 50px;
}

/**
* Menu Open/Close Button
*/
.header-default a.meanmenu-reveal {
  top: -42px;
}
a.meanmenu-reveal {
	height: auto;
	line-height: 1;
	padding: 0;
	top: -32.5px;
	width: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
a.meanmenu-reveal:hover,
a.meanmenu-reveal:focus {
	color: #444444;
	outline: medium none;
}
a.meanmenu-reveal i {
	display: block;
	font-size: 30px;
	line-height: 30px;
	width: 30px;
}
/**
* Mobile Menu Nav
*/
.mobile-menu .mean-nav > ul {
  max-height: 350px;
  overflow-x: scroll;
}
.mean-nav {
	background-color: transparent;
	margin: 0;
}
.mean-nav a.mean-expand {
  border: medium none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 18px !important;
  height: 36px;
  line-height: 36px;
  padding: 0 !important;
  text-align: center;
  width: 42px !important;
}
.mean-nav a.mean-expand:hover {
	color: #0099d1 !important;
}
.mean-nav > ul {
	float: left;
	padding: 15px 0;
}
.mean-nav > ul > li > a {
	border-color: #eee;
	color: #464646;
	display: block;
	font-family: "Open Sans", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 24px;
	padding: 6px 30px 6px 0;
}
.mean-nav > ul > li > a:hover,
.mean-nav > ul > li.current_page_item > a {
	color: #0099d1;
}
.mobile-menu nav.mean-nav {
  position: absolute;
  top: 0;
  width: 100%;
  background: #000;
}
/**
* Mobile Sub & Mega menu
*/

.mean-nav .sub-menu,
.mean-nav .mega-menu {
	-webkit-box-shadow: none;
	box-shadow: none;
	float: left;
	opacity: 1;
	position: static;
	-webkit-transition: none 0s ease 0s;
	transition: none 0s ease 0s;
	visibility: visible;
	z-index: 1;
}
.mean-nav ul li li {
	margin: 0;
	padding: 0;
}
.mean-nav ul li li a {
	border-color: #eee;
	color: #464646;
	font-family: "Open Sans", sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
	opacity: 1;
	padding: 6px 30px 6px 15px;
	text-transform: uppercase;
	width: 100% !important;
	border-bottom: none;
}
.mean-nav .sub-menu li:hover > a {
	color: #464646;
}
.mean-nav .sub-menu li.current_page_item:hover > a {
	color: #0099d1;
}
.mean-nav ul li li.current_page_item > a,
.mean-nav ul li li > a:hover,
.mean-nav .sub-menu li > a:hover {
	color: #0099d1;
}
.mean-nav ul li li li a {
	padding: 6px 30px 6px 25px;
}
.mean-nav ul li li li li a {
	padding: 6px 30px 6px 35px;
}
.mean-nav ul li li li li li a {
	padding: 6px 30px 6px 45px;
}
.mean-nav ul li li li li li li a {
	padding: 6px 30px 6px 55px;
}
/**
* Text Logo Style 
*/

.site-title h3,
.site-title p {
	margin: 0;
}
.site-title a {
	color: #333;
	display: block;
	font-size: 20px;
	font-weight: 700;
}
/**
* Logo Position
*/

.header-menu-wrap {
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header-menu-wrap .site-title {
	min-width: 150px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding-top: 20px;
	padding-bottom: 20px;
}
.header-menu-wrap.logo-left {
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
}
.header-menu-wrap.logo-center {
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-menu-wrap.logo-center > div:nth-child(2) {
	-ms-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.header-menu-wrap.logo-right {
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.header-menu-wrap.logo-left-top {
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-align-items: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.header-menu-wrap.logo-center-top {
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-menu-wrap.logo-right-top {
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-align-items: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.header-menu-wrap.logo-center,
.header-menu-wrap.logo-left-top,
.header-menu-wrap.logo-center-top,
.header-menu-wrap.logo-right-top {
	padding-top: 15px;
}
header.header-default {
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
/**
* Search Option
*/

.page-title-search-box input {
	background: transparent;
	border-radius: 0;
	padding: 10px 20px;
}
.page-title-search-box input:focus {
	outline: none;
}
.page-title-search-box button {
	display: none;
}
.page__title__inner {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: wrap column;
	flex-flow: wrap column;
}
.page__title__inner.breadcrumbs-title-left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.page__title__inner.breadcrumbs-title-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.page__title__inner.breadcrumbs-title-right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
/**
* Page Title and Breadcrumbs
*/

.page__title__wrapper {
	background: #F2F2F2;
}
.page__title__inner {
  padding: 140px 0 150px;
}
h2.page-title {
	margin: 10px 0;
}
.page__title__inner .page-title {
  font-family: courgette;
  font-size: 40px;
  margin-bottom: 0;
  padding: 0;
  font-weight: 400;
  color: #525252;
}
.page__title__inner > p {
	margin-bottom: 0.80em;
}
.page__title__inner .page-subtitle {
	margin-bottom: 0;
}
.breadcrumbs_wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left: -10px;
	margin-right: -10px;
}
.breadcrumbs_wrap ul li {
  display: inline-block;
  line-height: 1.5;
}
.breadcrumbs_wrap ul li {
	padding: 0 5px;
}
section.page__title__wrapper {
	position: relative;
}
section.page__title__wrapper:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	left: 0;
	top: 0;
}
section.page__title__wrapper.text-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
section.page__title__wrapper.full-height,
section.page__title__wrapper.full-height .container,
section.page__title__wrapper.full-height .container .row,
section.page__title__wrapper.full-height .container .row div[class*="col-"],
section.page__title__wrapper.full-height,
section.page__title__wrapper.full-height .container-fluid,
section.page__title__wrapper.full-height .container-fluid .row,
section.page__title__wrapper.full-height .container-fluid .row div[class*="col-"] {
	height: 100vh;
}
section.page__title__wrapper.full-height .container .row div[class*="col-"],
section.page__title__wrapper.full-height .container-fluid .row div[class*="col-"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
section.page__title__wrapper.half-height,
section.page__title__wrapper.half-height .container,
section.page__title__wrapper.half-height .container .row,
section.page__title__wrapper.half-height .container .row div[class*="col-"],
section.page__title__wrapper.half-height,
section.page__title__wrapper.half-height .container-fluid,
section.page__title__wrapper.half-height .container-fluid .row,
section.page__title__wrapper.half-height .container-fluid .row div[class*="col-"] {
	height: 50vh;
}
section.page__title__wrapper.half-height .container .row div[class*="col-"],
section.page__title__wrapper.half-height .container-fluid .row div[class*="col-"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
section.page__title__wrapper .page__title__inner {
	width: 100%;
}
.breadcrumbs_wrap ul, .breadcrumbs_wrap ul li, .breadcrumbs_wrap ul li a {
  font-family: courgette;
  font-size: 18px;
  -webkit-transition: all 0.3s ease 0s !important;
  transition: all 0.3s ease 0s !important;
}
/**
* Page Wrapper
*/

.page-wrapper {
	padding: 100px 0;
}
.page-sub-title p {
	margin-bottom: 10px;
}
/**
* Default Footer
*/

footer .default-footer {
	background: #f2f2f2 none repeat scroll 0 0;
	color: #000000;
	padding: 35px 0;
	position: relative;
	text-align: center;
}
footer .default-footer:before {
	position: absolute;
	content: "";
	background: rgba(0, 0, 0, 0, 0);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/**
* Footer fixed enable effect
*/

footer.fixed-footer-enable {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -10;
}
/**
* Not found / 404 page 
*/

.page-not-found-wrap {
	width: 100%;
	background: #f6f6f6;
}
.page-not-found-wrap .container,
.page-not-found-wrap .container .row,
.page-not-found-wrap .container .pnf-inner-wrap,
.page-not-found-wrap .container[class*="col-"] {
	height: 100%;
}
.page-not-found-wrap .container .pnf-inner-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    height: 700px;
}
.pnf-inner img {
	max-height: 350px;
	margin-bottom: 30px;
}
.pnf-inner > h1 {
	color: #0099d1;
	font-size: 150px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1;
	margin: 0;
	text-transform: uppercase;
	margin-bottom: 30px;
    text-shadow: 7px 6px 0 #dadada, 0 -1px 0 #dadada, 1px -1px 0 #dadada, -1px 1px 0 #dadada, 1px 1px 0 #dadada;
}
.pnf-inner > h2 {
	color: #333;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	text-transform: uppercase;
}
.pnf-inner > p {
	color: #333;
	font-size: 24px;
	line-height: 1.4;
	margin: 0;
}
.pnf-inner a.btn {
  background-color: #0099d1;
  border: 1px solid #0099d1;
  border-radius: 2px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  height: 55px;
  line-height: 55px;
  margin-top: 50px;
  padding: 0 30px;
  text-align: center;
  text-transform: uppercase;
}
.pnf-inner a.btn:hover {
	background-color: #000;
    border-color: #000;
}
.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
/* Breadcrumb */

.breadcrumb-wrapper .breadcrumb {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	margin: 0;
	padding: 0;
}
.breadcrumb-wrapper ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumb-wrapper .breadcrumb li a {
	color: #fff;
	font-size: 16px;
}
.breadcrumb-wrapper .breadcrumb.black-text li a {
	color: #444
}
.breadcrumb-wrapper .breadcrumb.black-text li.active {
	color: #888
}
.breadcrumb-wrapper .breadcrumb li.active {
	color: #ccc;
}
/*------------
    jharon Theme css here
--------------*/

/* header */

.header-top-area {
	border-bottom: 1px solid #eeeeee;
	padding: 12px 0;
}
.header-left-text {
	display: inline-block;
	margin-right: 34px;
}
.header-left-text:last-child {
	margin-right: 0;
}
.header-left-text li {
	font-size: 12px;
	color: #acabab;
	font-weight: 400;
}
.header-left-text li a {
	color: #818181;
	font-size: 12px;
	font-weight: 400;
}
.header-icon {
	float: right;
}
.header-icon a {
	color: #9a9a9a;
	font-size: 14px;
	padding-right: 25px;
	-webkit-transition: .3s;
	transition: .3s;
}
.header-icon a:last-child {
	padding-right: 0;
}
.header-icon a:hover {
	color: #0099d1;
}
/* header-area */
.get-quote a {
	background: #0099d1 none repeat scroll 0 0;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding: 15px 40px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.get-quote a:hover {
	background: #000;
}
.header-right {
	display: inline-block;
	margin-right: 52px;
}
.header-right-icons {
	float: left;
	margin-right: 20px;
}
.header-right-icons span {
	color: #0099d1;
	font-size: 36px;
	font-weight: 400;
}
.header-right-text {
	float: right;
}
.header-right-text .text {
	color: #919191;
	font-size: 13px;
	font-weight: 400;
	font-family: courgette;
}
.header-right-text .phone {
	color: #595959;
	display: block;
	font-family: courgette;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}
/* main-menu-area-start */

.logo {
	margin-top: 38px;
}
.main-menu> nav > ul > li {
	display: inline-block;
	position: relative;
	padding: 0 14px;
}
.main-menu > nav > ul > li:last-child {
  padding-right: 0;
}
.main-menu > nav > ul > li a {
	color: #525252;
	display: block;
	font-size: 14px;
	font-weight: 600;
	padding: 49px 0;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
    line-height: 20px;
}
.main-menu> nav> ul >li > a::before {
	background: #0099d1;
	content: "";
	height: 2px;
	position: absolute;
	top: 0;
	width: 0;
	-webkit-transition: .5s;
	transition: .5s;
}
.main-menu > nav > ul > li:hover > a::before, .main-menu > nav > ul > li.current-menu-item > a::before {
  width: 100%;
}
.main-menu ul li:first-child {
	padding-left: 0
}
.main-menu ul li:hover > a,
.main-menu ul li.current-menu-item > a {
	color: #0099d1;
}
.get-a-quote {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 28px;
}
.get-a-quote a {
	background: #0099d1 none repeat scroll 0 0;
	border-radius: 30px;
	color: #ffffff;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding: 15px 40px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.get-a-quote a:hover {
	background: #000;
}
.menu-style-1 > nav > ul > li a {
  color: #525252;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  padding: 20px 0;
}
.menu-style-1 > nav > ul > li {
	display: inline-block;
	padding: 0 26px;
	position: relative;
}
.menu-style-1 > nav > ul > li:last-child {
	padding-right: 0;
}
.header-icon {
	float: right;
}
.icon {
	line-height: 0;
}
.icon a {
	border-left: 1px solid #eeeeee;
	color: #9a9a9a;
	display: inline-block;
	font-size: 14px;
	overflow: hidden;
	padding: 23px 20px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.icon a:last-child {
	border-right: 1px solid #eeeeee;
}
.icon a:hover {
	color: #0099d1;
}
/* sub-menu */

.main-menu ul li .sub-menu {
  background: #ffffff none repeat scroll 0 0;
  border-top: 3px solid #0099d1;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  list-style: outside none none;
  margin-left: 0;
  margin-top: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 120%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 270px;
  z-index: 9;
}
.main-menu ul li:hover .sub-menu {
	opacity: 1;
	top: 100%;
	visibility: visible
}
.main-menu ul li .sub-menu li {
	display: block
}
.main-menu ul li .sub-menu li a {
	color: #666666;
	font-family: Montserrat;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	padding: 13px 20px;
	text-transform: capitalize;
	font-family: montserrat;
	line-height: 1.5;
}
.main-menu ul li:hover > .sub-menu li > a:hover {
	color: #fff;
	background: #0099d1;
}
/* slider */

.slider-wrapper {
	background-position: center center;
	background-size: cover;
}
.slider-content {
	position: relative;
}
.slider-content>span {
	color: #ffffff;
	display: inline-block;
	font-family: montserrat;
	font-size: 60px;
	font-weight: 900;
	line-height: 60px;
	margin-bottom: 13px;
}
.slider-content h1 {
  color: #ffffff;
  font-size: 80px;
  font-weight: 900;
  line-height: 83px;
  margin-bottom: 40px;
  margin-top: 0;
}
span.cd-words-wrapper b {
	font-weight: 900 !important;
}
.slider-content a {
	border: 2px solid #ffffff;
	border-radius: 30px;
	color: #ffffff;
	display: inline-block;
	font-family: montserrat;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 15px 50px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.slider-content > a:hover {
	background: #0099d1;
	border-color: #0099d1;
}
.slider-text h1 {
	font-size: 100px;
	margin-bottom: 56px;
}
.slider-text a {
	border-radius: 0;
}
.slider-text-animation span,
.slider-text-animation h1,
.slider-text-animation a {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
.active .slider-text-animation span,
.active .slider-text-animation h1,
.active .slider-text-animation a {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.slider-text-animation span {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.slider-text-animation h1 {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.slider-text-animation a {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.slider-active .owl-dots {
	line-height: 0;
	position: absolute;
	right: 6%;
	top: 50%;
	z-index: 99;
}
.slider-active .owl-dot {
	background: #fff none repeat scroll 0 0;
	border-radius: 50%;
	height: 10px;
	margin: 0 0 17px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 10px;
	position: relative;
}
.slider-active .owl-dot.active::before {
	border: 1px solid #fff;
	border-radius: 50%;
	content: "";
	height: 20px;
	left: -5px;
	position: absolute;
	top: -5px;
	width: 20px;
}
.slider-active .owl-dot.active {
	border-color: #e74948;
}
.slider1-active .owl-dots {
  bottom: 24px;
  left: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  text-align: center;
  top: inherit;
  z-index: 99;
}
.slider1-active .owl-dot {
	background: #ffffff none repeat scroll 0 0;
	border-radius: 50%;
	display: inline-block;
	height: 10px;
	margin: 0 10px;
	position: relative;
	width: 10px;
}
.slider1-active .owl-dot.active::before {
	border: 1px solid #fff;
	border-radius: 50%;
	content: "";
	height: 20px;
	left: -5px;
	position: absolute;
	top: -5px;
	width: 20px;
}
.slider1-active .owl-dot.active {
	border-color: #e74948;
}
/* why-choose */
.section-title span {
  color: #6b6b6b;
  display: inline-block;
  font-family: courgette;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 9px;
}
.section-title h3 {
  color: #575757;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 15px;
}
.section-title p {
	color: #8f8f8f;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: auto auto 0;
}
.why-choose-wrapper {
	padding: 0 5px;
}
.why-choose-icon {
	background-color: #e5e9ee;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 100%;
	display: inline-block;
	height: 126px;
	line-height: 125px;
	position: relative;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 126px;
}
.why-choose-wrapper:hover .why-choose-icon {
	background-color: #0099d1;
	background-position: bottom center;
}
.why-choose-icon span {
	background: #0099d1 none repeat scroll 0 0;
	border: 2px solid #fff;
	border-radius: 100%;
	color: #fff;
	display: block;
	font-size: 15px;
	font-weight: 600;
	height: 35px;
	line-height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	width: 35px;
}
.why-choose-text {
	margin-top: 27px;
}
.why-choose-text h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #575757;
}
.why-choose-text p {
	color: #9f9f9f;
	font-size: 14px;
	line-height: 23px;
	margin-bottom: 0;
}
/* featured-services */

.featured-services-wrapper {
	padding: 30px 30px 0;
}
.featured-services-img {
	position: relative;
}
.featured-services-text {
	padding: 32px 5px 40px;
}
.featured-services-text h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
  margin-top: 0;
  padding: 0 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.featured-services-text h3{
	color: #575757;
}
.featured-services-text h3>a:hover {
	color: #0099d1;
}
.featured-services-text p {
  color: #818181;
  font-size: 14px;
  margin-bottom: 0;
}
.featured-services-info {
  padding: 25px 0 30px;
}
.featured-services-info h3 {
	padding: 0 0;
}
.featured-services-text >a {
	border: 2px solid #0099d1;
	border-radius: 30px;
	color: #0099d1;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	margin-top: 33px;
	padding: 12px 40px;
	-webkit-transition: .3s;
	transition: .3s;
}
.featured-services-text >a:hover {
	background: #0099d1;
	border-color: #0099d1;
	color: #fff;
}
.featured-services-icon {
	bottom: -20px;
	position: absolute;
	right: 20px;
}
.featured-services-icon a {
	background: #0099d1 none repeat scroll 0 0;
	border-radius: 50%;
	color: #ffffff;
	display: inline-block;
	float: right;
	font-size: 26px;
	font-weight: 400;
	height: 43px;
	line-height: 43px;
	text-align: center;
	width: 43px;
	-webkit-transition: .3s;
	transition: .3s;
}
.featured-services-icon a:hover {
	background: #000;
}

@media only screen and (min-width: 991px) and (max-width: 999px) {
    .service-booking-area {
      background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    }
    .work_process .featured-services-img > img {
      width: 100%;
    }
    .cleaning-area {
      background-image: none !important;
    }
}
/* counter */

.counter-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}
.counter-img {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-position: center center;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 185px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: 185px;
}
.counter-img::before {
	background: #0099d1 none repeat scroll 0 0;
	border-radius: 100%;
	content: "";
	height: 185px;
	left: 0;
	opacity: 0.85;
	position: absolute;
	top: 0;
	width: 185px;
}
.counter-content {
	position: relative;
}
.counter-content h2 {
  color: #ffffff;
  font-family: courgette;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 3px;
  margin-top: 0;
}
.counter-content span {
	color: #fff;
	font-family: courgette;
	font-size: 20px;
	font-weight: 400;
}
/* works */

.works-area {
	height: 998px;
}
.works-title span {
	color: #fff;
	display: inline-block;
	font-family: courgette;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 9px;
}
.works-title h3 {
	color: #fff;
	font-size: 34px;
	font-weight: 700;
}
.works-title p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	width: 536px;
}
.works-wrapper {
	background-position: center center;
	background-repeat: no-repeat;
	height: 570px;
	position: relative;
	width: 590px;
}
.works-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #0099d1 none repeat scroll 0 0;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 190px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	width: 190px;
	position: relative;
}
.works-content h4 {
  color: #ffffff;
  font-family: courgette;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  padding: 0 12px;
}
.works-wrapper .works-content {
	position: absolute;
}
.works-wrapper .works-content:nth-child(1) {
	left: 0;
	margin: auto;
	right: 0;
}
.works-wrapper .works-content:nth-child(2) {
	right: 0;
	top: 190px;
}
.works-wrapper .works-content:nth-child(3) {
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
}
.works-wrapper .works-content:nth-child(4) {
	left: 0;
	top: 190px;
}
.works-img {
	opacity: 0;
	position: absolute;
	right: 0;
	top: -36px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.works-content:hover .works-img,
.works-content.open .works-img {
	opacity: 1;
}
.works-img img {
	border: 3px solid #0099d1;
	border-radius: 100%;
}
/* service-booking */

.service-booking-area {
	background-position: 14% bottom;
	background-repeat: no-repeat;
	padding-bottom: 130px;
	padding-top: 150px;
}
.title span {
	color: #575757;
}
.title h3 {
	color: #575757;
}
.title p {
	color: #575757;
}
.service-booking-img > img {
	width: 100%;
}
#service-booking input {
	border: 1px solid #d9d9d9;
	border-radius: 30px;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	height: 40px;
	margin-bottom: 25px;
	padding-left: 17px;
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s;
}
#service-booking input:hover {
	color: #0099d1;
	border-color: #0099d1
}
#service-booking textarea {
	border: 1px solid #d9d9d9;
	border-radius: 15px;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	height: 120px;
	padding: 17px;
	text-transform: capitalize;
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s;
}
#service-booking textarea:hover {
	color: #0099d1;
	border-color: #0099d1
}
#service-booking textarea:focus,#service-booking input:focus{
  outline: none;
}
#service-booking input[type="submit"] {
	background: #0099d1 none repeat scroll 0 0;
	border: medium none;
	border-radius: 30px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	width: 218px;
	margin-top: 25px;
    height: 48px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
#service-booking  input[type="submit"]:hover {
	background: #000;
}
/* pricing */

.pricing-inner[class*="col"] {
	padding: 0 10px;
}
.pricing-wrapper {
	border-radius: 15px;
	padding: 52px 0;
}
.pricing-wrapper.active {
	-webkit-box-shadow: 0 10px 30px rgba(82, 182, 188, 0.25);
	box-shadow: 0 10px 30px rgba(82, 182, 188, 0.25);
	-webkit-transform: scale(1.13);
	transform: scale(1.13);
	z-index: 99;
	position: relative;
}
.pricing-icon {
	margin-bottom: 19px;
}
.pricing-head h3 {
  color: #4e4e4e;
  font-family: courgette;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 23px;
  margin-top: 0;
}
.pricing-wrapper .price {
  color: #0099d1;
  display: inline-block;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  padding-left: 12px;
  position: relative;
}
.pricing-menu {
  padding: 31px 0 42px;
}
.pricing-menu li {
	color: #7b7b7b;
	font-size: 14px;
	font-weight: 300;
	padding-bottom: 12px;
}
.pricing-menu li:last-child {
	padding-bottom: 0;
}
.pricing-btn > a.price_btn:hover,
.pricing-btn.active > a.price_btn {
	color: #fff;
	border-color: #0099d1;
	background: #0099d1;
}
.price-box-left {
	padding-left: 100px;
	padding-right: 0;
	margin-top: 60px;
	margin-bottom: 60px;
}
.pricing {
	-webkit-box-shadow: 0 10px 30px 0 rgba(82, 182, 188, 0.25);
	box-shadow: 0 10px 30px 0 rgba(82, 182, 188, 0.25);
	padding-top: 44px;
	position: relative;
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
	z-index: 999;
}
.pricing-icon {
	margin-bottom: 19px;
}
.pricing .pricing-head h3 {
	font-size: 26px;
	margin-bottom: 30px;
}
.pricing .price {
	font-size: 36px;
}
.pricing-wrapper .price span{
	color: #0099d1;
	font-size: 15px;
	left: 0;
	margin-top: -4px;
	position: absolute;
	top: 0;
}
.pricing .pricing-menu {
	padding-bottom: 52px;
	padding-top: 42px;
}
.pricing-menu li {
  color: #7b7b7b;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  list-style: outside none none;
  padding-bottom: 13px;
}
.pricing-menu li:last-child {
	padding-bottom: 0;
}
.pricing-btn > a.price_btn{
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 2px solid #0099d1;
  border-radius: 30px;
  color: #0099d1;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 11px 32px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pricing-btn > a.price_btn:hover {
	color: #fff;
	border-color: #0099d1;
	background: #0099d1;
}
.pricing-inner {
	padding: 0 70px;
}
/* testimonial */
.owl-carousel .owl-item img {
  width: inherit;
}
.testimonial-content {
	-webkit-box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	padding: 35px 29px 39px 35px;
	position: relative;
}
.testimonial-content::before {
	background: #ffffff none repeat scroll 0 0;
	border-radius: 7px 0 0 15px;
	bottom: -18px;
	-webkit-box-shadow: -2px 3px 4px rgba(82, 182, 188, 0.1);
	box-shadow: -2px 3px 4px rgba(82, 182, 188, 0.1);
	content: "";
	height: 40px;
	left: 56px;
	position: absolute;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 40px;
}
.testimonial-content p {
	color: #8f8f8f;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 28px;
}
.testimonial-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 36px;
  margin-top: 37px;
  overflow: hidden;
}
.testimonial-img {
	float: left;
	margin-right: 22px;
}
.testimonial-name h3 {
	color: #5c5c5c;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 2px;
    margin-top: 0;
}
.testimonial-name span {
	display: block;
	font-size: 15px;
	font-weight: 300;
	color: #a5a5a5;
}
.testimonial-name {
  -ms-flex-item-align: center;
  align-self: center;
}
.testimonial-active.owl-carousel .owl-item img {
	display: inline-block;
}
/* latest-news */
.news-content {
  background: #edf0f2 none repeat scroll 0 0;
  border-bottom: 4px solid #0099d1;
  margin: -50px auto auto;
  padding: 27px 22px 20px;
  position: relative;
  width: 93%;
  z-index: 99;
}
.news-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 23px;
  margin-top: 0;
  padding: 0 19px;
  text-align: center;
}
.news-content h3 a {
	color: #575757;
	-webkit-transition: .3s;
	transition: .3s;
}
.news-content h3 a:hover {
	color: #0099d1;
}
span.comment > a {
  color: #8f8f8f;
}
span.comment > a:hover{
  color: #0099d1;
}
.news-content p {
	color: #818181;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 40px;
	text-align: center;
}
.date {
	font-size: 14px;
	font-weight: 400;
	color: #8f8f8f;
}
.comment {
	font-size: 14px;
	font-weight: 400;
}
.comment i {
	margin-right: 10px;
}
/* action-area */

.action-text h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}
.action-text p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0;
}
.action-right-wrapper {
  overflow: hidden;
  padding-top: 19px;
}
.action-form {
	text-align: right;
}
.action-form input[type="email"] {
  background: #369fa5 none repeat scroll 0 0;
  border: medium none;
  border-radius: 30px;
  color: #f1f1f1;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  height: 46px;
  margin-right: 21px;
  padding-left: 35px;
  width: 61%;
}
.action-form input::-webkit-input-placeholder {
	color: #f1f1f1;
}
.action-form input:-ms-input-placeholder {
	color: #f1f1f1;
}
.action-form input::placeholder {
	color: #f1f1f1;
}
.action-form input::-webkit-placeholder {
	color: #f1f1f1;
}
.action-form input::-moz-placeholder {
	color: #f1f1f1;
}
.action-form button {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 2px solid #ffffff;
	border-radius: 30px;
	color: #ffffff;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	padding: 14px 46px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.action-form button:hover {
	background: #fff;
	color: #0099d1;
}
/* footer-top */

.footer-wrapper {
	overflow: hidden;
}
.footer-logo {
	margin-bottom: 18px;
}
.footer-text {
	padding-right: 45px;
}
.footer-text p {
	color: #9d9d9d;
	margin-bottom: 0;
}
.footer-social {
	margin-top: 18px;
	padding-left: 0;
}
.footer-social li {
	display: inline-block;
}
.footer-social li > a {
	border-radius: 30px;
	color: #9a9a9a;
	display: inline-block;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	margin-right: 5px;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 30px;
	background: #edf0f2;
}
.footer-social li > a:hover {
	color: #0099d1;
}
.footer-title,
.footer_widget .widget .widgettitle {
	color: #575757;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 32px;
	margin-top: 0;
}
.footer-menu li,
.footer_widget .widget ul.menu li {
	padding-bottom: 13px;
	list-style: none;
	line-height: 1;
}
.footer_widget .widget.widget_nav_menu ul.menu {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	padding: 0;
}
.footer-menu li:last-child {
	padding-bottom: 0
}
.footer-menu li a,
.footer_widget .widget ul.menu li a {
	color: #696969;
	font-size: 14px;
	font-weight: 300;
	-webkit-transition: .3s;
	transition: .3s;
}
.footer-menu li a:hover,
.footer_widget .widget ul.menu li a:hover {
	padding-left: 5px;
	color: #0099d1;
}
.footer-img {
	margin: 0 -7px;
}
.footer-img > li {
	float: left;
	overflow: hidden;
	padding: 7px;
	width: 33.33%;
}
.footer-img a {
	position: relative;
	display: block;
}
.widget ul.instagram-pics li a {
	position: relative;
	display: block;
}
.footer-img a::before,
.widget ul.instagram-pics li a:before {
	background: #0099d1 none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s;
}
.footer-img a:hover::before,
.widget ul.instagram-pics li a:hover:before {
	opacity: .7;
}
.footer-img img {
	width: 100%;
}
/* footer-bottom */

.footer-bottom-area {
	border-top: 1px solid #eeeeee;
}
.footer-bottom {
	border-top: 1px solid #d7d7d7
}
.copyright p {
	color: #9d9d9d;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 0;
}
.copyright p a {
	color: #696969;
	-webkit-transition: .3s;
	transition: .3s;
}
.copyright p a:hover {
	color: #0099d1;
}
/* service */

.service-wrapper {
	position: relative;
}
.service-img {
	position: relative;
	overflow: hidden
}
.service-img::before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: #0099d1;
	opacity: .8;
	z-index: 9;
}
.service-img img {
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s
}
.service-wrapper:hover .service-img img {
	-webkit-transform: scale(1.2) rotate(7deg);
	transform: scale(1.2) rotate(7deg)
}
.service-content {
	left: 0;
	padding: 0 22px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99;
}
.service-icon-img {
	margin-bottom: 27px;
}
.service-text h4 {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 14px;
}
.service-text p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 19px;
}
.service-text a {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}
/* cleaning-area */

.cleaning-area {
	background-position: 26.6% bottom;
	background-repeat: no-repeat;
	padding-bottom: 110px;
	padding-top: 104px;
}
.cleaning {
	background-position: left bottom;
}
.cleaning-text h2 {
	color: #656565;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 20px;
    margin-top: 0;
}
.cleaning-text span {
	color: #0099d1;
}
.cleaning-text p {
	color: #8f8f8f;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 22px;
}
.cleaning-text ul {
  margin: 0;
  padding: 0;
}
.cleaning-text ul li {
  color: #818181;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: outside none none;
  padding-bottom: 8px;
}
.cleaning-text ul li:last-child {
	padding-bottom: 0;
}
.box-layout .Cleaning-wrapper {
	padding-left: 40px;
	padding-right: 20px;
}
/* booking-area */

.booking-area {
	background-size: cover;
	background-position: center center;
}
.booking-title {
	z-index: 9999;
	position: relative;
}
.booking-title span {
	color: #fff;
	display: inline-block;
	font-family: courgette;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 9px;
}
.booking-title h3 {
	color: #fff;
	font-size: 34px;
	font-weight: 700;
}
.booking-title p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: auto auto 0;
	width: 536px;
}
#booking-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#booking-form input {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 1px solid #fff;
	border-radius: 30px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	height: 43px;
	margin-right: 15px;
	padding-left: 20px;
	width: 24%;
	-webkit-transition: .3s;
	transition: .3s;
    width: 235px;
}
#booking-form input:hover {
	border-color: #0099d1;
}
#booking-form input::-webkit-input-placeholder {
	color: #fff;
}
#booking-form input:-ms-input-placeholder {
	color: #fff;
}
#booking-form input::placeholder {
	color: #fff;
}
#booking-form input::-webkit-placeholder {
	color: #fff;
}
#booking-form input::-moz-placeholder {
	color: #fff;
}
#booking-form input[type="submit"] {
	background: #0099d1 none repeat scroll 0 0;
	border: medium none;
	border-radius: 30px;
	color: #ffffff;
	font-size: 14px;
	line-height: 1;
	padding: 14px 43px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 400;
}
#booking-form input[type="submit"]:hover {
	background: #000;
}
/* testimonial-2-area */

.testimonial-wrapper-2 {
	padding: 0 20px;
}
.col-offset {
	margin: auto;
	width: 70%;
}
.testimonial-2-content {
	-webkit-box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	padding: 53px 80px;
	position: relative;
}
.testimonial-2-content::before {
	background: #fff none repeat scroll 0 0;
	border-radius: 7px 0 0 15px;
	bottom: -18px;
	content: "";
	height: 40px;
	left: 47%;
	position: absolute;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 40px;
	-webkit-box-shadow: -2px 3px 4px rgba(82, 182, 188, 0.1);
	box-shadow: -2px 3px 4px rgba(82, 182, 188, 0.1);
}
.testimonial-2-content > p {
	color: #8f8f8f;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 0;
}
.testimonial-2-information {
	margin-top: 37px;
}
.testimonial-2-img {
	margin-bottom: 7px;
}
.testimonial-2-name h3 {
	color: #5c5c5c;
	font-size: 25px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 2px;
}
.testimonial-2-name span {
	color: #a5a5a5;
	font-size: 16px;
	font-weight: 400;
}
.testimonial-2-active.owl-carousel .owl-item img {
	display: inline-block;
	width: inherit;
}
.testimonial-2-active .owl-nav div,.related-product-slider.owl-carousel .owl-nav > div {
	border-radius: 50%;
	-webkit-box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	box-shadow: 0 0 20px 0 rgba(82, 182, 188, 0.25);
	color: #7d7d7d;
	font-size: 24px;
	height: 36px;
	left: 0;
	line-height: 36px;
	opacity: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 34%;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 36px;
    z-index: 9;
}
.testimonial-2-active .owl-nav div.owl-next,.related-product-slider.owl-carousel .owl-nav > div.owl-nex {
	left: auto;
}
.testimonial-2-active:hover .owl-nav div,.related-product-slider.owl-carousel:hover .owl-nav > div {
	opacity: 1;
}
.testimonial-2-active .owl-nav div:hover,.related-product-slider.owl-carousel .owl-nav > div:hover {
	background: #0099d1;
	color: #fff;
}
.testimonial-2-active:hover .owl-nav div.owl-next {
	left: auto;
}
/* breadcrumb-banner-area */

.breadcrumb-text {
	position: relative;
	z-index: 1;
}
.breadcrumb-text h1 {
	color: #ffffff;
	font-family: courgette;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 2px;
	text-transform: capitalize;
}
.breadcrumb-menu ul li {
	display: inline-block;
	padding: 0 3px;
	text-transform: capitalize;
}
.breadcrumb-menu ul li::after {
	color: #fff;
	content: "/";
	display: inline-block;
	float: right;
	font-size: 20px;
	position: relative;
	right: -5px;
	top: 2px;
}
.breadcrumb-menu ul li:last-child:after {
	display: none
}
.breadcrumb-menu span {
	color: #fff;
	font-size: 18px;
	font-family: courgette;
	font-weight: 400;
}
.breadcrumb-menu ul li a {
	color: #fff;
	font-size: 18px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-family: courgette;
	font-weight: 400;
}
/* single-service-area */
.single-service-text h2 {
  color: #575757;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 15px;
}
.single-service-text p {
  color: #575757;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
.panel-area {
	border: 1px solid #edf0f2;
	padding: 40px 30px 25px 35px;
}
.panel-heading {
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	padding: 0;
}
.single-service-text .panel-title {
  color: #686868;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}
.panel-heading h4 a {
	color: #696969;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 0;
	display: block;
}
.panel-heading h4 a::after {
	color: #0099d1;
	content: "";
	float: left;
	font-family: "Material-Design-Iconic-Font";
	font-size: 20px;
	margin-top: -2px;
	padding: 0 10px 0 0;
}
.panel-heading h4 a.collapsed::after {
	content: "";
}
.panel-default > .panel-heading {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}
.panel {
	background-color: #fff;
	border: medium none;
	border-radius: 4px;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-bottom: 13px;
}
.panel:last-child {
	padding-bottom: 0;
}
.text h4 span {
	border: 1px solid #e6e6e6;
	border-radius: 100%;
	display: inline-block;
	float: right;
	height: 25px;
	line-height: 23px;
	text-align: center;
	width: 25px;
}
.panel-body > p {
	color: #818181;
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 0;
}
.panel-default > .panel-heading + .panel-collapse {
	overflow: hidden;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border: 0 none;
}
.text h4 span i {
	font-size: 16px;
	color: #a4a4a4;
}
.single-service-text h4 {
	color: #686868;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 24px;
	margin-top: 35px;
}
.single-service-info {
	margin-top: 50px;
}
.single-service-info > p {
	margin-bottom: 24px;
}
.service-widget {
	padding: 30px;
}
.single-service-info > p:last-child {
	margin-bottom: 0;
}
.service-link li {
  border-bottom: 2px solid #edf0f2;
  line-height: 1;
  list-style: outside none none;
  padding: 18px 26px;
}
.service-link li:last-child {
	border-bottom: 0;
}
.service-link li a {
	color: #575757;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.service-link li a:hover {
	color: #0099d1;
}
.recent-posts > li {
	margin-bottom: 25px;
	overflow: hidden;
}
.recent-posts > li:last-child {
	margin-bottom: 0;
}
.service-widget-image {
	overflow: hidden;
}
.service-widget-body {
  line-height: 1;
  padding-left: 20px;
}
.service-title {
	color: #686868;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 18px;
	text-transform: uppercase;
}
.service-widget-body > span {
	font-size: 12px;
	font-family: courgette;
	font-weight: 400;
	color: #8f8f8f;
}
.service-widget-body h5 {
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 0;
	margin-top: 4px;
}
.service-widget-body h5 a {
	color: #575757;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.service-widget-body h5 a:hover {
	color: #0099d1;
}
.single-service-widget {
	padding: 30px 4px 12px 25px;
}
.service-tag li {
	display: inline-block;
	margin-bottom: 16px;
	margin-right: 8px;
}
.service-tag li a {
  border: 1px solid #edf0f2;
  border-radius: 4px;
  color: #9a9a9a;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.service-tag li a:hover {
	color: #0099d1;
	border-color: #0099d1;
}
/* gallery-area */

.gallery-img {
	overflow: hidden;
	position: relative;
}
.gallery-img::before {
	background: #52b6bb none repeat scroll 0 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s;
	z-index: 99
}
.gallery-wrapper:hover .gallery-img:before {
	opacity: .9;
}
.gallery-img >a {
	display: block;
}
.gallery-img a img {
	width: 100%;
	-webkit-transition: .3s;
	transition: .3s;
}
.gallery-wrapper:hover .gallery-img a img {
	-webkit-transform: scale(1.2) rotate(7deg);
	transform: scale(1.2) rotate(7deg);
}
.gallery-wrapper .gallery-icon {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
	-webkit-transform: translatey(-50%) scale(0);
	transform: translatey(-50%) scale(0);
	-webkit-transition: .3;
	transition: .3;
	opacity: 0;
	-webkit-transition: .3s;
	transition: .3s;
	z-index: 999;
}
.gallery-wrapper:hover .gallery-icon {
	opacity: 1;
	-webkit-transform: translatey(-50%) scale(1);
	transform: translatey(-50%) scale(1)
}
.gallery-wrapper .gallery-icon a {
	color: #fff;
	font-size: 26px;
	font-weight: 400;
	height: 45px;
	width: 45px;
	width: 45px;
	display: inline-block;
	border: 1px solid #fff;
	text-align: center;
	line-height: 45px;
	border-radius: 50%;
}
.col-md-4.p-l {
  padding: 0 7.5px;
}
/* map */

#map {
	height: 455px;
	width: 100%;
}
/* contact-area */
.contact-left-wrapper {
  background: #0099d1 none repeat scroll 0 0;
  padding: 62px 70px 64px 72px;
  overflow: hidden;
}
.contact-text h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 0;
}
.contact-text p {
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}
.contact-text span {
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-text span:last-child {
	margin-bottom: 0;
}
.kc-multi-icons-wrapper.contact-icon a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #ffffff;
  font-size: 14px;
  margin-right: 20px;
  padding: 0;
}
.kc-multi-icons-wrapper.contact-icon a:first-child {
	margin-left: 0;
}
.kc-multi-icons-wrapper.contact-icon a > i {
  font-size: 14px;
}
.contact-right-wrapper {
  margin-top: 30px;
}
.contact-right-wrapper > h2 {
    margin-top: 0;
    color: #777777;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 26px;
}
.contact-1 {
	padding-right: 57px;
}
#contact-form input {
	border: 1px solid #e9e9e9;
	color: #777;
	font-size: 13px;
	font-weight: 200;
	height: 36px;
	margin-bottom: 20px;
	padding-left: 20px;
	text-transform: capitalize;
	width: 100%;
    border-radius: 0;
    
}
#contact-form input::-moz-placeholder{
    opacity: 1;
    color: #777;
}
#contact-form input::-webkit-input-placeholder{
    opacity: 1;
    color: #777;
}
#contact-form input::-ms-input-placeholder{
    opacity: 1;
    color: #777;
}
#contact-form textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #777;
}

#contact-form input:focus,#contact-form textarea:focus {
	outline: none;    
}
#contact-form textarea {
	border: 1px solid #e9e9e9;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	height: 132px;
	padding: 20px;
	text-transform: capitalize;
	width: 100%;
    border-radius: 0;
}
#contact-form input[type="submit"] {
  background: #0099d1 none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 600;
  height: 42px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 138px;
  margin-top: 25px;
}
#contact-form input[type="submit"]:hover {
	background: #000 none repeat scroll 0 0;
}

/* about-area */

.about-title {
	margin-bottom: 36px;
}
.about-wrapper.mb-30 {
	padding-top: 55px;
}
.about-title h4 {
	color: #777777;
	font-family: courgette;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 4px;
}
.about-title > p {
	color: #8f8f8f;
	font-size: 15px;
	font-weight: 400;
	line-height: 27px;
	margin-bottom: 0;
}
.progress-title {
	color: #646464;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 9px;
	text-transform: capitalize;
}
.about-title h1 {
  color: #646464;
  font-family: courgette;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 15px;
  margin-top: 0;
}
.about-title span {
	color: #0099d1;
}
.progress-bar {
	background-color: #0099d1;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.pull-right {
	color: #0099d1;
}
.progress {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: 8px;
	margin-bottom: 22px;
}
.progress:last-child {
	margin-bottom: 0;
}
/* paginations */

.paginations {
	clear: both;
}
.paginations ul li {
	display: inline-block;
	margin-right: 10px;
}
.paginations ul li a {
	border: 1px solid #bebebe;
	border-radius: 100%;
	color: #8b8b8b;
	display: table-cell;
	font-family: montserrat;
	font-size: 16px;
	font-weight: 400;
	height: 40px;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	width: 40px;
}
.paginations ul li:hover a,
.paginations ul li.active a {
	background: #0099d1;
	color: #fff;
	border-color: #0099d1;
}
/* blog-area */
.blog-thumb a {
	position: relative;
	display: block;
}
.blog-icon {
	background: #000000 none repeat scroll 0 0;
	border-radius: 100%;
	color: #ffffff;
	font-size: 20px;
	height: 40px;
	left: 40px;
	line-height: 40px;
	position: absolute;
	text-align: center;
	top: 40px;
	width: 40px;
}
.blog-quote a blockquote {
	border: 0 none;
	margin: 0;
	padding: 120px 78px 120px 160px;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.blog-quote a blockquote p {
	color: #262626;
	font-size: 24px;
	line-height: 40px;
	font-style: italic;
}
.blog-quote {
	position: relative;
	background: #f4feff none repeat scroll 0 0;
}
.blog-quote::before {
	content: "";
	display: block;
	font-family: "FontAwesome";
	font-size: 29px;
	left: 44px;
	margin-bottom: 15px;
	margin-left: 0;
	margin-top: 0;
	position: absolute;
	top: 60px;
	color: #a8a8a8;
}
.blog-quote a blockquote footer {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
}
.blog-content p {
  color: #3e3e3e;
  line-height: 23px;
  margin-bottom: 0;
}
.post-title > a {
  color: #575757;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.post-title > a:hover {
	color: #0099d1;
}
.blog-meta a {
	color: #777;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.blog-meta a:hover {
	color: #0099d1;
}
.read-more {
	margin-top: 30px;
}
.read-more a:hover {
	background: #0099d1;
	border-color: #0099d1;
	color: #ffffff;
}
.post-title span {
	background: #000000 none repeat scroll 0 0;
	border-radius: 100%;
	color: #ffffff;
	display: inline-block;
	font-size: 20px;
	height: 40px;
	left: 40px;
	line-height: 40px;
	margin-right: 17px;
	text-align: center;
	width: 40px;
}
.blog-widget-title {
	padding: 30px;
	background: #fafafa;
}
.blog-widget-title > p {
	color: #646464;
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 21px;
}
.blog-widget-title h4 {
	color: #2f2f2f;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
}
.blog-widget-icon {
	margin-top: 15px;
}
.blog-widget-title > span {
	font-weight: 400;
	font-size: 12px;
	color: #2f2f2f;
}
.blog-widget-icon > a {
	color: #a0a0a0;
	font-size: 16px;
	margin-right: 30px;
}
.blog-widget-icon > a:hover {
	color: #0099d1;
}
.blog-widget-icon > a:last-child {
	margin-right: 0;
}
.widget {
	overflow: hidden;
}
.search-form {
	overflow: hidden;
	position: relative;
}
.search-form input {
	border: 1px solid #e4e4e4;
	color: #b5b5b5;
	float: left;
	height: 50px;
	padding-left: 20px;
	width: 100%;
}
.search-form button {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: medium none;
	color: #b5b5b5;
	font-size: 16px;
	height: 100%;
	line-height: 50px;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 55px;
	-webkit-transition: .3s;
	transition: .3s;
}
.search-form button:hover {
	color: #0099d1;
}
.widget-title {
	color: #232323;
	font-size: 18px;
	font-weight: 500;
	position: relative;
	text-transform: capitalize;
}
.widget-title::after {
	border-bottom: 2px solid #6d6d6d;
	content: "";
	display: block;
	margin: 26px auto 40px 0;
	position: relative;
	width: 52px;
	z-index: 1;
}
.widget-title::before {
	border-bottom: 2px solid #f1f1f1;
	bottom: 0;
	content: "";
	display: block;
	position: absolute;
	width: 100%;
}
.recent-posts > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  overflow: hidden;
}
.recent-posts > li:last-child {
	margin-bottom: 0;
}
.widget-posts-image {
	float: left;
	overflow: hidden;
}
.widget-posts-body {
	margin-left: 138px;
}
.widget-posts-title {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin: 0;
}
.widget-posts-meta {
	color: #232323;
	font-size: 12px;
	font-weight: 400;
}
.widget-posts-title > a {
	color: #646464;
	-webkit-transition: .3s;
	transition: .3s;
}
.widget-posts-title > a:hover {
	color: #0099d1;
}
.blog-categories > li {
	border-bottom: 1px solid #e5e5e5;
	color: #4c4c4c;
	margin: 0;
	overflow: hidden;
	padding: 15px 0;
	position: relative;
}
.blog-categories > li:last-child {
	border-bottom: 0 none;
	padding-bottom: 0;
}
.blog-categories > li:first-child {
	padding-top: 0;
}
.blog-categories a {
	color: #646464;
	display: block;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	text-transform: capitalize;
	-webkit-transition: .3s;
	transition: .3s;
}
.blog-categories a:hover {
	color: #0099d1;
}

.Recent-Comment > li {
	margin-bottom: 30px;
}
.Recent-Comment > li:last-child {
	margin-bottom: 0
}
.recent-comment-icon {
	float: left;
	margin-right: 8px;
	margin-top: 4px;
}
.recent-comment-icon i {
	color: #969696;
	font-size: 20px;
}
.recent-comment-text {
	overflow: hidden;
}
.recent-comment-text h4 {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 2px;
	-webkit-transition: .3s;
	transition: .3s;
}
.recent-comment-text h4 a {
	color: #262626;
	-webkit-transition: .3s;
	transition: .3s;
}
.recent-comment-text h4 a:hover {
	color: #0099d1;
}
.recent-meta span {
	color: #b7b7b7;
	font-size: 12px;
	font-weight: 500;
	margin-right: 17px;
	position: relative;
	text-transform: uppercase;
}
.recent-meta span::before {
	background: #cccccc none repeat scroll 0 0;
	content: "";
	height: 5px;
	left: -13px;
	position: absolute;
	top: 8px;
	width: 5px;
}
.recent-meta span:first-child::before {
	display: none;
}
.img-widgets {
	position: relative;
}
.img-title {
	margin-left: 126px;
	overflow: hidden;
	position: absolute;
	top: 120px;
}
.img-title > h4 {
	color: #262626;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0;
}
.img-title > a {
	color: #000000;
	display: inline-block;
	font-size: 12px;
	font-weight: 300;
	margin-left: 101px;
	margin-top: 88px;
}
.news-form {
	position: relative;
}
.news-form input {
	border: 1px solid #e4e4e4;
	color: #b5b5b5;
	float: left;
	height: 50px;
	padding-left: 20px;
	width: 100%;
}
.news-form button {
	background: #2c2c2c none repeat scroll 0 0;
	border: medium none;
	color: #ffffff;
	display: inline-block;
	font-size: 16px;
	height: 40px;
	margin-right: 5px;
	margin-top: 5px;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 40px;
	line-height: 40px;
	text-align: center;
}
.news-form button:hover {
	background: #0099d1;
	;
}
.Instagram-img li {
	float: left;
	overflow: hidden;
	padding: 3px;
	width: 33.33%;
}
.Instagram-img img {
	width: 100%;
}
.tweets-post > li {
	margin-bottom: 22px;
}
.tweets-post > li:last-child {
	margin-bottom: 0;
}
.tweets-icon-tittle h5 {
  margin-bottom: 10px;
  margin-top: 0;
}
.tweets-icon-tittle h5 i {
	color: #262626;
	font-size: 20px;
	margin-right: 6px;
}
.tweets-icon-tittle h5 a {
	color: #262626;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: .3s;
	transition: .3s;
}
.sidebar-widget .tweets-icon-tittle h5 a:hover {
	color: #0099d1;
}
.tweets-icon-tittle > p {
	color: #262626;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 7px;
}
.Social-icon > a {
	background: #f6f6f6 none repeat scroll 0 0;
	color: #262626;
	display: inline-block;
	font-size: 20px;
	height: 60px;
	line-height: 64px;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 88px;
}
.Social-icon > a:hover {
	background: #0099d1;
	color: #fff;
}
.widget_tag_cloud a {
	display: inline-block;
	margin-bottom: 17px;
	margin-right: 17px;
}
.widget_tag_cloud a {
	border: 1px solid #cbcbcb;
	color: #232323;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	padding: 14px 28px;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	font-weight: 400;
	margin-bottom: 17px;
	margin-right: 17px;
    border-radius: 0;
}
.widget_tag_cloud a:hover {
	background: #0099d1;
	border-color: #0099d1;
	color: #fff;
}
.blog-menu li:last-child {
	margin-bottom: 0;
}
.blog-banner {
	margin-bottom: 40px;
	margin-top: 55px;
}
.user-info {
	display: block;
	margin: 47px 0 53px;
	overflow: hidden;
}
.user-text {
	color: #666666;
	display: inline-block;
	float: left;
	letter-spacing: 2px;
}
.user-name {
	padding-right: 47px;
}
.user-share > span {
  color: #666666;
  display: inline-block;
  float: left;
  margin-right: 14px;
  margin-top: 4px;
}
.author-img {
	display: inline-block;
	float: left;
}
.author-info > h4 a {
	color: #666666;
	-webkit-transition: .3s;
	transition: .3s;
}
.author-info > h4 a:hover {
	color: #0099d1;
}
.author-info > p {
	color: #666666;
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 0;
}
.related-post {
	display: block;
	overflow: hidden;
}
.related-post-title > h3 {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 5px;
}
.related-post-title > h3 a {
	color: #202020;
	-webkit-transition: .3s;
	transition: .3s;
}
.related-post-title > h3 a:hover {
	color: #0099d1;
}
.related-post-title > span {
	color: #636363;
	font-size: 13px;
}
.single-comment {
	position: relative;
}
.comment-img {
	display: inline-block;
	float: left;
}
.comment-text > h3 {
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 11px;
	text-transform: uppercase;
}
.comment-text > p {
  color: #7a7a7a;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding-right: 25px;
}
div.comment--date--time {
  color: #a2a2a2;
  font-size: 14px;
  line-height: 20px;
}
.single-comment.comment-border:last-child {
	margin-bottom: 0;
}
.comment-text > a {
	background-color: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 50px;
	bottom: -16px;
	color: #4c4c4c;
	display: inline-block;
	font-size: 12px;
	letter-spacing: 1px;
	padding: 7px 20px 6px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
	-webkit-transition: .3s;
	transition: .3s;
}
.comment-text > a:hover {
	background-color: #0099d1;
	color: #ffffff;
	border-color: #0099d1;
}
.replay-comment {
	margin-left: 150px;
}
.leave-comment > h3 {
	color: #222222;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 11px;
	text-transform: uppercase;
}
.leave-comment > h3 {
	color: #222222;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 11px;
	text-transform: uppercase;
}
.leave-comment > p {
	color: #000000;
	font-size: 14px;
	letter-spacing: 1px;
	margin: 0;
}
#scrollUp {
	background: #444444 none repeat scroll 0 0;
	bottom: 30px;
	color: #ffffff;
	height: 40px;
	right: 30px;
	text-align: center;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	width: 40px;
}
#scrollUp i {
	font-size: 20px;
	line-height: 40px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#scrollUp:hover {
	background: #0099d1;
	color: #ffffff;
}
/*after theme setup css here*/

.default-menu.default-style-one {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.main-menu ul li > .sub-menu li:last-child a {
	border-bottom: none;
}
.widget ul.instagram-pics {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0;
}
.widget ul.instagram-pics li {
	line-height: 1;
	list-style: outside none none;
	margin-bottom: 15px;
	width: 30%;
}
.footer-brief > p {
	color: #9d9d9d;
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}
ul.recent-posts,ul.service-tag,ul.service-link{
  padding: 0;
}
.service-widget-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
}
.breadcrumbs_wrap ul li a:hover {
  color: #0099d1;
}
.main-menu-area.header-style-2 {
  border-top: 1px solid #eeeeee;
}
.header-style-2 .mean-container a.meanmenu-reveal {
  top: -59.5px;
}
.news-content span.date,.news-content span.comment {
  font-family: courgette;
}
.latest-news-wrapper .news-content span.comment {
  float: right;
}

.latest-news-wrapper .news-content span.comment > i {
  color: #8f8f8f
}
/*Single services */
.features_box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.features_box_text > h3 {
  font-weight: bold;
  margin: 0 0 10px;
}
.features_icon {
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    height: 60px;
    line-height: 56px;
    text-align: center;
    width: 60px;
    -webkit-transition:  all 0.3s ease 0s;;
    transition: all 0.3s ease 0s;
}
.features_box-img {
  padding: 0 28px 0 8px;
}
.features_icon:hover {
  -webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
}
.service_content > h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin: 33px 0 17px;
    padding: 0 53px;
    text-transform: capitalize;
}
.service_content.text-center > p {
    color: #818181;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 24px;
}
.single_service .read_more > a {
    border: 2px solid #0099d1;
    border-radius: 25px;
    color: #0099d1;
    display: inline-block;
    font-weight: 500;
    height: 42px;
    line-height: 40px;
    padding: 0 40px;
    text-transform: capitalize;
}
.single_service .read_more > a:hover {
    background: #0099d1 none repeat scroll 0 0;
    color: #ffffff;
}
#jharon_service_categories-2 > ul {
  margin: 0;
  padding: 0;
}
.col-lg-8.sidebar_left_content,.col-md-4.sidebar__left,.col-md-8.services_left_content   {
    padding-right: 25px;
}
.col-md-4.sidebar__right,.col-md-8.sidebar_right_content,.col-md-4.services_sidebar {
    padding-left: 25px;
}
/*=======woocommerce css here===============*/
.single_product_desc_inner > h2 a {
  color: #575757;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
}
.single_product_desc_inner > h2 a:hover {
  color: #0099d1;
}
.single_product_desc_inner > h2 {
  margin: 0;
}
.single_product_desc_inner {
  text-align: center;
}
.jharon-add-to-cart a.button, .jharon-add-to-cart .added_to_cart.wc-forward {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  height: 38px;
  line-height: 37px;
  margin-top: 10px;
  padding: 0 14px;
  opacity: 0;  
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.jharon-add-to-cart a.button.add_to_cart_button:hover,.jharon-add-to-cart .added_to_cart.wc-forward:hover,.jharon-add-to-cart a.button:hover{
    background: #000;
    color: #fff;
}
.jharon-add-to-cart a.button.add_to_cart_button.added {
  display: none;
}
.woocommerce #respond input#submit.loading::after, .woocommerce a.button.loading::after, .woocommerce button.button.loading::after, .woocommerce input.button.loading::after {
    right: 10px;
    top: 0;
}
.product_post .single_product_desc .price {
    color: #0099d1;
    font-size: 16px;
    font-weight: 500;
}
.product_post .single_product_desc .product__price {
    margin-top: 2px;
}
.product_post .proudct_thunbail span.onsale {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  height: 30px;
  left: 0;
  line-height: 30px;
  min-height: inherit;
  min-width: inherit;
  padding: 0;
  right: 5px;
  top: 0;
  width: 50px;
}
.proudct_thunbail {
  position: relative;
}
.jharon-add-to-cart {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.proudct_thunbail > a::before {
  background: #000000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}
.product_post:hover .proudct_thunbail > a::before{
    opacity: 0.3;
}
.product_post:hover .jharon-add-to-cart a,.product_post:hover .jharon-add-to-cart .added_to_cart.wc-forward{
    opacity: 1;
}
.shop_page_header.mb-40 {
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
  padding-bottom: 40px;
}
.product_sort_order > form.woocommerce-ordering,.product_result_show_count p.woocommerce-result-count  {
  margin-bottom: 0;
}
.product_post .single_product_desc .price del {
  color: #bababa;
  opacity: 0.8;
}
.product_sort_order .woocommerce-ordering select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 1px solid #dddddd;
  color: #777777;
  height: 40px;
  padding: 0 15px;
  position: relative;
  cursor: pointer;
  width: 250px;
}
.product_sort_order .woocommerce-ordering select option {
    padding: 10px 5px;
}
.product_sort_order form::before {
  background: #ffffff none repeat scroll 0 0;
  border-left: 1px solid #dddddd;
  color: #777777;
  content: "";
  font-family: material-design-iconic-font;
  font-size: 25px;
  height: 95%;
  pointer-events: none;
  position: absolute;
  right: 1px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  z-index: 1;
}
.product_sort_order form {
    position: relative;
}

.sidebar-category .widget.woocommerce ul.cart_list li img {
    float: left;
    margin: 0 20px 0 0;
    width: 90px;
}
.sidebar-category .widget.woocommerce ul.cart_list li {
    margin: 0 0 15px;
    padding: 0;
}
.sidebar-category .widget.woocommerce ul.cart_list li a.remove.remove_from_cart_button {
    background: #dddddd none repeat scroll 0 0;
    color: #555555 !important;
    font-size: 25px;
    font-weight: 500;
}

.sidebar-category .widget.woocommerce ul.cart_list li a.remove.remove_from_cart_button:hover {
    background: #0099d1 none repeat scroll 0 0;
    color: #ffffff !important;
}
.widget.woocommerce ul.cart_list li a {
  color: #3e3e3e;
}
.widget.woocommerce ul.cart_list li a:hover{
  color: #0099d1;
}
.sidebar-category .widget.woocommerce ul.cart_list li span.quantity span.amount {
  color: #0099d1;
}

.widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a {
    background: #0099d1 none repeat scroll 0 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.widget.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a:hover {
    background: #333333 none repeat scroll 0 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #0099d1;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #0099d1;
}
.widget.widget_price_filter .price_slider_amount .button {
  background: #000000 none repeat scroll 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: .3s;
  transition: .3s;
}
.widget.widget_price_filter .price_slider_amount .button:hover{
    background: #0099d1;
}

.sidebar-category .widget.woocommerce .widget_shopping_cart_content p {
    margin: 0;
}
.sidebar-category .widget.woocommerce .widget_shopping_cart_content p.woocommerce-mini-cart__total.total {
    margin-bottom: 15px;
}
.sidebar-category .widget {
  margin-bottom: 50px;
}
.woocommerce ul.product_list_widget li img {
  width: 75px;
}
.woocommerce .star-rating {
  color: #fde101;
  float: right;
  font-size: 13px;
  height: 19px;
}
.woocommerce ul.product_list_widget li a {
  color: #3e3e3e;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.woocommerce ul.product_list_widget li a:hover,.widget.widget_product_categories ul li a:hover{
    color: #0099d1;
}
.woocommerce ul.product_list_widget li {
    margin-bottom: 20px;
}
.woocommerce ul.product_list_widget li:last-child {
    margin-bottom: 0;
}

.widget.widget_product_categories ul li{
  border-bottom: 1px solid #efefef;
  list-style: outside none none;
  margin-bottom: 10px;
  padding-bottom: 10px;
  overflow: hidden;
  list-style: none;
  text-align: right;
}

.widget.widget_product_categories ul li a {
  font-size: 14px;
  padding-left: 34px;
  position: relative;
  color: #3e3e3e;
display: block;
float: left;
text-align: left;  
}


.widget.widget_product_categories ul li a:before {
    border: 2px solid #929292;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 11px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px; 
}

.widget.widget_product_categories ul li:last-child {
    border: medium none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.widget.widget_product_categories ul li ul li:first-child {
    border-top: 1px solid #dddddd;
    margin-top: 12px;
    padding-top: 12px;
}

.widget.widget_product_categories ul {
    padding-left: 0;
}
.widget.widget_product_categories ul li ul {
    padding-left: 1.5em;
}
/*cart page css here*/
.woocommerce table.shop_table {
  border-radius: 0;
}
.cart-table table thead tr th {
  background: #f6f6f6 none repeat scroll 0 0;
  border-right: 1px solid #dddddd;
  border-top: medium none;
  color: #3e3e3e;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 10px !important;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.cart-table table tbody tr td {
  text-align: center;
}
.cart-table table tbody tr td.product-thumbnail {
  width: 130px;
}
.cart-table table tbody .product-thumbnail a img {
  width: 100%;
}
.cart-table tbody tr td.product-name > a {
  color: #3e3e3e;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: capitalize;
  text-decoration: none;
}
.cart-table tbody tr td.product-name > a:hover {
  color: #0099d1;
}
.woocommerce table.shop_table td.product-remove a.remove {
    background: #f1f1f1 none repeat scroll 0 0;
    color: #555555 !important;
    font-size: 20px;
    height: 25px;
    line-height: 26px;
    margin: auto;
    text-decoration: none;
    width: 25px;
}
.woocommerce table.shop_table td.product-remove a.remove:hover {
    background: #0099d1;
    color: #fff !important;
}
.coupon2.cart-buttons > a {
    background: #0099d1 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    padding: 0 26px;
    text-decoration: none !important;
}
.coupon2.cart-buttons {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}
.shop_update_cart input.button {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 5px;
  color: #ffffff !important;
  float: right;
  font-size: 18px;
  font-weight: 400 !important;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-transform: capitalize !important;
  width: inherit !important;
}
.coupon2.cart-buttons > a:hover,.shop_update_cart input.button:hover,.customer-login .coupon input.button:hover,.cart_totals .wc-proceed-to-checkout .checkout-button.button:hover{
    background: #000;
}
.shop_table .shop_update_cart td {
  padding: 28px 10px;
}
.customer-login .coupon > h4, .customer-login.payment-details > h4, .customer-login .cart_totals > h2 {
  color: #3e3e3e;
  font-weight: 700;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 10px;
    
}
.customer-login .coupon input.button {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 0;
  color: #ffffff;
  font-weight: 500;
  height: 40px;
  margin-top: 0;
  text-transform: uppercase;
  width: inherit;
  line-height: 1;
}
.customer-login .coupon input[type="text"] {
  border-radius: 0;
  color: #555555;
  height: 40px;
  padding: 0 15px;
  width: inherit;
}
.customer-login .coupon input {
  line-height: 1;
}
.customer-login .cart_totals > h2, .customer-login.payment-details > h4 {
  text-align: right;
}
.customer-login table.shop_table {
  width: 500px;
}
.cart_totals {
  float: right;
}
.customer-login .cart_totals > h2 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 30px;
  text-transform: uppercase;
}
.cart_totals table tbody tr > td {
  text-align: right;
  width: 50%;
}
.cart_totals .wc-proceed-to-checkout .checkout-button.button {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-transform: uppercase;
  width: inherit;
  float: right;
}
.woocommerce-message {
  border-top-color: #0099d1;
}
.woocommerce-message::before {
  color: #0099d1;
}
/*Checkout page css here*/
.woocommerce-checkout .woocommerce-info {
  border-top-color: #0099d1;
}
.woocommerce-info::before {
  color: #0099d1;
}
.woocommerce-checkout .entry-content .woocommerce a {
  text-decoration: none;
}
.woocommerce-form-login .woocommerce-form__input.woocommerce-form__input-checkbox {
  height: inherit;
  width: inherit;
}
.checkout.woocommerce-checkout #customer_details .woocommerce-account-fields label input {
  height: 32px;
  position: inherit;
  width: inherit;
}
.checkout-form .woocommerce-checkout-payment ul.payment_methods li input {
  height: inherit;
  width: inherit;
}
.checkout-form .woocommerce-checkout-payment ul.payment_methods li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
.woocommerce-checkout .woocommerce input {
  border-radius: 0;
  height: 45px;
  padding: 0 15px;
}

.woocommerce input.button , 
.woocommerce button.button,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt,
.woocommerce-message .button.wc-forward{
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 0;
  color: #ffffff;
  font-weight: 600;
  height: 45px;
  line-height: 45px;
  margin-top: 0;
  padding: 0 24px;
  text-transform: uppercase;
  width: inherit;
  -webkit-transition: .3s;
  transition: .3s;
}
.checkout-form .checkbox-form label.checkbox input {
    height: auto;
    width: auto;
    position: absolute;
    left: 20px;
    top: 4px;
}
.checkout-form .checkbox-form label.checkbox span {
    margin-left: 20px;
}
.woocommerce input.button:hover, .woocommerce button.button:hover,.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce-message .button.wc-forward:hover{
    background: #000;
    color: #fff;
}
.woocommerce-form-login p.form-row label.woocommerce-form__label {
  margin-left: 20px;
}
.woocommerce form .form-row label {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}
.woocommerce form .form-row {
  margin: 0;
  padding: 3px;
}
.checkout-form .woocommerce-checkout-payment ul.payment_methods li h4 > label {
  color: #3e3e3e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.checkout-form .woocommerce-checkout-payment ul.payment_methods li h4 {
  margin: 0;
}
.woocommerce-checkout-payment .form-row.place-order button {
  float: left !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  border-radius: 0;
}
.checkout_form.checkout-login-wrapper .woocommerce-form.login input, .woocommerce #customer_login input, .woocommerce-account .entry-content .woocommerce input {
  border-radius: 0;
  padding: 0 15px;
}
.woocommerce .woocommerce-LostPassword.lost_password {
  float: right;
  margin: -58px 0 0;
}
.woocommerce .woocommerce-LostPassword.lost_password a{
    text-decoration: none;
}
#customer_login .woocommerce-form-login p.form-row label.woocommerce-form__label {
  font-size: 14px;
  margin-left: 5px;
}
.u-columns div h2 {
  color: #3e3e3e;
  font-size: 22px;
  margin: 0;
}
/*----------- My account page css here------------*/
.woocommerce .woocommerce-MyAccount-navigation ul li {
  border: 1px solid #e5e5e5;
  margin-bottom: 5px;
  list-style: none;
  -webkit-transition: .5s;
  transition: .5s;
}
.woocommerce .woocommerce-MyAccount-navigation ul li a{
    text-decoration: none;
    display: block;
    padding: 5px 8px;
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active,.woocommerce .woocommerce-MyAccount-navigation ul li:hover {
  border-color: #0099d1 ;
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #0099d1 ;
}
.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid #e5e5e5;
  padding: 30px 15px 30px 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button.button {
  background: #0099d1 none repeat scroll 0 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button.button:hover{
    background: #000;
}
.woocommerce-info {
  border-top-color: #0099d1;
}
.woocommerce-MyAccount-content .woocommerce-Address-title.title > h3 {
  color: #3e3e3e;
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: 0;
}
.woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info {
  margin: 0;
}
.woocommerce span.onsale {
  background-color: inherit;
   color: #3e3e3e;
  font-weight: 700;
  left: 8px;
  text-transform: uppercase;
  top: 0;
}
/*product details css here*/
.related-product-slider.owl-carousel .col-md-4 {
  width: 100%;
}
.related-product-slider.owl-carousel .owl-nav > div {
    left: -30px;
}
.related-product-slider.owl-carousel .owl-nav > div.owl-next {
    left: auto;
    right: -30px;
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  float: none;
  width: 100%;
}
.single-product.woocommerce .woocommerce-product-gallery span.onsale {
  left: 30px;
}
.product-details h2.title.entry-title {
  color: #575757;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 10px;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 0;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #0099d1;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.product-details.section table.variations td.label {
  color: #575757;
  font-size: 100%;
  width: inherit;
}

.product-details.section table.variations td.label,.product-details.section table.variations td.value {
  float: left;
}

.product-details.section button.single_add_to_cart_button.button.alt {
    margin-top: 0;
}
.single_variation_wrap {
    overflow: hidden;
    padding-top: 20px;
}
.product-details form .quantity input.input-text {
    border-radius: 0;
}
.woocommerce-variation.single_variation {
    margin-bottom: 10px;
}
.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt[disabled]:disabled, .woocommerce #respond input#submit.alt[disabled]:disabled:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt[disabled]:disabled, .woocommerce a.button.alt[disabled]:disabled:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt[disabled]:disabled, .woocommerce button.button.alt[disabled]:disabled:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt[disabled]:disabled, .woocommerce input.button.alt[disabled]:disabled:hover {
  background-color: #0099d1;
}
a.button-border span, a.button-border-white span, .text-blue {
  color: #0099d1;
}
.product-details.section table.variations .value > select {
  color: #0099d1;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  margin: 0 15px 15px 0;
}
.flex-control-nav.flex-control-thumbs {
  margin-top: 15px !important;
}
.woocommerce-message .button.wc-forward {
  font-size: 13px;
  height: 40px;
  line-height: 41px;
  margin: 0;
  padding: 0 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  overflow: inherit;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: #f1f1f1;
  border: 1px solid #eeeeee;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: 1px solid #eeeeee;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: medium none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border-width: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.single-product.woocommerce .related-product-slider span.onsale {
  left: 0;
}
.woocommerce .product .col-md-5 span.onsale {
  left: 28px;
}
#tab-reviews #reviews > div form#commentform {
    width: 50%;
}
#tab-reviews #reviews > div form#commentform p.form-submit input.submit {
    background: #0099d1 none repeat scroll 0 0;
    border-radius: 0;
    color: #ffffff;
    font-weight: 600;
    padding: 0 25px;
    text-transform: uppercase;
    width: inherit;
}
#tab-reviews #reviews > div form#commentform p.form-submit input.submit:hover {
    background: #000000 none repeat scroll 0 0;
}
#tab-reviews #reviews > div form#commentform p input, #tab-reviews #reviews > div form#commentform p textarea {
    padding: 15px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #f1f1f1;
}
.woocommerce table.shop_table {
   border-right: none;
}
.cart-table table tbody tr td.product-thumbnail a {
  display: block;
  min-width: 100px;
}
.woocommerce table.shop_table tr.shop_update_cart td.actions {
  padding: 20px 15px;
}
