@import url("https://use.typekit.net/obo7eys.css");

:root {
	--primary-color: #121212;
	--secondary-color: #0EA2FA;
	--tertiary-color: #48cae4;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "forma-djr-display", sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0;
	color: var(--primary-color);
}
body {
	font-family: "forma-djr-display", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 1px;
	color: #454545;
	background: #ffffff;
}
a {
	color: var(--secondary-color);
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition   : all 0.3s ease;
	-ms-transition    : all 0.3s ease;
	-o-transition     : all 0.3s ease;
	transition        : all 0.3s ease;
}
a:hover,
a:active,
a:focus,
a:focus:active {
	color: var(--tertiary-color);
}
.hide {
	display: none;
}

#ms--main--body {
	margin-top: 100px;
}




/* *********************************** */
/* CUSTOM CONTAINERS */
/* *********************************** */
.container-custom-xl {
  max-width: 1800px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.container-custom-lg {
  max-width: 1600px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.container-custom-md {
  max-width: 1400px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
.container-custom-sm {
  max-width: 1200px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}



/* MAIN NAVIGATION */
#main-navigation {
	padding: 0;
	margin-bottom: 0;
	background: #ffffff;
	border-bottom: 1px solid var(--primary-color);
	/*-webkit-box-shadow: 0 0 10px rgba(0,0,0,.05);
    box-shadow: 0 0 10px rgba(0,0,0,.05);*/

	-webkit-transition: all 0.4s ease !important;
	-moz-transition: all 0.4s ease !important;
	-o-transition: all 0.4s ease !important;
	-ms-transition: all 0.4s ease !important;
	transition: all 0.4s ease !important;
}
#primary-nav {
	padding-top: 20px;
	padding-bottom: 20px;
}
.site--logo img {
	max-width: 200px;
	width: 100%;
}
#main-nav-items .navbar-nav {
	float: none;
}
#main-nav-items .navbar-nav li {
	padding-right: 25px;
	padding-left: 25px;
	float: none;
	display: inline-block;
	vertical-align: middle;
}
#main-nav-items .navbar-nav li.nav-icon {
	padding-right: 10px;
	padding-left: 10px;
}
#main-nav-items .navbar-nav > li > a {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #353535;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 0;

	-webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
#main-nav-items .navbar-nav > li a:hover {
	background: transparent;
}
#main-nav-items .navbar-nav > li.nav-icon svg {
	width: 25px;
	height: auto;	
}
#main-nav-items .navbar-nav > li.nav-icon svg path {
	-webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
#main-nav-items .navbar-nav > li.nav-icon a:hover svg path {
	fill: #0EA2FA;
}

#main-nav-items .navbar-nav > li.active a::before {
	content: "";
	position: absolute;
	z-index: 2;
	left: 0;
	right: 0;
}
#main-nav-items .navbar-nav > li a:before {
	content: "";
	position: absolute;
	z-index: -2;
	left: 0;
	right: 100%;
	bottom: 0;
	background: #0EA2FA;
	height: 4px;
	
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
#main-nav-items .navbar-nav > li a:hover {
	opacity: 1 !important;
}
#main-nav-items .navbar-nav > li a:hover:before {
	right: 0;
}
#main-nav-items .navbar-nav > li.nav-icon a:before {
	display: none;
}
#main-nav-items .navbar-nav > li.nav-item a.btn-nav {
	color: #353535;
	padding: 12px 20px 10px;
}
#main-nav-items .navbar-nav > li.nav-item a.btn-nav:hover {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #ffffff;
}
#main-nav-items .navbar-nav > li a.btn-nav:before {
	display: none;
}





.navbar-fixed-top {
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1010;
    background: #fff;
}

#secondary-nav {
	background: rgb(0 0 0 / 3%);
	padding: 10px 0;
}
.secondary-nav-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.secondary-nav-list li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	text-transform: uppercase;
}
.secondary-nav-list li a {
	color: #353535;
	text-decoration: none;
	font-weight: normal;
}
.secondary-nav-list li:last-child {
	margin-right: 0;
}
.secondary-nav-list li.contact-num img {
	max-width: 24px;
}
.navbar-right-btn li {
	display: block;
    float: none;
    text-align: right;
    text-transform: uppercase;
    /*padding: 14px 0;*/
    font-size: 14px;
    line-height: 20px;
}
.main-nav-items .open a:focus {
	background: transparent;
}
.navbar-right-btn .navbar-nav {
	float: none;
}
.navbar-right-btn .navbar-nav li > a.dropdown-toggle {
	padding: 0;
}
.navbar-right-btn .sub-nav-dropdown {
	right: 0;
}
.navbar-right-btn .sub-nav-dropdown li {
	text-align: left;
}
#mobile-nav-wrapper .navbar-nav ul {
	padding-left: 0;
	list-style: none;
	padding: 10px 15px;
}
#mobile-nav-wrapper .navbar-nav ul li {
	display: inline-block;
	width: auto;
}


