*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: hsl(0, 0%, 100%);
  --txt: hsl(0, 0%, 15%);
  --logo-brown:  hsl(6, 39%, 25%);
  --logo-blue: hsl(200, 100%, 38%);
  --blue-light: rgb(97, 173, 239);
  --blue-med: hsl(217, 55%, 53%);
  --blue-dark: #085272;
  --feature: #8b534d;

  --pastel-yellow: #F9F3DF;
  --pastel-green: #C3EDC0;
  --pastel-blue: #D7E9F7;
  --pastel-tan: #E7CEA6;
  --brown-bg: rgb(89, 44, 39);
}

html {
  font-family: 'Open+Sans', sans-serif;
  font-weight: 200;
  font-size: 62.5%;
  line-height: 1.6;
}

body {
  width: 100%;
  height: 100vh;
  color: var(--txt);
  background-color: var(--blue-dark);
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

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

ul, li {
  list-style: none;
}

input,
textarea,
select,
button {
  font-size: inherit;
  font-family: inherit;
}

img,
video,
iframe {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
  object-fit: cover;
  border: 0;
}


button {
  display: block;
  padding: 12px 25px;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 6px;
  color: var(--bg);
  background: var(--blue-dark);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  opacity: 1.0;
  transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -ms-transition: opacity .2s ease-in-out;
  -o-transition: opacity .2s ease-in-out;
  cursor: pointer;
}
button * {
  pointer-events: none;
}    
button:hover {
  opacity: 0.7;
}

/* --------------------------------------- */
/* ------- START CUSTOM STYLES HERE ------ */
/* --------------------------------------- */

#wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #ffffff;
  font-size: 1.6rem;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}


/* ----------------------------------------------------------------------- */
/* ------------------------- HEADER SECTION ------------------------------ */
/* ----------------------------------------------------------------------- */

#banner {
  color: #ffffff;
  background-color: var(--blue-dark);
}

#banner a {
  display: block;
  padding: 4px;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-align: center;
}


#main_header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 35px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.4) ;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(2px);
  z-index: 100;
}

.branding {
  padding: 10px;
  overflow: hidden;
  width: 220px;
  cursor: pointer;
}

.branding img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.main_nav {
  position: relative;
  display: flex;
  align-self: flex-end;
}

.menu {
  display: flex;
}

.menu li {
  margin-right: 10px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  padding: 10px;
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--blue-dark);
}


.main_nav a {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--blue-dark);
  pointer-events: auto;
}

.main_nav a.active {
  color: var(--feature);
  font-weight: 100;
  pointer-events: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  left: -40px;
  padding: 0 15px;
  min-width: 310px;
  max-height: 0px;
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  transition: max-height 0.5s;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}

.dropdown .open-menu {
  max-height: 200px;
}




.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
}

.bar {
  margin: 3px 0;
  width: 28px;
  height: 2px;
  background: var(--logo-blue);
  border-radius: 3px;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.bar.change:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  -moz-transform: rotate(-45deg) translate(-5px, 6px);
  -ms-transform: rotate(-45deg) translate(-5px, 6px);
  -o-transform: rotate(-45deg) translate(-5px, 6px);
}

.bar.change:nth-child(2) {
  opacity: 0;
}

.bar.change:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
  -moz-transform: rotate(45deg) translate(-5px, -6px);
  -ms-transform: rotate(45deg) translate(-5px, -6px);
  -o-transform: rotate(45deg) translate(-5px, -6px);
}

.menu_responsive {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.menu_responsive li:first-child {
  margin-top: 30px;
}

.menu_responsive li:last-child {
  margin-bottom: 30px;
}

.menu_responsive a {
  display: block;
  padding: 6px 15px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--blue-dark);
}

.menu_responsive a.active {
  position: relative;
  left: 1.4em; 
  color: var(--feature);
  font-weight: 100;
  pointer-events: none;
}

.menu_responsive a.active::before {
  position: absolute;
  top: 1px;
  left: -4px;
  font-size: 2rem;
  content: "\003E";
}


