@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
  *:before,
  *:after {
    box-sizing:border-box
  }
  html {
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    width:100%;
    scroll-behavior: smooth;
    scroll-padding-top:80px;
  }
  body {
    font-family: 'Poppins', sans-serif;
    color: #343434; 
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-size:14px;
    overflow-x:hidden;
  }
  
  
.banner-form .form-control::placeholder {
  color: #fff !important;
  font-size: 12px;
}
.contact-form .form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}


:root {
  --primary-color:#1b4858;
  --secondary-color:#1e8dba;
  --light-black:#002a34;
  --dark-black:#022b35;
  --light-bg:#fff3f3;
  --dark-bg:#141419;
}

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top:0;
    margin-bottom:.5rem;
    color: #404040;
  }
  p {
    font-size: 14px;
      line-height: 28px;
      color: #343434;
      margin:0;
      text-align: justify;
   }
  ul{
      margin:0;
      padding:0;
  }
  a {
    color:#9b1a1e;
    text-decoration: none;
    background-color:transparent
  }
  a {
  color: #000;
  text-decoration: none;
}
  a:hover {
    color:#9b1a1e;
    text-decoration:underline
  }
  img {
    vertical-align:middle;
    border-style:none
  }
  label {
    display:inline-block;
    margin-bottom:.5rem;
  }
  button {
    border-radius:0
  }
  button:focus {
    outline:1px dotted;
    outline:5px auto -webkit-focus-ring-color
  }
  button,
  input,
  textarea {
    margin:0;
    font-family:inherit;
    font-size:inherit;
    line-height:inherit
  }
  button,
  input {
    overflow:visible
  }
  button {
    text-transform:none
  }
 
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled),
  button:not(:disabled) {
    cursor:pointer
  }
  button::-moz-focus-inner {
    padding:0;
    border-style:none
  }
  input[type="radio"] {
    box-sizing:border-box;
    padding:0
  }
  textarea {
    overflow:auto;
    resize:vertical
  }
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height:auto
  }
  ::-webkit-file-upload-button {
    font:inherit;
    -webkit-appearance:button
  }
  input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s !important;
  box-shadow: none;
  background: none !important;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control,
textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    box-shadow: none;
    background: none;
    border: none;
  
}


.contact-form {
  padding: 30px;
}