/* MOBILE NAVIGATION */
#mobile-nav-wrapper {
	position: fixed;
    z-index: 1030;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    line-height: 1em;
    text-align: left;
    overflow: auto;
    pointer-events: none;
    background: #ffffff;
	max-width: 300px;
    margin-right: 0;
    margin-left: auto;

    -webkit-transform: translateX(100%);
    transform: translateX(100%);

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    -webkit-transition: -webkit-transform 400ms cubic-bezier(.694,0,.335,1);
    transition: -webkit-transform 400ms cubic-bezier(.694,0,.335,1);
    -o-transition: transform 400ms cubic-bezier(.694,0,.335,1);
    transition: transform 400ms cubic-bezier(.694,0,.335,1);
    transition: transform 400ms cubic-bezier(.694,0,.335,1),-webkit-transform 400ms cubic-bezier(.694,0,.335,1);
}
#mobile-nav-wrapper.open-nav {
	box-shadow: 0 0 10px rgba(0,0,0,.08);
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);

    -webkit-transition: -webkit-transform 600ms cubic-bezier(.694,0,.335,1);
    transition: -webkit-transform 600ms cubic-bezier(.694,0,.335,1);
    -o-transition: transform 600ms cubic-bezier(.694,0,.335,1);
    transition: transform 600ms cubic-bezier(.694,0,.335,1);
    transition: transform 600ms cubic-bezier(.694,0,.335,1),-webkit-transform 600ms cubic-bezier(.694,0,.335,1);

	opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;

}
#mobile-logo{
	text-align: center;
	margin: 30px auto;
	display: block;
}
#mobile-nav-wrapper .navbar-nav{
	float: none !important;
	margin: 0 !important;
}
#mobile-nav-wrapper .navbar-nav > li{
	width: 100%;
	float: none;
	display: inline-block;
	text-align: center;
}
#mobile-nav-wrapper .navbar-nav > li > a{
	float: none;
	width: 100%;
	display: inline-block;
	margin: 0;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#mobile-nav-wrapper .navbar-icon{
	top: 0px;
}
#mobile-nav-wrapper .navbar-nav > li > a:hover, #mobile-nav-wrapper .navbar-nav > li > a:focus, #mobile-nav-wrapper .navbar-nav > li.active > a{
	background: transparent;
	opacity: 1;
}

#mobile-nav-wrapper .navbar-icons{
	text-align: center;
}
#mobile-nav-wrapper .navbar-icons > li{
	display: inline-block;
	width: auto;
}
#mobile-nav-wrapper .navbar-icons > li > a{
	display: inline-block;
	width: auto;
	padding: 15px;
}
#mobile-nav-wrapper .navbar-icons > li > a.dropdown-image{
	padding: 0 !important;
    top: 5px;
    margin-left: 8px;
}

.mobile-nav-menu li a {
	font-weight: 600;
	color: #fff !important;
}

.mobile-nav-menu .nav-btn-wrap a {
	width: 200px !important;
	margin: 0 auto;
}

#mobile-nav-trigger{
	width: 50px;
	position: fixed;
	top: 28px;
	right: 22px;
	z-index: 1040;

	-webkit-transition: all 0.4s ease !important;
	-moz-transition: all 0.4s ease !important;
	-o-transition: all 0.4s ease !important;
	-ms-transition: all 0.4s ease !important;
	transition: all 0.4s ease !important;
}
#nav-trigger {
	position: relative;
	/*margin-top: 10px;*/
	width: 50px;
    height: 20px;
    padding: 0;
	-moz-transition:0 .4s;
	-o-transition:0 .4s;
	-webkit-transition:0 .4s;
	transition:transform .4s;
	opacity:1!important;
	/*position:relative;*/
	/*z-index:998;*/

	-webkit-backface-visibility: hidden; 
    -moz-backface-visibility:    hidden; 
    -ms-backface-visibility:     hidden;
}
#nav-trigger:before{
	border-radius: 2px;
	content: '';
    /*background: #222;*/
    width: 40px;
    height: 34px;
    position: absolute;
    left: 8px;
    top: -7px;

    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
#nav-trigger:hover{
	cursor: pointer;
}

#nav-trigger span {
	-moz-transition:.4s;
	-o-transition:.4s;
	-webkit-transition:.4s;
	transition:.4s;
	background-color: #545454;
	display:block;
	height:2px;
	left:14px;
	margin-top:-1px;
	position:absolute;
	top:50%;
	width: 28px;
	-webkit-backface-visibility: hidden; 
    -moz-backface-visibility:    hidden; 
    -ms-backface-visibility:     hidden;
}
#nav-trigger span:first-child {
	-moz-transform:translate(0,-7px);
	-ms-transform:translate(0,-7px);
	-webkit-transform:translate(0,-7px);
	transform:translate(0,-7px);
}

#nav-trigger span:last-child {
	-moz-transform:translate(0,7px);
	-ms-transform:translate(0,7px);
	-webkit-transform:translate(0,7px);
	transform:translate(0,7px);
}

body.nav-open #nav-trigger {
	-moz-transform: rotate(90deg) translate(-3px, 0);
	-ms-transform: rotate(90deg) translate(-3px, 0);
	-webkit-transform: rotate(90deg) translate(-3px, 0);
	transform: rotate(90deg) translate(-3px, 0);
	position: fixed;
}

body.nav-open #nav-trigger span {
	/*background-color:#FFF;*/
}

body.nav-open #nav-trigger span:first-child {
	-moz-transform:rotate(45deg) translate(0,0);
	-ms-transform:rotate(45deg) translate(0,0);
	-webkit-transform:rotate(45deg) translate(0,0);
	transform:rotate(45deg) translate(0,0);
}

body.nav-open #nav-trigger span:nth-child(2) {
	-moz-transform:scaleX(0);
	-ms-transform:scaleX(0);
	-webkit-transform:scaleX(0);
	transform:scaleX(0);
}

body.nav-open #nav-trigger span:last-child {
	-moz-transform:rotate(-45deg) translate(0,0);
	-ms-transform:rotate(-45deg) translate(0,0);
	-webkit-transform:rotate(-45deg) translate(0,0);
	transform:rotate(-45deg) translate(0,0);
}


#mobile-nav-inject{
	padding: 80px 10px;
}
#mobile-nav-inject ul.navbar-nav > li{
	position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
#mobile-nav-inject ul.navbar-nav > li > a.dropdown-image {
	display: inline-block;
}
#mobile-nav-inject ul.navbar-nav.nav-icons {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
#mobile-nav-wrapper ul.navbar-nav.nav-icons > li {
	width: auto;
}