/* ----------------------------------------------------------------------- */
/* ----------------------- MAIN CONTENT SECTION -------------------------- */
/* ----------------------------------------------------------------------- */

#main_content {
  position: relative;
  background: #ffffff;
}

/* HERO SECTION AND CTA */
.hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-image: url("../img/heroimg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-content {
  --_herocol: var(--blue-dark);
  width: 80%;
  max-width: 1200px;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero-content h1 {
  color: var(--_herocol);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-content h2 {
  color: var(--_herocol);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  color: var(--_herocol);
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 900;
}

.cta {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}

.hero-simple {
  position: relative;
  width: 100%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}


[data-image="rwcl"] {
  background-image: url("../img/residential-window-cleaning.jpg");
}

[data-image="cwcl"] {
  background-image: url("../img/commercial-window-cleaners.jpg");
}

[data-image="wfps"] {
  background-image: url("../img/pure-water-window-cleaning.jpg");
}

[data-image="hpwc"] {
  background-image: url("../img/professional-window-cleaners.jpg");
}

[data-image="pwdw"] {
  background-image: url("../img/pressurewashing.jpg");
}

[data-image="hsw"] {
  background-image: url("../img/softwashing.png");
}

[data-image="aww"] {
  background-image: url("../img/ww.jpg");
}



.hero-simple .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-simple h1 {
  color: var(--pastel-yellow);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}


.hero-about {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../img/ww.jpg");
  background-size: cover;
}

.about_block {
  position: relative;
  margin: -145px 0 50px 35px;
  padding: 60px 50px;
  width: 75%;
  background: var(--blue-dark);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.about_block h2 {
  margin-bottom: 25px;
  color: #D7E9F7;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 700;
}

.about_block p {
  padding: 15px;
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  font-weight: 400;
}




.container_block {
  position: relative;
  margin: auto;
  padding: 50px 75px;
  width: 100%;
  max-width: 1300px;
  background: #ffffff;
}

.container_block h2 {
  margin-bottom: 10px;
  color: var(--logo-blue);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.container_block h3 {
  margin: 30px 0 10px;
  color: var(--feature);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.container_block h3 span {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 100;
}

.container_block p {
  padding: 15px 25px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #666666;
}

.container_block p a {
  color: var(--blue-dark);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--blue-dark);
  -moz-text-decoration-color: var(--blue-dark);
}

.container_block ul {
  padding: 15px 40px 35px;
  list-style-type: circle;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.container_block ul li {
  padding: 10px 15px;
  color: #222222;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  border-radius: 4px;
  border: 1px solid rgb(0 0 0 / 0.2);
}

.container_block strong {
  color: var(--blue-dark);
  font-weight: 700;
}



.section {
  padding: 25px;
  background: #ffffff;
}

.section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.section h3 {
  font-size: 2.4rem;
}

.section p {
  padding: 12px 30px;
  font-size: 1.8rem;
  line-height: 1.8;

}

.hbttl {
  padding: 40px 15px;
}

.header_block h1 {
  color: var(--feature);
  font-weight: 100;
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.2;
}

.header_block h2 {
  margin-top: 15px;
  color: var(--col5);
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.header_block h3 {
  margin-top: 15px;
  color: var(--col5);
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.header_block p {
  padding: 12px 30px;
  font-size: 1.8rem;
  line-height: 1.6;
}


/* ------------------ */

.header_block_main h1 {
  color: var(--feature);
  font-weight: 100;
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.2;
}

.header_block_main h2 {
  color: var(--feature);
  font-weight: 100;
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.1;
}

.header_block_main h3 {
  margin-top: 20px;
  color: var(--blue-dark);
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.header_block_main p {
  margin: 30px auto;
  width: 90%;
  max-width: 650px;
  color: #222222;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  font-weight: 400;
}

.header_block_main p a {
  color: var(--blue-dark);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--blue-dark);
  -moz-text-decoration-color: var(--blue-dark);
}


.featurewrap {
  position: relative;
  cursor: pointer;
}

.featurewrap * {
  pointer-events: none;
}

.featurewrap .split_left {
  width: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
 }

#residential {
  background: #F9F3DF;
}

#residential h2 {
  text-align: end;
}

#residential .split_left {
  background-image: url("../img/residential-window-cleaning.jpg");
}

#commercial {
  background: #C3EDC0;
}

#commercial h2 {
  text-align: start;
}

#commercial .split_left {
  background-image: url("../img/commercial-window-cleaners.jpg");
}

#housewash {
  background: #D7E9F7;
}