.form-area .form-control {
  border: none;
  border-bottom: 1px solid #8c8c8c;
  border-radius: 0;
  margin-bottom: 10px;
  padding: 6px;
}
textarea.form-control {
  padding:5px 10px 10px 0;
  height: 70px;
  max-height: 70px;
  background: none;
}
#customCheck1 {
  border-bottom: none !important;
  background: #fff;
  padding: 7px;
  border-radius: 5px;
}
.wpcf7-form-control.wpcf7-submit.has-spinner.theme-submit {
  border-bottom: none !important;
  padding: 15px 35px;
}
#input-captcha-cf7 {
  border: none !important;
  /*background: #fff;*/
  border-bottom:1px solid #fff;
}
.header-titles img {
  max-width: 90px;
  width: 100%;
}
.scroll-logo {
  display: none;
}
.sticky .main-logo {
  display: none;
}
.sticky .scroll-logo {
  display: block;
  width:100px;
}
.navbar-brand {
  display: inline-block;
  margin: 0;
  transition: .4s;
  width: 100px;
  padding: 0;
}
.sticky .navbar-brand {
  width: 120px;
  transition: .4s;
}
.title span {
  color: #45e6f5;
  font-weight: 600;
}
.banner-btn {
  padding: 0;
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.banner-btn li {
  list-style-type: none;
  display: inline-block;
  margin-right: 25px;
}
.banner-area a {
  color: var(--primary-color);
}
.default-btn::before, .default-btn-black::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--red-light);
  border-radius: 50%;
  z-index: -1;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: translateX(-50%) translateY(-5%) scale(0.4);
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  -webkit-transition: -webkit-transform .9s;
  transition: -webkit-transform .9s;
  transition: transform .9s;
  transition: transform .9s, -webkit-transform .9s;
}
.banner-btn li .default-btn {
  background-color: var(--secondary-color);
}
.banner-btn li .default-btn-black {
  background-color: var(--dark-bg);
}
.default-btn, .default-btn-black {
  padding: 8px 15px;
  text-align: center;
  color: #fff !important;
  font-size: var(--font-size);
  font-weight: 500;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  z-index: 0;
  background-color: var(--main-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 1px;
}

.default-btn:hover::before, .default-btn-black:hover::before  {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: translateX(-45%) translateY(0) scale(1);
  transform: translateX(-45%) translateY(0) scale(1);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.banner-btn li .default-btn::before {
  background-color: var(--primary-color);
}
.banner-btn li .default-btn-black::before {
  background-color:var(--red-light);
}


.banner-area::before{
  content: "";
  /*position: absolute;*/
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #20282b4a;
}
.banner-content{
  background: linear-gradient(to left,rgba(125, 185, 232, 0) 0,#385c6887 100%);
  padding: 30px 20px;
  position: relative;
}
.banner-area {
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8em 0 4em 0;
  position: relative;
}
.banner-auckland {
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/auckland-banner.jpg');
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-auckland .banner-content{
  background: linear-gradient(to left,rgba(125, 185, 232, 0) 0,#385c68ed 100%);
}
.banner-christchurch {
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/Christchurch-banner.jpg');
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-hamilton {
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/Hamilton-banner.jpg');
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-wellington {
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/Wellington-banner.jpg');
	background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-wellington .banner-content{
  background: linear-gradient(to left,rgba(30, 141, 186, 0.51) 0,#385c68b2 100%); 
}

.banner-area .title {
  font-size: 32px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
}
.banner-content p {
  color: #fff;
}

.about-list-item {
  display: flex;
  margin-top: 70px;
}
.about-list-item .services-list {
  min-width: 280px;
  padding-left: 30px;
}
.about-list-item .info {
  padding-left: 50px;
}
.appinment-forms {
  position: relative;
  z-index: 9;
  background: #ffffff;
  padding: 50px;
  box-shadow: 0 0 25px rgb(0 0 0 / 8%);
  border-radius: 20px;
  margin-left: 35px;
}
.about-style-four .appinment-forms {
  margin: 0;
    margin-bottom: 0px;
  position: relative;
  top: -80px;
  z-index: 9;
  margin-bottom: -80px;
}
.appinment-forms.standard {
  padding: 0;
}
.appinment-forms.standard .top-heading {
  /*! background: var(--dark-bg); */
  /*! border-radius: 10px 10px 0 0; */
  /*! padding: 20px; */
  position: relative;
  text-align: center;
  background-color: var(--secondary-color);
  /*background: linear-gradient(90deg, rgba(77,239,247,1) 34%, rgba(25,179,233,1) 100%);*/
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
}
.top-heading h2, .top-heading p, .intro p{
  color: #fff;
}







.choseus-style-one-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: 50% !important;
  padding-bottom: 170px;
  background-position: top left !important;
  background-repeat: no-repeat;
}
.choseus-style-one-area::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 50px;
  width: 54%;
  background: #fff;
}
.choseus-style-one-area::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 17%, var(--dark-bg) 38%);
  content: "";
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 87%;
  z-index: -1;
}

.choseus-style-one-area p, .choseus-style-one-area h4, .choseus-style-one-area h2 {
  color: #fff;
}
.bg-fixed {
  background-attachment: fixed !important;
}

.choseus-style-one-area .angle-shape {
  position: absolute;
  right: 54%;
  top: -50px;
  bottom: 0;
  content: "";
  border-left: 30px solid transparent;
  border-bottom: 50px solid #ffffff;
}
.default-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}


.about-list-item .services-list li {
  display: block;
  position: relative;
  padding-left: 40px;
  font-size:13px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.35s ease-in-out;
}


.about-list-item .services-list li::after {
   position: absolute;
  left: 0;
  top: 0;
  content: "";
  font-size: 12px;
  height: 24px;
  width: 24px;
  line-height: 23px;
/*   border: 2px solid #e7e7e7;     */
  text-align: center;
  border-radius: 50%;
  background: #f9f9f9;
  transition: all 0.35s ease-in-out;
  background: url(../images/check.svg) no-repeat;
  background-size: cover;
}


.location .services-list li{
  /*! font-size: 16px; */
  /*! line-height: 20px; */
  /*! position: relative; */
  list-style: none;
  margin-bottom: 10px;
  /*! border: 1px solid #d5d5d5; */
   padding:5px 0px 10px 0px; 
  /*! border-radius: 30px; */
}
.location .services-list li a{
  font-size: 14px;
  font-weight: 500;
  color: #4F4F57;
  border-radius: 30px;
  background: #EFEFEF;
  /*! display: flex; */
  /*! min-height: 45px; */
  /*! justify-content: center; */
  align-items: center;
  padding: 10px 35px;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  position: relative;
}
.location .services-list li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 16px;
  height: 19px;
  background: url(../images/locations.svg);
}



/*.about-list-item .services-list li:first-child::after {*/
/*  color: #FFF;*/
/*  border-color: transparent;*/
/*  font-weight: 500;*/
/*}*/
.call-us {
  display: flex;
  align-items: center;
  margin-top: 20px;
  background: #f00;
  border-radius: 25px;
}
.icon {
  /*! background: #fff; */
  padding: 7px;
  /*! border-radius: 4px; */
  /*! margin: 0px 7px; */
}
.call-us img {
  width: 20px;
}
.about-section .about-list-item {
  display: flex;
  margin-top: 20px;
}
.about-section {
  /*! margin: 30px 0; */
   background: #f4f4f4;
}
.about-section .about-list-item .services-list {
  width: 100%;
  padding-left: 0;
}
.about-section .services-list ul {
  column-count: 2;
  margin-bottom: 0;
}
.top_text {
  
  font-weight: 500;
  /*! letter-spacing: 2px; */
  color: var(--secondary-color);
  text-transform: capitalize;
  position: relative;
  /*padding-left: 15px;*/
  margin-bottom: 5px;
  font-size: 30px;
  
}
.content_text a{
  font-weight: 600;
}
.content_text a:hover{
  color: #48eaf6;
}

.left_border::after {
  /*position: absolute;*/
  /*content: "";*/
  width: 4px;
  height: 20px;
  left: 0;
  top: 0;
  background: var(--secondary-color);
  bottom: 0;
  margin: auto;
}


#site-header {
  max-width: 100%;
  margin: 0 auto;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  position: relative;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  
}

.sticky {
  position: fixed !important;
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0px;
  width: 100% !important;
  padding: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 4px 20px rgba(0,0,0,.1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-top: 0;
  max-width: 100%;
  border-radius: 0;
  position: fixed;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.23);
  -webkit-animation-duration: 0.7s;
  -webkit-animation-name: headfadeIn;
  animation-name: headfadeIn;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 11;
}



.choose-icon img {
  max-width: 60px;
}
.choose-style-one ul li {
  list-style: none;
}


.choose-style-one ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 20px 0 40px 0;
}
.heading {
  margin: 0px 0 10px 0;
  line-height: 28px;
}





.bottom-space {
  margin-bottom: 30px;
}
.service_img img {
transition: 0.5s all;
  max-width: 100px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #1e8dba63;
}
.services_detail {
  box-shadow: 0 0 5px rgb(0 0 0 / 8%);
  border-radius: 8px;
  margin: 5px;
  padding:20px;
  background: #1e8dba0a; 
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service_img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.service_img::after {
 position: absolute;
  left: 50%;
  bottom: -1px;
  content: "";
  height: 500px;
  width: 1200px;
  /*! background: url(https://365cleaners.co.nz/wp-content/uploads/2023/12/line.png); */  
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  margin-top: -88px;
  transform: translateX(-50%);
}
.service_content h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}
.service_content {
  padding: 12px 0;
}
.service_content p{
 /*! color:#fff; */
}
.checklist_wrapper{
  background-color: #072d3a8a;
  border-radius: 20px;
  align-items: center;
  border: 1px solid #E2E2E2;
}
.image_div.relative img {
  max-width: 300px;
}

.attachment-full.size-full {
  border-radius: 20px;
  width: 100%;
}


.fun-factor-area .shape img {
  height: 600px;
  animation: fadeRightLeft 10s linear infinite;
  z-index: 9;
  position: relative;
}

.blog-area {
  /*! background: url('https://validthemes.net/site-template/cleanu/assets/img/banner/7.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 9;
}
.blog-area::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  /*! opacity: 0.6; */
  background-color: #efefef;
  z-index: -1;
}
.blog-area .single-item {
	margin-bottom: 30px;
}

.blog-area .info {
	overflow: hidden;
	padding: 30px;
	position: relative;
	/*z-index: 1;*/
	background: #fff;
}
.blog-item .info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-area .heading {
  /*! color: #fff; */
}

.blog-post {
  background: #fff;
  margin: 20px 0;
  border-radius: 10px;
  padding: 10px;
}
.blog-post .entry-header-inner {
  padding: 20px 20px 10px 20px;
}
/*page not found*/
.error404 .main-logo {
  display: none;
}
.error404 .scroll-logo {
  display: block;
}
header .primary-menu > li > .sub-menu > li:hover > a {
    background: #1e8dba4a !important;
    border-radius:5px;
}
.error404 .primary-menu a, .error404 .primary-menu > li > .icon,
.page-template-thanks .primary-menu a, .page-template-thanks .primary-menu > li > .icon
{
    color: var(--primary-color) !important;
  }
.error404 .primary-menu .sub-menu a,
.page-template-thanks .primary-menu .sub-menu a{
    color: #fff !important;
}


/*page not found*/
.blog-post .thin {
  padding: 0 20px 20px 20px;
}
.btn-simple {
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 10px 35px;
	margin-top: 10px;
	font-size: 13px;
	text-decoration: none;
	color: var(--secondary-color);
}

.btn-simple i, .default-btn i {
	display: inline-block;
	font-size: 18px;
	margin-right: 4px;
}

.btn-simple::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 48px;
	background: var(--secondary-color);
	z-index: -1;
	opacity: 0.1;
	border-radius: 50%;
	transition: all 0.35s ease-in-out;
}