#mobile-nav-inject .main-nav-items {
	float: none !important;
	margin-right: 0 !important;
	text-align: left;
}


/* FOOTER */
#footer {
	border-top: 1px solid var(--primary-color);
}
.footer-logo {
	padding-top: 80px;
	padding-bottom: 80px;
}
.footer-menu {
	padding: 80px 50px;
}
.footer-logo img {
	max-width: 180px;
}
.footer-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.footer-bottom {
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: 1px solid var(--primary-color);
}
.footer-bottom ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
	flex-wrap: wrap;
}
.footer-bottom ul li {
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.footer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-menu ul li {
	padding-bottom: 10px;
}
.footer-menu ul li  a {
	color: #353535;
	-webkit-transition: all 0.3s ease;
	-moz-transition   : all 0.3s ease;
	-ms-transition    : all 0.3s ease;
	-o-transition     : all 0.3s ease;
	transition        : all 0.3s ease;
}
.footer-menu ul li  a:hover {
	color: #0EA2FA;
	text-decoration: none;
}
.footer-col-border {
	border-right: 1px solid var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
.footer-social {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.footer-social li svg {
	width: 30px;
	height: auto;
}
.footer-social li {
	-webkit-transition: all 0.3s ease !important;
	-moz-transition: all 0.3s ease !important;
	-o-transition: all 0.3s ease !important;
	-ms-transition: all 0.3s ease !important;
	transition: all 0.3s ease !important;
}
.footer-social li:hover svg path{
	fill: #0EA2FA;
}

.footer-bottom a {
	font-weight: 400;
	color: #353535;
}
.footer-bottom a:hover {
	color: #0EA2FA;
	text-decoration: none;
}



.hide-header {
	opacity: 0;
	margin-top: -200px !important;
}
.show-header {
	opacity: 1;
	margin-top: 0px !important;
}




/***************************************/
/* HOME */
#hero-header {
	border-bottom: 1px solid var(--primary-color);
}
#hero-header .row {
	display: flex;
	align-items: flex-end;
}
.hero-content {
	padding: 50px 10%;
}
.hero-title {
	font-size: 58px;
    line-height: 66px;
    text-transform: uppercase;
    letter-spacing: 6px;
}
.hero-description {
	font-size: 24px;
    line-height: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.hero-swiper .swiper-slide .swiper-slide-bg {
	width: 100%;
	min-height: 90vh;
}
.swiper-slide-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}






.page-title {
	font-size: 52px;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
	font-size: 42px;
    line-height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-quicklinks-wrap a {
	text-decoration: none;
}
.service-image img {
	width: 100%;
	height: 500px;
    object-fit: cover;
}
.services-quicklinks .service-image {
	overflow: hidden;
}
.services-quicklinks .service-image img {
	-webkit-transition: all 0.4s ease !important;
	-moz-transition: all 0.4s ease !important;
	-o-transition: all 0.4s ease !important;
	-ms-transition: all 0.4s ease !important;
	transition: all 0.4s ease !important;
}
.services-quicklinks:hover .service-image img {
	transform: scale(1.1);
}
.service-details h3 {
	font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2b2b2b;
    border-bottom: 3px solid var(--primary-color);
/*    min-height: 70px;*/
	padding-bottom: 15px;
    margin-bottom: 20px;
}
.service-description {
	min-height: 120px;
}
.service-details p {
	color: #353535;
}

.custom-swiper-button-1 {
	background: #ffffff;
    width: 55px !important;
    height: 55px !important;
    padding: 5px;
    border-radius: 100%;
    box-shadow: 0px 0px 15px -3px rgba(0,0,0,0.2);
}
.custom-swiper-button-1::after {
	font-size: 28px !important;
	font-weight: 600;
	color: var(--primary-color);
}
.for-custom-swiper-button .swiper-button-next {
	right: -15px;
}
.for-custom-swiper-button .swiper-button-prev {
	left: -15px;
}


.bg-image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	min-height: 600px;
}
.custom-bg-height {
	min-height: 90vh;
}

.blurb-wrap {
	text-align: center;
}
.blurb-image {
	width: 150px;
	height: 150px;
	box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 10px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blurb-image svg {
	max-width: 70px;
    height: auto;
    
}
.cta-section {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
}
.cta-section:before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.05;
}
.cta-section .section-title {
	font-size: 56px;
	line-height: 64px;
	letter-spacing: 4px;
}










.booking-header h2 {
	font-size: 32px;
	line-height: 44px;
}
.landing-booking-wrap .sub-header {
	font-size: 24px;
	line-height: 32px;
}
.btn.search-btn {
	background: #0EA2FA;
	color: #fff;
    font-size: 30px;
    height: 60px;
    width: 60px;
    padding: 0;
}
.btn.search-btn:before {
	font-size: 36px;
}
.booking-form-section {
	background: #fff;
	padding: 50px;
	border-radius: 4px;
}
.booking-form-section .book-now-btn {
	/*padding: 20px !important;*/
    font-size: 20px;
}
.booking-form-section .br-w {
    border-right: 1px solid #ccc;
    padding-right: 10px;
}
.partnership-logo-wrap img {
	margin: auto;
}
.services-content p, .services-price .sm-text, .process-content p {
	font-size: 14px;
}
.services-header {
	border-bottom: 2px solid #0EA2FA;
    padding-bottom: 8px;
}
.services-price .from-text {
	font-size: 12px;
}
#services .services-price p.price {
	font-size: 36px;
}
.grand-total-wrap p {
	font-size: 26px;
	font-weight: 700;
}
.booking-details .book-now-btn, .booking-details .book-now-btn:hover, .booking-details .book-now-btn:focus, .booking-details .book-now-btn:active {
	padding: 20px !important;
    font-size: 20px;
}
.services-price sup {
	top: -14px;
}
#housekeeping-process, #faqs {
	background: #FAFAFA;
}
#housekeeping-process .section-header-wrap, #benefits .section-header-wrap {
	padding: 0 50px;
}
.process-ql-wrap {
	padding: 0 50px;
}
.process-img img {
	margin: auto;
}
#leaving-without-trace .container-fluid {
	padding: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
