/*
Theme Name: HomeMates
Theme URI: http://www.homemates.co.uk/
Author: Plamena Kokalova
Author URI: http://www.homemates.co.uk/
Description: HomeMates Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: homemates
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

homemates is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	overflow-x: hidden;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*.faq > ul {
	position: relative;
	margin-left: 0;
}
.faq > ul > li {
	list-style: none;
	margin-bottom: 10px;
}
.faq > ul > li:before {
	content: '✪';
	position: absolute;
	left: 12px;
	padding: 0px 5px;
	font-size: 23px;
	color: #00a0e3;
	border-bottom: 1px solid #b0cb1f;
}
.faq ul li .faq-question {
	font-weight: bold;
	padding: 5px;
	border-bottom: 1px solid #b0cb1f;
	display: inline-block;
}
.faq ul li .faq-answear {
	padding: 0 5px;
}*/

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: none;
	border-radius: 3px;
	background: var(--red);
	font-weight: 600;
	color: rgb(255, 255, 255);
	font-size: 12px;
	font-size: 15px;
	line-height: 1;
	padding: 10px;
	padding: 15px 20px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #aecc37;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ced4da;
    border-radius: 0.25rem;
	padding: 8px 15px;
	width: 100%;
	margin-bottom: 10px;
	background: #fff;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline-color: #a6ce39;
}

textarea {
	width: 100%;
	height: 170px;
}

input[type="text"] {
	width: 49%;
}

input[type="tel"] {
	width: 49%;
	float: right;
}

input[type="submit"] {
	display: block;
	margin: auto;
}

::-webkit-input-placeholder { 
  color: #acb8cb;
}

:-moz-placeholder { 
  color: #acb8cb;
  opacity: 1;
}

::-moz-placeholder { 
  color: #acb8cb;
  opacity: 1;
}

:-ms-input-placeholder { 
  color: #acb8cb;
}

.chk {
    float: left;
    background: rgba(204, 204, 199, 0.8);
}

div.wpcf7 .ajax-loader {
    float: left;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #00a0e3;
}

a:visited {
	color: #00a0e3;
}

a:hover,
a:focus,
a:active {
	color: var(--blue);
	text-decoration: none;
}

a:focus {
	/*outline: thin dotted;*/
}

a:hover,
a:active {
	outline: 0;
}

:focus {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
/*	display: none;*/
	list-style: none;
	margin: 0;
	padding-left: 0;
	text-align: right;
}

.main-navigation li {
	display: inline-block;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	font-size: 18px;
	padding: 0 8px;
	position: relative;
	border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

/*.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}*/

/*.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}*/

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 16px;
}

.menu-toggle-lines {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 1rem;
    height: 0.75rem;
    cursor: pointer;
    vertical-align: inherit;
    margin-left: 10px;
}

.menu-toggle-lines::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 0.125rem;
    background: #FFFFFF;
    box-shadow: 0 0.3125rem 0 #FFFFFF, 0 0.625rem 0 #FFFFFF;
    content: '';
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