.btn-simple:hover::after {
	width: 100%;
	border-radius: 30px;
	opacity: 1;
}

.blog-area.grid-colum .info p:last-child {
	margin: 0;
}

.btn-simple:hover {
	color:  #fff !important;
}

.blog-area .item {
	background: #fff;
	/*! box-shadow: 0 0 25px rgb(0 0 0 / 8%); */
}

.blog-area .item .thumb {
	position: relative;
	z-index: 1;
}

.blog-area .item .thumb .date {
	position: absolute;
	left: 30px;
	bottom: 0;
	background:#000;
	color: #000;
	padding: 10px 24px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
}

.blog-area .item .thumb .date {
	background:var(--red-light);
	color: #fff;
	font-weight: 600;
}

.blog-area .item .thumb .date strong {
	display: block;
	font-size: 30px;
	font-weight: 700;
}

.blog-area .item .thumb .date::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	content: "";
	border-left: 0 solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid var(--color-secondary);
}

.blog-area .item .thumb .date::after {
	border-top: 15px solid var(--red-light);
}

.blog-area .meta {
	display: block;
	margin-bottom: 15px;
}

.blog-area .meta ul li {
	position: relative;
	z-index: 1;
	font-size: 13px;
	text-transform: uppercase;
	padding-right: 60px;
	display: flex;
	align-items: center;
}

.blog-area .meta ul li img {
	height: 35px;
	width: 35px !important;
	border-radius: 50%;
	margin-right: 10px;
}

.blog-area .meta ul li:last-child {
	padding-right: 0;
}

.blog-area .meta ul {
	display: flex;
	align-items: center;
	margin: 0;
}

.blog-area .meta ul li::after {
	position: absolute;
	right: 15px;
	top: 50%;
	content: "";
	height: 1px;
	width: 30px;
	background: #000;
}

.blog-area .meta ul li:last-child::after {
	display: none;
}

.blog-area .meta ul li a {
	margin-left: 3px;
	display: inline-block;
	line-height: 1.4;
	letter-spacing: 0.4px;
}

/*.blog-area .meta ul li:first-child a {*/
/*	color:#000;*/
/*}*/
.post-template-default.single.single-post {
  overflow-x: visible;
}


.blog-area .meta ul li a:hover {
	color:var(--dark-bg);
}

.blog-area .info a:hover {
	color:#f00;
}
.single-item .info .meta a {
  color: var(--primary-color);
  text-decoration: none;
}
.single-item .info h4 a {
  text-decoration: none;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	line-height: 26px;
}
.blog-items .btn-simple {
  text-decoration: none;
}
 .intro .btn-simple {
  color: #fff;
   text-decoration: none;
}
.info .btn-simple{
  color:var(--secondary-color);
   text-decoration: none;
}


.map_inner {
  width: calc(100% - 547px);
  line-height: 0;
}
.ask_form {
  width: 547px;
  background: #efefef;
  padding: 30px;
}
.banner-form {
   background: #447381 !important;
  /* background: linear-gradient(90deg, #1e8dba59, #194754);*/
  padding: 30px;
  border-radius: 5px 5px 0 0px;
  box-shadow: 4px 5px 15px #0000001c;
  position: relative;
}
.banner-form .question_wrap .contact-form {
  padding: 0;
}
.badge-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 100%;
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
  color: #fff;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  /*margin-left: 40px;*/
}
.ask_inner .badge-title {
  margin-left: 0;
  margin-bottom: 6px;
}
.question_wrap .intro p {
/*   font-size: 24px; */
  line-height: 27px;
  color: var(--light-black);
}
.title_lg {
  font-size: 26px;
  color: #333;
  font-weight: 600;
}
.question_wrap .contact-form {
  padding: 20px 0px;
}
.contact-form label {
  color: #4f4f57;
  display: block;
  /*! margin-bottom: 6px; */
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  text-align: left;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 10px;
}
.map_wrapper {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.contact-wrapper .contact-form input, select, textarea {
  padding: 10px 10px 10px 0;
  border: none;
  border-radius: 0px;
  background: none;
  font-size: 12px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  font-weight: normal;
  letter-spacing: 0.2px;
  /*color: #fff;*/
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-bottom: 1px solid #fff !important;*/
}
.wpcf7-not-valid-tip {
    color: #392727 !important;
    font-size: 10px !important;
}
.banner-form .wpcf7-not-valid-tip {
    color: #fff !important;
    font-size: 10px !important;
}
.banner-form input:-webkit-autofill{
    -webkit-text-fill-color: #fff;
}
.banner-form #input-captcha-cf7::placeholder {
    color: #fff;
}