#leaving-without-trace .section-header-wrap {
	padding: 30px 200px 30px 0;
}
.learn-more {
	font-size: 14px;
	font-weight: bold;
}
.ways-to-clean-wrap {
	padding: 100px 50px;
}
.ways-img {
	background: #E0E0E0;
    /* padding: 50px; */
    border-radius: 100%;
    margin: auto;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ways-img img {
	max-width: 60px;
}
.button .book-now-btn {
	font-weight: bold;
}
.cta-address p:first-child {
	font-weight: bold;
	font-size: 18px;
}
.cta-details-wrap {
	padding: 150px;
}
#cta-section {
	color: #fff;
	padding: 150px;
	max-width: 1400px;
    margin: auto;
    margin-top: -260px;
}
.cta-contact-details p {
	font-size: 22px;
}



/* FAQs */
#faqs-section .sec-header {
	max-width: 68%;
	margin: auto;
}
.faq-wrap {
	position: relative;
	border-radius: 15px;
	box-shadow: 0px 0px 99px #00000019;
	margin-left: 40px;
	margin-bottom: 30px;
	padding: 20px 30px 20px 70px;
	z-index: 1;
}
.faq-icon {
	position: absolute;
	height: 50px;
	width: 50px;
	border-radius: 200px;
	border: 1px solid #3c3c3c;
	text-align: center;
	top: 8px;
    left: -25px;
}
.faq-icon h4 {
	font-size: 28px;
}
.faq-icon:before {
	content: '';
	position: absolute;
	top: 4px;
	right: -4px;
	left: 4px;
	bottom: -4px;
	border-radius: 200px;
	background: #0EA2FA;
	z-index: -1;
}
.panel-collapse.collapse.in {
	min-height: 80px;
}
.faq-collapse .panel-default > .panel-heading {
	padding: 0;
	border: none;
	background: transparent;
}
.faq-collapse .panel-default > .panel-heading p {
	line-height: 20px;
}
.faq-collapse .panel {
	border: none;
	box-shadow: none;
	margin-bottom: 0;
	background: transparent;
}
.faq-collapse .panel-default > .panel-heading + .panel-collapse > .panel-body {
	background: transparent;
	border: none;
}
.faq-collapse .panel-body p {
	font-size: 14px;
}
.faq-collapse .panel-body {
	padding: 0;
}


/* SERVICES */
.we-do-cleaning {
	background: #FAFAFA;
	padding: 100px 50px;
}
.need-help-wrap img {
	background: #F5F5F5;
    padding: 50px;
    border-radius: 100%;
    margin: auto;
}
#need-cleaning-wrap {
	position: relative;
}
#need-cleaning-wrap:before, .services-wrap:before {
    content: '';
    position: absolute;
    background-color: #000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .5;
} 
.img-area {
	min-height: 427px;
	background: #eee;
	margin-bottom: 10px;
	position: relative;
}
.img-area-small {
	min-height: 208px;
	background: #eee;
}
.bg-image-service{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.blue-borderline {
	border-bottom: 1px solid #0EA2FA;
	padding-bottom: 30px;
    margin-bottom: 50px;
}
.services-wrap {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 300px;
	position: relative;
	padding: 30px;
}
.services-col h4 {
	position: relative;
	z-index: 1010;
}
#other-services a:hover {
	text-decoration: none;
}
.services-about-img img {
	margin: auto;
}
#services-product a {
	color: #353535;
}
#services-product a:hover {
	text-decoration: none;
}
#services-product .product-price p {
	font-size: 24px;
}
#services-product .product-price p sup {
	font-size: 14px;
}


/* BOOKING */
.booking-wrap {
	box-shadow: 0 0 10px rgba(0,0,0,.05);
	padding: 100px;
}
.booking-img img {
	margin: auto;
}
.login-account a {
	font-weight: normal;
}
.form-group h5 {
	font-size: 14px;
	color: #054D84;
	margin-bottom: 16px;
	line-height: 20px;
}
/*.checkbox-inline input {
	width: 100px;
	height: 100px;
}*/
.gray-borderline {
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}
.radio-toolbar label {
    display: inline-block;
    background-color: transparent;
    padding: 13px 20px;
    font-size: 14px;
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    color: #6E6E6E;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.radio-toolbar label:hover {
  	background-color: transparent;
    border-color: #0EA2FA;
    color: #0EA2FA;
}
.radio-toolbar input[type="radio"]:focus + label {
    background-color: transparent;
    border-color: #0EA2FA;
    color: #0EA2FA;
}
.radio-toolbar input[type="radio"]:checked + label {
    background-color: transparent;
    border-color: #0EA2FA;
    color: #0EA2FA;
}
.blue-btn, .blue-btn:hover, .blue-btn, .blue-btn:focus {
	background: #0EA2FA;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 20px !important;
	border: 2px solid #0EA2FA;
}
.blue-btn.back-btn {
	background: transparent;
	color: #0EA2FA;
}
.blue-btn.back-btn:hover {
	background: #0EA2FA;
	color: #fff;
}
/*.total-price-wrap h4 {
	color: #054D84;
}*/
/*#payment-wrap .radio-toolbar label {
	padding: 80px 20px;
}*/
.change-payment p a, .promo-type p a {
	font-weight: normal;
}
.panel-heading h5, #booking-section .booking-summary-wrap h5 {
	color: #054D84;
}
#booking-section .panel-group .panel {
	margin-bottom: 20px;
	border-radius: 0 !important;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	border: 0;
}
#booking-section .panel-heading {
	padding: 30px;
}
#booking-section .panel-body {
	border-top: 0;
	background: #fff;
	padding: 0 26px;
}
#booking-section .booking-summary-wrap {
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	padding: 30px;
}
.booking-details .label-text {
	color: #d1d1d1;
}
.account-dashboard-wrap-2 a.order-no, .account-dashboard-wrap-2 a.order-no:hover, .account-dashboard-wrap-2 a.order-no:focus {
	text-decoration: underline;
	color: #0EA2FA;
}
.booking-fullview th {
	font-size: 14px;
}
#booking-confirmation-modal .modal-body {
	padding: 0;
}
#booking-section .checkout-panel {
	padding: 0;
}
.booking-collapse .ion-chevron-down {
    display: none;
}
.booking-collapse.collapsed .ion-chevron-down {
    display: block;
}
.booking-collapse.collapsed .ion-chevron-up {
    display: none;
}


