* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Medium.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url(../fonts/OpenSans-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --primaryColor: #03a696;
  --secondaryColor: #1c5196;
}
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.no-scroll {
  overflow: hidden;
}
a,
button {
  display: inline-block;
  font: inherit;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  aspect-ratio: attr(width) / attr(height);
}
img,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
section > div > div {
  position: relative;
  z-index: 2;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}
.overlay {
  position: relative;
}
.overlay.solid:after {
  background: var(--primaryColor);
}
.overlay.darker:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(17, 103, 92, 1)),
    to(rgba(17, 103, 92, 0.85))
  );
  background: -o-linear-gradient(
    left,
    rgba(17, 103, 92, 1),
    rgba(17, 103, 92, 0.85)
  );
  background: linear-gradient(
    to right,
    rgba(17, 103, 92, 1),
    rgba(17, 103, 92, 0.85)
  );
}
.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: -o-linear-gradient(
    left,
    rgba(17, 103, 92, 0.95),
    rgba(17, 103, 92, 0.4)
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(17, 103, 92, 0.95)),
    to(rgba(17, 103, 92, 0.4))
  );
  background: linear-gradient(
    to right,
    rgba(17, 103, 92, 0.95),
    rgba(17, 103, 92, 0.4)
  );
}
.overlay > div > div {
  position: relative;
  z-index: 99;
}
.overlay h2 {
  position: relative;
  text-align: center;
  color: #fff;
}
.overlay h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #fff;
}
.btn {
  padding: 0.5rem 1rem;
  margin: 1rem 0 0;
  background: -o-linear-gradient(
    left,
    var(--secondaryColor),
    var(--primaryColor)
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--secondaryColor)),
    to(var(--primaryColor))
  );
  background: linear-gradient(
    to right,
    var(--secondaryColor),
    var(--primaryColor)
  );
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}
.image-shadow {
  -webkit-filter: drop-shadow(4px 8px 8px rgba(3, 166, 150, 0.5));
  filter: drop-shadow(4px 8px 8px rgba(3, 166, 150, 0.5));
}
.anchor {
  position: absolute;
  top: -100px;
}
h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}
h2 {
  font-size: 2.5rem;
  color: #0e2b47;
  margin: 0 0 2em;
  text-align: center;
  text-transform: capitalize;
}
h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  text-transform: capitalize;
}
h4 {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 1.875rem;
}
h5 {
  font-size: 1.1875rem;
  font-weight: 600;
}
h6 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}
.top-banner {
  text-align: center;
  color: #fff;
  background-color: #d33;
  padding: 0.5rem;
}
.top-banner h6 {
  font-size: 0.875rem;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--primaryColor);
  z-index: 999999;
}
.nav-container {
  position: relative;
  padding: 1rem 0;
  background-color: #fff;
}
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.logo {
  max-width: 280px;
}
.logo span {
  -webkit-transform: translate(3px);
  -ms-transform: translate(3px);
  transform: translate(3px);
}
.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem 2rem;
  list-style: none;
}
.nav-link {
  font-size: 1rem;
  font-weight: 700;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
  background-color: transparent;
  border: none;
}
.nav-link:hover,
.nav-list li.active > .nav-link {
  color: var(--primaryColor);
}
.nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 5px;
  background: var(--primaryColor);
  transition: width 0.5s;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -ms-transition: width 0.5s;
  -o-transition: width 0.5s;
}
.nav-link:hover:after,
.nav-list li.active > .nav-link:after {
  width: 100%;
}
.nav-menu {
  position: relative;
  padding-right: 18px;
}
.nav-menu:before {
  content: "\276F";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(calc(-50% - 2px));
  -ms-transform: translateY(calc(-50% - 2px));
  transform: translateY(calc(-50% - 2px));
  -webkit-transition: -webkit-transform 0.25s ease 0.25s;
  transition: -webkit-transform 0.25s ease 0.25s;
  -o-transition: transform 0.25s ease 0.25s;
  transition: transform 0.25s ease 0.25s;
  transition: transform 0.25s ease 0.25s, -webkit-transform 0.25s ease 0.25s;
}
.nav-list li:hover > .nav-menu:before {
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(90deg);
  -ms-transform: translateY(calc(-50% - 2px)) rotate(90deg);
  transform: translateY(calc(-50% - 2px)) rotate(90deg);
}
.nav-menu:hover + .sub-menu,
.nav-menu:focus + .sub-menu,
.sub-menu:hover {
  max-height: 460px;
}
.sub-menu {
  position: absolute;
  top: calc(100% + 1px);
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  list-style: none;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  -webkit-transition: 0.25s ease 0.25s;
  -o-transition: 0.25s ease 0.25s;
  transition: 0.25s ease 0.25s;
}
.sub-menu li {
  margin: 1rem;
}
.hamburger {
  display: none;
}
.hamburger {
  width: 28px;
  height: 32px;
  margin-top: 10px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primaryColor);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}