#housewash h2 {
  text-align: end;
}

#housewash .split_left {
  background-image: url("../img/softwashing.png");
}

#pressurewash {
  background: #E7CEA6;
}

#pressurewash h2 {
  text-align: start;
}

#pressurewash .split_left {
  background-image: url("../img/pressurewashing.jpg");
}

.split_frame {
  position: relative;
  min-height: 300px;
}

.split_frame h2 {
  position: absolute;
  top: 40px;
  width: 100%;
  padding: 20px 35px;
  color: #ffffff;
  font-family: 'Reenie Beanie', cursive;
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: 0.05rem;
  background: rgba(0, 0, 0, 0.3);
}

.featuredescr {
  background: #ffffff;
}

.featuredescr p {
  margin: 0 auto;
  padding: 35px 10px 0;
  max-width: 650px;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
}


.featuredescr .divider {
  width: 100%;
  height: 160px;
  overflow: hidden;
  text-align: center;
}

.featuredescr .divider svg {
  width: 100%;
  height: 100%;
}






#feature-block {
  position: relative;
  padding-top: 170px;
  padding-bottom: 100px;
  color: #ffffff;
  background: var(--logo-brown);
}

.feature_text {
  margin: 30px auto;
  width: 90%;
  max-width: 650px;
  color: var(--logo-brown);
  font-size: 1.8rem;
  font-weight: 400;
}

.feature_text a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--logo-blue);
}

.services-list {
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--logo-brown);
}

.services-list > div {
  margin-bottom: 10px;
}

.services-list strong {
  margin-left: 5px;
  color:#ffffff;
  text-decoration: underline;
}

#pool-services strong {
  margin-left: 5px;
  color: var(--col1);
}

.services-list span {
  font-size: 1.6rem;
  font-weight: 200;
  color:#444444;
}


.form_block {
  margin: 35px auto;
  width: 80%;
  max-width: 600px;
  font-size: 1.8rem;
}

.form_block h4 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--logo-brown);
}

.form_block input, .form_block textarea {
  margin-top: 15px;
  width: 100%;
  padding: 8px;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  border: none;
  border-bottom: 1px solid var(--logo-brown);
  border-radius: 0;
}

.form_block textarea {
  resize: none;
  min-height: 10.5rem;
}

#special {
  display: none;
}


.info_block {
  margin: 75px auto;
  width: 80%;
  max-width: 600px;
  font-size: 1.8rem;
  font-weight: 600;
}

.info_block a {
  margin-top: 25px;
  color: var(--blue-dark);
  font-size: 1.8rem;
}

.info_block strong {
  color: var(--logo-brown);
  font-size: 1.8rem;
}

iframe {
  width: 100%;
  min-height: 250px;
  aspect-ratio: 16/9;
}


/* ----------------------------------------------------------------------- */
/* ------------------------- FOOTER SECTION ------------------------------ */
/* ----------------------------------------------------------------------- */

#main_footer {
  background: #eeeeee;
  padding-bottom: 100px;
}

.footer-content {
  margin: 0 auto;
  padding: 30px;
  max-width: 1280px;
  color: #666666;
  font-size: 1.6rem;
  font-weight: 200;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 15px;
}

.footer-content h4 {
  margin-top: 20px;
  color: var(--logo-brown);
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-content strong {
  color: var(--logo-brown);
}

.footer-content a {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--blue-dark);
}

.footer-content a.active {
  color: var(--feature);
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  font-weight: 400;
  pointer-events: none;
}

.footer-content ul {
  margin-bottom: 35px;
  padding: 15px;
}

.footer-content ul a {
  display: block;
  padding: 4px;
}


.contact-info {
  padding: 30px 50px;
  border-left: 1px solid #cccccc;
  text-align: center;
}