/* OUR PRODUCT */
.our-product-ql {
	background: #FAFAFA;
	padding: 80px 50px;
}
.our-product-img img {
	/*max-width: 300px;*/
	margin: auto;
}
#our-product .our-product-img img {
	max-width: 100%;
}
#solution-section {
	background: #FAFAFA;
}
.solution-ql img {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 100%;
    margin: auto;
}
.services-col h2 {
	position: relative;
	z-index: 1010;
}


/* NAVS */
.nav-tabs > li, .nav-tabs > li a, .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li > a:hover, .nav-tabs > li.active > a:focus {
	color: #353535 !important;
	font-size: 28px;
	background: transparent;
	border: 0;
}


/* BOOKING */
.booking-wrap .section-header-wrap {
	max-width: 600px;
	margin: auto;
}
.check-box-label {
	border: 1px solid #D6D6D6;
}
.box-shadow-01 {
    box-shadow: none !important;
}
/*.check-box-01 input[type=checkbox] {
	right: 30px !important;
	top: 16px !important;
}*/
.service-time {
	margin-top: 30px;
    float: right;
}
.breakdown-wrap {
	border-bottom: 1px solid #D6D6D6;
    margin-bottom: 20px;
}
.services-modal .prod-desc p {
	text-align: center;
}
.services-modal .img-area {
	min-height: 250px;
}
.services-modal .img-area-small {
	min-height: 120px;
}
.coupon-wrap {
	display: inline-block;
	vertical-align: middle;
}
#coupon_code_wrap {
	text-align: right;
}






/* OUR TEAM */
.our-team-ql h4 {
	color: #0EA2FA;
}
.our-team-img img {
	width: 100%;
}


/* CLEANERS PROFILE */
.cleaners-img img {
	/*height: 250px;*/
	object-fit: cover;
	width: 100%
}
#cleaners-profile .cleaners-position span {
	border-bottom: 2px solid #0EA2FA;
    padding-bottom: 8px;
}
.cleaners-name-wrap h3 {
	color: #0EA2FA;
}

/* ACCOUNT PROFILE */
#onboarding-account-section {
	margin-top: 100px;
}


/* SHOP */
#shop-product .product-price p {
	font-size: 32px;
}
#shop-product .product-price .sm-text {
	font-size: 14px;
	top: -14px;
}


/* PRODUCT PAGE */
.prod-img-wrap .prod-img {
	background: #fafafa;
	padding: 80px;
}
.prod-list-gallery-wrap .prod-img-list {
	background: #fafafa;
	padding: 20px;
}
.prod-details-wrap .prod-price p {
	font-weight: bold;
	font-size: 22px;
}
.add-to-cart-wrap .add-to-cart-btn {
	background: #0EA2FA;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
}





.subscription-wrap {
	background: #fff;
    padding: 50px;
    border-radius: 4px;
}
.subs-btn {
	margin-top: 34px;
}

.coming-soon-wrap img {
	max-width: 300px;
    margin-bottom: 30px;
}
.newsletter-wrap {
	background: #fff;
	padding: 50px;
	border-radius: 5px;
}

.newsletter-field-wrap {
	display: flex;
	align-items: flex-start;
}
.newsletter-field-wrap .form-group {
	margin-bottom: 0;
}
.newsletter-field-wrap .form-group:first-child {
	flex-grow: 1;
	/*padding-right: 15px;*/
}


.social-media-wrap {
	padding-top: 50px;
}
.social-media-wrap ul {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-media-wrap ul li {
	padding: 0 10px;
}
.text-info {
	color: #0EA2FA;
}
.rating-question {
	font-weight: bold;
}
.rating > label:before {
	font-size: 24px !important;
}



/* CUSTOMER ACCOUNT */
.list-inline.booking-btn-wrap > li {
	vertical-align: middle;
	float: right;
}



/* *********************************** */
/*** FORMS ***/
.field-row {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.field-row .custom-col {
	padding-left: 0;
	padding-right: 0;
}
.form-control {
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1px;
	padding: 10px;
	height: 50px;
	border-radius: 0;
	border: 1px solid var(--primary-color);
	box-shadow: none;
}
.input-group .input-group-text {
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1px;
	height: 50px;
	border-radius: 0;
	border-top: 1px solid var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
	border-left: 1px solid var(--primary-color);
	box-shadow: none;
	background: #ffffff;
}
.form-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 1px;
	margin-bottom: 0;
}
.help-block {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	letter-spacing: 1px;
}













/* *********************************** */
/*** HELPERS ***/
/* *********************************** */
.no-scrollbar {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
}

.no-scrollbar::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}