.contact-wrapper.banner-form input,
.contact-wrapper.banner-form textarea
{
  border-bottom: 1px solid #fff !important;
  color: #fff;
}
.question_wrap input, .question_wrap textarea, .question_wrap #input-captcha-cf7
{
  border-bottom: 1px solid rgba(33, 37, 41, 0.48) !important;
}
.question_wrap .custom-control.custom-checkbox a {
  color: rgba(33, 37, 41, 0.48);
}
.banner-form .custom-control.custom-checkbox a {
  color: #fff;
}
.custom-control.custom-checkbox a {
  color: #000;
}
.alink {
  color: var(--primary-color);
}
.question_wrap .cta-bg-none .btn-list.banner-btn {
  padding-top: 10px;
}
.theme-submit {
  background: #fff !important;
  color: #042634 !important;
  border: none !important;
}
.contact-wrapper .custom-checkbox p{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@keyframes fadeRightLeft {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-50px);
	}
}

@-webkit-keyframes fadeRightLeft {
	0%,
	100% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-50px);
	}
}


.single-choose-us {
  text-align: center;
  background: #f2f2f2;
  border: 3px solid #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 10px;
}
.single-choose-us img {
  max-width: 80px;
  margin: 20px auto;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 5px 5px 25px #00000024
}
.single-choose-us h3 {
  color: var(--primary-color);
  font-weight: 600;
}


.choose-us {
  background: rgb(79 79 87 / 75%);
  background: url('https://365cleaners.co.nz/wp-content/uploads/2024/02/why-us.jpg');
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  color: #fff;
  position: relative;
  }