.contact-info .logo {
  display: inline-block;
  width: 150px;
}

.copywrite-info {
  margin-top: 60px;
  padding: 25px;
  grid-column: 1 / span 2;
  color: var(--logo-brown);
  font-size: 1.4rem;
  font-weight: 200;
  text-align: center;
}



/* QUOTE REQUEST FORM POPUP */

.form_block_cta {
  position: relative;
  width: 90%;
  max-width: 500px;
  font-size: 1.6rem;
  color: #333333;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.form_block_cta header {
  display: flex;
  flex-direction: column;
}

.form_block_cta .closemodal {
  margin-left: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
}

.form_block_cta p {
  padding: 0 20px;
  line-height: 1.4;
}


#quote-form {
  padding: 5px 20px 35px;
}

#quote-form input, #quote-form textarea {
  margin-top: 15px;
  width: 100%;
  padding: 8px;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  border: 1px solid var(--logo-brown);
  border-radius: 0;
}

#quote-form textarea {
  resize: none;
  min-height: 10.5rem;
}

.submit-quote-form {
  margin: 10px auto;
}

.cf_success {
  padding: 35px 15px;
  color: var(--logo-brown);
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
}

.cf_success h2 {
  color: var(--logo-blue);
  margin-bottom: 25px;
  font-size: 3.8rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  display: none;
}

.cookie-consent p {
  margin: 0;
  padding: 0;
}

.cookie-consent button {
  background-color: #4CAF50;
  color: white;
  border: none;
  margin: 10px; 
  padding: 10px 20px;
  cursor: pointer;
}

.cookie-consent button#rejectCookies {
  background-color: #f44336;
}


#policies {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 75px 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#policies h1, #policies h2, #policies h3 {
  color: #0056b3;
}

#policies h1 {
  border-bottom: 2px solid #0056b3;
  padding-bottom: 10px;
}

#policies ul {
  list-style-type: disc;
  margin-left: 20px;
}

#policies a {
  color: #0056b3;
  text-decoration: none;
}

#policies a:hover {
  text-decoration: underline;
}

#policies p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  #policies {
      width: 95%;
  }
}



/* STANDARD MODAL POPUP */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}


.cover { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
.contain { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.abs-top { position: absolute; top: 0; left: 0; width: 100%; }
.abs-bot { position: absolute; bottom: 0; left: 0; width: 100%; }
.smooth-scroll { overflow-y: scroll; -webkit-overflow-scrolling: touch; }
.no-scroll { overflow: hidden; }      
.hidden { display: none; }

.flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.fl-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.fl-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
.fl-wrap { -ms-flex-wrap:wrap; flex-wrap:wrap; }
.fl-middle { -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }      
.fl-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.fl-start { -ms-flex-line-pack: start; align-content: flex-start; }
.fl-valign { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }      
.fl-bottom { -ms-flex-item-align: end; align-self: flex-end; }
.fl-space-between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }    
.fl-space-around { -ms-flex-pack: distribute; justify-content: space-around; }
.fl-right { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
.fl-reverse { flex-direction: row-reverse; }
.fl1 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }


.custom-shape-divider-top-1695570671 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1695570671 svg {
  position: relative;
  display: block;
  width: calc(134% + 1.3px);
  height: 70px;
}

.custom-shape-divider-top-1695570671 .shape-fill {
  fill: #FFFFFF;
}

.slide-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.slide-in {
  overflow: hidden;
  opacity: 0;
  animation: slide 2s ease-in-out forwards;
  -webkit-animation: slide 2s ease-in-out forwards;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(100vw);
    -webkit-transform: translateY(100vw);
    -moz-transform: translateY(100vw);
    -ms-transform: translateY(100vw);
    -o-transform: translateY(100vw);
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

/* Delay each line */
.slide-in:nth-child(1) {
  animation-delay: 0.2s;
}

.slide-in:nth-child(2) {
  animation-delay: 1.00s;
}

.slide-in:nth-child(3) {
  animation-delay: 2.00s;
}

.slide-in:nth-child(4) {
  animation-delay: 3.00s;
}


/* Split Text Animates together in Middle */

.split-text {
  display: inline-block;
  overflow: hidden;
}

.left-part, .right-part {
  display: inline-block;
  opacity: 0;
}

.left-part {
  animation: slideInLeft 1s forwards;
}

.right-part {
  animation: slideInRight 1s forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}



.pic_block {
  position: relative;
  margin: 0 auto;
  width: 80%;
  overflow: hidden;
}


.slider {
  position: relative;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}



#prevBtn, #nextBtn {
  position: absolute;
  top: 50%;
  width: 4.5rem;
  height: 8rem;
  background: var(--blue-dark);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}

#prevBtn {
  left: 0;
  padding-right: 5px;
  border-radius: 0 6px 6px 0;
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  -ms-border-radius: 0 6px 6px 0;
  -o-border-radius: 0 6px 6px 0;
}