.hamburger span:nth-child(4) {
  top: 16px;
}
header.open .hamburger span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}
header.open .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
header.open .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header.open .hamburger span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}
.hero-section {
  position: relative;
  background-image: url(../images/industries-background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 4rem;
}
.home-page .hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14rem 0 16rem;
  height: 80vh;
  overflow: visible;
  background-image: none;
}
.hero-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.school-page .hero-section {
  background: url(../images/school-hero.webp) center no-repeat;
}
.hero-content {
  position: relative;
  color: #fff;
  z-index: 99;
}
.hero-content h4 {
  display: inline-block;
  padding: 5px 12px;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0.65);
}
.hero-content .btn {
  background: #037f8c;
  border: 2px solid #037f8c;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
}
.hero-call.btn {
  background-color: transparent;
  border-color: #fff;
  margin-right: 0.5rem;
}
.hero-call.btn:hover {
  background-color: #03a696;
  border-color: #03a696;
}
.hero-slider {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-slide > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.35);
  -ms-transform: scale(1.35);
  transform: scale(1.35);
  -webkit-transition: -webkit-transform 10s ease;
  transition: -webkit-transform 10s ease;
  -o-transition: transform 10s ease;
  transition: transform 10s ease;
  transition: transform 10s ease, -webkit-transform 10s ease;
}
.hero-slider .swiper-slide.swiper-slide-active > div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hero-next {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: 50px;
  fill: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
}
.home-page .about-section {
  z-index: 999;
}
.about-content h2 {
  position: relative;
  text-align: left;
  margin-bottom: 1.5rem;
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem 4rem;
}
.about > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.about p {
  color: #707070;
}
.team-section {
  background-color: #f7f7f7;
}
.team-content h2 {
  position: relative;
}
.team-content h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 2rem;
  margin: 2rem 0;
}
.team > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 50%;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.team-container .team:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.team-img {
  border-radius: 20px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.team-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  border-radius: 20px;
  background-color: #fff;
}
.team-text h3 {
  color: #000;
  font-weight: 600;
  margin-bottom: 1.75rem;
  line-height: 1.125;
}
.team-text h3 span {
  font-size: 1rem;
}
.motto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-style: italic;
  margin-bottom: 1rem;
}
.motto span {
  display: block;
  text-align: right;
}
.team-text p {
  margin-bottom: 0;
}
.service-page .service-section-2 {
  padding-bottom: 3rem;
}
.overlay .service-section-2 > *,
.overlay .cleaning-section > * {
  color: #fff;
}
.overlay .service-type h2:before {
  background-color: #fff;
}
.service-section {
  position: relative;
  width: 100%;
  color: #fff;
  background-color: #f7f7f7;
}
.home-page .service-section {
  background: url(../images/service-background.webp) no-repeat center/cover;
}
.home-page .service-section.industries {
  background: url(../images/industries-background.webp) no-repeat center/cover;
}
.service-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.service-content h2 {
  position: relative;
  text-align: center;
}
.home-page .service-content h2 {
  color: #fff;
}
.service-content h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.home-page .service-content h2:before,
.about-page .service-content h2:before {
  background-color: #fff;
}
.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 0 0 2rem;
}
.single-service {
  margin-bottom: 4rem;
  padding-bottom: 0;
}
.single-service > a {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 50%;
}
.services.single-service > a .img {
  min-width: 80px;
  width: 150px;
  height: 100%;
}
.single-service > a .service-icon {
  min-width: 70px;
  width: 70px;
  height: 70px;
}
.single-service > a h4 span {
  color: #f99b24;
  margin-right: 5px;
}
.industries .services > a {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 5rem);
  flex: 1 1 calc(50% - 5rem);
}
.services > a {
  position: relative;
  max-width: 400px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(33.33% - 6rem);
  flex: 1 1 calc(33.33% - 6rem);
  width: calc(33.33% - 6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  height: 120px;
  padding-left: 3rem;
  margin-right: 40px;
  text-align: left;
  border: 3px solid #d7d7d7;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
}
.services > a:hover {
  border: 3px solid var(--secondaryColor);
  -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.services > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0cbaba;
  background-image: -o-linear-gradient(left, #0cbaba 0%, #380036 90%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0cbaba),
    color-stop(90%, #380036)
  );
  background-image: linear-gradient(to right, #0cbaba 0%, #380036 90%);
  opacity: 0.5;
  -webkit-transition: width 0.25s ease;
  -o-transition: width 0.25s ease;
  transition: width 0.25s ease;
  z-index: -1;
}
.services > a:hover:before {
  width: 100%;
}
.services > a:after {
  content: "\203A";
  position: absolute;
  color: #d7d7d7;
  top: 50%;
  right: -45px;
  font-size: 4rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: right 0.25s ease, color 0.25s ease;
  -o-transition: right 0.25s ease, color 0.25s ease;
  transition: right 0.25s ease, color 0.25s ease;
}
.services > a:hover:after {
  right: -50px;
  color: var(--secondaryColor);
}
.services h4 {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #000;
}
.service-2-content .service-flex h4 {
  text-transform: capitalize;
  color: #000;
  margin-bottom: 0.75rem;
}
.services > a:hover h4,
.home-page .services h4 {
  color: #fff;
}
.services > a .img {
  min-width: 80px;
  width: 80px;
  height: 100%;
}
.services > a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5px;
  width: 50px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
}
.services p {
  font-weight: 500;
}
.services a {
  font-size: 1.125rem;
  font-weight: 600;
}
.service-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem 4rem;
}
.service-flex > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.service-page .service-flex > .service-img {
  aspect-ratio: 4/3;
  -webkit-filter: drop-shadow(rgba(3, 166, 150, 0.35) 0px 1px 1px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 2px 2px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 3px 3px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 4px 4px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 6px 6px);
  filter: drop-shadow(rgba(3, 166, 150, 0.35) 0px 1px 1px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 2px 2px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 3px 3px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 4px 4px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 6px 6px);
}
.service-page .service-flex > .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.service-type h2 {
  position: relative;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 1em;
}
.service-type h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primaryColor);
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.service-type a {
  font-weight: 700;
  color: var(--primaryColor);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--primaryColor);
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.service-type a:hover {
  color: var(--secondaryColor);
}
.why {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}
.why > .why-img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40%;
  flex: 1 1 40%;
}
.why > .why-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 60%;
  flex: 1 1 60%;
}
.why-text > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
.why-text > div svg {
  max-width: 30px;
  margin-top: 0.25rem;
  fill: var(--primaryColor);
}
.certifications-section {
  text-align: center;
  color: #fff;
  padding-top: 0;
}
.certifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.certifications > div img {
  width: 100px;
  height: auto;
}
.certifications > div:first-child img {
  width: 70px;
}
.certifications > div:nth-child(2) {
  width: 80px;
}
.certifications > div:last-child img {
  width: 50px;
}
.clients-section {
  padding: 5rem 0;
  background-color: #f7f7f7;
}
.clients-section h2 {
  position: relative;
}
.clients-section h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.clients {
  margin: auto;
  overflow: hidden;
  position: relative;
}
.clients:before,
.clients:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f7f7f7),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(left, #f7f7f7 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(
    to right,
    #f7f7f7 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.clients:after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
  -ms-transform: rotate(180deg);
  transform: rotateZ(180deg);
}
.clients:before {
  left: 0;
  top: 0;
}
.clients .slide-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
  width: calc(1600px * 2);
  -webkit-animation: clientScroll 40s linear infinite;
  animation: clientScroll 40s linear infinite;
}
.clients .client img {
  width: auto;
  height: 50px;
}
.clients .client.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
@-webkit-keyframes clientScroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1600px);
    transform: translateX(-1600px);
  }
}
@keyframes clientScroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1600px);
    transform: translateX(-1600px);
  }
}
.initiative-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4rem;
}
.initiative-content > .initiative-img {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40%;
  flex: 1 1 40%;
}
.initiative-content > .initiative-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 60%;
  flex: 1 1 60%;
}
.initiative-text h2 {
  text-align: left;
  margin-bottom: 1rem;
}
.offer-content .listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.listing > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 3rem);
  flex: 1 1 calc(50% - 3rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
.listing > div svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 54px;
  fill: #fff;
}
.listing > div p {
  padding-bottom: 2rem;
  border-bottom: 1px solid #fff;
}
.slider-service-section {
  background-color: #f7f7f7;
}
.slider-service-section h2 {
  position: relative;
  text-align: center;
}
.slider-service-section h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.slider-service-section .container {
  max-width: 920px;
}
.slider-service-container {
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem;
}
.slider-service {
  padding: 0 1rem;
  background-color: #f7f7f7;
}
.slider-service-img {
  aspect-ratio: 5/3;
  margin: 0 auto 3rem;
  -webkit-filter: drop-shadow(rgba(3, 166, 150, 0.35) 0px 1px 1px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 2px 2px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 3px 3px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 4px 4px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 6px 6px);
  filter: drop-shadow(rgba(3, 166, 150, 0.35) 0px 1px 1px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 2px 2px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 3px 3px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 4px 4px)
    drop-shadow(rgba(3, 166, 150, 0.35) 0px 6px 6px);
}
.slider-service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.slider-service-text {
  max-width: 95%;
  margin: 0 auto;
}
.slider-service ul p {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.slider-service ul li {
  position: relative;
  text-align: left;
  list-style: none;
  padding-left: 2rem;
  padding-bottom: 1rem;
}
.slider-service ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -5px;
  width: 24px;
  height: 24px;
  background-size: contain;
}
.slider-service-next,
.slider-service-prev {
  position: absolute;
  top: 420px;
  width: 42px;
  height: 42px;
  padding: 0.5rem;
  fill: #fff;
  background-color: var(--secondaryColor);
  border-radius: 50%;
  border: 3px solid #fff;
  cursor: pointer;
  z-index: 99999;
}
.slider-service-next {
  right: 50px;
}
.slider-service-prev {
  left: 50px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.slider-service-container .swiper-button-disabled {
  opacity: 0;
}
.janitor.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/janitor.svg);
}
.carpet.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/carpet.svg);
}
.floor.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/floor.svg);
}
.building.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/building.svg);
}
.tile.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/tile.svg);
}
.wooden-floor.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/wooden_floor.svg);
}
.shampoo.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/shampoo.svg);
}
.stain.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/stain.svg);
}
.vacuum.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/vacuum.svg);
}
.spray.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/spray.svg);
}
.mold.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/mold.svg);
}
.maintenance.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/maintenance.svg);
}
.disinfect.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/disinfect.svg);
}
.showroom.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/showroom.svg);
}
.workshop.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/workshop.svg);
}
.sofa.slider-service .slider-service-text > ul > li:before {
  background-image: url(../images/icons/sofa.svg);
}
.slider-service-content .swiper-pagination-bullet-active {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  background-color: var(--primaryColor);
}
.slider-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
  margin: 0 auto 2rem;
}
.slider-tabs::-webkit-scrollbar {
  display: none;
}
.slider-tabs .tab-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background-color: var(--primaryColor);
  -webkit-transition: left 0.25s ease;
  -o-transition: left 0.25s ease;
  transition: left 0.25s ease;
}
.slider-tabs > .tab {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0.5rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
  cursor: pointer;
}
.slider-tabs > .tab.active {
  color: var(--primaryColor);
}
.slider-tabs > .tab:hover {
  color: var(--primaryColor);
}
.flyer-section {
  padding: 5rem 0;
}
.flyer-section h2 {
  position: relative;
}
.flyer-section h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.flyers {
  padding: 0 1.5rem;
}
.flyers ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.flyers ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 2rem);
  flex: 1 1 calc(50% - 2rem);
  min-width: 320px;
}
.flyer-content ul li {
  position: relative;
  text-align: left;
  list-style: none;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  font-size: 1.25rem;
}
.flyers ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  gap: 1rem;
}
.flyers ul li span {
  display: inline-block;
  width: 30px;
  fill: var(--primaryColor);
}
.flyer-points {
  padding: 0 1.5rem;
}
.area-section {
  padding-bottom: 8rem;
  background: url(../images/florida-bg.webp) no-repeat center 32% / cover;
}
.area-section h2 {
  text-align: left;
  margin-bottom: 1.25em;
}
.area-section ul {
  padding-left: 1rem;
}
.area-section li {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 1.125rem;
}
.area-section h2:before {
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.testimonial-section {
  overflow: hidden;
}
.testimonial-section h2 {
  margin-bottom: 1em;
}
.testimonial-container {
  position: relative;
  width: 125vw;
  left: 50%;
  max-width: 1920px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.testimonial-content h2,
.testimonial-content p {
  text-align: center;
}
.testimonial-content > p {
  color: #707070;
}
.testimonial-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonial {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 6rem 1.875rem 1.875rem;
  position: relative;
  opacity: 0.25;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.testimonial-content .swiper-slide-active .testimonial {
  opacity: 1;
}
.testimonial-img {
  width: 150px;
  height: 150px;
  background-color: var(--secondaryColor);
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.testimonial-content .swiper {
  padding-bottom: 4rem;
}
.testimonial-content .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.testimonial-content .swiper-slide {
  opacity: 0;
  height: auto;
  margin: 8rem 0 0;
}
.testimonial-content .swiper-slide-active,
.testimonial-content .swiper-slide-next,
.testimonial-content .swiper-slide-prev {
  opacity: 1;
}
.testimonial-content .swiper-pagination-bullet-active {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  background-color: var(--primaryColor);
}
.author-name {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.author-name span {
  font-weight: 700;
}
.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
}
.stars {
  width: 120px;
  margin: 0.5rem auto 1.5rem;
}
.testimonial-video {
  margin: 2rem auto 0;
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-video video {
  display: block;
  width: 100%;
  height: auto;
}
.link {
  color: var(--secondaryColor);
  font-weight: 700;
  text-decoration: underline;
}
.full-testimonial-content h2 {
  margin-bottom: 1em;
}
.full-testimonial-content h2:before {
  display: none;
}
.full-testimonial {
  position: relative;
  text-align: center;
}
.full-testimonial {
  padding-bottom: 2rem;
  background-color: #fff;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
}
.full-testimonial p {
  padding: 0 1.5rem;
}
.full-testimonial-section .anchor {
  position: absolute;
  top: -40px;
}
.full-testimonial-img {
  aspect-ratio: 18/9;
  margin-bottom: 2rem;
}
.full-testimonial-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.full-testimonial-video {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}
.full-testimonial-video:after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.full-testimonial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-section h2 {
  text-align: left;
  margin-bottom: 1rem;
}
.contact-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-top: 2rem;
  list-style: none;
}
.contact-social-list li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  height: 60px;
  background-color: #ecf0f1;
  border: 1px solid #ecf0f1;
  -webkit-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.contact-social-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.contact-social-list li a svg {
  width: 34px;
  -webkit-transition: fill 0.25s ease;
  -o-transition: fill 0.25s ease;
  transition: fill 0.25s ease;
}
.contact-social-list li:hover {
  background-color: #81ecec;
  border: 1px solid var(--primaryColor);
}
.contact-social-list li:hover a svg {
  fill: #fff;
}
.contact-us {
  margin-top: 2rem;
}
.contact-us-form {
  margin-top: 2rem;
}
.contact-us-form form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.contact-us-form form input,
.contact-us-form form textarea {
  display: block;
  font: inherit;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.75rem 1.25rem;
  background-color: #ecf0f1;
  color: #000;
  border: 2px solid #ffffff70;
  outline-color: var(--primaryColor);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact-us-form form textarea {
  min-height: 120px;
  max-height: 240px;
  padding: 1rem 1.25rem;
  resize: vertical;
}
.contact-us-form form button {
  width: 100%;
  padding: 1rem;
  background: var(--primaryColor);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid var(--primaryColor);
  margin-top: 1rem;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  -o-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.contact-us-form form button:hover {
  color: var(--primaryColor);
  background-color: transparent;
}
.contact-success,
.contact-error {
  display: none;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}
.contact-success {
  color: var(--primaryColor);
}
.contact-error {
  color: #c0392b;
}
.contact-error svg {
  display: inline-block;
  fill: var(--primaryColor);
  width: 25px;
  vertical-align: middle;
}
.cleaning-section {
  background-color: #f7f7f7;
}
.cleaning-section h2 {
  position: relative;
}
.cleaning-section h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.cleaning-section h4 {
  color: #0e2b47;
  margin-bottom: 1rem;
}
.cleaning-content > div > h4 {
  text-align: center;
}
.cleaning-section h6 {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
}
.cleaning-list {
  counter-reset: counter;
  list-style: none;
  margin: 4rem 0 5rem;
  padding-left: 1rem;
}
.cleaning-list > li {
  background: #fff;
  border-radius: 0 0.5rem 0.5rem;
  counter-increment: counter;
  margin-top: 1rem;
  min-height: 3rem;
  padding: 1rem 1rem 1rem 4rem;
  position: relative;
}
.cleaning-list > li:before,
.cleaning-list > li {
  -webkit-box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05),
    0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05),
    0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}
.cleaning-list > li:before,
.cleaning-list > li:after {
  background: -o-linear-gradient(315deg, #b0f5f4 0%, #dec3f5 100%);
  background: linear-gradient(135deg, #b0f5f4 0%, #dec3f5 100%);
  border-radius: 1rem 1rem 0;
  content: "";
  height: 3rem;
  left: -1rem;
  overflow: hidden;
  position: absolute;
  top: -1rem;
  width: 3rem;
}
.cleaning-list.counting > li:before {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  content: counter(counter);
  color: var(--primaryColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 900 1.5em/1 "Montserrat";
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
}
.cleaning-list li svg {
  position: absolute;
  top: 6px;
  left: 12px;
  width: 44px;
  z-index: 99;
  fill: var(--primaryColor);
}
.cleaning-list > li + li {
  margin-top: 2rem;
}
.cleaning {
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
}
.cleaning .cleaning-flex:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cleaning-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}
.cleaning-flex > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 50%;
}
.cleaning-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cleaning-text {
  -ms-flex-item-align: center;
  align-self: center;
  padding: 2rem;
}
.cleaning-text p:last-child {
  margin-bottom: 0;
}
.safety-content h2 {
  position: relative;
}
.safety-content h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #fff;
}
.safety-content .listing div {
  width: 100%;
  color: #fff;
}
.steps-content h2 {
  position: relative;
}
.steps-content h2:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.45em;
  width: 1.5em;
  height: 3px;
  border-radius: 5px;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  background-color: var(--primaryColor);
}
.steps-content > h6 {
  text-align: center;
  margin-bottom: 2rem;
}
.steps {
  margin-left: 0;
  padding-right: 0;
  list-style-type: none;
}
.steps li {
  fill: var(--primaryColor);
  counter-increment: step-counter;
  padding: 1rem 1rem 2rem;
  position: relative;
}
.steps li:before {
  content: counter(step-counter);
  font-family: "Roboto Slab", sans-serif;
  font-size: 60px;
  font-weight: 700;
  padding: 15px 8px 0 20px;
  border-radius: 3px;
}
.steps li:nth-of-type(2n) {
  color: #fff;
  background: var(--primaryColor);
  fill: #fff;
}
.steps li span {
  font-size: 22px;
  font-weight: 600;
}
.steps li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 10px 0 10px 10px;
}
.steps svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 50px;
}
.steps p:before,
.steps p:after {
  width: 0;
  height: 0;
  position: absolute;
  bottom: -24px;
  left: 100px;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid #fff;
  z-index: 2;
  content: "";
}
.steps li:nth-of-type(2n) p:before,
.steps li:nth-of-type(2n) p:after {
  border-top: 24px solid var(--primaryColor);
}
.steps li:last-child p:before,
.steps li:last-child p:after {
  width: 0;
  height: 0;
  position: absolute;
  bottom: -20px;
  left: 100px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid transparent;
  z-index: 4;
}
.cta-section {
  background: url(../images/workspace.webp) no-repeat center 60% / cover;
  text-align: center;
  color: #fff;
  padding-bottom: 10rem;
}
.cta-section h2 {
  margin-bottom: 1.25em;
}
.cta-section p {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.125rem;
}
.terms-section {
  padding: 4rem 0 10rem;
}
.terms-content > div {
  margin-bottom: 2rem;
}
.terms-content ul {
  padding-left: 30px;
  margin-top: 1rem;
}
footer {
  position: relative;
  padding: 0;
  color: #000;
  background-color: #edf2f7;
  overflow: visible;
  z-index: 99;
}
footer:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: clamp(100px, 16vw, 360px);
  background-image: url(../images/wave.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  pointer-events: none;
  z-index: -1;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d6d6d6;
  text-align: center;
}
.footer-contact > a,
.footer-nav > div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.footer-contact svg {
  width: auto;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem 3rem;
  padding-top: 2rem;
}
.footer-nav > div:not(:first-child) {
  padding-left: 3rem;
  border-left: 1px solid #1b2529;
}
.footer-nav > div:nth-child(2) .footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-nav > div:nth-child(2) .footer-list li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 1rem);
  flex: 1 1 calc(50% - 1rem);
}
.footer-list {
  list-style: none;
  font-weight: 500;
  margin: 1rem 0;
}
.footer-list li {
  margin: 0.5rem 0;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
footer .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  list-style: none;
}
footer .social-list li a svg {
  min-width: 32px;
  width: 32px;
}
.copyright {
  padding: 0.5rem 0;
  margin-top: 25px;
  border-top: 1px solid #d6d6d6;
}
.copyright p {
  font-size: 0.75rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
  .home-page .hero-section {
    padding: 12rem 0 14rem;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .logo {
    width: 200px;
  }
  .home-page .hero-section {
    padding: 6rem 0 12rem;
  }
  .services {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .services > a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 6rem);
    flex: 1 1 calc(50% - 6rem);
    width: calc(50% - 6rem);
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  main > section:nth-child(2) {
    padding-top: 8rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .hamburger {
    display: block;
  }
  .logo {
    width: 180px;
  }
  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    background-color: #fff;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    text-align: center;
    z-index: -1;
  }
  header.open .nav-list {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    -webkit-box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
  }
  header.active .nav-list {
    left: -100%;
  }
  .nav-menu {
    position: relative;
  }
  .nav-list li:hover > .nav-menu:before {
    -webkit-transform: translateY(calc(-50% - 2px));
    -ms-transform: translateY(calc(-50% - 2px));
    transform: translateY(calc(-50% - 2px));
  }
  .nav-menu.focus + .sub-menu,
  .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    max-height: none;
  }
  .sub-menu {
    width: 100%;
    top: 1px;
    right: -100%;
    max-height: none;
    padding-bottom: 2.5rem;
    -webkit-box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 34px 5px rgba(0, 0, 0, 0.06);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 0;
    visibility: hidden;
  }
  .sub-menu-back {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
    -ms-transform: translateX(-50%) scale(-1);
    transform: translateX(-50%) scale(-1);
  }
  .sub-menu-back:after {
    content: "\279C";
    color: var(--primaryColor);
    font-size: 1.5rem;
    font-weight: 700;
  }
  .home-page .hero-section {
    padding: 4rem 0 10rem;
  }
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-heading:before {
    left: 5%;
  }
  .cleaning-flex,
  .cleaning .cleaning-flex:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .team,
  .team-container .team:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .team > .team-img {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
  .service-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-2-content .service-flex:nth-child(even) .service-img,
  .service-img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .service-2-content .service-flex:nth-child(odd) .service-type,
  .service-2-content .service-flex:nth-child(odd) .service-type h2 {
    text-align: left;
  }
  .service-2-content .service-flex:nth-child(odd) .service-type h2:after {
    right: unset;
    left: 0;
  }
  .why {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .initiative-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .slider-service-next,
  .slider-service-prev {
    top: 300px;
  }
  .subscribe-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-nav > div {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 2rem);
    flex: 1 1 calc(50% - 2rem);
  }
  .footer-nav > div:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
  footer:before {
    top: 2px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  main > section:nth-child(2) {
    padding-top: 5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .hero-section {
    padding: 8rem 0 3rem;
    text-align: center;
  }
  .home-page .hero-section {
    padding: 8rem 0 8rem;
  }
  .home-page .hero-section:before {
    bottom: 0;
  }
  .single-service {
    margin-bottom: 2rem;
  }
  .services.single-service > a .img {
    min-width: 80px;
    width: 80px;
  }
  .services {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    gap: 2rem;
    padding-left: 20px;
  }
  .services > a {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .service-img img {
    width: 100%;
    max-width: 450px;
  }
  .slider-service-next,
  .slider-service-prev {
    top: 220px;
    width: 30px;
    height: 30px;
  }
  .slider-service-next {
    right: 30px;
  }
  .slider-service-prev {
    left: 30px;
  }
  .offer-content .listing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .testimonial {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
  }
  .testimonial-container {
    width: 100%;
    left: unset;
    max-width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
  .logo {
    width: 100px;
  }
  .about-heading:before {
    left: 10%;
  }
  .subscribe-flex {
    padding: 1.5rem;
  }
  .subscribe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .subscribe button {
    margin-top: 1rem;
    width: 100%;
  }
  .slider-service {
    padding: 0 0.5rem;
  }
  .slider-service-next,
  .slider-service-prev {
    top: 220px;
  }
  .slider-service-next {
    right: 25px;
  }
  .slider-service-prev {
    left: 25px;
  }
  .contact-us-form form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-nav > div:nth-child(2) .footer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .footer-contact {
    padding-bottom: 3rem;
  }
  .footer-nav {
    padding-top: 3rem;
  }
}
@media (max-width: 400px) {
  .slider-service-next,
  .slider-service-prev {
    top: 125px;
  }
  .slider-service-next {
    right: 15px;
  }
  .slider-service-prev {
    left: 15px;
  }
  .contact-flex > div p br {
    display: none;
  }
}