/* ************************ */
/* TYPOGRAPHY */
.text-2xs {
  font-size: 10px;
  line-height: 18px;
}
.text-xs {
  font-size: 12px;
  line-height: 20px;
}
.text-sm {
  font-size: 14px;
  line-height: 22px;
}
.text-md {
  font-size: 16px;
  line-height: 24px;
}
.text-lg {
  font-size: 18px;
  line-height: 26px;
}
.text-xl {
  font-size: 20px;
  line-height: 28px;
}
.text-2xl {
  font-size: 22px;
  line-height: 30px;
}
.text-3xl {
  font-size: 24px;
  line-height: 32px;
}
.text-4xl {
  font-size: 26px;
  line-height: 34px;
}


.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-white {
	color: #ffffff;
}
.text-red {
	color: #f00;
}

.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}

.fw-bold {
	font-weight: 600;
}


/* ************************ */
/* MARGINS */
.m-0 {
	margin: 0 !important;
}
.mx-auto {
	margin: auto !important;
}

.mt-20 {
	margin-top: 20px !important;
}
.mt-30 {
	margin-top: 30px !important;
}
.mt-50 {
	margin-top: 50px !important;
}
.mt-100 {
	margin-top: 100px !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-50 {
	margin-bottom: 50px !important;
}
.mb-100 {
	margin-bottom: 100px !important;
}
.my-50 {
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

/* ************************ */
/* PADDINGS */
.p-0 {
	padding: 0 !important;
}

.pt-10 {
	padding-top: 10px !important;
}
.pt-15 {
	padding-top: 15px !important;
}
.pt-20 {
	padding-top: 20px !important;
}
.pt-30 {
	padding-top: 30px !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pt-80 {
	padding-top: 80px !important;
}
.pt-100 {
	padding-top: 100px !important;
}

.pb-10 {
	padding-bottom: 10px !important;
}
.pb-20 {
	padding-bottom: 20px !important;
}
.pb-30 {
	padding-bottom: 30px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}


.pl-15 {
	padding-left: 15px !important;
}

.pr-15 {
	padding-right: 15px !important;
}

.px-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.py-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}
.py-80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}


/* ************************ */
/* BACKGROUND COLOR */
.bg-light-gray {
	background: #f8f8f8;
}


/* ************************ */
/* BORDERS */
.border-top-black {
	border-top: 1px solid var(--primary-color);
}
.border-bottom-black {
	border-bottom: 1px solid var(--primary-color);
}

.border-right {
	border-right: 1px solid var(--primary-color);
}

.d-flex {
	display: flex;
}
.align-items-center {
	align-items: center;
}
.align-items-end {
	align-items: flex-end;
}
.flex-wrap {
	flex-wrap: wrap;
}
.text-wrap {
  text-wrap: wrap;
}


.max-w-820 {
	max-width: 820px;
	width: 100%;
}
.max-w-800 {
	max-width: 800px;
	width: 100%;
}
.max-w-550 {
	max-width: 550px;
	width: 100%;
}
.max-w-500 {
	max-width: 500px;
	width: 100%;
}
.max-w-400 {
	max-width: 400px;
	width: 100%;
}
.max-w-350 {
	max-width: 350px;
	width: 100%;
}
.max-w-300 {
	max-width: 300px;
	width: 100%;
}
.max-w-250 {
	max-width: 250px;
	width: 100%;
}

/* ************************ */
/* BUTTONS */
.btn {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 16px 30px 14px;
	border-radius: 50px;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition   : all 0.3s ease;
	-ms-transition    : all 0.3s ease;
	-o-transition     : all 0.3s ease;
	transition        : all 0.3s ease;
}

.btn-primary {
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus:active {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
	outline: none !important;
	color: #ffffff;
}
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active{
	background: #6d6e71;
	outline: none;
	border-color: #6d6e71;
}

.btn-blue{
	background: #75cde5;
	border-color: #75cde5;
}
.btn-blue:hover{
	background: #101010;
	border-color: #101010;
}
.btn-sm {
	font-size: 14px;
	line-height: 20px;
	padding: 12px 20px 10px;
}


.custom-slider-arrow {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.custom-slider-arrow .custom-swiper-button {
	position: relative;
	top: 0;
	width: 100%;
	max-width: 70px;
	height: auto;
	margin-top: 0;
}
.custom-slider-arrow .custom-swiper-button.swiper-button-prev {
	left: 0;
}
.custom-slider-arrow .custom-swiper-button.swiper-button-next {
	right: 0;
}
.custom-slider-arrow .swiper-button-next:after {
	background-image: url(../img/icons/arrow-right-outline.svg);
}
.custom-slider-arrow .swiper-button-prev:after {
	background-image: url(../img/icons/arrow-left-outline.svg);
}
.custom-slider-arrow .swiper-button-next:after,
.custom-slider-arrow .swiper-button-prev:after {
	content: '' !important;
	background-size: 70px;
	background-position: center;
	background-repeat: no-repeat;

	width: 100%;
	height: 35px;
}


/**********************************/
/* TESTIMONIAL */
#testimonials-swiper {
	padding-top: 35px;
}
#testimonials-swiper .custom-swiper-button {
	top: 0;
    width: 100%;
    max-width: 70px;
    height: auto;
    margin-top: 0;
}
#testimonials-swiper .swiper-button-next {
	right: 0;
}
#testimonials-swiper .swiper-button-prev {
	left: auto;
	right: 85px;
}
#testimonials-swiper .swiper-button-next:after {
	background-image: url(../img/icons/arrow-right-outline.svg);
}
#testimonials-swiper .swiper-button-prev:after {
	background-image: url(../img/icons/arrow-left-outline.svg);
}
#testimonials-swiper .swiper-button-next:after,
#testimonials-swiper .swiper-button-prev:after {
	content: '' !important;
	background-size: 70px;
	background-position: center;
	background-repeat: no-repeat;

	width: 100%;
	height: 35px;
}
.testimonial-head {
	border-bottom: 1px solid var(--primary-color);
	padding: 30px 0;
	margin-bottom: 30px;
}
.testimonial-name h3 {
	font-size: 20px;
	line-height: 28px;
}
.testimonial-ratings img {
	max-width: 150px;
    margin-right: 0;
    margin-left: auto;
}
.testimonial-content {
	max-width: 1000px;
	width: 100%;
	font-size: 18px;
	line-height: 30px;
}