.choose-us::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #17191ab5;
}
.container
{
  position: relative;
}
.bgimg {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
  max-width: inherit;
  left: 0;
  top: 0;
  width: 100%;
  object-fit: cover;
  height: 100% !important;
  z-index: -1;
  overflow: hidden;
}
.choose-us p{
    color:#fff;
}
.content_text p:not(:last-child) {
  margin-bottom: 20px;
}
.about-img-right {
  padding-left: 40px;
}
.flex-container {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.left_block {
  padding-right: 50px;
}
.left_block, .right_block {
  width: 50%;
}
.choose_box {
  overflow: hidden;
  border-radius: 20px;
  max-width: 588px;
  margin: 0 0 0 auto;
}
.box {
  background-color: #fff;
  padding: 20px 50px 10px;
  position: relative;
}
.pattern {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
.wcu_trustfect {
  margin: 50px -17px 0;
}
.wrap {
  flex-wrap: wrap;
}
.flex {
  display: flex;
}
.wcu_trustfect li {
  padding: 0 4px;
  list-style: none;
  margin-bottom: 10px;
}
.wcu_trustfect li .trust_box {
  background: #fff;
  border-radius: 20px;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 160px;
}
.title_xlg {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 600;
  color: #343434;
}

.trust_box {
  display: flex;
  align-items: center;
}
.wcu_trustfect li .trust_box .trust_text {
  font-size: 14px;
    margin-left: 0;
    max-width: 125px;
    color: #4f4f57;
    font-weight: bold;
    line-height: 20px;
}
/* ============================================================== 
     # Testimonials
=================================================================== */

.testimonials-area.half-bg {
	position: relative;
	z-index: 1;
	margin-top: 50px;
}

.testimonials-area.half-bg::after {
	position: absolute;
	left: 0;
	bottom: -120px;
	content: "";
	height: 250px;
	width: 100%;
	/*! background: var(--dark-bg); */
	z-index: -1;
	transform: skewY(-5deg);
}

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

.testimonial-carousel {
	position: relative;
	z-index: 1;
}

.testimonial-carousel .item {
	display: flex;
	align-items: center;
	margin: 10px;
}

.testimonial-carousel .item>i {
	display: inline-block;
	font-size: 80px;
	margin-right: 30px;
}

.testimonial-carousel .item .content img {
	height: 120px;
	width: auto;
	clip-path: inherit;
	border-radius: inherit;
	position: absolute;
	left: 30px;
	top: 70px;
	opacity: 0.05;
}

.testimonial-carousel .item img {
	height: 200px;
	width: 200px;
	z-index: 9;
	clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.testimonial-carousel .item .provider {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.testimonial-carousel .item .provider h5 {
	margin: 0;
	font-weight: 600;
	margin-left: 25px;
	position: relative;
	z-index: 1;
	padding-left: 40px;
	font-size: 16px;
}

.testimonial-carousel .item .provider h5::after {
	position: absolute;
	left: 0;
	top: 50%;
	content: "";
	height: 2px;
	width: 30px;
	background: #1d2746;
	margin-top: -1px;
}

.testimonial-carousel .item .provider .rating i {
	color: #ffc000;
}

.testimonial-carousel .item .content {
	padding: 60px 40px;
	padding-right: 130px;
	border-radius: 10px;
	position: relative;
	z-index: 1;
}

.testimonial-carousel .item .content::after {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: #fff;
	z-index: -1;
	border-radius: 10px;
	box-shadow: 0px -2px 10px 0px #e7e7e7;
}

.testimonial-carousel .item .content::before {
	content: "";
	position: absolute;
	left: 20px;
	bottom: -20px;
	width: calc(100% - 40px);
	height: 20px;
	/*! -webkit-box-shadow: 0px 6px 12px 0px #00497628; */
	/*! box-shadow: 0px 6px 12px 0px #00497628; */
	z-index: -1;
	border-radius: 0px 0px 15px 15px;
}

.testimonial-carousel .item .content>i {
	display: inline-block;
	font-size: 90px;
	margin-bottom: 30px;
	position: absolute;
	z-index: 1;
	opacity: 0.06;
	top: 70px;
	left: 50px;
}

.testimonials-area .testimonial-carousel.owl-carousel .owl-dots {
	display: inline-block;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
}

.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot {
	display: block;
	margin: 16px 0;
}

.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot span {
	background:var(--secondary-color);
	height: 10px;
	width: 10px;
	padding: 0;
	margin: 0;
	opacity: 0.3;
	transition: all 0.35s ease-in-out;
	display: block;
	border-radius: 50%;
}

.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot.active span {
	opacity: 1;
	transform: scale(1.5);
}
.rating {
  display: flex;
}
.rating img {
  position: relative !important;
  opacity: 1 !important;
  width: 20px !important;
  height: 20px !important;
  left: 0 !important;
  top: 0 !important;
}


.accordion {
	position: relative;
  padding: 10px 35px 10px 15px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  transition: 0.4s;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  line-height: 30px;
}
.accordion::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 2px;
	background-color: #fff;
}
.accordion::before {
	content: "";
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 16px;
	background-color: #fff;
	transition: height 0.2s ease-in;
}
.accordion.active::before {
	height: 0;
}
.accordion.active,
.accordion:hover {
	background-color: var(--secondary-color);
}
.accordion.active + .panel {
	margin-top: 2px;
}

.panel + .accordion {
	margin-top: 1px;
}
.panel {
	padding: 0 20px;
	background-color: #efefef57;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	box-shadow: 0 0 1px 0 #4446;
	border-radius: 10px;
	margin-bottom: 5px;
}
.panel p:first-child {
	padding-top: 20px;
}
.panel p:last-child {
	padding-bottom: 20px;
}
.panel p + p {
	margin-bottom: 15px;
}

/* === for List === */
.pr-list {
	padding: 20px 0;
}
.pr-list div {
	display: flex;
	justify-content: space-between;
	gap: 5px;
}

.pr-list div span:nth-child(2) {
	flex-grow: 1;
	line-height: 1.6;
	border-bottom: 1px dotted #333;
}

.pr-list div span:nth-child(3) {
	text-align: right;
}



.faq-img img {
  width: 450px;
  margin: auto;
  max-width:100%;
}
footer {
  position: relative;
  color: #b9babb;
  background: var(--dark-bg);
}
.ft_top {
  padding: 40px 0;
  border-bottom: 1px solid #37373a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ft_top_content h6 {
  color: #fff;
  text-transform: capitalize;
  line-height: 28px;
}
.btn-list li:first-child {
  margin-right: 15px;
}
.call_btn {
  display: flex;
  text-decoration: none;
  align-items: center;
}
.btn-list {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_cta_inpage {
  padding: 30px 0 0 0;
}
.inner_cta_inpage p {
  padding-bottom: 20px;
}
.call_icon {
  border: 1px solid #4f4f57;
  background: #141419;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  line-height: 36px;
  display: flex;
  justify-content: center;
}
.call_text {
  color: #b9babb;
  font-size: 18px;
  font-weight: bold;
  padding-left: 15px;
  text-align: left;
}
.call_text label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: block;
  line-height: 18px;
}
.btn-list li {
  list-style: none;
}
.ft_bottom_main {
  padding: 56px 0 00px;
}
.ft_left {
/*   width: 300px; */
  float: left;
  /*padding-left: 40px;*/
}
.ft_right {
/*   width: calc(100% - 300px); */
  padding-left: 40px;
  border-left: 1px solid #37373a;
  margin-bottom: 20px;
}
.ft_right_bottom {
    padding: 20px 0 0;
    border-top: 1px solid #37373a;
    display: flex;
    justify-content: space-between;
    margin: 30px 0 0;
}
.ft_cont_list li {
  margin-bottom: 22px;
  list-style: none;
}
.cont_box {
  display: flex;
  flex-wrap: wrap;
}
.cont_text {
  width: calc(100% - 17px);
  padding-left: 12px;
}
.cont_box label {
  line-height: 100%;
}
.ft_title, .cont_box label {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
  width: 100%;
}
.ftlinks li{
	list-style: none;
	margin: 10px 0;
}
.ftlinks li a, .cont_text a {
	color: #b9babb !important;
	text-decoration: none;
}

.ftlinks li a:hover {
	color: #fff !important;
	text-decoration: none;
}
.social_media {
  /*margin-top: 20px;*/
}
.btn-icons {
  display: flex;
  align-items: center;
}
.social_icon {
  border: 1px solid #37373a;
  background: #141419;
  border-radius: 100%;
  margin: 0 5px 0 0;
  padding: 5px;
}
.social_icon img {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb_wrapper{
  background: url('https://365cleaners.co.nz/wp-content/uploads/2023/12/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10em 0;
  }
  .breadcrumb, .breadcrumb_wrapper .entry-title {
  color: #fff;
}

  .stats {
  background: linear-gradient(270deg, #fe1100, #fe1100);
  padding: 20px;
  border-radius: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 128px;
}
  .stats span:nth-child(2) {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgb(255 255 255 / 20%);
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
}
  
  .grey-section {
  background: #F2F2F2;
}
.paragraph_columns {
  columns: 2;
  column-gap: 100px;
  -webkit-column-rule: 1px solid #E2E2E2;
  -moz-column-rule: 1px solid #E2E2E2;
  column-rule: 1px solid #E2E2E2;
	border-bottom: 1px solid #E2E2E2;
  padding-bottom: 20px;
}
.full_content_inner.paragraph_columns p {
  font-size: 16px;
  margin: 15px 0;
}
.national_wrapper {
  border-bottom: 1px solid #e8e8e8;
}
.national_museums_list li {
  list-style: none;
}
.national_museums_list {
  display: flex;
  flex-wrap: wrap;
  /*display: grid;*/
  /*grid-template-columns: repeat(5 , 1fr);*/
  /*grid-gap: 45px;*/
  /*row-gap: 65px;*/
  margin-bottom:0;
}
.national_museums_list li {
  width: 25%;
  margin-bottom: 40px;
}
.national_museums_list li .icon_box {
  display: flex;
  align-items: center;
}
.national_museums_list li .icon_box .icon {
  width: 60px;
	margin-right: 15px;
}
.national_museums_list li .icon_box p {
  width: 100%;
  /* font-size: 16px; */
  /* font-weight: bold; */
  line-height: 20px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
}
.form-group:last-child p {
    display: flex;
    align-items: center;
}

.trust_icon {
    border: 2px solid #33cccc66;
    border-radius: 50px;
    padding: 5px;
}


.hidden {
  display: none !important;
}
.what_can_wrapper {
  position: relative;
  overflow: hidden;
}

.we_move_wrap {
  background: #efefef;
  border-radius: 20px;
  padding: 35px 50px 10px;
  max-width: 1200px;
  margin: 0 0 0 auto;
}
.move_inner {
  max-width: 560px;
  margin: 0 0 0 auto;
}
 .we_move_wrap .move_inner {
  max-width: 600px;
}
.choose_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.choose_list li:not(:nth-last-child(-1n+2)) {
  padding-bottom: 8px;
  border-bottom: 2px solid #dfdfdf;
  margin-bottom: 8px;
}
.owl-carousel.testimonial-carousel .owl-stage{
  display: flex;
}
.choose_list li {
  flex: 0 0 45%;
}
.dlist li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  color: #4f4f57;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding-left: 35px;
  list-style: none;
}
.dlist li::before {
  content: "";
  position: absolute;
  background: url(../images/check.svg) no-repeat;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  line-height: 0px;
  background-position: center;
  background-size: cover;
}

.right_cleaner_image {
  position: absolute;
  left: 20%;
  z-index: 1;
  /*! top: 0; */
  bottom: 0;
  /*! margin: auto 0; */
}
.services_carousel .owl-stage{
    display: flex;
}
.owl-carousel .owl-item{
    display: flex;
  flex: 1 0 auto;
}
.thumbnail.item.services-items {
  display: flex;
}
.services_carousel .owl-nav {
    justify-content: right;
    display: flex;
    margin-left: auto;
}
.services_carousel .owl-nav button span {
  color: #1e8dba;
  font-weight: 600;
  font-size: 30px;
}
.services_carousel  .owl-nav button{
    top: 60%;
  width: 45px;
  height: 45px;
    display: flex;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: translateY(-168%);
    background: var(--white-color) !important;
    box-shadow: 1px 4px 16px 6px rgba(166, 184, 213, 0.11);
    border:1px solid #1e8dba !important;
}
.services_carousel  .owl-nav button:hover{
    background: var(--primary--color) !important;
}
.services_carousel  .owl-nav button:hover img{
    filter: brightness(0) invert(1);
}
.services_carousel .owl-nav button:focus{
    outline: none;
}
.services_carousel .owl-nav button.owl-prev {
    left: -80px;
}
.services_carousel .owl-nav button.owl-next{
    right: -80px;
}

.box-icon:first-child {
  margin-bottom: 50px
}
.box-icon {
  display: flex;
  align-items: self-start;
}


.box-icon img {
  max-width: 50px;
  margin-right: 10px;
}
.breadcrumb_area {
  position: relative;
}
.breadcrumb_area::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0d222b66;
}
.trust_icon img {
    max-width: 70px;
    border-radius: 50px;
}
.breadcrumb_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.breadcrumb_image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.breadcrumb_content, .breadcrumb_content .entry-title, .breadcrumb a {
  color: #fff;
}
.services-link {
  column-count: 2;
}
.serv_box {
  display: block;
  text-align: center;
  margin-top: 25px;
}
.serv_icon {
  width: 80px;
  height: 80px;
  background: #efefef;
  border: 1px dashed #00000096;
  margin: 0 auto;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  position: relative;
}
.serv_icon::before {
  content: '';
  position: absolute;
  /*width: ;*/
  height: 40px;
  /*width: 2px;*/
  /*background: #000;*/
  bottom: -22px;
  z-index: -1;
  border: 1px dashed #000;
}
.serv_box:hover .serv_icon {
  background: #fff;
  box-shadow: 0 0 8px rgb(0 0 0 / 30%);
}
.serv_icon img{
	width: 50px !important;
}
.serv_box:hover .service_title {
  color: var(--secondary-color);
}
.serv_box .service_title {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  margin: 25px 0;
}
.service-list {
  display: flex;
  justify-content: space-between;
}
.intro h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}


.overview_services .owl-item {
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
}

.overview_services.owl-carousel .owl-nav button{
    border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 25px;
  height: 25px;
	position: absolute;
}

.overview_services.owl-carousel .owl-nav .owl-prev{
	top: 40%;
}
.overview_services.owl-carousel .owl-nav .owl-next{
    right:0;
	top: 40%;
}

.overview_services.owl-carousel .owl-nav span {
 font-size: 20px;
  line-height: 20px;
 color: var(--primary-color);
}

.overview_services.owl-carousel .owl-nav.active span {

}
/*! For Image Captcha */
.captcha-image {
width: 100%;
padding: 0 5px !important;
border: 1px solid #000;
background: #fbfbfb40;
border-radius: 4px;
display: block;
margin-bottom: 15px;
text-align: center;
}
.cf7ic_instructions {
  font-size: 12px;
  line-height: 25px;
  text-align: left;
  font-weight: 400;
  display: block;
  text-align: center;
}
.captcha-image label {
  display: inline-block !important;
  position: relative;
  
}
.captcha-image svg {
  width: 40px !important;
  height: 30px !important;
}
.captcha-image input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  position: absolute;
  top: 6px;
  left: 6px;
  opacity: 0;
  cursor: pointer;
  width: 30px;
  height: 20px;
}
.captcha-image label > input:checked + svg, .captcha-image label > input:focus + svg {
  border: 2px solid var(--primary-color);
}
.captcha-image svg {
  padding: 5px;
}

.captcha-image svg{
    color:#000;
}
.captcha-image .cf7ic_instructions span {
  color: var(--primary-color);
  font-weight: bold;
}

article .entry-title {
  line-height: 36px;
  margin-bottom: 20px !important;
	font-size: 34px;
}
p a {
    color: #1e8dba;
    /*font-size: 16px;*/
    /*font-weight: 500;*/
}
.about-img {
  border-radius: 10px;
  width:100%;
}
.grey-section p{
  font-size: 16px;
  margin: 15px 0;
}
.grey-section p strong, .grey-section strong, .national_wrapper strong{
  font-size: 18px;
  font-weight: 600;
	line-height: 1.8;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	/* Testimonials */
	.carousel-shadow .owl-stage-outer {
		margin-bottom: -30px;
	}
	.testimonial-carousel .item {
		display: block;
		padding: 50px 30px;
		padding-bottom: 70px;
		background: #ffffff;
		box-shadow: 0px 2px 12px 0px #e7e7e7;
		text-align: center;
		border-radius: 6px;
	}
	.testimonial-carousel .item .provider {
		justify-content: center;
	}
	.testimonial-carousel .item .content {
		padding: 0;
		background: transparent;
	}
	.testimonial-carousel .item img {
		margin: auto auto 50px;
	}
	.testimonial-carousel .item .content img {
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonial-carousel .item .content::after,
	.testimonial-carousel .item .content::before {
		display: none;
	}
	.testimonial-carousel .item .content img {
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonials-area .testimonial-carousel.owl-carousel .owl-dots {
		position: inherit;
		top: auto;
		bottom: 35px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot {
		display: inline-block;
		margin: 0 10px;
	}
	
	
	
}

@media (min-width: 575px) { 
   
}

@media (min-width: 992px) { 
  .home.page-template .primary-menu a,
  .page-template-cleaning-christchurch .primary-menu a {
  color: #32363d !important;
  }
  .primary-menu a {
  color: #32363d !important;
  }
  .home.page-template .primary-menu ul a,
  .page-template-cleaning-christchurch .primary-menu ul a {
  color: #fff !important;
  }
  .primary-menu ul a {
  color: #fff !important;
  }
   .sticky .primary-menu li.current-menu-item > a,
  .sticky .menu-item.current-menu-item.current_page_item .icon{
  color: var(--secondary-color) !important;
}
    .sticky .primary-menu a, .sticky .primary-menu > li > .icon {
    color: #000000c7 !important;
  }
  .sticky .primary-menu .sub-menu a {
    color: #fff !important;
  }
  .sticky-area {
  position: sticky;
  top:100px;
  }
  .header-btn {
  display: block !important;
}
  }
 
  @media (min-width: 1199px) {  
   .checklist_wrapper {
      padding:0 55px 0 15px;
      margin: 0;
    }
  .about-img-left {
/*   margin-left: -120px; */
}
 .sticky-area {
  padding-right: 60px;
}
  }

@media (min-width: 1400px) {  
    
}

@media (max-width: 1600px) {
 .right_cleaner_image {
    left: 0;
  }
  .wcu_trustfect li .trust_box {
    min-width: 150px;
  }
}


@media (max-width: 1399.98px) {
 
}


@media (max-width: 1199.98px) { 
 
}

@media (max-width: 991.98px) { 
   .ask_form, .map_inner {
    width: 100%;
  }
  .map_wrapper {
  display: block;
  }
  .paragraph_columns {
  columns: 1;
  }
  .national_museums_list li {
  width: 33%;
  }
   button.toggle.nav-toggle.mobile-nav-toggle.active::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  right: 0;
  z-index: 1;
  left: 0;
  top: 65px;
}
  .menu-modal.active {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}
.menu-modal{
    float: none;
    padding: 0;
    position: fixed;
    top: 65px;
    height: calc(100% - 82px);
    width: 450px;
    margin: 0;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    overflow-y: auto;
    left: 0;
    z-index: 1000;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    background: white;
   
    border-top: 1px solid var(--secondary-color);
}
.toggle-icon.show-modal.active {
  display: none;
}
.toggle-close.show-modal.active {
  display: block !important;
}
.header-titles img {
  max-width: 70px;
  width: 100%;
}
#site-header{
    position: relative;
}
.main-logo{
    display:none;
}
.scroll-logo {
  display: block;
}
.menu-modal-inner.modal-inner {
  padding: 30px;
}
.modal-menu li{
    border: 0 !important;
   border-bottom:1px solid rgb(112 112 112 / 20%) !important;
}
.modal-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  width: 100%;
  color: #000000c7 !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal
}
.sub-menu {
  background: #EFEFEF;
}
.sub-menu li a{
 padding: 8px 0 8px 20px;
    font-size: 14px;
    color: #4F4F57 !important;
}
.ft_top_content span {
  display: inline-block !important;
}
.ft_top{
    display: block;
}
.ft_top_content {
  text-align: center;
  margin-bottom: 20px;
}
.btn-list.banner-btn li {
  margin-right: 0;
}
.flex-container{
    display: block;
}
.left_block, .right_block{
    width: 100%;
}
.left_block {
    padding-right: 0;
}
.wcu_trustfect {
    margin: 0;
}
.box{
    padding: 20px;
}
.choose_box{
    margin: 0;
}
.right_cleaner_image{
    display:none;
}
.service-list {
  overflow-x: auto;
}

}
@media (max-width: 767.98px) { 
 	.about-list-item {
		display: block;
	}
	/* Testimonials */
	.carousel-shadow .owl-stage-outer {
		margin-bottom: -30px;
	}
	.testimonial-carousel .item {
		display: block;
		padding: 50px 30px;
		padding-bottom: 70px;
		background: #ffffff;
		box-shadow: 0px 2px 12px 0px #e7e7e7;
		text-align: center;
		border-radius: 6px;
	}
	.testimonial-carousel .item .provider {
		justify-content: center;
	}
	.testimonial-carousel .item .content {
		padding: 0;
		background: transparent;
	}
	.testimonial-carousel .item img {
		margin: auto auto 50px;
	}
	.testimonial-carousel .item .content img {
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonial-carousel .item .content::after,
	.testimonial-carousel .item .content::before {
		display: none;
	}
	.testimonial-carousel .item .content img {
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonials-area .testimonial-carousel.owl-carousel .owl-dots {
		position: inherit;
		top: auto;
		bottom: 35px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.testimonials-area .testimonial-carousel.owl-carousel .owl-dots .owl-dot {
		display: inline-block;
		margin: 0 10px;
	}
#site-header{	
	position: fixed !important;
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0px;
  width: 100% !important;
  padding: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 4px 20px rgba(0,0,0,.1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-top: 0;
  max-width: 100%;
  border-radius: 0;
}
.banner-content {
    margin: 20px 0;
}
.service-list a {
    margin-right: 10px;
}
.serv_icon {
    width: 70px;
    height: 70px;
}
.serv_icon {
    width: 70px;
    height: 70px;
}
.serv_box .service_title {
    font-size: 14px;
}
.rating img {
    margin: 0 !important;
}
.about-img-right {
    padding-left: 0;
}

 
  
}
@media (max-width: 575.98px) { 
    
    .checklist_wrapper .intro h2 {
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
}
.services_carousel .owl-nav button.owl-prev {
/*   left: 40%; */
}
.services_carousel .owl-nav button.owl-next {
/*   right: 35%; */
}
.services_carousel .owl-nav button{
    top: 95%;
    transform: translateY(0%);
}
    
    .banner-area{
        padding: 3em 0 0em 0;
    }
  .ft_top {
   padding: 40px 0;
  display: block;
  text-align: center;
}
.btn-list{
    margin: 0;
}
.ft_bottom_main {
  padding: 40px 0 00px;
}
.ft_cont_list {
  margin-left: 0;
}
.ft_cont_list li {
  margin: 20px 0 20px 0;
}
.ftlinks {
  margin-left: 0;
}
.ft_right_bottom {
  padding: 20px 0 0;
}
.ft_right {
  padding-left: 20px;
  margin-bottom: 20px;
}
.about-list-item .services-list, .about-list-item .info {
  padding-left: 0;
}
.checklist_wrapper {
      margin: 0;
    }
    .national_museums_list li {
  width: 50%;
    }
   .menu-modal {
    width: 100%;
  }
  .hidden.mb_view {
    display: flex !important;
  }
   .hidden.mb_view a {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    display: flex;
    align-items: center;
    color: #fff !important;
    line-height: 100%;
    min-height: 32px;
    padding: 5px 10px;
    text-decoration: none;
  }
   .hidden.mb_view a.head-call {
    background: var(--primary-color);
  }
  .btn_dark {
  background: var(--secondary-color);
}
.menu-modal{
    top: 95px;
}
 button.toggle.nav-toggle.mobile-nav-toggle.active::before{
     top:95px;
 }
 .btn-list {
  flex-direction: column;
}
.btn-list li:first-child {
  margin-bottom: 20px;
}
.wcu_trustfect{
    display:block;
}
.services-link {
  column-count: 1;
}
.choose_list {
  display: block;
}

.banner-area .title {
    font-size: 25px;
    text-align: center;
    font-weight: 700;
}
.banner-area .banner-btn{
    justify-content: center;
}
.banner-content p{
    text-align: center;
}
.serv_icon {
    width: 60px;
    height: 60px;
}
.serv_icon img {
    width: 40px !important;
}
.serv_box .service_title {
    font-size: 12px;
}
.about-list-item .services-list li{
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 30px;
       text-align: left;
}
.checklist_wrapper .intro {
    margin-bottom: 20px;

}
.about-section .content_block {
    /*margin-top: 20px;*/
    /*text-align: center;*/
}
.intro p{
    text-align: center;
}
.call-to-action .banner-btn{
    justify-content: center;
}

.breadcrumb_area{
    margin-top:100px;
}
 .none-sm{
    display: none;
  }
  p{
      text-align:justify;
  }
  .image_div.relative img {
  margin: auto;
}
.our-features p {
  text-align: center;
}
.about-section .services-list ul {
    column-count: 1;
}
.order-xs-2 {
  order: 2;
}
	.banner-content {
       background: linear-gradient(to left,rgba(58, 100, 132, 0.53) 0,#385c6887 100%);
	}
}


/*------------- #ANIMATION-ICON --------------*/

/*svg {*/
/*  max-width: 80%;*/
  /*width: 100%;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  margin: auto;*/
/*}*/
/*svg path {*/
/*  stroke-width: 2;*/
/*  animation-fill-mode: forwards;*/
/*  animation-iteration-count: 1;*/
/*  animation-name: draw;*/
/*  animation-timing-function: linear;*/
/*}*/
/*svg path.case {*/
/*  stroke: #000;*/
/*  stroke-dasharray: 2810;*/
/*  stroke-dashoffset: 2810;*/
/*  animation-duration: 3s;*/
/*}*/
/*svg path.cooler {*/
/*  stroke: #000;*/
/*  stroke-dasharray: 300;*/
/*  stroke-dashoffset: 300;*/
/*  animation-duration: 2s;*/
/*  animation-delay: 4s;*/
/*}*/
/*svg path.structure {*/
/*  stroke: #000;*/
/*  stroke-dasharray: 680;*/
/*  stroke-dashoffset: 680;*/
/*  animation-duration: 3s;*/
/*  animation-delay: 2s;*/
/*}*/

/*@keyframes draw {*/
/*  to {*/
/*    stroke-dashoffset: 0;*/
/*  }*/
/*}*/
/*@keyframes show {*/
/*  to {*/
/*    opacity: 1;*/
/*  }*/
/*}*/


  


.choose-us h6 {
  color: #fff;
  margin: 20px 0;
  font-weight: 600;
}
.why-tile {
  padding: 50px 0;
}
.why-tile ul li {
  list-style: none;
  margin: 15px 0;
}



@-webkit-keyframes headfadeIn {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -moz-transform: translateY(0);
    }
}

@keyframes headfadeIn {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -moz-transform: translateY(0);
    }
}