#prevBtn span {
  display: block;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 0;
  border-right: 20px solid #ffffff;
}

#nextBtn {
  right: 0;
  padding-left: 5px;
  border-radius: 6px 0 0 6px;
  -webkit-border-radius: 6px 0 0 6px 0;
  -moz-border-radius: 6px 0 0 6px 0;
  -ms-border-radius: 6px 0 0 6px 0;
  -o-border-radius: 6px 0 0 6px 0;
}

#nextBtn span {
  display: block;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 20px solid #ffffff;
  border-right: 0;
}


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

  /* ------------------------------------- */
  /* --------- HEADER SECTION ------------ */
  /*  ------------------------------------ */

  #main_header {
    padding: 0 20px;
    background: #ffffff;
  }

  .branding {
    padding: 10px;
    width: 170px;
  }

  .main_nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu_responsive {
    display: flex;
  }


  /* ------------------------------------- */
  /* ----------- MAIN CONTENT ------------ */
  /*  ------------------------------------ */

  .hero {
    min-height: 400px;
  }

  .hero-content {
    width: 90%;
  }

  .hero-about {
    min-height: 250px;
  }

  .about_block {
    margin: -65px auto 15px;
    padding: 35px 25px;
    width: 90%;
  }

  .about_block h2 {
    text-align: center;
  }

  .about_block p {
    padding: 15px 10px;
  }

  .slide-container {
    gap: 15px;
  }

  .header_block_main {
    padding-top: 15px;
  }
  
  .header_block_main p {
    margin: 0;
    padding: 25px 10px;
    width: 100%;
  }

  .split_frame {
    min-height: 220px;
  }

  .split_frame h2 {
    top: auto;
    bottom: 12px;
    padding: 6px;
  }

  .featurewrap .split_left {
    width: 100%;
   }

   #residential h2, #commercial h2, #housewash h2, #pressurewash h2 {
    text-align: center;
  }

  .featuredescr p {
    padding: 35px 25px 0;
    width: 100%;
  }

  .featuredescr .divider {
    height: 100px;
  }

  .pic_block {
    position: relative;
    margin: 0 auto;
    width: 90%;
  }

  .container_block {
    padding: 35px 20px;
  }

  .container_block h2, .container_block h3 {
    margin-bottom: 10px;
  }

  .container_block p {
    padding: 10px 15px;
  }

  .container_block ul {
    padding: 10px 15px;
  }

  .form_block {
    margin: 12px auto 50px; 
    width: 90%;
  }


  /* ------------------------------------- */
  /* --------- FOOTER SECTION ------------ */
  /*  ------------------------------------ */

  .footer-content {
    display: block;
    padding: 15px;
  }

  .contact-info {
    padding: 15px;
    background: #ffffff;
    border: 2px solid var(--logo-blue);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  }

    #prevBtn, #nextBtn {
      width: 3.8rem;
      height: 4.5rem;
    }

    #prevBtn {
      padding-right: 4px;
    }

    #prevBtn span {
      border: 8px solid transparent;
      border-left: 0;
      border-right: 12px solid #ffffff;
    }

    #nextBtn {
      padding-left: 4px;
    }

    #nextBtn span {
      border: 8px solid transparent;
      border-left: 12px solid #ffffff;
      border-right: 0;
    }

  
}