.tcp-service-image img {
	height: 280px;
	width: 100%;
	object-fit: cover;
}



.custom-content-pb {
	padding-bottom: 200px;
}
.custom-content-px {
	padding: 0 10%;
}

#ways-to-clean > .container-fluid > .row {
	display: flex;
	align-items: center;
}


/* GALLERY */
.masonry-gallery {
	column-count: 4;
	column-gap: 20px;
}
.masonry-item {
	/*display: inline-block;*/
	width: 100%;
	margin-bottom: 20px;
}
.masonry-item img {
	width: 100%;
	height: auto;
	cursor: pointer;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}
.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}
.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}
.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
	display: none;
}
.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}
.mfp-ajax-cur {
	cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
	cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.mfp-loading.mfp-figure {
	display: none;
}
.mfp-hide {
	display: none !important;
}
.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}
.mfp-preloader a {
	color: #CCC;
}
.mfp-preloader a:hover {
	color: #FFF;
}
.mfp-s-ready .mfp-preloader {
	display: none;
}
.mfp-s-error .mfp-content {
	display: none;
}
button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}
.mfp-close:active {
	top: 1px;
}
.mfp-close-btn-in .mfp-close {
	color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}
.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}
.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
	margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}
.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}
.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}
.mfp-arrow-left {
	left: 0;
}
.mfp-arrow-left:after {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}
.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
	right: 0;
}
.mfp-arrow-right:after {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}
.mfp-arrow-right:before {
	border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
	top: -40px;
}
.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}
.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}
.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}
.mfp-figure figure {
	margin: 0;
}
.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}
.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}
.mfp-image-holder .mfp-content {
	max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/*** Remove all paddings around the image on small screen */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}



.ways-to-clean-icons {
	padding-left: 50px;
	padding-right: 50px;
}

.project-details-wrap {
	padding: 50px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-direction: column;
}


#projects .row:last-child {
	border-bottom: 0 !important;
}
.project-subtitle {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 10px;
}
.project-name {
	font-size: 38px;
	font-weight: 600;
	line-height: 46px;
}

.project-slider-wrap {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #000000;
}
.project-slider-wrap .custom-col {
	display: flex;
	align-items: stretch;
}

.custom-project-slider .kn-slider-wrapper {
	border-left: 1px solid #000000;
	padding: 20px 0 20px 20px;
	width: 100%;
}
.project-slide-wrap {
	padding: 20px 0 20px 20px;
}
.custom-project-slider .swiper-slide img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	object-position: center;
}

/*****************************/
/*** SERVICES - INNER PAGE ***/
#inner-service-header .row {
	display: flex;
	align-items: flex-end;
}
.inner-service-header-content {
	padding-right: 30px;
}
#inner-service-swiper .swiper-slide img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}
.service-icon-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.service-icon-wrap .blurb-wrap {
	max-width: 250px;
	width: 100%;
}


/*****************************/
/*** CONTACT US ***/
.contact-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.contact-details ul li {
	padding-bottom: 10px;
}
.contact-details ul li a {
	font-size: 22px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 1px;
	color: var(--primary-color);
}
.contact-details ul li a:hover {
	color: #0EA2FA;
	text-decoration: none;
}
.contact-social-icons {
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.contact-social-icons li a svg {
	width: 30px;
	height: auto;
}


.blog-category-list {
	text-align: center;
	margin-bottom: 20px;
}
.blog-category-list > li > a {
	font-size: 14px;
	font-weight: 600;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--primary-color);
	padding: 10px 5px;
}
.blog-category-list > li > a:hover {
	text-decoration: none;
	color: var(--secondary-color);
}
.blog-category-list > li.active > a {
	border-bottom: 2px solid var(--secondary-color);
}


#blog-posts-masonry .post-card .image-body {
	margin-bottom: 25px;
}
#blog-posts-masonry .post-card .image-body .image-wrap .image {
	min-height: 250px;
}
#blog-posts-masonry .post-card .text .post-link:hover {
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition   : all 0.3s ease;
	-ms-transition    : all 0.3s ease;
	-o-transition     : all 0.3s ease;
	transition        : all 0.3s ease;
}
#blog-posts-masonry .post-card .text .post-link h2 {
	font-size: 22px;
	line-height: 30px;


	-webkit-transition: all 0.3s ease;
	-moz-transition   : all 0.3s ease;
	-ms-transition    : all 0.3s ease;
	-o-transition     : all 0.3s ease;
	transition        : all 0.3s ease;
}
#blog-posts-masonry .post-card .text .post-link:hover h2 {
	color: var(--secondary-color);
}
#blog-posts-masonry .post-card .text .post-card-meta {
	font-size: 14px;
	line-height: 18px;
}

.blog-post-container {
	max-width: 850px;
	margin: auto;
}
.blog-post-container .post-single-header .title {
	font-size: 32px;
	line-height: 40px;
	color: var(--primary-color);
}