img.alignright {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.flex-box {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.fullwidth-content {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    clear: both;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

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

/*.page-id-125 .site-header, .parent-pageid-125 .site-header {
	background: url(images/carpet-page.jpg) no-repeat bottom center / cover;
}

.page-id-123 .site-header, .parent-pageid-123 .site-header {
    background: url(images/eot-page.jpg) no-repeat center / cover;
}

.page-id-127 .site-header {
    background: url(images/deepcleaning-page.jpg) no-repeat center / cover;
}

.page-id-127 .cleaners {
	background-position: center;
}

.page-id-129 .site-header, .parent-pageid-129 .site-header {
    background: url(images/homecleaning-page.jpg) no-repeat top center / cover;
}

.page-id-21 .site-header, .parent-pageid-21 .site-header, .parent-pageid-25 .site-header, .parent-pageid-27 .site-header {
    background: url(images/gardening-page.jpg) no-repeat center / cover;
}

.page-id-33 .site-header, .parent-pageid-33 .site-header, .parent-pageid-35 .site-header, .parent-pageid-43 .site-header {
    background: url(images/relocation-page.jpg) no-repeat bottom center / cover;
}

.page-id-100 .site-header, .parent-pageid-100 .site-header, .parent-pageid-32 .site-header, .parent-pageid-2102 .site-header,
.parent-pageid-1471 .site-header, .parent-pageid-23 .site-header, .parent-pageid-73 .site-header, .parent-pageid-95 .site-header,
.page-id-1313 .site-header, .parent-pageid-1313 .site-header, .page-id-1306 .site-header, .parent-pageid-1306 .site-header {
    background: url(images/handyman-page.jpg) no-repeat center / cover;
}*/

.logo img {
	max-width: 95px;
	height: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.menu-flex {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    text-align: right;
}

.text-header {
	font-size: 30px;
	text-align: center;
}

.call-now {
	display: inline-block;
	font-size: 36px;
	margin: 10px auto;
}

.btn-book {
	text-align: right;
}

.btn-book a {
	display: inline-block;
	font-size: 18px;
	min-width: 40%;
	background: #00a0e3;
	color: #fff;
	text-align: center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 10px;
	margin-bottom: 10px;

	overflow: hidden;
	position: relative;
  	transition-property: all;
  	transition-duration: .6s;
  	transition-timing-function: ease;
}

.btn-book a span {
  z-index: 20;
}
.btn-book a:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  /*z-index: -10;*/
}

.btn-book a:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-see {
	text-align: left;
}

.btn-see a {
	display: inline-block;
	font-size: 18px;
	min-width: 40%;
	color: #00a0e3;
	background: #fff;
	text-align: center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 10px;
	margin-bottom: 10px;
	transition: all 1s ease;
}

.btn-see a:hover {
	background: #00a0e3;
	color: #fff;
}

.list-header ul {
	margin: 10px 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.list-header li {
    display: inline-block;
    background-image: url(images/bullet.png);
    background-repeat: no-repeat;
    line-height: 34px;
    padding-left: 34px;
    margin-right: 10px;
}

/*--------------------------------------------------------------
## Steps
--------------------------------------------------------------*/
.number {
	background: #00a0e4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    float: left;
    position: relative;
}

.number:before {
	content: "";
	position: absolute;
	border: 2px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	top: 3px;
	left: 0;
	right: 0;
	margin: auto;
}

.heading, .after-box span.heading, .after-box h2.heading {
    color: var(--deepBlue);
    font-size: 24px;
    display: block;
    text-align: left;
    margin: 20px 0;
    font-weight: bold;
}

a.heading {
	color: #b0cb1f;
}

.heading-inline {
    color: var(--deepBlue);
    font-size: 24px;
    display: inline-block;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.heading-list {
	color: var(--darkBlue);
    font-size: 24px;
    display: block;
    text-align: left;
    margin: 20px 0;
    font-weight: bold;
    background-repeat: no-repeat;
    line-height: 34px;
    padding-left: 34px;
}

h2 {
    color: #00a0e3;
    font-size: 24px;
    display: block;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.h-list {
/*    display: table;*/
	column-count: 3;
    margin: 0 auto 1.5em auto;
    padding: 10px;
    overflow: auto;
}

.h-list li {
/*	float: left;*/
    margin: 5px 15px;
}

.entry-title {
    color: var(--deepBlue);
    display: block;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.step-title {
    text-align: center;
    display: block;
    background: #00a0e3;
    border-bottom: 2px solid #b0cb1f;
    color: #fff;
    margin: 9px 0 10px 30px;
}

.step-text1, .step-text2, .step-text3, .step-text4 {
	background-repeat: no-repeat;
	background-position: left 4px;
	padding-left: 52px;
	min-height: 45px;
	color: #657d8a;
}

.step-text1 {
	background-image: url(images/step-icon1.png);
}

.step-text2 {
	background-image: url(images/step-icon2.png);
}

.step-text3 {
	background-image: url(images/step-icon3.png);
}

.step-text4 {
	background-image: url(images/step-icon4.png);
}

/*--------------------------------------------------------------
## Services
--------------------------------------------------------------*/

.services {
	text-align: center;
	background: url(images/services-background.jpg) no-repeat center right, #dcedf5;
	padding-bottom: 40px;
	width: 100%;
}

.services .col-md-3 {
	padding: 0;
}

.service-title {
	display: block;
	background: #00a0e3;
    margin-top: 35px;
    margin-bottom: 20px;
    height: 36px;
    position: relative;
}

.service-title:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 90%;
    background: #00a0e3;
    z-index: 2;
}

.service-title a {
	display: inline-block;
    font-size: 24px;
    background: #00a0e3;
    color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
    border-radius: 50%;
    padding: 10px 20px;
    position: relative;
    margin-top: -10px;
}

.service-title a:focus {
    outline: none;
}

.service-title a:hover:after{
	background: #fff;
}

.service-title span {
	position: relative;
	z-index: 2;
}

.service-title a:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 90%;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.services ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.services ul li a {
	color: #000;
    font-size: 18px;
    line-height: 35px;
    padding: 3px;

    display: inline-block;
  	box-sizing: inherit;
  	transition-property: all;
  	transition-duration: .6s;
  	transition-timing-function: ease;
}

.services ul li a:hover,
.services ul li a:active {
  	letter-spacing: 3px;
  	color: #00a0e3;
}

.services ul li a:after,
.services ul li a:before {
  	backface-visibility: hidden;
  	border: 1px solid rgba(255, 255, 255, 0);
  	bottom: 0px;
  	content: " ";
  	display: block;
  	margin: 0 auto;
  	position: relative;
  	transition: all 280ms ease-in-out;
  	width: 0;
}

.services ul li a:hover:after,
.services ul li a:hover:before {
  	backface-visibility: hidden;
  	border-color: #00a0e3;
  	transition: width 350ms ease-in-out;
  	width: 70%;
}

.services ul li a:hover:before {
  	bottom: auto;
  	top: 0;
  	width: 70%;
}

.service1 a:before, .service2 a:before, .service3 a:before, .service4 a:before {
	content: "";
	position: absolute;
	top: -41px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.service1 a:before {
	width: 90px;
	height: 90px;
	background: url(images/service1.png);
}

.service2 a:before {
	width: 98px;
	height: 74px;
	background: url(images/service2.png);
}

.service3 a:before {
	width: 90px;
	height: 72px;
	background: url(images/service3.png);
}

.service4 a:before {
	width: 94px;
	height: 67px;
	background: url(images/service4.png);
}

/*--------------------------------------------------------------
## Prices
--------------------------------------------------------------*/
.prices-from, .prices {
	background: #fff;
    text-align: center;
    border: 2px solid #e9e9e9;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-collapse: separate;
    position: relative;
    z-index: 1;
    table-layout: fixed;
}

.prices-from th {
	text-align: center;
	font-size: 20px;
    color: #fff;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
    z-index: -1;
}

.prices-from th a {
	display: block;
	color: #fff;
	padding-top: 15px;
    padding-bottom: 65px;
}

.prices-from th:hover:before {
	background: rgba(25, 75, 89, 0.2);
}

.prices-from th.cleaning {
	background: url(images/cleaning-table.jpg) no-repeat center / cover;
}

.prices-from th.gardening {
	background: url(images/gardening-table.jpg) no-repeat center / cover;
}

.prices-from th.relocation {
	background: url(images/relocation-table.jpg) no-repeat center / cover;
}

.prices-from th.handyman {
	background: url(images/handyman-table.jpg) no-repeat center / cover;
}

.prices-from th:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 75, 89, 0.4);
    transition: .3s ease;
    z-index: -1;
}

.prices-from td.price {
    font-size: 24px;
    color: var(--deepBlue);
    font-weight: bold;
    line-height: 20px;
    display: inline-block;
    background: #fff;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    border: 5px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
/*    -webkit-box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);
    -moz-box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);
    box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);*/
}

.prices-from span span {
	display: block;
	font-size: 18px;
}


a.btn-quote {
    display: inline-block;
    color: #fff !important;
    font-size: 17px;
    background: var(--blue);
    padding: 5px 15px;
    margin-bottom: 10px;;
    transition: .3s ease;
    font-weight: 500;
}
a.btn-quote:hover { background-color: var(--deepBlue); }
.prices-from .btn-quote { margin-top: 0; margin-bottom: 30px; }


.v-align {
 	position: relative;
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);

  	display: block;
}

/* Prices and Booking Form */

.prices-book-carpet {
	background: url(images/carpet-background.jpg) no-repeat bottom center;
}

.prices-book-cleaning {
	background: url(images/cleaning-background.jpg) no-repeat center / cover;
}

.prices-book-gardening {
	background: url(images/gardening-background.jpg) no-repeat bottom left, #e8e9e4;
}

.prices-book-relocation {
	background: url(images/relocation-background.jpg) no-repeat center bottom;
}

.prices-book-handyman {
	background: url(images/handyman-background.jpg) no-repeat center / cover;
}

.title-prices, .title-book {
	display: block;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
    margin: 20px 0;
    text-align: center;
	color: var(--black);
	line-height: 1.4;
}

.prices th {
	text-align: center;
    padding: 15px 1% 65px 1%;
	font-size: 20px;
    color: #759069;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
    z-index: -1;

    background: #f9f9f9;
    background: -moz-linear-gradient(top, #f9f9f9 0%, #e9e9e9 87%, #dcdcdc 100%);
    background: -webkit-linear-gradient(top, #f9f9f9 0%,#e9e9e9 87%,#dcdcdc 100%);
    background: linear-gradient(to bottom, #f9f9f9 0%,#e9e9e9 87%,#dcdcdc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#dcdcdc',GradientType=0 );
}

.prices.decorating th {
    font-size: 15px;
}

.prices.ref th {
    font-size: 17px;
}

.prices.eot th {
    font-size: 18px;
}

.prices .price div {
	font-size: 24px;
    color: #00a0e3;
    font-weight: bold;
    line-height: 20px;
    background: #fff;
    width: 100px;
    height: 100px;
    margin: -50px auto 0 auto;
    border: 5px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
/*    -webkit-box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);
    -moz-box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);
    box-shadow: inset 0px 0px 7px 3px rgba(214,212,212,1);*/

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.prices .price span {
	font-size: 18px;
}

.prices td, .prices th {
	border-right: 2px solid #e9e9e9; line-height: 1.2;
}

.prices td:last-child, .prices th:last-child {
	border-right: none;
}

.prices-box {
	overflow: auto;
}

.prices-box .title-prices {
	color: #fff;
}

.prices-box-cleaning {
	background: url(images/cleaning-page.jpg) no-repeat center bottom / cover;
}

.prices-box-gardening {
	background: url(images/gardening-page.jpg) no-repeat center / cover;
}

.prices-box-relocation {
	background: url(images/relocation-page.jpg) no-repeat center bottom / cover;
}

.prices-box-handyman {
	background: url(images/handyman-page.jpg) no-repeat center / cover;
}

/* Accordian */

.prices-toggle {
    margin: 0;
    padding: 0;
    list-style: none;
}

.prices-toggle li.q {
  	font-weight: bold;
  	font-size: 18px;
  	color: var(--deepBlue);
  	border-bottom: 2px var(--deepBlue) solid;
  	cursor: pointer;
  	padding: 10px;
  	position: relative;
  	text-align: center;
    transition: 0.4s ease-in-out;
}

.prices-toggle li.a {
  	background: var(--blue);
  	border-bottom: 2px solid var(--deepBlue);
  	display: none;
  	color:#fff;
  	padding: 10px;
  	text-align: center;
}

.prices-toggle li.q:hover {
    background: var(--blue);
    color: #fff;
}

.prices-toggle .title-prices {
	color: #fff;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-content p {
	text-align: justify;
}

.booking-box {
	background: url(images/sofa.png) no-repeat right / contain, #ccccc7;
	/*width: 100%;*/
}

.booking-box input[type="text"], .booking-box input[type="email"], .booking-box input[type="tel"], .booking-box textarea {
	background: #ccccc7;
	background: rgba(204, 204, 199, 0.8);
}

.contact-info {
	text-align: center;
}

.contact-info strong {
	display: block;
}

.pnumber {
	color: var(--green);
    font-weight: bold;
    font-size: 16px;
}

.cleaners ul, .gardeners ul, .relocation-box ul, .handyman-box ul {
	margin: 10px 0;
	padding: 0;
	list-style: none;
}

.cleaners li, .gardeners li, .relocation-box li, .handyman-box li {
    background: url(images/check.svg) no-repeat left top;
    line-height: 28px;
    padding-left: 30px;
}

.list-style {
	column-count: 2;
	margin-left: 0;
	background-color: var(--gray) !important;
}

.list-style li {
    line-height: 28px;
    padding-left: 30px;
    margin-right: 10px;
    list-style: none;
}

.boxstyle1 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 188px;
    -moz-column-width: 188px;
    column-width: 188px;
    text-align: center;
}

/* Cleaners Box */

/*.cleaners {
	background: url(images/cleaners-background.jpg) no-repeat bottom center / cover;
}

.gardeners {
	background: url(images/gardeners-background.jpg) no-repeat bottom right / cover;
}*/

/*.relocation-box {
	background: #d3e5ef;
}

.handyman-box {
	background: #d3e5ef;
}*/

.cleaner-box {
	margin-bottom: 30px;
}

.cleaner-box p {
    margin-bottom: 0;
    padding: 10px;
    font-size: 14px;
}

.cleaner-name {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courgette', 'Ubuntu', cursive;
}

.cleaner-info {
    background: #fff;
    padding: 5px;
    position: relative;
    z-index: 1;
}

.cleaner {
	background: url(images/cleaners/cleaner.jpg) no-repeat center/ contain;
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-top: 16px;
    position: relative;
    width: 255px; height: 190px;
    z-index: 2;
}

/* eot */

.dido {
	background: url(images/cleaners/dido.jpg) no-repeat center/ cover;
}

.zaki {
	background: url(images/cleaners/zaki.jpg) no-repeat center/ cover;
}

.fatie {
	background: url(images/cleaners/fatie.jpg) no-repeat center/ cover;
}

.ivaylo {
	background: url(images/cleaners/ivaylo.jpg) no-repeat center/ cover;
}

/* carpet cleaning */

.yavor {
	background: url(images/cleaners/yavor.jpg) no-repeat center bottom/ cover;
}

.rado {
	background: url(images/cleaners/rado.jpg) no-repeat center bottom/ cover;
}

.stoyan {
	background: url(images/cleaners/stoyan.jpg) no-repeat center bottom/ cover;
}

.miro {
	background: url(images/cleaners/miro.jpg) no-repeat center/ cover;
}

/* deep cleaning */

.dida {
	background: url(images/cleaners/dida.jpg) no-repeat center bottom/ cover;
}

.lubo {
	background: url(images/cleaners/lubo.jpg) no-repeat center bottom/ cover;
}

.dani {
	background: url(images/cleaners/dani.jpg) no-repeat center/ cover;
}

.villi {
	background: url(images/cleaners/villi.jpg) no-repeat center/ cover;
}

/* home cleaning */

.nedka {
	background: url(images/cleaners/nedka.jpg) no-repeat center bottom/ cover;
}

.yulia {
	background: url(images/cleaners/yulia.jpg) no-repeat center bottom/ cover;
}

.galina {
	background: url(images/cleaners/galina.jpg) no-repeat center bottom/ cover;
}

.daisy {
	background: url(images/cleaners/daisy.jpg) no-repeat center/ cover;
}

/* domestic cleaning */

.daisy1 {
	background: url(images/cleaners/daisy1.jpg) no-repeat center bottom/ cover;
}

.vlado {
	background: url(images/cleaners/vlado.jpg) no-repeat center bottom/ cover;
}

/* window cleaning */

.oliver {
	background: url(images/cleaners/oliver.jpg) no-repeat center bottom/ cover;
}

/* upholstery cleaning */

.rejep {
	background: url(images/cleaners/rejep.jpg) no-repeat center bottom/ cover;
}

/* gardeners */

.nick {
	background: url(images/cleaners/nick.jpg) no-repeat top center/ cover;
}

.vesko {
	background: url(images/cleaners/vesko.jpg) no-repeat top center/ cover;
}



.after-box {
	background: var(--lightBlue);
    padding: 30px 20px;
}

.after-box span, .after-box h2 {
    font-family: 'Courgette', 'Ubuntu', cursive;
    font-size: 24px;
    color: inherit;
    text-align: inherit;
    margin: auto;
    font-weight: normal;
    line-height: 1.5;
}

.after-box p {
    margin-bottom: 0;
}

.ad-box {
	background: rgba(227, 227, 227, 0.7);
    padding: 5px;
}

/*.handyman-box .after-box, .relocation-box .after-box {
	text-align: center;
}*/

.count-col-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 188px;
    -moz-column-width: 188px;
    column-width: 188px;
}

.count-col-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-width: 188px;
    -moz-column-width: 188px;
    column-width: 188px;
}

.area {
	margin-bottom: 20px;
}

.area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* All Services */

.service-box-blue {
	background: var(--lightBlue);
}

.prices-box-blue {
	background: #c1e2ee;
	overflow: auto;
}

.service-box-green {
	background: var(--lightGreen);
}

.service-box-title {
    display: block;
    margin: 10px 0;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    font-family: 'Courgette', 'Ubuntu', cursive;
}

.service-box-title h2 {
	position: relative;
	z-index: 2;
    margin-bottom: 20px;
}

.img-box {
	position: relative;
	z-index: 1;
	text-align: center;
}

.img-box:before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
}

.service-box-text {
	margin: 10px 0;
	text-align: justify;
}

.btn-check {
    display: block;
    font-size: 18px;
    width: 200px;
    color: var(--deepBlue);
    background: #fff;
    text-align: center;
    margin: 20px auto 0px auto;
    border-radius: 5px;
    font-weight: 600;
    padding: 10px;
    transition: all .3s ease;
}

.service-box-green .btn-check {
	color: var(--green);
}

.service-box-blue .btn-check:hover {
	background: var(--blue);
	color: #fff;
}

.service-box-green .btn-check:hover {
	background: var(--green);
	color: #fff;
}

.manager-box {
    background: #fff;
    text-align: center;
}

.manager {
    height: 100%;
}

.manager:before {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    height: 100%;
}

.manager span {
    display: inline-block;
    width: 70%;
    color: #fff;
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courgette', 'Ubuntu', cursive;
    -webkit-text-shadow: 1px 1px 2px #404040;
    -moz-text-shadow: 1px 1px 2px #404040;
    text-shadow: 1px 1px 2px #404040;
}

.service-box-blue .manager span {
	background: rgba(0, 174, 239, 0.7);
}

.service-box-green .manager span {
    background: rgba(176, 203, 31, 0.8);
}

.manager-cleaning {
	background: url(images/cleaners/miro-daisy.jpg) no-repeat center / cover;
}

.manager-gardening {
	background: url(images/cleaners/manager-gardening.jpg) no-repeat center / cover;
}

.manager-relocation {
	background: url(images/cleaners/manager-relocation.jpg) no-repeat center / cover;
}

.manager-handyman {
	background: url(images/cleaners/manager-handyman.jpg) no-repeat center / cover;
}

.mini-service {
	text-align: center;
	padding: 6px;
    margin-bottom: 10px;
}

.mini-service a {
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 6px;
    color: #fff !important;
    font-weight: 600;
    border-radius: 5px;
  	transition: all .3s ease;
}

.mini-service-blue a {
	background: var(--blue);
}

.mini-service-blue a:hover {
	background: var(--deepBlue);
}

.mini-service-green a {
	background: var(--green);
}

.mini-service-green a:hover {
	background: var(--darkGreen);
}

.service-box-text p:last-of-type {
	margin-bottom: 0;
}

/* All Services */

.all-cleaners {
	background: var(--lightBlue);
}

.all-cleaners p {
    margin: 10px 0;
}

.all-cleaners p:first-of-type {
    min-height: 192px;
}

.all-cleaners .manager span {
	width: 100%;
}

.cleaner-img {
	background: #fff;
	text-align: center;
}

.daisy-vlado {
	background: url(images/cleaners/daisy-vlado.jpg) no-repeat center / cover;
	height: 100%;
}

.dido-zaki {
	background: url(images/cleaners/dido-zaki.jpg) no-repeat center / cover;
	height: 100%;
}

.dida-lubo {
	background: url(images/cleaners/dida-lubo.jpg) no-repeat center / cover;
	height: 100%;
}

.miro-daisy {
	background: url(images/cleaners/miro-daisy.jpg) no-repeat center / cover;
	height: 100%;
}

.dani-villi {
	background: url(images/cleaners/dani-villi.jpg) no-repeat center / cover;
	height: 100%;
}

/* Rich Reviews */

.fullwidth-box {
    position: relative;
    z-index: 1;
    background: #fff;
}

.review-box {
	overflow-y: auto;
	height: 298px;
}

.review-box table {
	margin-bottom: 0;
}

.review-box .testimonial_group .full-testimonial {
	padding: 0px 10px 0px 10px;
}

.rr_review_form .form_table .rr_form_row .rr_form_input input[type="text"], .rr_review_form .form_table .rr_form_row .rr_form_input textarea {
    margin-bottom: 0;
    padding: 2px 5px;
}

.review-box .rr_review_form .form_table .rr_form_row .rr_form_input {
    padding-bottom: 5px;
}

.rr_review_form .form_table .rr_form_row .rr_form_input textarea {
    height: 130px;
}

.rr_review_name span {
    color: #00a0e3;
}

.text-rate .stars, .rr_star {
    color: #ffffff;
}

.review-box .stars {
    float: left;
    margin-right: 10px;
}

.drop_cap {
	display: none;
}

/* Read More Button */

.read-more-state {
  	display: none;
}

.read-more-target {
  	opacity: 0;
  	max-height: 0;
  	font-size: 0;
  	/*transition: .25s ease;*/
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
	opacity: 1;
    font-size: inherit;
    max-height: 999em;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    background: #fff;
}

.read-more-trigger {
    cursor: pointer;
    display: inline-block;
    padding: 0 7px 7px;
    color: #666;
    font-size: .9em;
    line-height: normal;
    border: 1px solid #ddd;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/

.tab-links {
    background: #b2dbec;
    overflow: hidden;
    margin: 15px 0 0;
    padding: 0;
}

.tab-links a {
    background-color: inherit;
    float: left;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 0;
    text-align: center;
    width: 50%;
    color: #777777;
	padding: 2px;
    position: relative;
}

.tab-links a:hover, .tab-links a:focus {
    background-color: var(--blue);
    color: #fff;
    outline: none;
}

.tab-links li.active a {
    background-color: var(--blue);
    color: #fff;
}

.tab-links li.active a:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    height: 80%;
    border: 2px solid #fff;
}

.tabcontent {
    padding-top: 10px;
}

.tab {
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

.tab-links:after {
   	display:block;
   	clear:both;
   	content:'';
}
 
.tab-links li {
	list-style:none;
}

.tab {
	display:none;
}

.tab.active {
	display:block;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer-services {
	background: #00a0e3;
}

.footer-services span {
	display: block;
	font-size: 18px;
	padding: 15px;
}

.footer-services ul {
    display: table;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    overflow: auto;
}

.footer-services ul li {
	float: left;
    margin: 0 15px;
}

.site-info a, .footer-services ul li a {
	color: #fff;
}

.site-info {
	padding: 15px;
	border-top: 2px solid #fff;
	background: #00a0e3;
	color: #194b59;
}

.tap-btn {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 999;
}

.tap-btn a {
	display: block;
	background: url(images/tap-btn.png);
	width: 73px;
	height: 76px;
}

.tap-btn a:hover {
	background: url(images/tap-btn2.png);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.img-box {
	    display: none;
	}

	.title-prices, .title-book {
    	font-size: 18px;
	}

	.prices th {
    	font-size: 16px;
    	padding-bottom: 55px;
	}

	.prices.eot th {
    	font-size: 15px;
	}

	.prices .price div {
    	width: 80px;
    	height: 80px;
    	margin: -40px auto 0 auto;
        font-size: 20px;
	}
}

@media screen and (min-width: 768px) {
	.flex-box-end {
		display: -webkit-box;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
	    align-items: flex-end;
	}

	.fullwidth-box-left {
	    z-index: 2;
	    padding-right: 0;
	}

	.fullwidth-box-right:before {
	    content: "";
	    height: 100%;
	    background: #fff;
	    position: absolute;
	    width: 100vw;
	    left: -50vw;
	    z-index: -1;
	}
}

@media screen and (min-width: 576px) and (max-width: 991px) {
	.cleaner-box .col-sm-6 {
	    padding-right: 5px;
	    padding-left: 5px;
	}
}

@media screen and (min-width: 576px) {
	.cleaner-info-left:before {
	    content: "";
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    background: #fff;
	    top: 0;
	    left: -75px;
	    z-index: -1;
	}

	.cleaner-info-left, .cleaner-box .null-left {
    	padding-left: 0;
	}

	.cleaner-info-right:before {
	    content: "";
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    background: #fff;
	    top: 0;
	    right: -75px;
	    z-index: -1;
	}

	.cleaner-info-right, .cleaner-box .null-right {
    	padding-right: 0;
	}

	.tap-btn {
		display: none;
	}
}

@media screen and (max-width: 1199px) {
	.text-rate {
		font-size: 13px;
	}

	a.btn-quote {
    	padding: 5px;
	}
}

@media screen and (max-width: 991px) {
	.manager-team {
	    width: 190px;
	    height: 190px;
	    margin: auto;
	   	background-size: contain;
	    background-color: #fff;
	}

	.cleaner-img {
	    border-top: 10px solid #b2dbec;
	}

	.review-box .rr_review_form .form_table .rr_form_row .rr_form_input input[type="text"], .review-box .rr_review_form .form_table .rr_form_row .rr_form_input textarea {
    	width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.services {
		background-position: bottom center;
	}

	.service-title {
		margin-top: 50px;
	}

	img.alignleft, img.alignright {
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.img-box img {
	    width: 190px;
	    height: auto;
	}

	.img-box:before {
	    top: 15px;
	    left: 0;
	}

	.manager-box {
		background: none;
		border-top: 15px solid #fff;
	}

	.manager {
	    width: 190px;
	    height: 190px;
	    margin: auto;
	   	background-size: contain;
	    background-color: #fff;
	}
}

@media screen and (max-width: 575px) {
	.list-header li {
	    background-size: 17px;
	    line-height: 17px;
	    padding-left: 18px;
	    margin-right: 0;
	}

	.cleaner {
		width: 222px;
		height: 140px;
		margin: auto;
		margin-bottom: 5px;
	}

	.menu-flex {
		display: block;
		margin-top: 28px;
	}

	.text-header {
    	font-size: 23px;
	}

	.btn-book a, .btn-see a {
		font-size: 16px;
		padding: 10px 5px;
	}

	.prices th, .prices.eot th {
		padding: 15px 1px 45px 1px;
		font-size: 15px;
	}

	.prices .price div {
		width: 70px;
		height: 70px;
		margin: -35px auto 0 auto;
		font-size: 20px;
	}

	.prices .price span {
    	font-size: 12px;
    	line-height: 0.8;
	}

	a.btn-quote {
    	padding: 5px;
    	font-size: 16px;
	}

	.h-list li, .footer-services ul li {
		float: none;
	}

	.services ul li a {
    	line-height: normal;
	}

	.area {
    	text-align: center;
	}

	.booking-box {
		background-size: cover;
		background-position: left;
	}

	.chk {
	    float: none;
	    display: block;
	    text-align: center;
	    margin-bottom: 10px;
	}

	.mini-service {
    	padding: 2px;
	}

	.mini-service a {
    	font-size: 16px;
	}

	.break-word {
		-ms-word-break: break-all;
	    word-break: break-all;
	}list-style

	.text-rate {
    	font-size: 14px;
	}
}

/*--------------------------------------------------------------
## Basic Styles
--------------------------------------------------------------*/

:root {
	--blue: #007fff;
	--midBlue: #083db9;
	--deepBlue: #062a78;
	--darkBlue: #051657;
	--green: #448B0C;
	--darkGreen: #295704;
	--orange: #FF6347;
	--red: #ff4040;
	--lightRed: #fff7f5;
	--lightBlue: #F3F3FC;
	--lightGreen: #EAFCF1;
	--gray: #faf6f7;
	--black: #212529;
}

body { font-family: 'Montserrat', sans-serif; color: var(--deepBlue); line-height: 1.8; }

h1,
h2,
h3,
h4,
h5,
h6 { font-weight: 600; color: var(--deepBlue); text-align: left; }

h1,
h2 { margin-bottom: 30px; }

h3,
h4 { margin-bottom: 20px; }

h5,
h6 { margin-bottom: 15px; }

h1 { font-size: 36px; }
h2 { font-size: 32px; }
h3 { font-size: 28px; }
h4 { font-size: 26px; }
h5 { font-size: 24px; }
h6 { font-size: 22px; }

p { text-align: justify; line-height: 1.8 !important; }
p:empty { display: none; }
p a[href^="tel:"],
p a[href^="mailto:"] { font-weight: 700; }

a,
a:visited,
a:focus,
a:active { color: var(--deepBlue); }

ol { counter-reset: custom-counter; list-style: none !important; padding-left: 0; margin-left: 0 !important; }
ol > li { padding-left: 40px !important; counter-increment: custom-counter; position: relative; background: transparent !important; }
ol > li:before { position: absolute; color: #fff; font-size: 18px; font-weight: bold; --size: 28px; left: 0; line-height: var(--size); width: var(--size); height: var(--size); top: 0; background: var(--deepBlue); border-radius: 50%; text-align: center; content: counter(custom-counter); }
ol > li + li { margin-top: 10px; }
ol.green > li:before { background: var(--green); }

blockquote { position: relative; margin-bottom: 20px; margin-right: 0; padding: 15px; font-size: 16px; border: 1px solid #DBDFE6; border-radius: 5px; color: var(--black); background-color: var(--lightBlue); }
blockquote:before { position: absolute; display: block; top: -10px; left: -10px; height: 30px; width: 30px; background-repeat: no-repeat; background-size: contain; background-position: center; background-image: url(images/ico-quotes.svg); content: ''; }
blockquote p { margin-bottom: 0; }

.wrapper { width: 100%; overflow-x: hidden; }

.cleaners ul ol { padding-left: 30px; }

.list-2 { column-count: 2; }
.list-3 { column-count: 3; }
.list-4 { column-count: 4; }

.logo { display: block; position: relative; width: 95px; height: 90px; background-size: contain; background-repeat: no-repeat; background-position: center; transition: .3s; }
.logo:hover { transform: scale(1.1); opacity: 1; }

.btn { background-color: var(--blue); color: #fff; padding: 10px 20px; border-radius: 0; border: 1px solid var(--blue); font-weight: 600; }
.btn:hover { color: #fff; background-color: var(--deepBlue); }
.btn--white { color: var(--blue); background-color: #fff; }
.btn--white:hover { background-color: var(--deepBlue); color: #fff; border: 1px solid var(--deepBlue); }

.ico { display: block; background-size: contain; background-repeat: no-repeat; background-position: center; height: 30px; width: 30px; }
.ico--cleaner { background-image: url(images/ico-cleaner.webp); }
.ico--star { background-image: url(images/icon-star.png); }
.ico--customer { background-image: url(images/customer.webp); }
.ico--step1 { background-image: url(images/step-icon1.png); }
.ico--step2 { background-image: url(images/step-icon2.png); }
.ico--step3 { background-image: url(images/step-icon3.png); }
.ico--step4 { background-image: url(images/step-icon4.png); }
.ico--location { background-image: url(images/ico-pin.svg); }
.ico--verified { background-image: url(images/verified.svg); }
.ico--female { background-image: url(images/female.png); }
.ico--male { background-image: url(images/male.png); }

.entry-content > ul { text-align: left; margin-left: 0; padding-left: 0; background-color: var(--lightBlue); padding: 15px; border-radius: 5px; }
.entry-content > ul { list-style: none !important; margin-left: 0 !important; list-style-type: none; }
.entry-content > ul li { position: relative; padding-left: 35px; }
.entry-content > ul li:before { position: absolute; display: inline-block; top: -3px; left: 0; height: 30px; width: 30px; border-radius: 50%; background-image: url(images/check.svg); background-size: contain; background-repeat: no-repeat; background-position: center; content: ''; }

/* Bootstrap full width fix */
.full-width { width: 100vw; position: relative; margin-left: -50vw; left: 50%; }
.full-width .row { margin-left: 0; margin-right: 0; }

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

	.list-3 { column-count: 2; }
	.list-4 { column-count: 3; }

	h1 { font-size: 24px; }
	h2 { font-size: 22px; }
	h3 { font-size: 20px; }
	h4 { font-size: 19px; }
	h5 { font-size: 18px; }
	h6 { font-size: 16px; }

}

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

	blockquote { margin-left: 0; }

	.list-style,
	.list-2 { column-count: 1; }
	.h-list,
	.list-4 { column-count: 2; }

	h1,
	h3 { text-align: center; }

}

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

	img.alignright,
	img.alignleft { width: 100%; height: auto; margin-bottom: 15px; margin-left: 0; margin-right: 0; }

	.h-list,
	.list-3,
	.list-4 { column-count: 1; }

	.heading, 
	.after-box span.heading, 
	.after-box h2.heading { text-align: center; font-size: 22px; }

	.entry-content > ul li { padding-left: 25px; }
	.entry-content > ul li:before { height: 25px; width: 25px; top: 1px; }

	.title-prices, 
	.title-book { margin-bottom: 10px; }

	.cleaners ul ol { padding-left: 0; }

}

/*--------------------------------------------------------------
## Site header
--------------------------------------------------------------*/

.site-header { position: relative; background-color: #fff; border-bottom: 1px solid #c3c9d5; padding: 5px 0; z-index: 5; }
.site-header .container,
.site-header .header__nav { display: flex; align-items: center; }
.site-header .container { justify-content: space-between; }

.site-header .menu-main-navigation-container > ul > li + li { margin-left: 30px; }
.site-header .menu li.menu-item-has-children > a { padding-right: 30px; }
.site-header .menu li.menu-item-has-children > a:after { position: absolute; top: 3px; right: 0; height: 20px; width: 20px; background-size: contain; background-repeat: no-repeat; background-image: url(images/down-icon.svg); content: ''; }
.site-header .menu a { position: relative; font-size: 16px; font-weight: 600; }
.site-header .menu a:hover { color: var(--deepBlue); }
.site-header .menu-main-navigation-container > ul > li > a:before { position: absolute; left: 0; bottom: -37px; height: 4px; width: 100%; visibility: hidden; opacity: 0; background-color: var(--blue); z-index: 6; transition: .4s ease; content: ''; }
.site-header .menu-main-navigation-container > ul > li > a:hover:before,
.site-header .menu-main-navigation-container > ul > li > a.active:before { visibility: visible; opacity: 1; }
.site-header .main-navigation ul ul { top: 67px; }
.site-header .menu { margin-left: 70px; }

.site-header .sub-menu { background-color: #fff; }
.site-header .sub-menu.show { left: 0; }
/*.site-header .sub-menu.visible { left: 0; }*/
.site-header .sub-menu .sub-menu.show { left: 200px; top: 0; background-color: #f3f4f7; }
.site-header .sub-menu .sub-menu a { width: 290px; }
.site-header .sub-menu li { width: 100%; text-align: left; }
.site-header .sub-menu li a { padding: 15px 20px; }
.site-header .sub-menu li a:before { position: absolute; display: block; left: 0; top: 0; visibility: hidden; opacity: 0; height: 100%; width: 4px; background-color: var(--blue); transition: .2s; content: ''; }
.site-header .sub-menu li a:hover,
.site-header .sub-menu li a.active { background-color: #f3f4f7; }
.site-header .sub-menu li a:hover:before { opacity: 1; visibility: visible; }
.site-header .sub-menu li.menu-item-has-children a:after { top: 16px; transform: rotate(-90deg); }

.site-content { position: relative; }
.site-content:before { position: absolute; display: block; top: 0; visibility: hidden; opacity: 0; left: 0; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.5); transition: .5s ease; z-index: 3; content: ''; }
.overlay .site-content:before { visibility: visible; opacity: 1; }

#menu-toggle { display: none; }

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

	.logo { height: 90px; width: 80px; }

	.site-header .main-navigation,
	.site-header .header__actions { display: none; }

	#menu-toggle { display: inline-block; height: 40px; width: 40px; position: relative; cursor: pointer; z-index: 999; }
	#menu-toggle:before, #menu-toggle:after { content: ""; display: block; background-color: var(--black); position: absolute; top: 12.5px; border-radius: 5px; height: 5px; box-shadow: 0 10px 0 var(--deepBlue), 0 20px 0 var(--deepBlue); transition: all 0.25s ease-in-out; }
	#menu-toggle:before { width: 5px; left: 0; }
	#menu-toggle:after { width: calc(100% - 10px); right: 0; }
	#menu-toggle.open:before, #menu-toggle.open:after { top: 22.5px; box-shadow: 0 0 0 var(--deepBlue), 0 0 0 var(--deepBlue); }
	#menu-toggle.open:before { width: 30px; left: 5px; transform: rotate(45deg); }
	#menu-toggle.open:after { width: 30px; right: 5px; transform: rotate(-45deg); }

	.nav-open { height: 100vh; overflow: hidden; }
	.nav-open .site-header .main-navigation { position: fixed; display: block; z-index: 99; background-color: var(--lightBlue); height: 100vh; width: 100%; top: 0; left: 0; }
	.nav-open .site-header .menu-main-navigation-container { overflow-y: scroll; }
	.nav-open .site-header .menu { height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
	.site-header .menu-main-navigation-container > ul > li > a { font-size: 22px; }
	.site-header .menu-main-navigation-container > ul > li + li,
	.nav-open .site-header .menu { margin-left: 0; }
	.main-navigation ul ul { position: static; font-size: 16px; box-shadow: none; }
	.site-header .sub-menu li a { padding: 0 15px; text-align: center; }
/*	.site-header .sub-menu .sub-menu { display: none !important; }*/
	.site-header .menu li.menu-item-has-children > a,
	.site-header .sub-menu li { text-align: center !important; }
	.site-header .sub-menu { background-color: rgba(255, 255, 255, 0.7); }
	.site-header .menu-main-navigation-container > ul > li > a:before { display: none; }
	.site-header .sub-menu li a { margin: auto; font-size: 14px; }
	.site-header .sub-menu li.menu-item-has-children a:after { top: 3px; transform: none; }
	.site-header .sub-menu.visible { display: block !important; }
	.site-header .sub-menu .sub-menu.visible { display: block !important; }
	.site-header li.menu-item-has-children.active > .sub-menu { height: 300px; overflow-y: scroll; }
	.menu-item-11440 a { width: 130px; margin: auto; }
	.site-header .menu li.menu-item-11440 > a:after { height: 25px; width: 25px; top: 8px; }
	.site-header .sub-menu li.menu-item-has-children > a { display: none; }

}

/*--------------------------------------------------------------
## Lists / Sliders / FAQ
--------------------------------------------------------------*/

.list-services { display: flex; flex-wrap: wrap; justify-content: space-between; margin-left: 0; padding-left: 0; margin-bottom: 0; list-style: none; }
.list-services a { display: block; }
.list-services > li { display: inline-block; width: calc(25% - 10px); padding: 20px; text-align: center; border: 1px solid #E7E9EF; border-radius: 5px; margin-bottom: 15px; transition: .3s ease; }
.list-services > li:hover { border: 1px solid #062A78; box-shadow: 0px 7px 18px rgba(0, 0, 0, 0.13); }
.list-services .ico { margin: auto auto 10px; height: 50px; width: 50px; filter: brightness(0) saturate(100%) invert(16%) sepia(41%) saturate(4076%) hue-rotate(207deg) brightness(84%) contrast(100%); }
.list-services > li:nth-child(5),
.list-services > li:nth-child(6),
.list-services > li:nth-child(7),
.list-services > li:nth-child(8),
.list-services > li:nth-child(9),
.list-services > li:nth-child(10),
.list-services > li:nth-child(11),
.list-services > li:nth-child(12) { width: calc(12.5% - 10px); }

.list-services > li:nth-child(13) a,
.list-services > li:nth-child(14) a,
.list-services > li:nth-child(15) a,
.list-services > li:nth-child(16) a { display: flex; align-items: center; }

.list-services > li:nth-child(13) span,
.list-services > li:nth-child(14) span,
.list-services > li:nth-child(15) span,
.list-services > li:nth-child(16) span { width: calc(100% - 55px); }

.slider-services {  margin-left: 0; padding-left: 0; list-style: none; }
.slider-services .service-slide { position: relative; }
.slider-services .service-link { position: relative; display: block; margin: 0 10px; border: 1px solid #E7E9EF; border-radius: 5px; overflow: hidden; }
.slider-services .service__image { background-size: cover; background-repeat: no-repeat; background-position: center; padding: 140px 30px 30px 30px; }
.slider-services .service__image .btn { width: 215px; font-weight: 500; border: 0; display: flex; align-items: center; }
.slider-services .meta { display: block; padding: 20px; font-weight: 600; }
.slider-services .ico { height: 22px; width: 18px; margin-right: 5px; }
.slider-services .service__body { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background-color: var(--darkBlue); color: #fff; padding: 20px; text-overflow: ellipsis; overflow: hidden; visibility: hidden; opacity: 0; border-radius: 5px; transition: .4s ease; }
.slider-services .service__body:after { position: absolute; bottom: 0; left: 0; height: 100px; width: 100%; background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(250,250,252,0) 2%,rgba(5,22,87,1) 100%); content: ''; }
.slider-services a:hover .service__body { visibility: visible; opacity: 1; }

.slider-services .service__body .btn { position: absolute; left: 50%; bottom: 15px; transform: translateX(-50%); z-index: 3; }

.slick-arrow { height: 60px; width: 60px; font-size: 0; background-color: transparent; padding: 0; background-size: contain !important; background-repeat: no-repeat !important; background-position: center !important; position: absolute; top: 50%; transform: translateY(-50%); transition: .3s; z-index: 3; }
.slick-arrow:hover { background-color: transparent; opacity: 0.7; }
.slick-prev { left: -70px; background-image: url(images/carousel-arrow-left.svg) !important; }
.slick-next { right: -70px; background-image: url(images/carousel-arrow-right.svg) !important; }

.faq ul { padding-left: 0; margin-left: 0; list-style: none; color: #212529; }
.faq ul > li { border-top: 1px solid #C3C9D5; }
.faq-question,
.faq-answear { padding: 15px; }
.faq-question { position: relative; font-weight: 500; padding-right: 30px; }
.faq-question:hover { cursor: pointer; }
.faq-question:after { position: absolute; display: block; top: 16px; right: 0; height: 26px; width: 26px; background-size: contain; background-repeat: no-repeat; background-position: center; background-image: url(images/ico-plus.svg); transition: .3s ease; content: ''; }
.current .faq-question:after { background-image: url(images/ico-minus.svg); }
.faq-answear { height: 0; margin-top: -30px; visibility: hidden; opacity: 0; transition: margin-top .3s ease; }
.current .faq-answear { height: auto; margin-top: 0; visibility: visible; opacity: 1; }

.entry-content .list-style li:before { top: -6px; height: 40px; width: 40px; background-image: url(images/bullet.svg); }

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

	.list-services > li:nth-child(5),
	.list-services > li:nth-child(6),
	.list-services > li:nth-child(7),
	.list-services > li:nth-child(8),
	.list-services > li:nth-child(9),
	.list-services > li:nth-child(10),
	.list-services > li:nth-child(11),
	.list-services > li:nth-child(12) { width: calc(25% - 10px); }

	.list-services > li:nth-child(5) a,
	.list-services > li:nth-child(6) a,
	.list-services > li:nth-child(7) a,
	.list-services > li:nth-child(8) a { display: flex; align-items: center; }

	.list-services > li:nth-child(5) span, 
	.list-services > li:nth-child(6) span, 
	.list-services > li:nth-child(7) span, 
	.list-services > li:nth-child(8) span { width: calc(100% - 55px); }

}

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

	.list-services > li { width: calc(33.33% - 10px) !important; }
	.list-services > li a { display: flex; align-items: center !important; }

}

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

	.list-services > li { width: calc(50% - 5px) !important; padding: 10px; margin-bottom: 10px; }
	.list-services > li a { flex-direction: column; }
	.list-services > li span { width: 100% !important; line-height: 1.2; }
	.list-services .ico { height: 45px; width: 45px; }

}

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

	.slider-services .service__image .btn { margin: auto; }

}

/*--------------------------------------------------------------
## Sections
--------------------------------------------------------------*/

.section-intro { font-size: 18px; background-color: #f3f0fa; padding-top: 60px; }
.section-intro .container { display: flex; justify-content: space-between; }
.section-intro .section__content { width: 535px; padding-top: 20px; }
.section-intro .section__image { position: relative; width: 410px; }
.section-intro h1,
.section-intro h1 p { margin-bottom: 30px; }

.section-intro ul { margin-left: 0; padding-left: 0; margin-bottom: 0; list-style: none; }
.section-intro ul li { position: relative; padding-left: 30px; }
.section-intro ul li:before { position: absolute; top: 3px; left: 0; background-image: url(images/check.svg); height: 16px; width: 16px; background-size: contain; background-repeat: no-repeat; background-position: center; content: ''; }

.section-intro .search-form { margin-bottom: 40px; }

.section-intro .info-box { position: absolute; display: flex; justify-content: space-between; align-items: center; border-radius: 15px; background-color: rgba(255, 255, 255, 0.9); padding: 15px; border: 1px solid #fff; line-height: 1.2; }
.info-box--1 { left: -6px; top: 32px; width: 155px; }
.info-box--2 { bottom: 49px; right: 23px; width: 177px; }
.info-box--2 > div { width: calc(100% - 35px); text-align: center; }
.section-intro .info-box .ico { margin-right: 6px; }

.steps-box { padding: 20px 0; }
.steps-box .ico { height: 40px; width: 40px; margin: auto auto 5px; filter: brightness(0) saturate(100%) invert(16%) sepia(41%) saturate(4076%) hue-rotate(207deg) brightness(84%) contrast(100%); }
.steps-box .title-step { display: block; background-color: var(--midBlue); color: #fff; padding: 5px 15px; text-align: center; font-weight: 500; margin-bottom: 6px; }

.section-services { padding: 30px 0; }

.section-about { padding-bottom: 30px; }
.section-about .section__body { display: flex; align-items: center; }
.section-about .section__head { width: 50%; margin-right: 30px; background-color: var(--green); color: #fff; border-radius: 15px; padding: 50px; }
.section-about .section__head h3 { color: #fff; }
.section-about .section__head p { margin-bottom: 0; }

.section-advantages { padding: 20px 0 30px; }
.section-advantages .section__body { display: flex; align-items: center; }
.section-advantages .section__image { width: 60%; margin-right: 60px; }
.section-advantages .section__image img { border-radius: 10px; }
.section-advantages ul { margin-left: 0; padding-left: 0; }

.slider-services { display: flex; max-height: 293px; }
.section-slider-services h2,
.heading-list { position: relative; padding-left: 30px; }
.section-slider-services h2:before,
.heading-list:before { position: absolute; top: 0; left: 0; height: 100%; width: 4px; background-color: var(--red); content: ''; }

.section-contacts { margin-bottom: 50px; }
.section-contacts .container { display: flex; align-items: center; justify-content: space-between; }
.section-contacts .section__form { width: 560px; padding: 30px 20px; border: 1px solid #E7E9EF; box-shadow: 0px 0px 22px rgb(0 0 0 / 5%); border-radius: 8px; }
.section-contacts .section__image { width: calc(100% - 590px); }
.section-contacts .section__image img { border-radius: 10px; }

.section-reviews { position: relative; margin-bottom: 50px; padding-bottom: 30px; padding-top: 20px; }
.section-reviews h2 { text-align: center; }
.section-reviews .reviews { display: flex; }
.section-reviews .review-wrapper { position: relative; padding: 90px 45px 45px; box-shadow: 0px 7px 16px rgba(0, 0, 0, 0.1); border-radius: 8px; margin: 25px; }
.section-reviews .review-wrapper:before { position: absolute; top: 30px; left: 25px; height: 50px; width: 160px; background-image: url(images/rating.png); background-size: contain; background-repeat: no-repeat; background-position: center; content: ''; }
.section-reviews .review p { font-size: 19px; line-height: 1.6; }
.section-reviews .review-credentials,
.section-reviews .bottom { display: flex; align-items: center; }
.section-reviews .ico--female,
.section-reviews .ico--male { height: 50px; width: 50px; margin-right: 10px; }
.section-reviews .review-author { font-size: 16px; font-weight: 500; }
.section-reviews .bottom { font-size: 14px; color: #697E9A; }
.section-reviews .bottom .ico { margin-left: 10px; margin-right: 5px; height: 15px; width: 15px; }

.section-reviews .slick-arrow { top: 100%; bottom: -30px; transform: none; }
.section-reviews .slick-prev { left: calc(50% - 60px); }
.section-reviews .slick-next { right: calc(50% - 60px); }

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

	.section-about .section__body { flex-direction: column; }
	.section-about .section__head { margin-right: 0; margin-bottom: 30px; width: 100%; }

}

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

	.section-intro { padding-top: 30px; padding-bottom: 30px; }
	.section-advantages .section__body { flex-direction: column-reverse; }
	.section-advantages .section__image { width: 100%; margin-right: 0; margin-bottom: 30px; text-align: center; }

	.section-contacts .container { flex-wrap: wrap; flex-direction: column-reverse; }
	.section-contacts .section__image,
	.section-contacts .section__form { width: 100%; }
	.section-contacts .section__image { margin-bottom: 20px; }
	.section-contacts .section__form { padding: 15px; }

}

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

	.section-intro { padding: 15px 0 20px; }
	.section-intro p { text-align: center; }
	.section-intro .container { flex-direction: column; }
	.section-intro .section__content,
	.section-intro .section__image { width: 100%; }
	.section-intro .section__content { font-size: 16px; }

	.section-about { padding-bottom: 0; }
	.section-about .section__head { padding: 20px 15px; }

	.section-reviews .review-wrapper { padding: 75px 15px 20px; }
	.section-reviews .review-wrapper:before { top: 15px; left: 0; }
	.section-reviews .review p { font-size: 17px; }

	.section-contacts .heading { text-align: center; line-height: 1.4; }

}

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/

.search-form { position: relative; display: flex; align-items: center; justify-content: space-between; background-color: #fff; padding: 7px 7px 7px 40px; box-shadow: 0px 15px 40px rgba(79, 74, 37, 0.20); border-radius: 5px; }
.search-form label { width: calc(100% - 95px); margin-bottom: 0; }
.search-form:before { position: absolute; top: 50%; transform: translateY(-50%); left: 10px; height: 30px; width: 30px; background-image: url(images/search-icon.svg); background-size: contain; background-repeat: no-repeat; content: ''; }
.search-form .search-field { background-color: #fff; color: var(--deepBlue); margin-bottom: 0 !important; border: 0 !important; }
.search-form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */  color: #6e777f !important; }
.search-form ::-moz-placeholder { /* Firefox 19+ */  color: #6e777f !important; }
.search-form :-ms-input-placeholder { /* IE 10+ */  color: #6e777f !important; }
.search-form :-moz-placeholder { /* Firefox 18- */  color: #6e777f !important; }
.search-form button { display: inline-block; width: 93px; }

.booking-box input[type="text"], 
.booking-box input[type="email"], 
.booking-box input[type="tel"], 
.booking-box textarea { background-color: #fff; }

.wpcf7 .wpcf7-not-valid { border: 1px solid var(--red); }
.wpcf7 .wpcf7-not-valid-tip { display: none; }
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { border: 2px solid var(--red); background-color: var(--lightRed); margin-top: 0; }
.wpcf7-spinner { position: absolute; }

.wpcf7 input[type="submit"] { font-size: 16px; width: 100%; transition: .3 ease; }
.booking-box .wpcf7 input[type="submit"] { font-size: 16px; background-color: var(--blue); }
input[type="submit"]:hover,
.wpcf7 input[type="submit"]:hover,
.booking-box .wpcf7 input[type="submit"]:hover  { background-color: var(--deepBlue); }


/*--------------------------------------------------------------
## Prices
--------------------------------------------------------------*/

.prices-book-cleaning .title-prices, 
.prices-book-cleaning .title-book { color: var(--black); }
.prices-book-cleaning a.btn-quote { display: block; background: var(--green); padding: 5px 10px; margin: -10px 0 10px; }
a.btn-quote { line-height: 1.6; margin-bottom: 30px; }
.prices th { color: var(--black); }
.prices .price div { color: var(--deepBlue); }
.prices-book-cleaning .prices .price div { color: var(--green); }
.prices-book-cleaning .row { align-items: center; }

.prices-toggle { background-color: #efefef !important; }
.prices-toggle li:before { display: none !important; }

.prices-book-gardening .btn-quote,
.prices-book-carpet .btn-quote { background-color: var(--green); }
.prices-book-carpet .prices .price div,
.prices-book-gardening .prices .price div { color: var(--green); }


/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/

.cleaners,
.gardeners { position: relative; }
.cleaners:before,
.gardeners:before { position: absolute; top: 0; left: 0; width: 100%; height: 300px; background-color: var(--lightBlue); content: ''; }
.wrapper-cleaners { margin-bottom: 30px; }
.wrapper-cleaners .heading { display: block; font-size: 30px; text-align: center; margin-bottom: 0; }
.wrapper-cleaners .cleaners__body { display: flex; justify-content: space-between; }
.wrapper-cleaners .cleaner-col { width: calc(25% - 10px); border-radius: 5px; overflow: hidden; }
.cleaner-col .cleaner__head { position: relative; height: 100px; background: linear-gradient(140deg, #007fff, #f57e7e); border-top-left-radius: 5px; border-top-right-radius: 5px; }
.cleaner-col .cleaner { position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); border-radius: 50%; border: 2px solid #fff; height: 126px; width: 126px; background-position: center; }
.cleaner-col .cleaner__body { padding: 60px 15px 15px; background-color: #fff; border: 2px solid #efefef; border-radius: 0 0 5px 5px; }
.cleaner-col .cleaner__body p { font-size: 16px; margin-bottom: 0; }

.wrapper-cleaners.sm .cleaner-col { width: calc(50% - 10px); }

.gardeners:before,
.gardeners .after-box { background-color: var(--lightGreen); }
.gardeners .cleaner-col .cleaner__head { background: linear-gradient(140deg, #74920c, #f57e7e); }


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

	.wrapper-cleaners .cleaners__body { flex-wrap: wrap; }
	.wrapper-cleaners .cleaner-col { width: calc(50% - 10px); }

}


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

	.wrapper-cleaners.sm .cleaner-col,
	.wrapper-cleaners .cleaner-col { width: calc(100% - 30px); margin: auto; }
	.cleaner-col .cleaner { height: 100px; width: 100px; }
	.cleaner-col .cleaner__head { height: 82px; }
	.cleaner-col .cleaner__body { padding-top: 50px; }

	.wrapper-cleaners .heading { font-size: 22px; }
}



/*--------------------------------------------------------------
## Site Footer
--------------------------------------------------------------*/

.site-footer { background-color: var(--darkBlue); color: #fff; padding-top: 20px; }
.site-footer .mobile-btn { display: none; }
.footer-services { background-color: var(--darkBlue); }
.footer-services span { text-align: left; font-weight: 600; color: #a9b2c3; }
.site-footer .logo { margin-right: 30px; }
.site-footer .footer__head { display: flex; align-items: center; }
.site-footer .footer__head p { font-size: 15px !important; font-weight: 600; margin-bottom: 0; }
.site-footer .footer__nav { display: flex; justify-content: space-between; padding-bottom: 50px; }

.footer-services ul { display: flex; flex-direction: column; width: 25%; padding: 0 15px; list-style: none; margin-left: 0; padding-left: 0; }
.footer-services ul li { text-align: left; }
.footer-services ul li + li { margin-top: 10px; }
.site-info { background-color: var(--deepBlue); color: #fff; border-top: 0; }
.site-info a { color: #fff !important; }
.site-info a:hover, 
.footer-services ul li a:hover { color: #fff !important; opacity: 0.7 !important; }


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

	.site-footer .site-info { padding-bottom: 60px; }
	.site-footer a.mobile-btn { position: fixed; display: inline-block; bottom: -3px; background-color: #cb2b2b; border: 2px solid #fff; left: 50%; transform: translateX(-50%); color: #fff !important; z-index: 999; border-radius: 5px 5px 0 0; }
	.site-footer a.mobile-btn:visited,
	.site-footer a.mobile-btn:active,
	.site-footer a.mobile-btn:focus { color: #fff; }

}

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

	.site-footer .footer__head { flex-direction: column; text-align: center; }
	.site-footer .logo { margin-bottom: 20px; }
	.site-footer .footer__nav { flex-wrap: wrap;  }
	.footer-services ul { width: 50%; margin-bottom: 5px; }
	.footer-services ul li + li { margin-top: 5px; }
	.site-footer .footer__nav { padding-bottom: 30px; }

}

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

	.footer-services ul { width: 100%; }
	.footer-services ul li,
	.footer-services span,
	.site-footer .footer__head p { text-align: center; }

}