/*****************************/
/*** RESPONSIVE ***/
/*****************************/
@media(max-width: 1199px) {
	.blurb-wrap {
		margin-bottom: 30px;
	}
	.border-lg-right-0 {
		border-right: 0;
	}
	.border-lg-left {
		border-left: 1px solid var(--primary-color);
	}
	.ways-to-clean-icons {
		padding-right: 0;
	}
	.footer-menu {
    	padding: 80px 30px;
	}
}
@media(max-width: 991px) {
	#ms--main--body {
		margin-top: 76px;
	}

	#primary-nav {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.site--logo img {
		max-width: 150px;
	}
	#main-nav-items .navbar-nav > li.nav-item a.btn-nav {
		text-align: center;
	}

	#hero-header .row {
		display: block;
	}
	.hero-title {
	    font-size: 50px;
	    line-height: 58px;
	}
	.hero-content {
		padding: 80px 50px;
	}
	.hero-swiper .swiper-slide .swiper-slide-bg {
		min-height: 500px;
	}

	.section-title {
    	font-size: 38px;
    	line-height: 46px;
	}
	.custom-content-px {
		padding-left: 50px;
		padding-right: 50px;
	}
	.custom-md-content-px {
		padding-left: 20px;
		padding-right: 20px;
	}
	.custom-content-pb {
    	padding-bottom: 50px;
	}
	.custom-bg-height {
		min-height: 500px;
	}

	#ways-to-clean .container-fluid .row {
		display: block;
	}

	.border-md-left-0 {
		border-left: 0;
	}
	.ways-to-clean-icons {
		padding: 0 !important;
	}
	.pb-lg-0 {
		padding-bottom: 0 !important;
	}

	.footer-logo {
		padding-bottom: 0;
		margin-bottom: 0 !important;
	}
	.footer-menu {
		padding: 50px 0;
	}
	.footer-col-border {
		border-right: 0;
		border-left: 0;
	}

	#inner-service-header .row {
    	display: block;
	}
	.inner-service-header-content {
		padding-bottom: 50px;
	}

	.cta-section .section-title {
		font-size: 52px;
		line-height: 60px;
	}

	.service-icon-wrap .blurb-wrap {
    max-width: 220px;
	}
	.service-icon-wrap .blurb-image img {
		max-width: 60px;
	}


	/*  PROJECT SLIDER */
	.project-details-wrap {
		padding: 50px 50px 0;
	}
	.custom-project-slider .kn-slider-wrapper {
		border-left: 0;
	}
	.project-slider-wrap .custom-col {
		width: 100%;
	}
	.custom-project-slider .kn-slider-wrapper {
		padding: 35px;
	}
	.custom-project-slider .swiper-slide img {
    height: 500px;
	}
}

@media(max-width: 767px) {
	.footer-logo {
		padding-bottom: 50px;
	}
	.footer-menu {
		padding-top: 0;
	}

	.testimonial-name {
		padding-bottom: 15px;
	}

	.custom-swiper-button-1 {
		width: 45px !important;
		height: 45px !important;
	}
	.custom-swiper-button-1::after {
		font-size: 24px !important;
	}
	.for-custom-swiper-button .swiper-button-next {
		right: -10px;
	}
	.for-custom-swiper-button .swiper-button-prev {
		left: -10px;
	}

	.field-row {
		display: block;
	}
	.field-row .custom-col {
		padding-left: 15px;
		padding-right: 15px;
	}

	.page-title {
		font-size: 46px;
    	line-height: 54px;
	}
	.cta-section .section-title {
		font-size: 48px;
		line-height: 56px;
	}

	/* PROJECT SLIDER */
	.custom-project-slider .swiper-slide img {
    height: 400px;
	}
}
@media(max-width: 575px) {
	.container-custom-lg,
	.container-custom-md {
		padding-left: 30px;
		padding-right: 30px;
	}

	#mobile-nav-trigger {
		right: 12px;
	}

	.hero-title {
        font-size: 38px;
        line-height: 46px;
        letter-spacing: 4px;
    }
	.hero-content {
		padding: 80px 30px;
	}
	.hero-description {
		font-size: 20px;
		line-height: 28px;
	}
	#hero-swiper .swiper-slide img {
		height: 350px;
	}

	.section-title {
    	font-size: 34px;
    	line-height: 42px;
	}
	.custom-content-px {
		padding-left: 30px;
		padding-right: 30px;
	}
	.custom-bg-height {
		min-height: 350px;
	}

	

	.blurb-image {
		width: 100px;
		height: 100px;
	}
	.blurb-image svg {
    	max-width: 50px;
	}

	.custom-xs-content-px {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-menu .footer-menu-item {
		font-size: 16px;
		line-height: 24px;
	}

	.for-custom-swiper-button {
		padding-left: 10px;
		padding-right: 10px;
	}
	.for-custom-swiper-button .swiper-button-next {
		right: 5px;
	}
	.for-custom-swiper-button .swiper-button-prev {
		left: 5px;
	}
	.service-image img {
		height: 400px;
	}

	#testimonials-swiper .custom-swiper-button {
		max-width: 50px;
	}
	#testimonials-swiper .swiper-button-next:after,
	#testimonials-swiper .swiper-button-prev:after {
		background-size: 50px;
	}
	#testimonials-swiper .swiper-button-prev {
		right: 65px;
	}

	.page-title {
		font-size: 38px;
    	line-height: 46px;
	}

	.text-xl {
		font-size: 18px;
		line-height: 26px;
	}
	.text-2xl {
		font-size: 20px;
		line-height: 28px;
	}
	.text-3xl {
		font-size: 22px;
		line-height: 30px;
	}
	#inner-service-swiper .swiper-slide img {
    	height: 400px;
	}

	.cta-section .section-title {
		font-size: 46px;
		line-height: 54px;
  }

  .service-icon-wrap {
  	gap: 10px;
  }
	.service-icon-wrap .blurb-wrap {
		max-width: 160px;
	}


	/*  PROJECT SLIDER */
	.project-details-wrap {
		padding-left: 30px;
		padding-right: 30px;
	}
	.custom-slider-arrow .custom-swiper-button {
		max-width: 60px;
	}
	.custom-slider-arrow .swiper-button-next:after,
	.custom-slider-arrow .swiper-button-prev:after {
		background-size: 60px;
	}


}










