@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-dark: #0c0c0d;
  --primary: #0053a0;
  --white: white;
  --pink-colour: #fff4f4;
  --dark-gray-50: #afafaf80;
  --primary-light: #fbf5fa;
  --service-color: #0c0c0d80;
  --dark-gray: #afafaf;
  --primary-light-blue: #eff1fc;
  --light-gray: #f9f9fa;
  --seconday: #de4441;
  --violet: #9e8afd;
  --secondary-light: #de444180;
  --light-grey: #f3f3f3;
  --primary-50: #0053a080;
  --black: black;
  --white-50: #ffffff80;
  --light-blue: #4da8fd;
  --gray: #e9e9e9;
  --secondary-light-blue: #1890ffcc;
  --whitsmoke: #f5f5f5;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary-dark);
  font-family: Inter Tight, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
}

h1 {
  color: var(--primary-dark);
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  color: var(--primary-dark);
  letter-spacing: -.5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-dark);
  letter-spacing: -.5px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2em;
}

h4 {
  color: var(--primary-dark);
  letter-spacing: -.2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-dark);
  letter-spacing: -.2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-dark);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  color: var(--primary-dark);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  align-items: center;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

ul {
  grid-row-gap: 15px;
  background-color: var(--primary-dark);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}

blockquote {
  text-align: center;
  background-image: url('../images/double-quotes.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px 20px 10px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.section {
  padding: 110px 30px;
  position: relative;
}

.section.light-background {
  background-color: var(--white);
}

.section.without-bottom-spacing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  padding-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.section.without-bottom-spacing.spacing-less-up {
  padding-top: 81px;
}

.section.without-bottom-spacing.pink-background {
  background-color: var(--pink-colour);
  text-align: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.without-bottom-spacing.other {
  padding-bottom: 110px;
}

.section.without-bottom-spacing.light-back {
  background-color: #f6f8ff;
  padding-bottom: 110px;
}

.section.overflow-visible {
  padding-left: 30px;
  padding-right: 30px;
  overflow: visible;
}

.section.psace-up {
  padding-top: 129px;
  padding-bottom: 110px;
}

.section.hidden {
  display: none;
}

.section.blue-background {
  background-color: var(--primary);
}

.base-container {
  flex-flow: column;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.align-left.padding {
  padding-left: 37px;
  padding-right: 37px;
}

.base-container.banner-pages {
  z-index: 2;
  flex: 1;
  position: relative;
}

.base-container.blog-list-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.spacing-system-column {
  padding-right: 20px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  text-transform: lowercase;
  border-radius: 50px;
  padding: 10px 15px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
}

.primary-button:hover {
  border-color: var(--primary-dark);
  background-color: var(--primary-dark);
  opacity: 1;
  color: var(--white);
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.pagination {
  margin-top: 30px;
}

.primary-button.submit-button {
  width: 160px;
}

.nav-container {
  z-index: 9;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 13px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-link {
  color: var(--primary-dark);
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-link.w--current {
  color: var(--primary-dark);
}

.nav-link.style-white {
  color: var(--white);
}

.nav-link.style-white:hover {
  color: #fff9;
}

.nav-dropdown-toggle {
  margin-left: 0;
  margin-right: 0;
  padding: 10px 26px 10px 16px;
  transition: color .3s;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown-toggle.style-white {
  color: var(--white);
}

.nav-dropdown-toggle.style-white:hover {
  color: #fff9;
}

.nav-dropdown-icon {
  margin-right: 12px;
  font-size: 10px;
}

.nav-dropdown-list {
  border: 1px solid var(--dark-gray-50);
  background-color: #fff;
  border-radius: 20px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: 360px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 0;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  text-transform: lowercase;
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--primary);
}

.nav-dropdown-link.collection-link-navi {
  margin-left: 0;
}

.nav-dropdown-link.background-colour {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.pages-banner {
  background-color: var(--primary-dark);
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%);
  justify-content: center;
  align-items: flex-end;
  height: 400px;
  padding: 130px 30px 80px;
  display: flex;
}

.pages-banner.blog {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0006, #0006), url('../images/sean-pollock-PhYq704ffdA-unsplash-1_1sean-pollock-PhYq704ffdA-unsplash (1).webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding-top: 117px;
  padding-bottom: 0;
}

.pages-banner.why-choose-us {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000004d, #0000004d), url('../images/3.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 56%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.why-choose-us.service-section {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000004d, #0000004d), url('../images/herocommercial3.webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  min-height: 650px;
  padding-top: 0;
  padding-bottom: 44px;
}

.pages-banner.why-choose-us.service-section.janitorial-service {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0006, #0006), url('../images/12.webp');
}

.pages-banner.why-choose-us.service-section.property-management {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000007d, #0000007d), url('../images/Property--Management-3.avif');
}

.pages-banner.why-choose-us.service-section.industrial {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000005c, #0000005c), url('../images/Industrial-and-manufacturing-2.avif');
}

.pages-banner.why-choose-us.service-section.retail {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000004f, #0000004f), url('../images/Retails-and-commercial-2.avif');
}

.pages-banner.why-choose-us.service-section.mediacl {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000059, #00000059), url('../images/Medical-Clinics-3.avif');
}

.pages-banner.why-choose-us.service-section.schools {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000002e, #0000002e), url('../images/Schools--Educational-Institutions-2.avif');
}

.pages-banner.why-choose-us.service-section.fitness {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0000004f, #0000004f), url('../images/Fitness-Centres--Gyms-3.avif');
}

.pages-banner.why-choose-us.service-section.warehouse {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000052, #00000052), url('../images/Warehouses--Distribution-Centres-1.avif');
}

.pages-banner.why-choose-us.service-section.office-cleaning {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000061, #00000061), url('../images/hero-office-cleaning-HyRqqbS9xvaAqDf8znn275.webp');
}

.pages-banner.why-choose-us.service-section.office-cleaning-service {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0006, #0006), url('../images/2149345512.webp');
}

.pages-banner.about-us {
  background-image: linear-gradient(#011030, #0000 52%), linear-gradient(17deg, #3d4d70c4, #fff0 37%), radial-gradient(circle at 100% 100%, #4182debf, #fff0 12%), linear-gradient(#0000005e, #0000005e), url('../images/Home-3.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 50% 0;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.solutions-two {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0006, #0006), url('../images/sean-pollock-PhYq704ffdA-unsplash-1_1sean-pollock-PhYq704ffdA-unsplash (1).webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 44%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.primary-light {
  background-color: var(--primary-light);
  background-image: none;
}

.pages-banner.primary-light.covid-19 {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#ffffffa8, #ffffffa8), url('../images/hand-6195099_1920.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, cover;
  height: 500px;
}

.pages-banner.career {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000080, #00000080), url('../images/campaign-creators-qCi_MzVODoU-unsplash-1_1campaign-creators-qCi_MzVODoU-unsplash (1).webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.contact-us {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#0006, #0006), url('../images/Home-1.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 44%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.touchpoint-cleaning {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/66ef17e68f364dd459a9f4c1_1892182732.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.matron-services {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Special-Services-2.webp');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  height: 500px;
  padding-bottom: 0;
}

.pages-banner.matron-services.day-porter-servcie {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/DAY-PORTER---Photo.avif');
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 60px;
}

.pages-banner.janitorial-services {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Janitorial-Services.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 80%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.building-operations-superintendent-services {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Service--Mechanical-room.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 61px;
  display: flex;
}

.pages-banner.carpet-cleaning-restoration {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Commercial.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.complete-building-solutions {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/-235598848.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.electrostatic-spray-disinfection {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Electrostatic-Spray.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.emergency-cleaning-services {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Emergency-cleaning-company.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.event-cleaning-services {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Event-Cleaning-2.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.event-cleaning-services.post-construction-cleaning {
  background-image: linear-gradient(#00000078, #00000078), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Post-Construction-Cleaning.avif');
}

.pages-banner.event-cleaning-services.emergency-cleaning-services {
  background-image: linear-gradient(#00000082, #00000082), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Emergency-cleaning-company-p-800.webp');
}

.pages-banner.event-cleaning-services.electrostatic-spray-disinfection {
  background-image: linear-gradient(#00000080, #00000080), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Electrostatic-Spray.avif');
}

.pages-banner.event-cleaning-services.janitorial-services {
  background-image: linear-gradient(#0000, #0000), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Janitorial-Services.avif');
}

.pages-banner.event-cleaning-services.carpet-cleaning-restoration {
  background-image: linear-gradient(#00000082, #00000082), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Carpet-Cleaning--Disinfection.avif');
}

.pages-banner.event-cleaning-services.day-porter-day-matron-services {
  background-image: linear-gradient(#00000080, #00000080), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/DAY-PORTER---Photo.avif');
}

.pages-banner.event-cleaning-services.building-operations-superintendent {
  background-image: linear-gradient(#00000080, #00000080), radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Service--Mechanical-room.avif');
}

.pages-banner.interior-exterior-power-sweeping {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/-1087885499.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.line-marking-stenciling {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/-2039022986.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.natural-stone-restoration {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/-1914439834.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.power-washing {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Power-Washing.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.faq {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%), linear-gradient(#00000080, #00000080), url('../images/122392.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 540px;
}

.pages-banner.window-cleaning {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/2149345512.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.post-construction {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Post-Construction-Cleaning.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.emergency-flood {
  background-image: linear-gradient(to bottom, var(--service-color), var(--service-color)), radial-gradient(circle farthest-corner at 0% 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle farthest-corner at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle farthest-corner at 100% 100%, #9e8afd66, #fff0 19%), url('../images/Emergency-Flood-Restoration.avif');
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat, repeat, repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto, cover;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  padding-bottom: 60px;
}

.pages-banner.toronto {
  background-image: radial-gradient(circle at 0 41%, #de444129, #fff0 12%), linear-gradient(17deg, #9e8afd4d, #fff0 37%), radial-gradient(circle at 100% 100%, #de44414d, #fff0 12%), radial-gradient(circle at 100% 100%, #9e8afd66, #fff0 19%);
  min-height: 500px;
}

.banner-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
}

.banner-title.text-dark {
  color: var(--primary-dark);
}

.banner-title.services-details {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 72px;
  line-height: 72px;
}

.banner-title.blog-details {
  color: var(--primary-dark);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 60px;
}

.banner-title.blog-titlte {
  font-size: 44px;
}

.banner-title.smaller-title {
  font-size: 56px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--dark-gray-50);
  min-width: 280px;
  height: auto;
  color: var(--primary-dark);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 8px 22px;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--dark-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

._404 {
  text-align: center;
  font-size: 90px;
}

._404-content-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.coming-soon-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 690px;
  margin-left: 0;
  margin-right: 40px;
  display: flex;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--dark-gray-50);
  min-width: 300px;
  height: auto;
  color: var(--primary-dark);
  text-transform: lowercase;
  border-radius: 20px;
  margin-bottom: 0;
  padding: 9px 22px;
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--primary);
}

.coming-soon-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.coming-soon-heading {
  margin-top: 60px;
  font-size: 70px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.blog-sidebar-post-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 12px;
  transition: all .3s;
  display: inline-block;
}

.blog-sidebar-post-category:hover {
  border-color: var(--primary-dark);
  background-color: var(--primary-dark);
}

.blog-template-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-template-image {
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 20px;
  width: 100%;
  height: 540px;
  margin-bottom: 40px;
}

.blog-template-date {
  margin-top: 0;
  margin-bottom: 0;
}

.blog-template-pagination {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  align-items: center;
  width: 100%;
  margin-top: 70px;
  display: flex;
}

.prev-post-arrow {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-pagination-icon {
  width: 30px;
}

.next-post-arrow {
  color: var(--dark-gray);
  margin-bottom: 0;
  margin-left: 25px;
  font-family: "Fa solid 900", sans-serif;
}

.blog-template-prev-button {
  flex: 1;
  display: flex;
}

.blog-template-next-button {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.blog-template-pagination-link {
  align-items: center;
  width: auto;
  display: flex;
}

.blog-template-next {
  text-align: right;
}

.footer {
  background-color: var(--primary-light-blue);
  align-items: flex-start;
  padding: 40px 40px 25px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  border-top: 1px solid var(--dark-gray-50);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 25px;
  display: flex;
}

.footer-rights {
  font-size: 13px;
}

.footer-copyright {
  font-size: 13px;
  display: inline;
}

.footer-copyright.link {
  color: var(--primary-dark);
  margin-left: 18px;
}

.footer-copyright.link:hover {
  color: var(--primary);
}

.footer-copyright-link {
  letter-spacing: .2px;
  margin-right: 5px;
  font-size: 13px;
  text-decoration: none;
  transition: color .3s;
  display: inline;
}

.footer-copyright-link:hover {
  color: var(--primary-dark);
}

.section-title-wrapper {
  text-align: center;
  max-width: none;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background-image: linear-gradient(#9e8afdb3, #de4441b3), linear-gradient(#000, #000);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.team-social-links-wrapper {
  grid-column-gap: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fffc;
  border-radius: 50px;
  justify-content: center;
  padding: 6px 14px;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.style-guide-button-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.career-list-item-wrapper {
  background-color: var(--primary-light);
  border-radius: 20px;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px 35px;
  display: flex;
}

.career-position {
  transition: color .2s;
}

.career-position:hover {
  color: var(--primary);
}

.career-type {
  text-align: center;
  font-size: 18px;
}

.career-button-wrapper {
  text-align: right;
  width: 30%;
}

.career-position-wrapper {
  width: 40%;
  display: flex;
}

.career-type-wrapper {
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-large.no-margin {
  margin-bottom: 0;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.banner-title-wrapper.center-style {
  text-align: center;
  align-items: center;
  padding-right: 0;
}

.banner-title-wrapper.services-details {
  padding-right: 0;
}

.text-white {
  color: var(--white);
}

.banner-description {
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.banner-description.text-white {
  text-align: left;
}

.section-title-description {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.section-title {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 52px;
}

.section-title.no-margin {
  text-align: center;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  display: flex;
}

.accordion-wrapper.service-details {
  margin-top: 60px;
}

.accordion-item {
  border: 1px solid var(--dark-gray-50);
  border-radius: 20px;
  width: 100%;
  padding: 20px 30px;
  position: static;
}

.accordion-item.white-style {
  background-color: var(--white);
  border-style: none;
}

.accordion-icon {
  margin-left: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 17px;
  line-height: 24px;
}

.accordion-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.accordion-list-content {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.accordion-title.h6 {
  font-size: 20px;
}

.light-background {
  background-color: var(--light-gray);
}

.coming-soon-image {
  object-fit: cover;
  border-radius: 20px;
  max-width: 480px;
  height: 420px;
}

.job-position-wrapper {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.job-position-content-wrapper {
  width: 67%;
  padding-right: 70px;
}

.job-position-sidebar-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--primary-light);
  border-radius: 20px;
  flex-direction: column;
  width: 33%;
  margin-bottom: 0;
  padding: 40px 33px 20px;
  display: flex;
  position: sticky;
  top: 110px;
}

.job-position-sidebar-wrap {
  align-items: center;
  display: flex;
}

.job-position-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
}

.contacts-detail {
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  line-height: 1.3em;
}

.contacts-icon.white-icon {
  color: var(--white);
  margin-right: 2px;
}

.no-margin {
  text-align: left;
  letter-spacing: 1px;
  align-self: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3;
}

.no-margin.text-white {
  color: #fff;
  font-size: 20px;
  display: none;
}

.no-margin.centered, .no-margin.bigger-text {
  text-align: center;
  font-size: 24px;
}

.no-margin.bigger-font {
  font-size: 22px;
  font-weight: 400;
}

.no-margin.space-down {
  margin-bottom: 50px;
}

.no-margin.link-hover {
  color: var(--primary);
}

.no-margin.red-color {
  color: var(--seconday);
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 22px;
}

.contacts-textarea {
  border: 1px solid var(--white);
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  color: var(--primary-dark);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 16px;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
}

.contacts-textarea::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.contacts-input {
  border: 1px solid var(--white);
  background-color: var(--white);
  height: auto;
  color: var(--primary-dark);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1em;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
}

.contacts-input::placeholder {
  color: var(--dark-gray);
  font-size: 16px;
}

.contacts-2-location-wrapper {
  grid-row-gap: 15px;
  border-top: 1px solid var(--dark-gray-50);
  flex-direction: column;
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
}

.contacts-form-wrapper {
  background-color: var(--primary-light);
  border-radius: 20px;
  width: 50%;
  margin-right: 40px;
  padding: 40px;
}

.contacts-content-wrapper {
  width: 50%;
  padding-left: 40px;
}

.contacts-wrapper {
  flex-direction: row;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-link {
  border: 1px solid var(--dark-gray-50);
  color: var(--primary-dark);
  text-align: left;
  border-radius: 50px;
  flex-flow: row;
  margin-bottom: 0;
  margin-right: 0;
  padding: 6px 14px;
  font-size: 12px;
  transition: all .3s;
  display: inline-flex;
}

.footer-link:hover {
  border-color: var(--primary-dark);
  color: var(--primary);
}

.footer-link._100-width {
  justify-content: center;
  align-items: center;
  width: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.footer-social-icons-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.footer-social-icon {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s;
}

.footer-social-icon:hover {
  color: var(--dark-gray);
}

.footer-social-icon.white-icons {
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
}

.footer-links-wrapper {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border-top: .5px solid #000;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: auto;
  margin-top: 14px;
  margin-bottom: 14px;
  padding-top: 15px;
  display: flex;
}

.search-shop-con {
  align-items: center;
  margin-left: -10px;
  display: flex;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  opacity: .7;
}

.search-input {
  border: 1px solid var(--dark-gray-50);
  height: auto;
  color: var(--primary-dark);
  text-transform: lowercase;
  border-radius: 20px;
  margin-bottom: 0;
  padding: 8px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border: 1px solid var(--primary);
}

.search-input::placeholder {
  color: var(--dark-gray);
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.testimonials-card-item {
  background-color: #eff1fc;
  background-image: url('../images/double-quotes-bb.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 160px 74px;
  border-radius: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.service-details-content-wrapper {
  width: 70%;
  margin-right: 40px;
}

.accordion-wrap-one-column {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.service-details-sidebar-wrapper {
  background-color: var(--primary-light);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  padding: 30px;
  display: flex;
  position: sticky;
  top: 120px;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.service-details-sidebar-contacts {
  grid-row-gap: 15px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-wrapper.s {
  margin-top: 0;
}

.service-list-item {
  position: relative;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  width: 33.33%;
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.navbar-fixed {
  background-color: #fff0;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-fixed.adfqs {
  height: auto;
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.empty-state {
  background-color: #ddd0;
  padding: 0;
}

.text-dark {
  color: var(--primary-dark);
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.review-name {
  margin-top: 0;
  margin-bottom: 4px;
}

.testimonials-author-horizontal {
  align-items: center;
  display: flex;
}

.testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.career-collection-list-wrapper {
  width: 100%;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-3-testimonial-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #eff1fc;
  border-radius: 20px;
  flex-direction: column;
  width: 400px;
  padding: 30px;
  transition: all .3s;
  display: flex;
  position: relative;
  left: 0;
}

.review-stars {
  color: #ffc015;
  font-family: "Fa solid 900", sans-serif;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  width: 16px;
  height: 2px;
  margin-right: 5px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.blog-list-main {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  display: flex;
}

.blog-list-main.grid-style {
  grid-column-gap: 27px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-item {
  background-color: var(--white);
  width: 35%;
}

.blog-post-item.grid-style {
  width: 100%;
}

.blog-item-category {
  background-color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 8px 14px;
  line-height: 1em;
  transition: background-color .3s, color .3s;
}

.blog-item-category:hover {
  background-color: var(--primary);
  color: var(--white);
}

.blog-item-top {
  z-index: 1;
  grid-column-gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.blog-posts-collection {
  width: 100%;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  border: 1px solid var(--dark-gray-50);
  border-radius: 50px;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.menu-wrap.tablet-mobile-wrap {
  display: none;
}

.rich-text-style h2 {
  letter-spacing: 0;
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 36px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 36px;
}

.rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style p {
  text-align: left;
}

.rich-text-style.negative-top-bottom {
  text-align: left;
  flex-flow: column;
  margin-top: -20px;
  margin-bottom: -10px;
  display: flex;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.link {
  cursor: pointer;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.brand {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.brand.w--current {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 80px;
  margin-right: 0;
}

.form {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.footer-rights-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.success-message {
  background-color: var(--primary-light);
  color: var(--primary);
  text-align: center;
}

.error-message {
  color: var(--primary);
  background-color: #0000;
  margin-top: 15px;
  padding: 0;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.scroll-banner-3-link {
  z-index: 70;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #ffffff80;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 260px;
  padding: 50px 160px 150px 36px;
  display: flex;
  position: absolute;
  inset: auto -150px -114px auto;
}

.home-banner-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 52px;
  line-height: 1.1em;
}

.text-span-main {
  background-image: linear-gradient(196deg, var(--violet), var(--primary) 56%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.text-span-main.plus {
  background-color: var(--primary);
  background-image: none;
  margin-left: 6px;
  font-size: 80px;
  position: relative;
  top: -15px;
}

.banner-column-one {
  flex-direction: column;
  align-items: flex-start;
  width: 65%;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1em;
  display: flex;
}

.subtitle-main {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
}

.button-arrow-element {
  background-color: var(--primary-dark);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  display: flex;
}

.button-arrow-element.primary {
  background-color: var(--primary);
  color: #0053a0;
}

.button-arrow-element.corner-right-absolute {
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  margin-left: 0;
  transition-property: background-color;
  position: absolute;
  inset: 30px 30px auto auto;
}

.button-arrow-element.corner-right-absolute:hover {
  background-color: var(--primary-dark);
}

.button-arrow-element.corner-right-absolute-white {
  background-color: var(--primary-light);
  width: 50px;
  height: 50px;
  margin-left: 0;
  transition: padding .3s, background-color .3s;
  position: absolute;
  inset: 10px 10px auto auto;
}

.button-arrow-element.corner-right-absolute-white:hover {
  padding-bottom: 6px;
  padding-left: 6px;
}

.button-arrow-element.project-arrow {
  z-index: 2;
  background-color: var(--primary-light);
  width: 50px;
  height: 50px;
  margin-left: 0;
  transition: padding .3s, background-color .3s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.button-arrow-element.project-arrow:hover {
  padding-bottom: 6px;
  padding-left: 6px;
}

.button-arrow {
  display: flex;
}

.arrow-button {
  border: 1px solid var(--dark-gray-50);
  color: var(--primary-dark);
  text-align: center;
  text-transform: lowercase;
  background-color: #3030c000;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
}

.arrow-button:hover {
  opacity: 1;
}

.arrow-button.white-outline {
  border-color: var(--white);
  color: var(--white);
}

.arrow-button.white {
  border-color: var(--white);
  background-color: var(--white);
  text-align: left;
}

.arrow-button.solid-button {
  background-color: var(--seconday);
  color: var(--white);
}

.subtitle-wrapper {
  grid-column-gap: 15px;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.dot {
  background-color: var(--primary-dark);
  border-radius: 100px;
  width: 6px;
  height: 6px;
}

.dot.contact-cta {
  background-color: var(--primary);
  background-image: none;
  width: 16px;
  height: 16px;
}

.dot-wrapper {
  border: 1px solid var(--dark-gray-50);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.button-arrow-nav {
  background-color: var(--primary);
  color: #0053a0;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  transition: background-color .2s;
  display: flex;
}

.button-arrow-nav:hover {
  background-color: var(--primary-dark);
}

.two-column-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.column-one {
  width: 50%;
}

.column-one.assymetric-numbers-block {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.column-one.assymetric {
  flex-direction: column;
  width: 40%;
  display: flex;
}

.column-one.assymetric-values-block {
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  display: flex;
}

.in-section-title {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 19px;
  font-weight: 400;
}

.in-section-title.smaller {
  text-align: left;
  margin-bottom: 15px;
}

.in-section-title.white-link-style {
  color: var(--white);
  transition: color .3s;
}

.in-section-title.white-link-style:hover {
  color: #ffffffb3;
}

.in-section-title.smaller-link-style {
  margin-bottom: 15px;
  transition: color .3s;
}

.in-section-title.smaller-link-style:hover {
  color: var(--primary);
}

.in-section-title.no-margin {
  margin-bottom: 16px;
}

.in-section-title.smaller-text {
  font-size: 36px;
}

.bottom-text {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #03030357;
  border-radius: 20px;
  width: 40%;
  margin: auto 30px 30px;
  padding: 30px;
}

.bottom-text.bigger, .column-two {
  width: 50%;
}

.column-two.assymetric-numbers-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.column-two.assymetric {
  flex-direction: column;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.column-two.assymetric-about {
  width: 70%;
}

.button-wrapper-2 {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.avatars-wrapper {
  flex-direction: row;
  margin-bottom: 10px;
  display: flex;
}

.clients-pics-wrapp {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.clients-pics-wrapp.contact {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.avatars-image {
  object-fit: cover;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  margin-right: 0;
}

.avatars-image.last-item {
  margin-right: 0;
}

.numbers-trusted-partners {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 100px;
  line-height: 1em;
}

.div-block-2 {
  margin-bottom: 60px;
}

.video-lightbox-link {
  width: 100%;
  height: 100%;
}

.video-wrapper {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.video-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-overlay {
  background-color: #0000004d;
  background-image: linear-gradient(41deg, #de444199, #fff0 72%);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 130px 30px 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video-overlay.bottom-style {
  background-image: linear-gradient(41deg, var(--secondary-light), #fff0 72%);
  justify-content: flex-end;
}

.play-button-hover-home {
  z-index: 10;
  background-color: var(--white);
  width: 80px;
  height: 80px;
  color: var(--primary-dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 30px 30px auto auto;
  transform: scale(.85);
}

.play-button-hover-home:hover {
  background-color: var(--primary);
  color: var(--white);
}

.play-icon {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa solid 900", sans-serif;
  position: relative;
}

.three-cards-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.three-cards-wrapper.solutions-two {
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.three-cards-wrapper.solutions-one {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
}

.three-cards {
  background-color: var(--light-grey);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  min-height: auto;
  padding: 30px;
  display: flex;
}

.three-cards.no-bg-style {
  background-color: #fbf5fa00;
  border-radius: 0;
  justify-content: flex-start;
  padding: 0;
}

.solution-category {
  border: 1px solid var(--primary-dark);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 8px 14px;
  line-height: 1em;
  transition: border .2s, background-color .2s, color .2s;
}

.solution-category:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.solution-category.white-style {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary-dark);
}

.solution-category.white-style:hover, .solution-category.primary-style {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.solution-category.primary-style:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--primary-dark);
}

.solution-item-top {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 9px;
  display: flex;
}

.solution-item-top.no-bg-style {
  justify-content: space-between;
  align-items: center;
  margin-top: -60px;
  margin-bottom: 45px;
  padding-left: 0;
  padding-right: 0;
}

.solution-item-top.no-bg-style.other {
  padding-left: 20px;
  padding-right: 20px;
}

.solution-arrow {
  width: 40px;
  height: 40px;
  transition: transform .4s;
}

.solution-arrow:hover {
  transform: scale(.7)rotate(45deg);
}

.section-two-side-title-wrapp {
  z-index: 999;
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.section-two-side-info {
  max-width: 600px;
}

.section-two-side-info.longer {
  max-width: 800px;
}

.cta-loop {
  z-index: 999;
  margin-bottom: -2px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.cta-loop-wrapper {
  grid-column-gap: 40px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta-loop-wrapper.reverse {
  justify-content: flex-end;
}

.cta-loop-item-wrapper {
  grid-column-gap: 40px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta-loop-text {
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 300;
  line-height: 1em;
}

.cta-info {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wrapper-with-image {
  z-index: 1;
  grid-row-gap: 90px;
  background-image: linear-gradient(180deg, var(--primary-50), #bd68a11a 32%, #b86eb01a 69%, #9e8afd4d), linear-gradient(to bottom, #0003, #0003), url('../images/-720694135.avif');
  background-position: 0 0, 0 0, 50% 25%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  min-height: 540px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.numbers-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.numbers-wrap {
  grid-row-gap: 6px;
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 22px;
  display: flex;
}

.number {
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
}

.number-info {
  font-size: 16px;
  line-height: 1.1em;
}

.two-column-wrapper-footer {
  z-index: 999;
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 19px;
  display: flex;
  position: relative;
}

.column-one-footer {
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  display: flex;
}

.column-two-footer {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.footer-text-field {
  border: 1px solid var(--white);
  height: auto;
  color: var(--primary-dark);
  border-radius: 50px;
  margin-bottom: 0;
  padding: 10px 26px;
  font-size: 16px;
  line-height: 1em;
}

.footer-text-field:focus {
  border-color: var(--primary-dark);
}

.footer-text-field::placeholder {
  color: var(--dark-gray);
}

.footer-form-block {
  margin-top: 0;
  margin-bottom: 0;
}

.collapsing-cards-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
}

.collapsing-cards {
  background-color: #e7a9a9;
  border-radius: 20px;
  width: 80px;
  min-width: 80px;
  transition: all .3s;
  position: relative;
}

.collapsing-cards.last {
  background-image: linear-gradient(12deg, var(--secondary-light), #fff0 47%), url('../images/portrait-smart-professional-african-american-man-standing_1portrait-smart-professional-african-american-man-standing.webp');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex: 1;
}

.collapsing-cards.second {
  background-image: linear-gradient(0deg, var(--secondary-light), #fff0 47%), url('../images/portrait-handsome-young-man_1portrait-handsome-young-man.webp');
  background-position: 0 0, 48% 0;
  background-size: auto, cover;
}

.collapsing-cards.first {
  background-color: var(--primary-light-blue);
  background-image: linear-gradient(0deg, var(--secondary-light), #fff0 47%), url('../images/portrait-cheerful-attractive_1portrait-cheerful-attractive.webp');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
}

.team-collapsing-arrow {
  background-color: var(--white);
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 12px;
  transition: transform .4s, color .3s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 20px;
}

.team-collapsing-arrow:hover {
  transform: rotate(45deg);
}

.icon-100-arrow {
  width: 100%;
  height: 100%;
}

.team-collapsing-info {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #de444199;
  border-radius: 20px;
  width: 200px;
  padding: 20px;
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 80px;
  overflow: hidden;
}

.team-collapsing-info.first, .team-collapsing-info.second {
  background-color: var(--primary-50);
  opacity: 0;
}

.team-collapsing-info.last {
  background-color: var(--primary-50);
}

.collapsing-cards-name {
  color: var(--white);
  margin-top: 0;
}

.collapsing-cards-position {
  color: var(--white);
}

.home-paragraphs-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.values-faq {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.left-arrow-testimonial {
  color: #241f21;
  background-color: #0000;
  border: 1px solid #241f21;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  transition: background-color .3s, color .3s;
  display: none;
  inset: 40px 100px auto auto;
}

.left-arrow-testimonial:hover {
  color: #fff;
  background-color: #241f21;
}

.home-testimonial-wrapp {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--white);
  background-image: radial-gradient(circle farthest-corner at 0% 100%, #0053a03b, #fff0 36%), linear-gradient(345deg, var(--primary-50), #fff0 39%), radial-gradient(circle farthest-corner at 0% 50%, #9e8afd4d, #fff0 33%);
  border-radius: 20px;
  align-items: center;
  min-height: 100%;
  padding: 40px 120px 40px 40px;
  transition: all .4s;
  display: flex;
}

.slide-nav-no-style {
  display: none;
}

.testimonial-quote {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
}

.home-testimonial {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.slide-testimonial {
  min-height: 100%;
}

.right-arrow-testimonial {
  color: #241f21;
  background-color: #0000;
  width: 40px;
  height: 40px;
  font-size: 14px;
  transition: background-color .3s, color .3s;
  inset: 40px 40px auto auto;
}

.slider-testimonials {
  background-color: #0000;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
}

.mask-testimonial {
  height: auto;
}

.testimonial-icon-arrow {
  width: 40px;
  height: 40px;
  transition: transform .4s;
}

.testimonial-icon-arrow:hover {
  transform: scale(.7)rotate(45deg);
}

.quote-icon-cut {
  z-index: 1;
  color: #0053a0;
  width: 120px;
  position: absolute;
  inset: auto 30px 0 auto;
}

.blog-item-info-wrapper {
  background-image: url('../images/Blog-1.webp');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 460px;
  padding: 30px;
  display: flex;
  position: relative;
}

.blog-item-info-wrapper._1 {
  background-image: url('../images/Office-Building-4.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._1.automotive {
  background-image: url('../images/automobile-cleaning-service-intergroup.avif');
  background-position: 30%;
}

.blog-item-info-wrapper._1.bank {
  background-image: url('../images/bank-service-2.avif');
}

.blog-item-info-wrapper._1.children {
  background-image: url('../images/childcare-service.avif');
}

.blog-item-info-wrapper._1.college {
  background-image: url('../images/college-cleaning-2.avif');
}

.blog-item-info-wrapper._1.funeral {
  background-image: url('../images/funerla-home-3.avif');
  background-position: 50% 100%;
}

.blog-item-info-wrapper._1.comercial {
  background-image: url('../images/Screenshot-2026-05-07-at-2.28.37-PM.avif');
}

.blog-item-info-wrapper._2 {
  background-image: url('../images/Property--Management-2_1.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._3 {
  background-image: url('../images/Industrial-and-manufacturing-2.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._4 {
  background-image: url('../images/Retails-and-commercial-2.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._5 {
  background-image: url('../images/Medical-Clinics-1.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._6 {
  background-image: url('../images/Schools--Educational-Institutions-3.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._7 {
  background-image: url('../images/Fitness-Centres--Gyms-1.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._8 {
  background-image: url('../images/Warehouses--Distribution-Centres.avif');
  justify-content: space-between;
  align-items: center;
}

.blog-item-info-wrapper._9 {
  background-image: url('../images/Blog-2.webp');
}

.blog-item-info-wrapper._10 {
  background-image: url('../images/Blog-3.webp');
}

.blog-item-info-wrapper._11 {
  background-image: url('../images/Blog-4.webp');
}

.blog-item-info-wrapper._12 {
  background-image: url('../images/HydroPower-Pure-Water-Window-Cleaning-System.jpg.webp');
}

.blog-item-info-wrapper._13 {
  background-image: url('../images/Spring-Cleaning.jpg');
}

.blog-item-title {
  color: var(--white);
  margin-top: 0;
  font-size: 24px;
  transition: color .3s;
  position: relative;
}

.blog-item-title:hover {
  color: #ffffffb3;
}

.blog-item-title.black-title {
  color: var(--black);
  letter-spacing: 0;
  font-weight: 400;
}

.blog-item-title.black-title.left-alignment {
  text-align: left;
  font-size: 1.5em;
  font-weight: 500;
}

.blog-item-title.black-title.left-alignment.big-text {
  font-size: 2em;
}

.blog-item-title.black-title.centered {
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
}

.blog-item-overlay {
  z-index: 0;
  background-image: radial-gradient(circle farthest-corner at 100% 100%, var(--secondary-light), #fff0 45%), linear-gradient(0deg, var(--service-color), #fff0 65%), linear-gradient(0deg, #00000080, #fff0 54%), linear-gradient(to bottom, #00000026, #00000026);
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.blog-item-info {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff6;
  border-radius: 20px;
  flex-flow: column;
  min-height: auto;
  padding: 20px;
  display: flex;
  position: relative;
}

.span-quote-wrapper {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.span-quote {
  text-align: center;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2em;
}

.text-image-span {
  background-image: url('../images/tristan-ceven-HEz-fykYL4Y-unsplash_1tristan-ceven-HEz-fykYL4Y-unsplash.webp');
  background-position: 50% 90%;
  background-size: cover;
  border-radius: 20px;
  margin-top: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.text-image-span.second-image {
  background-image: url('../images/sean-pollock-PhYq704ffdA-unsplash_1sean-pollock-PhYq704ffdA-unsplash.webp');
  background-position: 50% 40%;
  width: 100px;
}

.text-image-span.first-image {
  background-image: url('../images/linkedin-sales-solutions-YSQNPbBGltI-unsplash_1linkedin-sales-solutions-YSQNPbBGltI-unsplash.webp');
  background-position: 50% 40%;
  width: 160px;
}

.button-wrapper-main {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  margin-top: 40px;
  display: flex;
}

.button-wrapper-main.center {
  justify-content: center;
}

.solutions-title {
  margin-top: 0;
  margin-bottom: 0;
  transition: color .3s;
}

.solutions-title:hover {
  color: var(--primary);
}

.solutions-collection-item {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}

.button-wrapper-nav {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: none;
}

.main-features-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.main-features-wrapper.second-style {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.main-features-wrapper.second-style.space-down {
  margin-bottom: 60px;
}

.features {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.features.light-style {
  text-align: left;
  background-color: #eff1fc;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
}

.features.light-style.other-color {
  background-image: url('../images/3.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-features-wrapper {
  background-color: var(--primary-light);
  border-radius: 100%;
  margin-bottom: 15px;
  padding: 28px;
  position: relative;
}

.icon-features-wrapper.small {
  background-color: #fbf5fa00;
  border-radius: 0%;
  padding: 0;
}

.icon-features-wrapper.small.other-colour {
  background-image: url('../images/2.avif');
  background-position: 0 0;
  background-size: cover;
}

.icon-features {
  width: 48px;
  height: 48px;
}

.big-number {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1em;
}

.home-3-image-wrapper {
  border-radius: 20px;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.statistic-wrap-item {
  border-bottom: 1px solid var(--dark-gray-50);
  padding-bottom: 30px;
  line-height: 1.4em;
}

.video-wrapper-home-three {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.statistic-wrap {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.section-title-limited-width-home-two {
  color: #fff;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
}

.section-title-limited-width-home-two.smaller {
  letter-spacing: 0;
  font-size: 3.5rem;
}

.banner-3-background-image {
  background-image: linear-gradient(315deg, #0009, #9e8afd66 25%, #0000 50%, #28233f00 81%, #9e8afd4d 93%), linear-gradient(#0000004d, #fff0 29% 53%, #00000040), linear-gradient(#00000040, #00000040);
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, auto;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  height: auto;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.section-two-side-title-wrapper-home-two {
  z-index: 999;
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  border-bottom: 1px solid var(--white-50);
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.section-two-side-title-wrapper-home-two.bottom {
  text-align: left;
  border-bottom-color: #0000;
  justify-content: space-between;
  width: 100%;
  margin: 24px auto;
  padding-bottom: 0;
}

.home-banner-3-section {
  flex-direction: column;
  justify-content: flex-start;
  width: 100vw;
  height: 100%;
  min-height: 740px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.paragraph-banner {
  color: #fff;
  width: 58%;
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-banner.limited-width {
  width: 100%;
}

.paragraph-banner.limited-width.centered {
  text-align: left;
}

.home-3-banner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 30px 0;
}

.services-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-card-big {
  background-image: linear-gradient(13deg, #de444199, #00000042 55%), url('../images/Home-3.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  height: 420px;
  padding: 30px;
  display: flex;
  position: relative;
}

.div-block-19 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff6;
  border-radius: 20px;
  width: auto;
  max-width: 100%;
  padding: 30px;
}

.service-cards {
  background-color: var(--primary-light);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  display: flex;
  position: relative;
}

.service-image {
  object-fit: cover;
  border-radius: 20px;
  flex: 1;
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
}

.arrow-projects {
  width: 15px;
}

.video-wrapper-bigger {
  border-radius: 20px;
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.projects-list-main {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.projects-items-collection {
  width: 100%;
}

.project-item {
  background-color: var(--white);
  width: 33%;
}

.project-item.one-solutions {
  width: 100%;
  margin-bottom: 60px;
}

.projects-item-info {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff6;
  border-radius: 20px;
  max-width: 700px;
  padding: 30px;
  position: relative;
}

.project-item-info-wrapper {
  text-align: left;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: auto;
  min-height: 280px;
  padding: 60px 60px 30px 30px;
  display: flex;
  position: relative;
}

.project-item-info-wrapper.one-solutions {
  background-position: 50%;
  justify-content: flex-end;
  align-items: flex-start;
  height: auto;
  min-height: 500px;
  padding-bottom: 30px;
  padding-right: 30px;
}

.project-item-info-wrapper.one-solutions._1 {
  background-image: url('../images/Special-Servcies-1.avif');
  margin-bottom: 60px;
}

.project-item-overlay {
  z-index: 0;
  background-image: radial-gradient(circle at 100% 0, #9e8afd33, #fff0 45%), linear-gradient(17deg, #de4441, #fff0 49%), linear-gradient(16deg, #00000080, #fff0 68%), linear-gradient(#00000026, #00000026);
  border-radius: 20px;
  position: absolute;
  inset: 0%;
}

.logo-scroll {
  opacity: 0;
  max-width: none;
  height: 70px;
  position: absolute;
  inset: auto;
  overflow: clip;
}

.logo {
  max-width: none;
  height: 70px;
  position: absolute;
  overflow: clip;
}

.banner-pages-scroll-arrow-wrapper {
  margin-bottom: -10px;
  margin-right: -10px;
  padding: 10px;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.banner-pages-scroll-arrow {
  width: 40px;
  height: 40px;
  transition: transform .5s;
}

.banner-pages-scroll-arrow:hover {
  transform: rotate(45deg);
}

.banner-pages-scroll-arrow.inverted {
  filter: invert();
}

.solutions-one-style {
  margin-bottom: 20px;
}

.solutions-item-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 300px;
}

.solutions-details-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 380px;
  margin-bottom: 40px;
}

.contact-link {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0;
}

.contact-link:hover {
  color: var(--primary);
}

.portfolio-item-wrapper {
  border-radius: 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.career-collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-details {
  justify-content: center;
  align-items: center;
  padding: 46px 30px 80px;
  display: flex;
}

.blog-top-info {
  grid-column-gap: 20px;
  grid-row-gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.location-tab-pane-info {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.location-tab-pane-info.first-item {
  grid-row-gap: 6px;
  margin-top: 20px;
}

.location-map-wrapper {
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tab-pane-locations {
  border-radius: 20px;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.location-tab-title {
  margin-top: 0;
  margin-bottom: 15px;
}

.location-tab-title.center-alignment {
  text-align: center;
}

.small-text {
  text-align: left;
  letter-spacing: .2px;
  margin-bottom: 0;
  line-height: 1.6em;
  text-decoration: none;
}

.location-tab-pane-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 30px;
}

.location-tab {
  border: 1px solid var(--dark-gray-50);
  color: #afafaf80;
  text-align: center;
  background-color: #0000;
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  padding: 25px 15px;
  transition: all .3s;
  display: flex;
}

.location-tab.w--current {
  border-color: var(--primary-light);
  background-color: var(--primary-light-blue);
  color: #f59b90;
}

.location-title-wrapper {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.location-tabs {
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.location-tab-pane-content-wrapper {
  z-index: 10;
  background-color: #fbf5fad4;
  border-radius: 20px;
  flex-direction: column;
  width: 40%;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: auto 30px 30px auto;
  box-shadow: 0 30px 30px #00000014;
}

.location-tabs-menu {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.dark-text {
  color: #0e0e0e;
}

.location-tabs-content {
  width: 100%;
  height: 100%;
}

.location-icon {
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 24px;
}

.location-icon.tab-pane {
  color: var(--primary);
  margin-top: 0;
  font-size: 20px;
}

.rich-text-block-map {
  flex-flow: column wrap;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.figure-map {
  margin-bottom: 0;
}

.support-team {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.landing-inner-page-item {
  background-color: var(--primary);
  text-align: center;
  border-radius: 20px;
  width: 100%;
  padding: 6px;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hire-popup {
  z-index: 1000;
  text-transform: none;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-popup-wrap:hover {
  color: #fff;
}

.hire-paragraph {
  max-width: 93%;
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-buttons:hover {
  color: #fff;
  border-color: #fff;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.more-templates {
  z-index: 1000;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.more-templates:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.buy-now-webflow-icon {
  margin-right: 8px;
}

.buy-this-template {
  z-index: 1000;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: none;
  background-clip: border-box;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-decoration: none;
  transition-property: none;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.buy-this-template:hover {
  opacity: 1;
  color: #000;
  border-color: #e4e4e4;
}

.text-orange {
  color: #f69c20;
}

.image {
  width: 100vw;
  max-width: none;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.cta-main-flex {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 60%;
  margin-top: 169px;
  margin-bottom: 114px;
  display: flex;
}

.container {
  width: auto;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 27px 77px;
}

.top-title {
  margin-bottom: 27px;
  font-style: italic;
  font-weight: 600;
}

.top-title.mb0 {
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
}

.top-title.mb0.black {
  color: var(--primary);
  margin-bottom: 15px;
}

.cta-main-wrapper {
  background-image: linear-gradient(#00000080, #00000080), url('../images/hero1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
  height: auto;
  padding-top: 0;
  padding-left: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-2.cta {
  padding-top: 132px;
  padding-bottom: 132px;
}

.cta-sub-title {
  color: var(--light-blue);
}

.section-title-2.white {
  color: #fff;
}

.section-title-2.white.cta-title {
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 300;
}

.left-arrow-3 {
  z-index: 25;
  border: 1px #eef0f6;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-left: 0;
  display: flex;
  inset: auto auto -84px 0%;
  overflow: visible;
}

.left-arrow-3.right {
  left: 60px;
}

.hidden {
  display: flex;
}

.div-block-23 {
  grid-column-gap: 58px;
  grid-row-gap: 58px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.div-block-24 {
  z-index: 1;
  background-image: linear-gradient(#000, #0000 31%);
  position: absolute;
  inset: 0%;
}

.div-block-24.lower-opacity {
  background-image: linear-gradient(#000, #05050554 14%, #0000 24%);
}

.image-3, .image-4 {
  width: 20%;
  max-width: none;
}

.base-container-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.get-started-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.main-title-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-white-2 {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
}

.red-h2-text {
  color: var(--light-blue);
  -webkit-text-stroke-color: var(--light-blue);
}

.get-started-text-wrap {
  width: 70%;
}

.heading {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 300;
}

.section-4 {
  background-image: linear-gradient(90deg, #000 5%, #0000 43%), linear-gradient(#0000003d, #0000003d), url('../images/Home-3.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  justify-content: flex-start;
  align-items: center;
  height: 600px;
  padding: 120px 20px;
  display: flex;
}

.div-block-25 {
  background-color: #ffffffa1;
  border-radius: 100px;
  max-width: 265px;
  margin-top: 22px;
  padding: 18px 30px;
}

.client {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

.client.bg-sky-blue {
  background-color: var(--light-grey);
  padding-top: 42px;
  padding-bottom: 42px;
}

.client.bg-sky-blue.hidden {
  padding-top: 11px;
  padding-bottom: 11px;
}

.container-two {
  max-width: none;
  display: block;
}

.client-main-block {
  flex-wrap: nowrap;
  display: flex;
}

.client-image-category {
  grid-column-gap: 2.375rem;
  grid-row-gap: 2.375rem;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  place-items: center;
  margin-right: 38px;
  padding-left: 0;
}

.image-5 {
  width: 100%;
  font-size: 2rem;
  line-height: 2rem;
}

.div-block-56 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.left-alignment {
  text-align: left;
}

.left-alignment.smaller-text {
  text-align: center;
  margin-bottom: 23px;
  font-size: 32px;
}

.error-message-color {
  color: #fff;
  text-align: center;
  background-color: #ef3b31;
  height: auto;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-field-contact {
  color: #000;
  background-color: #0000;
  border: 1px #eaeaea;
  border-bottom: 1px solid #babdc2;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 14px;
  line-height: 24px;
}

.text-field-contact:hover {
  border-bottom-color: #142335;
}

.text-field-contact.other-text-colour {
  color: #00000078;
  max-width: none;
}

.text-field-contact.postal-code {
  width: 15%;
}

.text-field-contact.name {
  width: 60%;
}

.text-field-contact.phone {
  width: 25%;
}

.form-block-5 {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.form-block-5.outline-outside {
  border-style: none;
  border-width: 0 8px 8px;
  border-color: var(--primary);
  background-color: #fff;
  border: 8px solid #ff6d20;
  flex-direction: column;
  align-items: center;
  width: auto;
  padding-top: 18px;
  padding-bottom: 15px;
  display: flex;
}

.button-wrapper-3 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 300px;
  margin-top: 30px;
  display: flex;
}

.button-wrapper-3.product {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.text-area {
  color: #000;
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #babec3;
  height: 100px;
  min-height: 130px;
  padding-top: 8px;
  font-size: 14px;
}

.text-area:hover {
  border-bottom-color: #142335;
}

.form-3 {
  color: #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.modal-close {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.modal {
  z-index: 2147483647;
  color: #000;
  background-color: #101220c7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: auto;
  height: auto;
  padding: 26px 146px 0;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.success-message-color {
  color: #fff;
  background-color: #00b3ac;
}

.div {
  width: 70%;
  height: 50%;
}

.div.less {
  border-top: 1px #000;
  height: auto;
  overflow: scroll;
}

.image-84 {
  margin-bottom: 9px;
}

.flex-form {
  color: #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-block-3 {
  border-bottom: .5px solid #000;
  height: 20px;
  margin-bottom: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-57 {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.link-2 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}

.div-block-58 {
  width: 100%;
}

.image-85 {
  margin-top: 20px;
  margin-bottom: 0;
}

.link-3 {
  font-size: 24px;
  font-weight: 600;
}

.collection-item {
  padding-left: 0;
  display: block;
}

.hero-nav-dropdown {
  font-size: 14px;
  line-height: 1.2em;
}

.div-block-125 {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  transition: all .45s;
  display: flex;
}

.div-block-125:hover {
  margin-left: 0;
}

.div-block-127 {
  background-color: var(--primary);
  width: 94%;
  height: 1px;
}

.form-error-link {
  color: #0a223f;
  text-decoration: underline;
}

.form-inner {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.form-inner.hidden {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.form-inner.hero-form {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.form-label {
  z-index: 11;
  color: #3b3b3b;
  letter-spacing: .1em;
  -webkit-text-stroke-color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: .9em;
  left: 0;
}

.form-label.black {
  color: #0f0f0f;
}

.form-label.resume {
  font-size: .8em;
  position: static;
}

.form-label.white {
  color: var(--gray);
}

.form-success-title {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.1em;
  font-weight: 300;
  line-height: 1.2em;
}

.form-field {
  z-index: 5;
  color: #000;
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #5d5959;
  min-height: 2.5em;
  margin-top: 0;
  margin-bottom: 9px;
  padding: 0 0 0 7.2em;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.form-field:hover {
  border-bottom-color: #0c389f;
}

.form-field:focus {
  background-color: #0000;
  border-color: #0000 #0000 #1b243ab3;
}

.form-field:focus-visible, .form-field[data-wf-focus-visible] {
  font-size: 13px;
}

.form-field::placeholder {
  color: #333;
  font-size: 12px;
  font-weight: 300;
}

.form-field.address {
  padding-left: 6.1em;
}

.form-field.address::placeholder {
  font-size: 12px;
}

.form-field.address.white::placeholder {
  color: var(--white-50);
}

.form-field.address.white.more-space {
  padding-left: 10.3em;
}

.form-field.address.more-space {
  padding-left: 10em;
}

.form-field.text-area {
  border-bottom-color: #5d5959;
  min-height: 6em;
  padding-top: 1.4em;
  padding-left: 0;
}

.form-field.text-area:hover {
  border-bottom-color: #000;
}

.form-field.text-area::placeholder {
  font-size: 12px;
}

.form-field.text-area.more-message {
  height: 130px;
}

.form-field.text-area.other-messaage {
  min-height: 5em;
}

.form-field.text-area.other-messaage.white:active, .form-field.text-area.other-messaage.white:focus {
  color: var(--white);
}

.form-field.text-area.other-messaage.white::placeholder {
  color: var(--white-50);
}

.form-field.text-area.other-messaage.white:lang(en) {
  color: var(--white);
}

.form-field.other {
  color: #000;
  border-bottom-color: #5d5959;
  width: 100%;
  min-height: 2.5em;
  margin-bottom: 7px;
  padding-left: 4.5em;
  font-size: 13px;
  line-height: 16px;
}

.form-field.other:hover {
  border-bottom-color: #000;
}

.form-field.other:focus-visible, .form-field.other[data-wf-focus-visible] {
  font-size: 13px;
}

.form-field.other::placeholder {
  font-size: 12px;
}

.form-field.other.less-padding {
  padding-left: 3.1em;
}

.form-field.other.resume {
  width: 160px;
}

.form-field.other.white {
  border-bottom-color: var(--dark-gray);
  color: #fff;
  padding-left: 4.8em;
}

.form-field.other.white::placeholder {
  color: var(--white-50);
}

.form-field.other.white.office-size-field {
  padding-left: 7.8em;
}

.form-field.white {
  border-bottom-color: var(--dark-gray);
  color: var(--white);
}

.form-field.white::placeholder {
  color: var(--white-50);
}

.form-block {
  width: 100%;
  margin-bottom: 45px;
}

.form-error-message {
  background-color: #ffccd5;
  border: 1px #c9184a;
  padding: .3em .5em;
}

.div-block-3 {
  width: 35%;
  position: sticky;
  top: 172px;
}

.form-error-paragraph {
  color: #191c1f;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}

.form-item {
  width: 100%;
  color: var(--white);
  align-items: flex-start;
  font-size: 14px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.form-item:hover {
  border-bottom-color: #fff;
}

.form-item.is-area-text {
  align-items: flex-start;
  margin-bottom: 1.3em;
  padding-top: 1em;
}

.form-item.is-area-text.white {
  margin-bottom: 0;
}

.form-item.resume {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.form-success-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-bottom: .5em;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.3em;
  display: block;
}

.form-success-message-2 {
  color: #fff;
  background-color: #45934f;
  border: 1px solid #f1fff8;
  width: 100%;
  padding: 1.6em 1.4em;
}

.div-block-130 {
  background-color: #1890ff00;
  background-image: linear-gradient(to bottom, var(--primary-light-blue), var(--primary-light-blue));
  background-position: 0 0;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px 30px 4px;
}

.div-block-130.other-form {
  margin-top: 17px;
  padding-left: 22px;
  padding-right: 22px;
}

.div-block-130.other-form.hidden {
  margin-top: 0;
  margin-bottom: 0;
  padding: 17px;
}

.image-86 {
  max-width: none;
  height: 50px;
  position: absolute;
}

.div-block-131 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 47px;
  padding-bottom: 47px;
  display: flex;
}

.div-block-132 {
  display: flex;
}

.rich-text-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navi-back {
  background-color: #fff0;
  position: absolute;
  inset: 0%;
  box-shadow: 0 -7px 18px #0000007d;
}

.div-block-134 {
  justify-content: space-between;
  align-items: center;
  width: 30%;
  display: flex;
}

.address-header {
  z-index: 2;
  grid-column-gap: 50px;
  background-color: #96171900;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 15px 30px;
  display: flex;
  position: fixed;
}

.location-header {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  width: auto;
  margin-right: 15px;
  padding-left: 0;
  display: flex;
}

.icon-header {
  flex: none;
  width: 18px;
}

.div-block-113 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  display: flex;
}

.phone-header {
  grid-column-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-bottom: 0;
  display: flex;
}

.white-link {
  color: #fff;
  border: 1px #000;
  font-size: 22px;
}

.white-link:hover {
  color: #132121;
}

.white-link.other {
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}

.white-link.other:hover {
  color: #fffc;
}

.white-link.less-font {
  font-size: 14px;
  text-decoration: none;
}

.white-link.less-font:hover {
  color: #e0b5b5;
}

.white-link.less-font.w--current {
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 600;
  transition: all .45s, border-color .3s, color .3s;
}

.white-link.less-font.w--current:hover {
  color: #ffffffd6;
  font-size: 12px;
}

.div-block-136 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  display: flex;
}

.div-block-137 {
  display: flex;
}

.bold-text {
  font-weight: 300;
}

.arrow-button-2 {
  color: #0c0c0d;
  text-align: center;
  text-transform: lowercase;
  background-color: #3030c000;
  border: 1px solid #afafaf80;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 16px;
  transition: all .3s;
  display: inline-block;
}

.arrow-button-2:hover {
  opacity: 1;
}

.arrow-button-2.navi-batton {
  background-color: var(--white);
  padding-top: 7px;
  padding-bottom: 7px;
}

.button-arrow-element-2 {
  background-color: #0c0c0d;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-left: -10px;
  display: flex;
}

.button-arrow-element-2.other-circle {
  border: 1px solid var(--white);
  background-color: var(--primary);
}

.button-arrow-element-2.other-circle.smaller {
  width: 30px;
  height: 30px;
}

.text-block-15 {
  text-transform: uppercase;
  font-weight: 500;
}

.div-block-140 {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.grid-for-card-project {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(30vw, 1fr);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 360px;
  display: block;
  overflow: hidden;
}

.content-for-project-card {
  background-color: #236db1;
  border-bottom: 1px #eb9f00;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  min-height: auto;
  padding: 3px 21px 87px;
  display: flex;
  position: relative;
  overflow: visible;
}

.link-in-card-project {
  color: #fff;
  background-image: linear-gradient(#242020c7, #1614147a);
  border-top: 1px solid #fcba30;
  border-bottom: 0 #fcba30;
  border-right: 1px solid #fcba30;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.link-in-card-project.first {
  background-image: none;
  background-position: 0 0;
  border-top-style: none;
  border-top-width: 0;
  border-bottom-style: none;
  border-right-style: none;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.image-88 {
  width: 100%;
  max-width: none;
  height: auto;
  position: static;
}

.heading-52 {
  color: var(--white);
  margin-top: 21px;
  font-size: 28px;
}

.collection-item-2 {
  float: left;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.collection-item-3 {
  text-align: left;
  margin-bottom: 13px;
  padding-left: 0;
  padding-right: 0;
}

.collection-list-wrapper-2 {
  margin-bottom: 0;
}

.collection-list {
  flex-flow: column;
  padding-left: 10px;
  display: block;
}

.enter-wrapper-4 {
  z-index: 2147483647;
  background-color: #090909cf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 80px;
  display: none;
  position: fixed;
  inset: 0%;
}

.pop-up-wrapper-5 {
  opacity: 1;
  text-align: center;
  background-color: #04141400;
  border: 5px #f08b21;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 40%;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  display: flex;
  position: relative;
}

.button {
  background-color: #fff0;
  margin-bottom: 9px;
}

.div-block-142 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.image-90 {
  margin-top: 0;
  margin-right: 0;
  position: relative;
}

.image-90.s {
  top: -8px;
}

.div-block-143 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: end stretch;
  margin-top: 23px;
  margin-bottom: 23px;
  display: grid;
}

.link-block-3 {
  margin-right: 20px;
}

.hero-heading-right {
  background-color: #f5f7fa00;
  border-bottom: 1px #e4ebf3;
  max-width: 1200px;
  padding: 0;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.div-block-144 {
  max-width: 30%;
}

.section-6 {
  background-color: #f5f8fd;
  justify-content: center;
  align-items: center;
  padding: 46px 25px;
  display: flex;
}

.div-block-146 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  display: flex;
}

.image-91 {
  width: 70px;
  max-width: none;
}

.div-block-147 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 70%;
  display: flex;
}

.div-block-148 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.red-canada {
  width: 70px;
  max-width: none;
  position: absolute;
}

.career-pop-up {
  z-index: 99999;
  background-color: #0c0c0dbf;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.text-block-70 {
  color: #00000078;
  margin-bottom: 0;
  margin-right: 14px;
}

.text-block-70.title {
  padding-left: 12px;
}

.radio-button-field {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  margin-right: 20px;
  display: flex;
}

.div-block-150 {
  padding-left: 12px;
  display: flex;
}

.radio-button {
  margin-top: 0;
}

.form-block-6 {
  border: 8px solid var(--primary);
  background-color: #fff;
  padding: 10px;
}

.div-block-151 {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: column;
  margin-top: 49px;
  display: flex;
}

.about-us-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/1.avif');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  height: 60vh;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.container-4 {
  justify-content: space-between;
  max-width: 1170px;
  height: 100%;
  padding-top: 139px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.div-block-96 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: 18px;
  margin-right: 18px;
  padding-top: 0;
  display: flex;
  position: relative;
}

.title-heading-wrapper {
  overflow: hidden;
}

.title-heading-wrapper.title-home-1 {
  z-index: 2;
  width: auto;
  margin-top: 35px;
  margin-bottom: 35px;
  position: relative;
}

.email-text-2 {
  background-color: var(--primary-50);
  color: #fff;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 18px 63px;
  font-size: 28px;
  display: flex;
}

.italic-text-28 {
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
}

.footer-brand-wrapper-2 {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.area-link {
  color: #afd5ff;
  font-weight: 400;
  text-decoration: none;
}

.area-link.white-text {
  color: #dcedff;
}

.paragraph-6 {
  color: #ffffffa1;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  font-weight: 500;
}

.div-block-152 {
  width: 100%;
}

.div-block-153 {
  text-align: center;
  align-self: center;
  width: 100%;
}

.heading-54 {
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 7px;
  font-size: 18px;
}

.div-block-154 {
  background-color: var(--primary);
  width: 100%;
  margin-bottom: 40px;
  padding: 8px;
}

.list {
  grid-row-gap: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-157 {
  width: 100%;
  display: flex;
}

.div-block-158 {
  grid-column-gap: 39px;
  grid-row-gap: 39px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-159 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  flex-flow: column;
  display: flex;
}

.div-block-160 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.div-block-161 {
  background-image: url('../images/1.webp');
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
}

.div-block-161._1 {
  background-image: url('../images/2149345512.webp');
}

.div-block-162 {
  background-image: url('../images/2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.div-block-162._2 {
  background-image: url('../images/a1.webp');
}

.div-block-163 {
  background-image: url('../images/3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 300px;
}

.div-block-163._3 {
  background-image: url('../images/Construction-Cleaning-photo.webp');
}

.div-block-164 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.div-block-164.centered {
  background-color: #1890ff33;
  border-style: none;
  justify-content: center;
  align-items: center;
  transition: all .45s;
}

.div-block-164.centered:hover {
  background-color: var(--secondary-light-blue);
}

.div-block-165 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.div-block-165.centered {
  text-align: center;
  background-color: #0000;
}

.inner-underline {
  background-color: #070707;
  max-width: 64%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.bottom-underline {
  background-color: #b3b3b3;
  min-height: 1px;
  position: relative;
}

.inner-container-600px {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  max-width: 100%;
  display: flex;
}

.inner-container-600px.align-center {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-3-columns {
  grid-column-gap: 28px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3-columns._1-col-tablet.mg-bottom-64px {
  grid-template-rows: auto auto;
  margin-bottom: 0;
}

.grid-6 {
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-169 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border-radius: 10px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.grid-7 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.div-block-170 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.image-93 {
  border-radius: 20px;
  width: 100%;
}

.div-block-171 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
}

.div-block-171._2 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-172 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  display: flex;
}

.form-5 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.grid-9 {
  grid-column-gap: 43px;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  place-items: center stretch;
}

.form-block-7 {
  margin-bottom: 0;
}

.form-block-7.smaller-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph-13 {
  margin-bottom: 0;
  font-size: 20px;
}

.section-16 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section-16.home-1-slider {
  z-index: 0;
  height: auto;
  padding: 39px 35px 48px;
  top: 0;
}

.link-8 {
  text-decoration: none;
}

.div-block-173 {
  justify-content: center;
  align-items: flex-start;
  margin-top: 51px;
  display: flex;
}

.text-block-43 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-174 {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  flex-flow: column;
  display: flex;
}

.text-center-2 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.heading-4 {
  text-align: center;
  margin-bottom: 0;
}

.div-block-103 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.div-block-175 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.text-block-40 {
  font-weight: 400;
}

.button-secondary {
  color: #070707;
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #070707;
  padding: 22px 38px;
  font-size: 16px;
  line-height: 20px;
  transition: border-color .3s, color .3s, background-color .3s;
}

.button-secondary:hover {
  color: #fff;
  background-color: #070707;
  border-color: #0000;
}

.button-secondary.smaller-button {
  padding: 12px 24px;
  font-size: 12px;
}

.base-container-3 {
  z-index: 999;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  display: flex;
  position: relative;
  bottom: 0;
}

.div-block-176 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.div-block-177 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.text-block-71 {
  letter-spacing: .5px;
  font-weight: 500;
}

.div-block-178 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.div-block-179 {
  flex-flow: column;
  display: flex;
}

.grid-10 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.bold-text-3 {
  color: var(--light-blue);
  font-size: 22px;
}

.image-130 {
  max-width: 70%;
}

.swiper-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.swiper-nav {
  cursor: pointer;
  background-color: #1a1a1a80;
  border: 1px solid #ffffff26;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s;
  display: flex;
}

.swiper-nav:hover {
  background-color: #36363670;
  border-color: #ffffff70;
}

.swiper-nav.next {
  background-color: #1a1a1a00;
  border: .5px solid #195235;
  transform: rotate(180deg);
}

.swiper-nav.prev {
  background-color: #1a1a1a00;
  border-width: .5px;
  border-color: #014400;
}

.swiper-embed {
  display: none;
}

.div-block-415 {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.swiper-slide {
  grid-row-gap: 0px;
  color: #fff;
  text-align: center;
  background-color: #ffffff80;
  border: 1px solid #a8a8a8b3;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  height: auto;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.section-17.swipe-slider-section {
  background-color: #b6343400;
  height: auto;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
}

.image-132 {
  width: 100%;
  height: auto;
}

.div-block-414 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 13px;
  display: flex;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: relative;
  overflow: visible;
}

.image-131 {
  max-width: 70%;
}

.swiper-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

.swiper-nav-wrapper {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 11px;
  margin-bottom: 30px;
  padding-right: 39px;
  display: flex;
}

.heading-55 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 22px;
  font-weight: 300;
  display: flex;
}

.heading-55.left-alignment {
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}

.heading-55.centered {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 36px;
}

.heading-55._48px-text {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3px;
}

.div-block-416 {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  display: flex;
}

.grid-11 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-11.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.list-1 {
  grid-column-gap: 40px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.list-1.vertical {
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.div-block-417 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.centered {
  text-align: center;
}

.centered._28px {
  font-size: 28px;
}

.grid-12 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-12.grid-style {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
}

.div-block-418 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-flow: column;
  display: flex;
}

.div-block-419 {
  background-color: var(--primary-light-blue);
  border-radius: 20px;
  line-height: 20em;
}

.logo-div {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding: 0;
  display: flex;
}

.text-block-main {
  color: #4a4b5c;
  letter-spacing: .002rem;
  width: auto;
  min-height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 165%;
}

.text-block-main.margin-top-one {
  color: #4a4b5c;
  letter-spacing: .002rem;
  width: 100%;
  margin-top: 1em;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.125rem;
  line-height: 165%;
}

.container-two-2 {
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  margin-top: 0;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.who-with-us {
  text-align: center;
  flex: 0 auto;
  padding-left: 17em;
  padding-right: 17em;
  display: block;
}

.white-client-section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.8rem 30px 1.6rem;
}

.container-client {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  margin-top: 26px;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.grid-13 {
  filter: grayscale();
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  place-items: start center;
  width: 100%;
  max-width: none;
}

.spacer {
  height: 100px;
}

.link-hover {
  color: var(--black);
}

.link-hover:hover {
  color: var(--light-blue);
}

.section-gap-two {
  padding-top: 67px;
  padding-bottom: 130px;
}

.container-7 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  min-height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}

.link-424 {
  color: var(--white);
}

.text-block-73 {
  color: var(--white);
  letter-spacing: .2px;
  font-size: 20px;
}

.div-block-421 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.grid-14 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.paragraph-14 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-422 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-57 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
}

.section-18 {
  width: 100%;
  padding: 42px 30px;
}

.div-block-423 {
  width: 100%;
  max-width: 1000px;
}

.div-block-424 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--seconday);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-424.top {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.div-block-425 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-74 {
  font-size: 24px;
  font-weight: 500;
}

.grid-15 {
  width: 100%;
}

.div-block-427 {
  border: 1px solid var(--dark-gray-50);
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 17px;
  transition: all .45s;
}

.div-block-427:hover {
  box-shadow: 0 5px 12px -4px #00000030;
}

.div-block-427.other {
  background-color: #ffffff1f;
  height: 100%;
}

.div-block-427.other:hover {
  background-color: #4da8fd1f;
}

.div-block-428 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.grid-16 {
  grid-column-gap: 42px;
  grid-template-rows: auto;
  width: 100%;
}

.div-block-429 {
  background-image: url('../images/Office-Building-3.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  height: 100%;
}

.div-block-429.other {
  height: 400px;
}

.div-block-429.other._2 {
  background-image: url('../images/Property--Management-4.avif');
  background-position: 100%;
  width: 100%;
}

.div-block-430 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.bold-text-5 {
  letter-spacing: .5px;
  font-size: 40px;
  font-weight: 600;
}

.div-block-431 {
  background-color: var(--primary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.heading-58 {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0;
  font-size: 22px;
  line-height: 38px;
}

.text-block-75 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.div-block-432 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: auto;
  display: flex;
}

.div-block-433 {
  grid-column-gap: 29px;
  grid-row-gap: 29px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.grid-17 {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.grid-17._4-columns {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section-19 {
  width: 100%;
}

.white-text {
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
}

.text-block-76 {
  text-align: center;
}

.bold-text-6 {
  color: var(--white);
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
}

.text-block-77 {
  color: var(--white);
  text-align: center;
}

.div-block-434 {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.heading-59 {
  text-align: center;
  letter-spacing: .5px;
}

.bold-text-7 {
  font-weight: 400;
}

.paragraph-15 {
  background-color: #eff7ff;
  padding: 35px;
}

.container-8 {
  max-width: 1200px;
}

.div-block-435 {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  flex-flow: column;
  display: flex;
}

.div-block-436 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.container-9 {
  padding-top: 0;
}

.form-block-8 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.text-block-78 {
  color: var(--white);
  text-align: left;
  line-height: 20px;
}

.bold-text-8 {
  letter-spacing: 0;
  font-size: 26px;
  line-height: 26px;
}

.bold-text-9 {
  letter-spacing: 0;
}

.div-block-437 {
  width: 100%;
}

.heading-61 {
  text-align: center;
}

.div-block-438 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.grid-19 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-20 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-440 {
  display: flex;
}

.div-block-441 {
  padding-top: 61px;
}

.div-block-442 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.container-10 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .pages-banner {
    padding-top: 170px;
    padding-bottom: 110px;
  }

  .pages-banner.why-choose-us, .pages-banner.about-us, .pages-banner.solutions-two, .pages-banner.primary-light.covid-19, .pages-banner.career, .pages-banner.contact-us, .pages-banner.faq {
    min-height: 600px;
  }

  .banner-title.blog-details {
    font-size: 72px;
  }

  .footer {
    padding-top: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-bottom-wrapper {
    padding-top: 60px;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .testimonials-card-item {
    padding: 30px;
  }

  .navbar-fixed {
    height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .two-column-wrapper {
    grid-column-gap: 100px;
  }

  .column-two.assymetric-about {
    width: 70%;
  }

  .numbers-trusted-partners {
    font-size: 120px;
  }

  .three-cards {
    min-height: 370px;
  }

  .two-column-wrapper-footer {
    grid-column-gap: 100px;
    padding-bottom: 60px;
  }

  .column-one-footer {
    width: 55%;
  }

  .solutions-collection-item {
    min-height: 300px;
  }

  .main-features-wrapper.second-style {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .video-wrapper-home-three {
    grid-template-columns: 750px 1fr;
  }

  .section-title-limited-width-home-two {
    width: 62%;
  }

  .section-two-side-title-wrapper-home-two {
    text-align: left;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .section-two-side-title-wrapper-home-two.bottom {
    width: 100%;
  }

  .paragraph-banner.limited-width {
    text-align: left;
    width: auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .section-details {
    padding-top: 170px;
    padding-bottom: 110px;
  }

  .form-inner.hidden {
    margin-bottom: 0;
  }

  .div-block-130 {
    padding-bottom: 0;
  }

  .div-block-134 {
    width: 28%;
  }

  .address-header {
    padding-left: 50px;
    padding-right: 50px;
  }

  .div-block-137 {
    margin-top: 12px;
    padding-bottom: 30px;
    display: flex;
  }

  .container-4 {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .title-heading-wrapper {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .title-heading-wrapper.title-home-1 {
    overflow: visible;
  }

  .section-16 {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .section-16.home-1-slider {
    padding-bottom: 90px;
  }

  .who-with-us {
    padding-left: 16em;
    padding-right: 16em;
  }

  .container-7 {
    border-color: #ffffffb5;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .video-wrapper-home-three {
    grid-template-columns: 2.7fr 1fr;
  }

  .banner-3-background-image, .home-banner-3-section {
    min-height: 100vh;
  }

  .paragraph-banner.limited-width {
    width: auto;
  }

  .home-3-banner {
    max-width: 1400px;
  }

  .top-title {
    font-weight: 700;
  }

  .client-main-block {
    display: flex;
  }

  .div-block-134 {
    width: 25%;
    display: flex;
  }

  .address-header {
    flex-flow: row;
    text-decoration: none;
  }

  .location-header {
    padding-left: 0;
  }

  .icon-header {
    width: 22px;
  }

  .white-link.less-font {
    text-decoration: none;
  }

  .inner-container-600px {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .section-16.home-1-slider {
    padding-bottom: 100px;
  }

  .base-container-3 {
    max-width: 1300px;
  }

  .who-with-us {
    padding-left: 18em;
    padding-right: 18em;
  }

  .container-client {
    padding-left: 0%;
    padding-right: 0%;
  }
}

@media screen and (min-width: 1920px) {
  .base-container {
    max-width: 1400px;
  }

  .nav-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .blog-template-wrapper {
    max-width: 1400px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .scroll-banner-3-link:hover {
    opacity: 1;
  }

  .home-banner-heading {
    font-size: 88px;
  }

  .text-span-main.plus {
    font-size: 90px;
    top: -20px;
  }

  .two-column-wrapper {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .video-overlay {
    padding-right: 150px;
  }

  .wrapper-with-image {
    min-height: 600px;
  }

  .two-column-wrapper-footer {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
  }

  .column-one-footer {
    width: 50%;
  }

  .blog-item-info-wrapper {
    height: 520px;
  }

  .blog-item-info {
    min-height: auto;
  }

  .main-features-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-title-limited-width-home-two {
    width: 50%;
  }

  .paragraph-banner.limited-width {
    width: auto;
  }

  .home-3-banner {
    max-width: 1800px;
  }

  .div-block-134 {
    width: 20%;
  }

  .address-header {
    flex-flow: row;
    padding-left: 80px;
    padding-right: 80px;
  }

  .enter-wrapper-4 {
    display: none;
  }

  .container-4 {
    max-width: 1800px;
  }

  .inner-container-600px {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    display: flex;
  }

  .div-block-414 {
    padding-top: 30px;
  }

  .container-client {
    max-width: 90%;
  }

  .grid-13 {
    max-width: 1600px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 30px;
  }

  .section {
    padding: 40px 25px;
  }

  .section.psace-up {
    padding: 72px 20px 0;
  }

  .base-container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .base-container.banner-pages {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .primary-button {
    display: block;
  }

  .nav-container {
    z-index: 1;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    z-index: 2147483647;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 380px;
    height: 100vh;
    margin-top: 0;
    padding-top: 11px;
    display: flex;
    position: fixed;
    inset: 0% auto auto 0%;
    overflow: scroll;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    width: 80%;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.style-white {
    color: var(--primary-dark);
  }

  .nav-link.style-white:hover {
    color: var(--primary);
  }

  .nav-link.hidden {
    display: none;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-toggle.style-white {
    color: var(--primary-dark);
  }

  .nav-dropdown-toggle.style-white:hover {
    color: var(--primary);
  }

  .nav-dropdown-icon {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .nav-dropdown-link.background-colour {
    margin-left: -20px;
    font-size: 12px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    margin-bottom: 1px;
  }

  .pages-banner.blog {
    padding-bottom: 30px;
  }

  .pages-banner.why-choose-us, .pages-banner.about-us {
    min-height: 480px;
  }

  .pages-banner.solutions-two {
    min-height: auto;
    padding-bottom: 40px;
  }

  .pages-banner.career {
    height: 350px;
    min-height: 350px;
  }

  .pages-banner.contact-us {
    min-height: 480px;
    padding-bottom: 39px;
  }

  .pages-banner.touchpoint-cleaning, .pages-banner.matron-services.day-porter-servcie, .pages-banner.janitorial-services, .pages-banner.building-operations-superintendent-services, .pages-banner.carpet-cleaning-restoration, .pages-banner.complete-building-solutions {
    height: 450px;
    padding-bottom: 40px;
  }

  .pages-banner.electrostatic-spray-disinfection {
    justify-content: center;
    align-items: flex-end;
    height: 450px;
    padding-bottom: 40px;
  }

  .pages-banner.emergency-cleaning-services, .pages-banner.event-cleaning-services, .pages-banner.interior-exterior-power-sweeping, .pages-banner.line-marking-stenciling, .pages-banner.natural-stone-restoration, .pages-banner.power-washing {
    height: 450px;
    padding-bottom: 40px;
  }

  .pages-banner.faq {
    min-height: auto;
  }

  .pages-banner.window-cleaning, .pages-banner.post-construction, .pages-banner.emergency-flood {
    height: 450px;
    padding-bottom: 40px;
  }

  .banner-title.services-details {
    text-align: left;
  }

  .banner-title.blog-details {
    font-size: 42px;
  }

  .banner-title.blog-titlte {
    font-size: 34px;
  }

  .banner-title.smaller-title {
    font-size: 42px;
  }

  ._404 {
    font-size: 80px;
  }

  .coming-soon-wrapper {
    align-items: center;
    max-width: 620px;
    margin-right: 0;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    text-align: center;
    font-size: 56px;
  }

  .nav-menu-wrapper {
    width: 100%;
  }

  .blog-template-image {
    height: 440px;
  }

  .blog-template-pagination {
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    margin-top: 50px;
  }

  .footer {
    padding-bottom: 15px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
  }

  .section-title-wrapper {
    max-width: 560px;
    margin-bottom: 8px;
  }

  .career-list-item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .career-type-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .paragraph-large.no-margin {
    font-size: 16px;
  }

  .banner-title-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
  }

  .banner-title-wrapper.center-style {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-title-wrapper.services-details {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-title {
    margin-bottom: 0;
  }

  .accordion-wrapper.service-details {
    margin-top: 40px;
  }

  .accordion-item.white-style {
    padding: 17px 9px;
  }

  .coming-soon-image {
    display: none;
  }

  .job-position-content-wrapper {
    padding-right: 40px;
  }

  .job-position-sidebar-wrapper {
    padding: 20px;
    top: 80px;
  }

  .no-margin {
    font-size: 14px;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contacts-content-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 30px;
    padding-left: 0;
    display: flex;
  }

  .contacts-wrapper {
    flex-wrap: wrap-reverse;
  }

  .footer-social-icons-wrapper {
    order: -1;
    margin-top: 0;
  }

  .footer-links-wrapper {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .search-shop-con {
    display: none;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 20px;
  }

  .service-details-sidebar-wrapper {
    width: 40%;
    padding-left: 30px;
    padding-right: 30px;
    top: 80px;
  }

  .service-details-content {
    flex-flow: column;
  }

  .navbar-fixed {
    height: 60px;
  }

  .navbar-fixed.adfqs {
    height: 120px;
    margin-top: 0;
    padding-bottom: 0;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: flex;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .blog-list-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .blog-list-main.grid-style {
    grid-template-columns: 1fr 1fr;
  }

  .blog-post-item {
    width: 47.9%;
  }

  .menu-wrap {
    background-color: var(--white);
    border-style: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
    padding-left: 33px;
    padding-right: 33px;
    display: none;
  }

  .menu-wrap.tablet-mobile-wrap {
    height: auto;
    padding-bottom: 33px;
    display: flex;
    overflow: scroll;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 2px;
  }

  .image-burger.white-style {
    filter: invert();
  }

  .brand-tablet {
    height: 40px;
    display: block;
  }

  .brand.w--current {
    z-index: -2;
    width: 200px;
    height: 60px;
    top: -4px;
  }

  .coming-soon-form-main {
    justify-content: center;
  }

  .scroll-banner-3-link {
    display: none;
  }

  .home-banner-heading {
    width: 100%;
    max-width: 480px;
  }

  .banner-column-one {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 560px;
  }

  .arrow-button {
    display: block;
  }

  .two-column-wrapper {
    grid-column-gap: 60px;
    flex-direction: column;
  }

  .column-one {
    width: 100%;
  }

  .column-one.assymetric-numbers-block {
    flex-direction: column-reverse;
    width: 100%;
  }

  .column-one.assymetric, .column-one.assymetric-values-block {
    width: 100%;
  }

  .in-section-title.white-link-style {
    letter-spacing: 0;
    font-size: 30px;
  }

  .bottom-text {
    width: auto;
  }

  .bottom-text.bigger {
    width: 70%;
  }

  .column-two, .column-two.assymetric-numbers-block, .column-two.assymetric, .column-two.assymetric-about {
    width: 100%;
  }

  .button-wrapper-2 {
    margin-top: 25px;
  }

  .div-block-2 {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .video-wrapper {
    height: 400px;
  }

  .three-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .three-cards-wrapper.solutions-two {
    grid-column-gap: 20px;
    grid-row-gap: 67px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: grid;
  }

  .three-cards-wrapper.solutions-one {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    justify-content: center;
    display: flex;
  }

  .section-two-side-title-wrapp {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cta-loop {
    padding-bottom: 15px;
  }

  .cta-loop-text {
    font-size: 28px;
  }

  .wrapper-with-image {
    grid-row-gap: 50px;
    justify-content: flex-start;
    width: 100%;
    min-height: 550px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .number {
    font-size: 18px;
  }

  .two-column-wrapper-footer {
    grid-column-gap: 60px;
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .column-one-footer {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .column-two-footer {
    width: 100%;
  }

  .left-arrow-testimonial {
    border-bottom-style: none;
    border-left-style: none;
    border-radius: 0 30px;
    font-size: 18px;
    inset: auto auto 0% 0%;
  }

  .left-arrow-testimonial:hover {
    background-color: #0000;
  }

  .home-testimonial-wrapp {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0;
    padding-right: 40px;
  }

  .home-testimonial {
    text-align: center;
    align-items: center;
    width: 96%;
  }

  .right-arrow-testimonial {
    font-size: 18px;
    top: auto;
    bottom: 7px;
    right: 30px;
  }

  .right-arrow-testimonial:hover {
    background-color: #0000;
  }

  .quote-icon-cut {
    width: 70px;
    inset: auto auto -3px 30px;
  }

  .blog-item-title.black-title.centered {
    font-size: 18px;
  }

  .span-quote {
    font-size: 38px;
  }

  .solutions-title {
    font-size: 32px;
  }

  .solutions-collection-item {
    width: 100%;
  }

  .button-wrapper-nav {
    margin-top: 17px;
    display: flex;
  }

  .main-features-wrapper, .main-features-wrapper.second-style {
    grid-template-columns: 1fr 1fr;
  }

  .main-features-wrapper.second-style.space-down {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
  }

  .features.light-style {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .statistic-wrap-item {
    text-align: center;
    border-bottom-style: none;
    width: 47%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .video-wrapper-home-three {
    grid-template-columns: 2fr;
  }

  .statistic-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .section-title-limited-width-home-two {
    width: 80%;
  }

  .section-title-limited-width-home-two.smaller {
    font-size: 52px;
  }

  .banner-3-background-image {
    height: 100%;
    min-height: 700px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-two-side-title-wrapper-home-two {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-two-side-title-wrapper-home-two.bottom {
    width: 100%;
  }

  .home-banner-3-section {
    height: 100vh;
    min-height: 700px;
  }

  .paragraph-banner {
    width: 66%;
  }

  .paragraph-banner.limited-width {
    width: 90%;
  }

  .paragraph-banner.limited-width.centered {
    font-size: 14px;
  }

  .home-3-banner {
    padding-left: 25px;
    padding-right: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-19 {
    padding: 20px;
  }

  .video-wrapper-bigger {
    height: 400px;
  }

  .projects-list-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project-item {
    width: 47.9%;
  }

  .project-item.one-solutions {
    margin-bottom: 40px;
  }

  .project-item-info-wrapper.one-solutions._1 {
    width: 100%;
  }

  .logo-scroll, .logo {
    height: 60px;
    position: absolute;
  }

  .banner-pages-scroll-arrow-wrapper {
    margin-bottom: 0;
  }

  .banner-pages-scroll-arrow-wrapper.hidden {
    display: none;
  }

  .solutions-item-image {
    height: 200px;
  }

  .solutions-details-image {
    height: 374px;
    margin-bottom: 40px;
  }

  .section-details {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tab-pane-locations {
    height: auto;
  }

  .location-tab-title {
    margin-bottom: 0;
    font-size: 18px;
  }

  .small-text.hidden-tablet {
    display: none;
  }

  .location-tab {
    justify-content: center;
    padding: 15px;
  }

  .location-tabs {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }

  .location-tab-pane-content-wrapper {
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 15px;
    right: 15px;
  }

  .location-tabs-content {
    width: 100%;
  }

  .location-icon {
    margin-right: 10px;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .cta-main-flex {
    width: 60%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .container.no-padding {
    padding-left: 29px;
    padding-right: 29px;
  }

  .top-title {
    text-align: center;
    margin-bottom: 15px;
  }

  .top-title.mb0 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .top-title.mb0.black {
    text-align: left;
  }

  .cta-main-wrapper {
    background-position: 50%;
    background-size: auto;
    border-radius: 15px;
    padding: 40px;
  }

  .section-2.cta {
    padding-top: 100px;
    padding-bottom: 31px;
  }

  .section-title-2.white.cta-title {
    font-size: 28px;
    line-height: 35px;
  }

  .div-block-23 {
    justify-content: flex-start;
    align-items: center;
  }

  .base-container-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .main-title-wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .text-white-2 {
    font-size: 36px;
  }

  .get-started-text-wrap {
    width: auto;
  }

  .section-4 {
    height: 400px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .client {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .client.bg-sky-blue {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .client-image-category {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .client-all-image-box {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 250px;
    display: flex;
  }

  .image-5 {
    width: 50%;
    max-width: none;
  }

  .left-alignment.smaller-text {
    font-size: 26px;
  }

  .modal {
    padding-top: 48px;
    padding-left: 11px;
    padding-right: 11px;
    display: none;
  }

  .image-84 {
    max-width: 35%;
  }

  .hero-nav-dropdown {
    border-bottom: 1px solid #ffffff1a;
    width: 100%;
    padding-left: 0;
    transition: all .35s;
  }

  .div-block-125 {
    margin-left: -20px;
    padding-left: 0;
  }

  .div-block-125:hover {
    margin-left: -11px;
    padding-left: 8px;
  }

  .form-label {
    font-size: .6em;
    font-weight: 500;
    top: 1.2em;
  }

  .form-field {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5.8em;
    font-size: 14px;
    line-height: 14px;
  }

  .form-field.text-area {
    min-height: 6em;
    padding-top: .6em;
  }

  .form-field.other {
    padding-left: 4.4em;
  }

  .div-block-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .form-item {
    font-size: 1.1em;
  }

  .form-item.is-area-text {
    margin-bottom: .4em;
  }

  .div-block-130 {
    margin-bottom: 0;
  }

  .social-media-div {
    padding-bottom: 0;
  }

  .div-block-134 {
    justify-content: space-between;
    align-items: stretch;
    width: 43%;
  }

  .address-header {
    grid-column-gap: 10px;
    grid-row-gap: 2px;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .location-header {
    grid-column-gap: 10px;
    width: 30%;
    padding-left: 0;
  }

  .div-block-113 {
    width: auto;
  }

  .phone-header {
    grid-column-gap: 10px;
    flex: none;
    justify-content: space-between;
    align-items: center;
    width: auto;
    font-size: 14px;
  }

  .div-block-136 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
  }

  .image-87 {
    height: 50px;
  }

  .arrow-button-2 {
    display: block;
  }

  .arrow-button-2.navi-batton {
    padding: 5px 14px;
  }

  .button-arrow-element-2.other-circle {
    width: 30px;
    height: 30px;
  }

  .text-block-15 {
    font-size: 13px;
  }

  .grid-for-card-project {
    background-image: none;
    grid-template-columns: 1fr 1fr;
    height: 270px;
  }

  .content-for-project-card {
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-in-card-project {
    border: 1px solid #ffffff59;
  }

  .link-in-card-project.first {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .heading-52 {
    font-size: 20px;
  }

  .collection-item-2 {
    padding-left: 5px;
    padding-right: 0;
  }

  .collection-list-wrapper-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .collection-list {
    width: 100%;
    padding-bottom: 16px;
  }

  .enter-wrapper-4 {
    display: none;
  }

  .pop-up-wrapper-5 {
    text-align: center;
    border-color: #f08b21;
    width: 80%;
    height: auto;
    margin: 0;
    padding: 18px;
  }

  .image-89 {
    position: absolute;
  }

  .container-2 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .shadow-two {
    margin-bottom: 27px;
  }

  .image-91, .red-canada {
    width: 60px;
  }

  .about-us-banner {
    background-image: linear-gradient(#00000087, #00000087), url('../images/1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-4 {
    padding-top: 83px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .div-block-96 {
    width: auto;
    margin-left: 3px;
    margin-right: 3px;
  }

  .title-heading-wrapper {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .title-heading-wrapper.title-home-1 {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .email-text-2 {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-brand-wrapper-2 {
    justify-content: flex-start;
    align-items: center;
  }

  .heading-54 {
    font-size: 18px;
  }

  .div-block-154 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .grid-3-columns {
    grid-column-gap: 20px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3-columns._1-col-tablet {
    grid-template-columns: 1fr;
  }

  .grid-3-columns._1-col-tablet.mg-bottom-64px {
    grid-row-gap: 57px;
  }

  .grid-6 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-7 {
    flex-flow: column;
    grid-template-columns: .5fr;
    display: flex;
  }

  .div-block-171 {
    padding-left: 10px;
  }

  .grid-9 {
    grid-template-columns: 331px auto;
    align-items: center;
    width: 100%;
  }

  .section-16.home-1-slider {
    height: auto;
  }

  .base-container-3 {
    padding-top: 6px;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-10 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .bold-text-3 {
    font-size: 18px;
    font-weight: 400;
  }

  .swiper-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: grid;
  }

  .swiper-embed {
    display: flex;
  }

  .div-block-415 {
    height: auto;
  }

  .swiper-slide {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .section-17.swipe-slider-section {
    padding-top: 39px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-132 {
    height: auto;
  }

  .swiper {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .swiper-container {
    width: 100%;
  }

  .swiper-nav-wrapper {
    grid-column-gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-right: 0;
    position: static;
  }

  .heading-55.centered {
    letter-spacing: .5px;
    font-weight: 400;
  }

  .centered {
    font-size: 42px;
  }

  .text-block-main {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  .text-block-main.margin-top-one {
    font-size: 1.1rem;
  }

  .who-with-us {
    padding-left: 4em;
    padding-right: 4em;
  }

  .white-client-section {
    padding-top: 2.5rem;
    padding-bottom: 1.75rem;
  }

  .container-client {
    max-width: 100%;
  }

  .section-gap-two {
    padding-top: 42px;
    padding-bottom: 60px;
  }

  .container-7 {
    padding-bottom: 42px;
  }

  .div-block-424 {
    justify-content: flex-start;
    align-items: center;
  }

  .grid-16 {
    grid-column-gap: 17px;
  }

  .bold-text-6 {
    font-size: 22px;
  }

  .div-block-434 {
    justify-content: center;
    align-items: center;
  }

  .div-block-436 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .container-9 {
    padding-top: 0;
  }

  .div-block-439 {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 25px;
  }

  .section {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .section.without-bottom-spacing {
    padding-top: 49px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .headings-typography-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    margin-left: 0;
  }

  .pages-banner {
    height: 300px;
    padding-top: 110px;
    padding-bottom: 35px;
  }

  .pages-banner.blog {
    height: 400px;
    padding-top: 103px;
  }

  .pages-banner.why-choose-us.service-section {
    height: auto;
    min-height: auto;
    padding-top: 165px;
  }

  .pages-banner.about-us {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pages-banner.solutions-two {
    padding-bottom: 20px;
  }

  .pages-banner.career {
    height: 350px;
    min-height: 350px;
  }

  .pages-banner.contact-us {
    height: 500px;
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 6px;
  }

  .pages-banner.touchpoint-cleaning, .pages-banner.matron-services.day-porter-servcie, .pages-banner.janitorial-services, .pages-banner.building-operations-superintendent-services, .pages-banner.carpet-cleaning-restoration, .pages-banner.complete-building-solutions, .pages-banner.electrostatic-spray-disinfection, .pages-banner.emergency-cleaning-services, .pages-banner.event-cleaning-services, .pages-banner.interior-exterior-power-sweeping, .pages-banner.line-marking-stenciling, .pages-banner.natural-stone-restoration, .pages-banner.power-washing {
    height: 350px;
    padding-bottom: 20px;
  }

  .pages-banner.faq {
    height: 400px;
  }

  .pages-banner.window-cleaning, .pages-banner.post-construction, .pages-banner.emergency-flood {
    height: 350px;
    padding-bottom: 20px;
  }

  .banner-title {
    margin-bottom: 0;
  }

  .banner-title.services-details {
    text-align: left;
  }

  .banner-title.blog-details {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .banner-title.blog-titlte {
    font-size: 30px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  ._404 {
    font-size: 70px;
  }

  .coming-soon-wrapper {
    max-width: 480px;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    font-size: 44px;
  }

  .blog-template-image {
    height: 340px;
    margin-bottom: 30px;
  }

  .blog-template-pagination {
    flex-flow: row;
    justify-content: center;
    margin-top: 30px;
    display: flex;
  }

  .blog-template-prev-button {
    width: 100%;
  }

  .blog-template-next-button {
    width: 100%;
    margin-top: -10px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .career-list-item-wrapper {
    flex-wrap: wrap;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .career-position {
    margin-top: 0;
    margin-bottom: 0;
  }

  .career-button-wrapper {
    text-align: center;
    width: 100%;
    margin-top: 30px;
  }

  .career-position-wrapper {
    grid-row-gap: 15px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
  }

  .career-type-wrapper {
    grid-row-gap: 15px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: auto;
    display: flex;
  }

  .banner-title-wrapper {
    padding-bottom: 20px;
    padding-right: 0;
  }

  .banner-title-wrapper.services-details {
    padding-bottom: 0;
  }

  .banner-description.text-white {
    line-height: 1.2em;
  }

  .section-title-description, .section-title {
    text-align: left;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-item.white-style {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .job-position-wrapper {
    flex-wrap: wrap;
  }

  .job-position-content-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .job-position-sidebar-wrapper {
    width: 100%;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    top: 0;
  }

  .no-margin {
    margin-bottom: 0;
    font-size: 14px;
  }

  .no-margin.centered {
    text-align: left;
    font-size: 22px;
    font-style: normal;
    text-decoration: none;
  }

  .no-margin.bigger-text {
    font-size: 22px;
  }

  .contacts-2-location-wrapper {
    width: 100%;
  }

  .contacts-form-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contacts-content-wrapper {
    flex-wrap: wrap;
  }

  .footer-social-icons-wrapper {
    margin-bottom: 10px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .testimonials-card-item {
    background-size: 130px 60px;
    max-width: 450px;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-sidebar-wrapper {
    width: 100%;
    margin-top: 40px;
    position: static;
  }

  .service-details-content {
    flex-wrap: wrap;
  }

  .service-details-sidebar-contacts, .button-wrapper {
    margin-top: 20px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .blog-details-link-title {
    font-size: 14px;
  }

  .home-3-testimonial-card {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
    margin-top: 20px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .blog-list-main.grid-style {
    grid-template-columns: 1fr;
  }

  .blog-post-item {
    width: 100%;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .banner-column-one {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .dot-wrapper {
    font-size: 14px;
  }

  .two-column-wrapper {
    flex-direction: column;
  }

  .column-one.assymetric-numbers-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .in-section-title {
    font-size: 26px;
  }

  .in-section-title.white-link-style {
    font-size: 28px;
  }

  .in-section-title.smaller-text {
    font-size: 32px;
  }

  .bottom-text.bigger {
    width: 70%;
  }

  .div-block-2 {
    margin-top: 30px;
  }

  .video-wrapper {
    height: 360px;
  }

  .three-cards-wrapper {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .three-cards-wrapper.solutions-two {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }

  .three-cards-wrapper.solutions-one {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .three-cards.no-bg-style {
    margin-bottom: 38px;
  }

  .solution-category.white-style {
    font-size: 13px;
  }

  .section-two-side-title-wrapp {
    grid-row-gap: 20px;
    margin-bottom: 40px;
  }

  .cta-loop {
    margin-bottom: 0;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .cta-loop-text {
    font-size: 24px;
  }

  .wrapper-with-image {
    width: 100%;
    min-height: 500px;
  }

  .numbers-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .two-column-wrapper-footer {
    flex-direction: column;
  }

  .column-one-footer {
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .collapsing-cards-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }

  .collapsing-cards.last {
    flex: 0 auto;
    width: 100%;
    height: 400px;
  }

  .collapsing-cards.second, .collapsing-cards.first {
    width: 100%;
    height: 400px;
  }

  .team-collapsing-arrow {
    top: 20px;
    bottom: auto;
  }

  .team-collapsing-info.first, .team-collapsing-info.second {
    opacity: 1;
    width: auto;
    left: 20px;
    right: 20px;
  }

  .team-collapsing-info.last {
    width: auto;
    left: 20px;
    right: 20px;
  }

  .home-paragraphs-wrapper {
    grid-column-gap: 29px;
  }

  .home-testimonial-wrapp {
    grid-row-gap: 25px;
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 22px;
  }

  .right-arrow-testimonial {
    bottom: 30px;
    right: 20px;
  }

  .quote-icon-cut {
    left: 20px;
  }

  .blog-item-info-wrapper {
    height: 400px;
  }

  .blog-item-title.black-title {
    font-size: 18px;
    line-height: 1.2em;
  }

  .blog-item-title.black-title.left-alignment {
    font-size: 1.1em;
  }

  .blog-item-info {
    min-height: auto;
  }

  .span-quote {
    font-size: 32px;
  }

  .button-wrapper-main {
    margin-top: 30px;
  }

  .solutions-title {
    font-size: 26px;
  }

  .solutions-collection-item {
    width: 100%;
  }

  .button-wrapper-nav {
    margin-top: 20px;
  }

  .main-features-wrapper.second-style {
    grid-template-columns: 1fr;
  }

  .features.light-style {
    padding: 16px;
  }

  .icon-features-wrapper {
    margin-bottom: 5px;
  }

  .big-number {
    text-align: center;
  }

  .home-3-image-wrapper {
    display: block;
  }

  .statistic-wrap-item {
    width: 100%;
  }

  .video-wrapper-home-three {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
  }

  .video-wrapper-home-three.hidden {
    flex-flow: column;
  }

  .statistic-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .section-title-limited-width-home-two {
    width: 100%;
  }

  .section-title-limited-width-home-two.smaller {
    text-align: left;
    font-size: 34px;
  }

  .section-two-side-title-wrapper-home-two {
    grid-row-gap: 20px;
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-two-side-title-wrapper-home-two.bottom {
    grid-row-gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .home-banner-3-section {
    min-height: 600px;
  }

  .paragraph-banner {
    width: 80%;
  }

  .paragraph-banner.limited-width {
    text-align: left;
    font-size: 14px;
  }

  .home-3-banner {
    padding-top: 120px;
  }

  .video-wrapper-bigger {
    height: 360px;
  }

  .project-item {
    width: 100%;
  }

  .project-item-info-wrapper.one-solutions._1 {
    min-height: 300px;
  }

  .banner-pages-scroll-arrow-wrapper {
    margin-bottom: 13px;
  }

  .banner-pages-scroll-arrow-wrapper.w--current {
    margin-bottom: 0;
    bottom: 6%;
    right: 4%;
  }

  .banner-pages-scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .solutions-one-style {
    margin-bottom: 6px;
  }

  .solutions-item-image {
    height: 170px;
  }

  .solutions-details-image {
    height: 320px;
  }

  .section-details {
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .location-tab-pane-info {
    align-items: center;
  }

  .location-title-wrapper {
    justify-content: center;
  }

  .location-tab-pane-content-wrapper {
    width: 100%;
    box-shadow: none;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .location-tabs-menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }

  .hire-popup {
    display: none;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .cta-main-flex {
    width: auto;
  }

  .top-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .top-title.mb0 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .top-title.mb0.black {
    text-align: left;
  }

  .cta-main-wrapper {
    grid-row-gap: 20px;
    background-position: 50%;
    background-size: auto;
    flex-flow: column;
    padding: 20px;
  }

  .section-2.cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-title-2.white.cta-title {
    font-size: 28px;
    line-height: 42px;
  }

  .get-started-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .main-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-white-2 {
    text-align: left;
    font-size: 28px;
  }

  .get-started-text-wrap {
    width: 100%;
  }

  .section-4 {
    height: 400px;
  }

  .left-alignment.smaller-text {
    font-size: 26px;
  }

  .form-block-5.outline-outside {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-wrapper-3.product {
    margin-top: 0;
  }

  .modal {
    padding-top: 47px;
    padding-left: 0;
    padding-right: 0;
    display: none;
  }

  .div.less {
    width: 85%;
  }

  .image-84 {
    max-width: 40%;
  }

  .text-block-3 {
    padding-bottom: 27px;
  }

  .form-label {
    font-size: .6em;
    top: 1.8em;
  }

  .form-field {
    padding-top: 1.7em;
    padding-bottom: 1.4em;
    padding-left: 5.3em;
    font-size: .8em;
  }

  .form-field::placeholder {
    font-size: .9em;
  }

  .form-field.text-area {
    padding-top: 1.1em;
  }

  .div-block-3 {
    flex-flow: column;
  }

  .form-item {
    width: 100%;
  }

  .div-block-134 {
    flex-flow: column;
    display: none;
  }

  .address-header {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: row;
    padding-left: 20px;
    padding-right: 20px;
  }

  .location-header {
    grid-column-gap: 5px;
  }

  .phone-header {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .grid-for-card-project {
    height: auto;
  }

  .collection-item-2 {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .collection-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .enter-wrapper-4 {
    text-align: left;
    padding-left: 28px;
    padding-right: 28px;
    display: none;
    position: fixed;
  }

  .pop-up-wrapper-5 {
    width: 90%;
    height: auto;
    margin-top: 11px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .collection-list-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start;
    display: flex;
  }

  .div-block-142 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .hero-heading-right {
    padding: 60px 15px 0;
  }

  .hero-wrapper {
    margin-bottom: 0;
  }

  .div-block-145 {
    flex-flow: column;
    display: flex;
  }

  .about-us-banner {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .container-4 {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-96 {
    width: auto;
  }

  .title-heading-wrapper.title-home-1 {
    width: auto;
    margin-bottom: 29px;
  }

  .email-text-2 {
    font-size: 22px;
  }

  .footer-brand-wrapper-2 {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .paragraph-6 {
    line-height: 140%;
  }

  .div-block-157 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .div-block-161, .div-block-162, .div-block-163 {
    height: 100px;
  }

  .div-block-165 {
    padding: 10px;
  }

  .grid-3-columns {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .grid-6 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-7 {
    flex-flow: column;
    grid-template-columns: .5fr;
    display: flex;
  }

  .grid-9 {
    grid-column-gap: 0%;
    grid-template-columns: 1fr;
  }

  .section-16 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-16.home-1-slider {
    height: auto;
    padding-bottom: 52px;
  }

  .button-secondary {
    padding: 20px 32px;
  }

  .base-container-3 {
    max-width: none;
    padding-top: 25px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .swiper-wrapper {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
  }

  .div-block-415 {
    height: 50%;
  }

  .swiper-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .swiper-nav-wrapper {
    margin-top: 25px;
  }

  .heading-55 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .who-with-us {
    padding-left: 2em;
    padding-right: 2em;
  }

  .section-gap-two {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .container-7 {
    padding-left: 17px;
    padding-right: 17px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding: 32px 20px;
  }

  .section.without-bottom-spacing, .section.without-bottom-spacing.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.without-bottom-spacing.pink-background {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .section.without-bottom-spacing.other {
    padding-bottom: 50px;
  }

  .section.overflow-visible {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.psace-up {
    padding-top: 60px;
  }

  .base-container {
    width: 100%;
    max-width: 100%;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .nav-container {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 11px;
  }

  .nav-menu {
    width: 100%;
    height: 100vh;
  }

  .menu-button {
    width: 50%;
  }

  .nav-link {
    width: 99%;
  }

  .pages-banner {
    height: 300px;
    padding-left: 11px;
    padding-right: 11px;
  }

  .pages-banner.blog {
    justify-content: center;
    align-items: flex-end;
    min-height: 400px;
    padding: 111px 16px 33px;
  }

  .pages-banner.about-us {
    padding-bottom: 23px;
  }

  .pages-banner.solutions-two {
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pages-banner.career {
    height: 300px;
    min-height: 300px;
    padding-bottom: 34px;
  }

  .pages-banner.contact-us {
    height: auto;
    padding: 168px 20px 19px;
  }

  .pages-banner.touchpoint-cleaning, .pages-banner.matron-services.day-porter-servcie, .pages-banner.janitorial-services {
    padding: 0 15px 20px;
  }

  .pages-banner.building-operations-superintendent-services {
    height: 350px;
    padding: 0 15px 20px;
  }

  .pages-banner.carpet-cleaning-restoration, .pages-banner.complete-building-solutions, .pages-banner.electrostatic-spray-disinfection, .pages-banner.emergency-cleaning-services {
    padding: 0 15px 20px;
  }

  .pages-banner.event-cleaning-services {
    justify-content: center;
    align-items: flex-end;
    height: 350px;
    padding: 0 15px 30px;
  }

  .pages-banner.interior-exterior-power-sweeping, .pages-banner.line-marking-stenciling, .pages-banner.natural-stone-restoration, .pages-banner.power-washing {
    padding: 0 15px 20px;
  }

  .pages-banner.faq {
    justify-content: space-between;
    align-items: center;
    height: 300px;
    padding-top: 126px;
    padding-bottom: 33px;
  }

  .pages-banner.window-cleaning, .pages-banner.post-construction, .pages-banner.emergency-flood {
    padding: 0 15px 20px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-title.blog-details {
    font-size: 28px;
  }

  .banner-title.blog-titlte {
    padding-right: 28px;
    font-size: 20px;
    line-height: 1.3em;
  }

  .banner-title.smaller-title {
    font-size: 32px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404 {
    font-size: 60px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    font-size: 32px;
  }

  .nav-menu-wrapper {
    padding-left: 6px;
    padding-right: 6px;
  }

  .blog-template-image {
    height: auto;
  }

  .blog-template-pagination {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .blog-template-prev-button, .blog-template-next-button {
    flex: none;
    width: 100%;
  }

  .footer {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
    padding-left: 0;
    padding-right: 20px;
  }

  .footer-rights {
    text-align: left;
    font-size: 11px;
    line-height: 1.6em;
  }

  .footer-copyright {
    text-align: left;
    justify-content: center;
    width: 100%;
    font-size: 11px;
    line-height: 1.6em;
  }

  .section-title-wrapper {
    margin-bottom: 12px;
  }

  .career-list-item-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .banner-title-wrapper {
    padding-bottom: 0;
    padding-right: 14px;
  }

  .banner-title-wrapper.center-style {
    padding-top: 0;
    padding-bottom: 0;
  }

  .banner-description.text-white {
    margin-right: 36px;
    font-size: 14px;
    line-height: 18px;
  }

  .section-title-description {
    text-align: left;
  }

  .section-title {
    text-align: left;
    margin-bottom: 15px;
    font-size: 28px;
  }

  .accordion-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-item.white-style {
    padding: 0;
  }

  .accordion-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .accordion-list-content {
    font-size: 14px;
    line-height: 18px;
  }

  .accordion-title {
    font-size: 18px;
    line-height: 22px;
  }

  .no-margin {
    width: 100%;
    margin-bottom: 0;
  }

  .no-margin.bigger-text {
    font-size: 22px;
  }

  .no-margin.red-color {
    width: auto;
  }

  .contacts-2-location-wrapper {
    margin-top: 20px;
    padding-top: 20px;
  }

  .contacts-form-wrapper {
    padding: 30px 20px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    margin-top: 0;
  }

  .footer-links-wrapper {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 25px;
    padding-bottom: 25px;
    display: grid;
  }

  .footer-logo {
    max-width: 80%;
  }

  .service-details-sidebar-wrapper {
    padding: 20px;
  }

  .service-details-content {
    width: 100%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .navbar-fixed.adfqs {
    padding-top: 0;
    padding-left: 0;
    padding-right: 10px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .testimonials-author-horizontal {
    grid-row-gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .our-services-wrap {
    width: 100%;
  }

  .home-3-testimonial-card {
    width: 100vw;
  }

  .home-9-team-item {
    width: 100%;
  }

  .menu-wrap.tablet-mobile-wrap {
    height: auto;
    padding-bottom: 29px;
  }

  .rich-text-style.negative-top-bottom {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-23-team-item {
    width: 100%;
  }

  .center-title {
    text-align: center;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .brand.w--current {
    width: 100%;
    margin-right: -11px;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .scroll-banner-3-link {
    display: none;
  }

  .button-arrow-element.corner-right-absolute {
    top: 20px;
    right: 20px;
  }

  .button-arrow-element.corner-right-absolute-white {
    top: 5px;
    right: 5px;
  }

  .arrow-button {
    padding-left: 13px;
    padding-right: 13px;
  }

  .dot.contact-cta {
    width: 14px;
    height: 14px;
    margin: 4px;
  }

  .dot-wrapper {
    padding: 3px;
  }

  .in-section-title {
    margin-bottom: 15px;
  }

  .in-section-title.white-link-style {
    font-size: 20px;
  }

  .in-section-title.smaller-text {
    width: 100%;
    font-size: 22px;
  }

  .bottom-text {
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 10px;
  }

  .bottom-text.bigger {
    width: 90%;
  }

  .avatars-image {
    max-width: 90%;
  }

  .video-wrapper {
    height: 200px;
  }

  .video-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }

  .video-overlay.bottom-style {
    width: 100%;
  }

  .play-button-hover-home {
    width: 70px;
    height: 70px;
    top: auto;
    bottom: 30px;
    right: 20px;
  }

  .three-cards-wrapper, .three-cards-wrapper.solutions-two {
    grid-template-columns: 1fr;
  }

  .three-cards-wrapper.solutions-one {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .three-cards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .three-cards.no-bg-style {
    min-height: auto;
    margin-bottom: 28px;
  }

  .cta-loop {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .cta-loop-text {
    font-size: 18px;
  }

  .wrapper-with-image {
    min-height: 550px;
  }

  .numbers-wrapper {
    flex-flow: row;
    padding-left: 20px;
    padding-right: 20px;
  }

  .numbers-wrap {
    padding-left: 20px;
  }

  .number {
    font-size: 16px;
    line-height: 1.2em;
  }

  .two-column-wrapper-footer {
    padding-left: 3px;
    padding-right: 3px;
  }

  .column-one-footer {
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-form-block {
    width: 100%;
  }

  .home-paragraphs-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .home-testimonial-wrapp {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-quote {
    text-align: left;
  }

  .home-testimonial {
    width: 100%;
  }

  .blog-item-info-wrapper {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-item-title {
    font-size: 20px;
  }

  .blog-item-title.black-title.left-alignment {
    font-size: 1.3em;
  }

  .span-quote {
    font-size: 24px;
    line-height: 1.5em;
  }

  .main-features-wrapper {
    grid-template-columns: 1fr;
  }

  .main-features-wrapper.second-style.space-down {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .features.light-style {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features.light-style.other-color {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .big-number {
    text-align: center;
    font-size: 40px;
  }

  .home-3-image-wrapper, .statistic-wrap-item {
    width: 100%;
  }

  .video-wrapper-home-three {
    grid-template-columns: auto;
    width: 100%;
  }

  .video-wrapper-home-three.hidden {
    flex-flow: column;
  }

  .statistic-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .section-title-limited-width-home-two.smaller {
    text-align: left;
    font-size: 30px;
  }

  .section-two-side-title-wrapper-home-two {
    grid-column-gap: 0px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-two-side-title-wrapper-home-two.bottom {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .paragraph-banner {
    width: 100%;
  }

  .paragraph-banner.limited-width {
    text-align: left;
    width: 100%;
  }

  .home-3-banner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-big {
    height: auto;
    min-height: 550px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-19, .service-cards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .video-wrapper-bigger {
    height: auto;
  }

  .projects-item-info, .project-item-info-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-item-info-wrapper.one-solutions {
    min-height: 620px;
    padding-right: 20px;
  }

  .project-item-info-wrapper.one-solutions._1 {
    min-height: 200px;
  }

  .logo-scroll {
    height: 60px;
  }

  .logo {
    width: auto;
    height: 60px;
  }

  .banner-pages-scroll-arrow-wrapper {
    display: flex;
    inset: auto 4% -24% auto;
  }

  .solutions-details-image {
    height: auto;
  }

  .section-details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-top-info {
    flex-direction: column;
  }

  .location-tab-pane-info {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .location-tab-pane-info.first-item {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .small-text {
    text-align: left;
  }

  .location-tab-pane-title {
    font-size: 22px;
  }

  .location-tab-pane-content-wrapper {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.no-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 27px;
  }

  .top-title.mb0 {
    font-size: 16px;
    line-height: 27px;
  }

  .top-title.mb0.black {
    text-align: left;
  }

  .cta-main-wrapper {
    background-position: 50% 61%;
    background-size: auto;
  }

  .section-2.cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title-2.white.cta-title {
    letter-spacing: 0;
    font-size: 26px;
    line-height: 30px;
  }

  .image-3 {
    width: 60%;
  }

  .image-4 {
    width: 30%;
  }

  .base-container-2 {
    max-width: none;
  }

  .text-white-2 {
    font-size: 28px;
    line-height: 32px;
  }

  .div-block-25 {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .left-alignment {
    line-height: .9em;
  }

  .left-alignment.smaller-text {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .text-field-contact {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }

  .form-block-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .form-block-5.outline-outside {
    width: 100%;
    height: auto;
    padding-top: 6px;
    padding-left: 7px;
    padding-right: 7px;
    overflow: scroll;
  }

  .button-wrapper-3 {
    width: auto;
  }

  .text-area {
    color: #000;
    font-size: 14px;
  }

  .form-3 {
    align-items: center;
  }

  .modal {
    padding-top: 33px;
    display: none;
  }

  .div.less {
    width: 95%;
    height: 90%;
  }

  .image-84 {
    max-width: 55%;
    margin-top: 16px;
  }

  .flex-form {
    flex-direction: column;
    width: 100%;
  }

  .image-85.visas {
    width: 100%;
  }

  .image-85.canadian-sign {
    width: 30%;
    max-width: none;
  }

  .link-3 {
    text-align: center;
  }

  .form-label {
    font-size: 10px;
    top: 1.8em;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .form-field {
    padding-left: 5.1em;
  }

  .form-field::placeholder {
    font-size: .75em;
  }

  .form-field.other {
    padding-left: 3.2em;
  }

  .form-field.white {
    width: 100%;
    padding-left: 5.1em;
  }

  .form-error-message {
    padding: 1.7em;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .form-item.is-area-text {
    margin-bottom: .7em;
  }

  .div-block-131 {
    padding-top: 8px;
  }

  .div-block-134 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: none;
  }

  .address-header {
    z-index: 2;
    text-align: center;
    flex-flow: column;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .location-header {
    grid-column-gap: 10px;
    width: auto;
    font-size: 12px;
  }

  .icon-header {
    width: 22px;
  }

  .div-block-113 {
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .phone-header {
    grid-column-gap: 4px;
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    align-self: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .white-link.other {
    font-size: 18px;
  }

  .white-link.less-font {
    font-size: 12px;
  }

  .bold-text {
    font-size: 16px;
  }

  .arrow-button-2.navi-batton {
    padding: 6px 11px 6px 6px;
  }

  .text-block-15 {
    font-size: 12px;
  }

  .grid-for-card-project {
    background-image: linear-gradient(#242020c7, #1614147a), url('../images/CSR.webp');
    background-position: 0 0, 100%;
    background-size: auto, cover;
    grid-template-columns: 1fr;
    height: 270px;
  }

  .content-for-project-card {
    height: 400px;
    margin-top: 0;
    padding: 0 20px;
    top: -38px;
  }

  .heading-52 {
    font-size: 22px;
  }

  .collection-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: stretch;
    display: grid;
  }

  .enter-wrapper-4 {
    padding: 13px 0 10px;
    display: none;
  }

  .pop-up-wrapper-5 {
    text-align: center;
    flex-direction: column;
    width: 90%;
    height: auto;
    margin-top: 6px;
    margin-bottom: 0;
    padding: 0;
    line-height: 28px;
    display: flex;
  }

  .collection-list-2 {
    grid-template-columns: 1fr;
  }

  .text-block-67 {
    font-size: 14px;
    line-height: 18px;
  }

  .div-block-142 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }

  .div-block-143 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    flex-flow: column;
    width: 100%;
    margin-bottom: 4px;
  }

  .hero-heading-right {
    padding-top: 21px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    max-width: none;
  }

  .div-block-144 {
    max-width: 70%;
  }

  .section-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-3, .paragraph-4 {
    text-align: center;
  }

  .div-block-146 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .div-block-147 {
    width: 100%;
  }

  .div-block-148 {
    margin-left: 33px;
  }

  .about-us-banner {
    padding: 0 15px;
  }

  .container-4 {
    justify-content: center;
    align-items: center;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-96 {
    width: 90%;
  }

  .title-heading-wrapper {
    margin-bottom: 0;
  }

  .italic-text-28 {
    font-size: 14px;
  }

  .footer-brand-wrapper-2 {
    flex-direction: column;
    width: 100%;
  }

  .area-link.white-text {
    font-size: 12px;
  }

  .paragraph-6 {
    line-height: 160%;
  }

  .heading-54 {
    font-size: 16px;
  }

  .div-block-154 {
    padding: 10px;
  }

  .div-block-157 {
    flex-flow: column;
  }

  .div-block-159 {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
  }

  .div-block-161, .div-block-162, .div-block-163 {
    border-radius: 10px;
    height: 60px;
  }

  .div-block-165.centered {
    padding-top: 21px;
    padding-bottom: 21px;
  }

  .inner-container-600px {
    line-height: 1.2em;
  }

  .grid-3-columns {
    grid-row-gap: 28px;
  }

  .grid-6 {
    grid-template-columns: 1fr;
  }

  .div-block-171 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-171._2 {
    padding-left: 0;
  }

  .div-block-172 {
    flex-flow: column;
  }

  .section-16.home-1-slider {
    height: auto;
    padding-bottom: 62px;
  }

  .button-secondary {
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .base-container-3 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-10 {
    grid-template-columns: 1fr;
  }

  .swiper-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .div-block-415 {
    height: auto;
  }

  .swiper-slide {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .div-block-414 {
    padding: 7px;
  }

  .swiper {
    overflow: hidden;
  }

  .swiper-container {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-55 {
    text-align: left;
    padding-left: 20px;
    padding-right: 0;
    font-size: 28px;
  }

  .heading-55.left-alignment {
    font-size: 30px;
    line-height: 1.2em;
  }

  .heading-55.centered, .heading-55._48px-text {
    text-align: left;
    padding-left: 0;
  }

  .div-block-416 {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-11, .grid-11.grid-4 {
    grid-template-columns: 1fr;
  }

  .list-1 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .centered {
    text-align: left;
    font-size: 32px;
  }

  .heading-56 {
    font-size: 24px;
  }

  .text-block-main {
    font-size: 1rem;
    line-height: 25px;
  }

  .container-two-2, .who-with-us {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-13 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section-gap-two {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-7 {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-14 {
    grid-template-columns: 1fr 1fr;
  }

  .div-block-424 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .grid-15 {
    grid-template-columns: 1fr;
  }

  .grid-16 {
    grid-row-gap: 28px;
    grid-template-columns: 1fr;
  }

  .bold-text-5 {
    font-size: 32px;
  }

  .div-block-431 {
    width: 40px;
    height: 40px;
  }

  .heading-58 {
    padding-left: 29px;
    padding-right: 29px;
  }

  .text-block-75 {
    font-size: 18px;
  }

  .div-block-433 {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
  }

  .grid-17 {
    grid-template-columns: 1fr;
  }

  .white-text {
    font-size: 28px;
  }

  .bold-text-6 {
    font-size: 16px;
  }

  .heading-59 {
    font-size: 28px;
  }

  .paragraph-15 {
    text-align: left;
    padding: 15px;
  }

  .heading-60 {
    text-align: left;
    font-size: 32px;
    display: flex;
  }

  .grid-18 {
    grid-template-columns: 1fr;
  }

  .div-block-436 {
    padding-left: 7px;
    padding-right: 7px;
  }
}

#w-node-c0785d0b-d2bd-c352-400a-e3b3e9911b78-2e6d5eec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c0785d0b-d2bd-c352-400a-e3b3e9911b8d-2e6d5eec, #w-node-c0785d0b-d2bd-c352-400a-e3b3e9911b81-2e6d5eec, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9187-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9188-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9189-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918a-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918b-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918c-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918d-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918e-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918f-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9190-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9192-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9193-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9194-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9195-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9196-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9197-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9198-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9199-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919a-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919b-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919d-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919e-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919f-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a0-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a1-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a2-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a3-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a4-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a5-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a6-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a8-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a9-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91aa-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ab-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ac-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ad-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ae-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91af-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b0-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b1-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b3-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b4-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b5-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b6-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b7-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b8-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b9-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ba-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bb-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bc-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91be-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bf-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c0-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c1-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c2-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c3-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c4-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c5-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c6-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c7-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c9-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ca-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cb-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cc-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cd-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ce-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cf-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d0-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d1-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d2-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d4-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d5-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d6-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d7-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d8-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d9-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91da-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91db-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dc-2e6d5f25, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dd-2e6d5f25, #w-node-a5d1a432-dbf8-afa8-cb26-fb69d59a65d8-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c3-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c4-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c5-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c6-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c7-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c8-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0c9-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0ca-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0cb-2e6d5f30, #w-node-_6114f91d-c857-0356-6bef-91717e92c0cc-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f2-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f3-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f4-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f5-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f6-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f7-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f8-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8f9-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8fa-2e6d5f30, #w-node-_90f62049-2028-d3b6-811b-282b026df8fb-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b0-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b1-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b2-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b3-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b4-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b5-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b6-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b7-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b8-2e6d5f30, #w-node-_2c136f65-aba4-7497-1fb1-c235b137f1b9-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca03-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca04-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca05-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca06-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca07-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca08-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca09-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca0a-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca0b-2e6d5f30, #w-node-a8c8b33a-9a6f-a8d1-9742-967c45c0ca0c-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d602-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d603-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d604-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d605-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d606-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d607-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d608-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d609-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d60a-2e6d5f30, #w-node-_30626c54-1d4a-9edd-2860-1473e422d60b-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb3-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb4-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb5-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb6-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb7-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb8-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bb9-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bba-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bbb-2e6d5f30, #w-node-c646b267-d5f7-018e-17e2-5675fd335bbc-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbde-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbdf-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe0-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe1-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe2-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe3-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe4-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe5-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe6-2e6d5f30, #w-node-_371741bd-837e-a34b-755f-bd5e1738dbe7-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64eff-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f00-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f01-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f02-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f03-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f04-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f05-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f06-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f07-2e6d5f30, #w-node-_2779afe2-07a0-e7c1-df06-80cdf2a64f08-2e6d5f30, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9187-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9188-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9189-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918a-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918b-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918c-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918d-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918e-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918f-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9190-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9192-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9193-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9194-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9195-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9196-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9197-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9198-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9199-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919a-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919b-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919d-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919e-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919f-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a0-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a1-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a2-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a3-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a4-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a5-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a6-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a8-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a9-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91aa-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ab-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ac-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ad-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ae-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91af-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b0-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b1-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b3-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b4-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b5-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b6-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b7-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b8-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b9-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ba-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bb-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bc-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91be-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bf-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c0-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c1-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c2-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c3-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c4-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c5-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c6-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c7-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c9-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ca-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cb-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cc-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cd-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ce-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cf-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d0-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d1-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d2-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d4-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d5-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d6-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d7-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d8-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d9-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91da-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91db-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dc-d9c774a2, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dd-d9c774a2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-730af79d {
  align-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-f01187fa {
  align-self: end;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2c48fe86, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-2c48fe86, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-2c48fe86, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-2c48fe86, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-2c48fe86, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-2c48fe86, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-2c48fe86 {
  align-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-2c48fe86, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-2c48fe86, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-2c48fe86, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-2c48fe86, #w-node-_58f1743c-b5a5-b7dc-28d7-fd9cbd670742-2c48fe86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-36338ff7, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-36338ff7 {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-36338ff7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-36338ff7, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-36338ff7, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-36338ff7 {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-23f715dc, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-23f715dc {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-23f715dc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-23f715dc, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-23f715dc, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-23f715dc {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-5395caa2, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-5395caa2 {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-5395caa2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-5395caa2, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-5395caa2, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-5395caa2 {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-8df535c2, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-8df535c2 {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-8df535c2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-8df535c2, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-8df535c2, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-8df535c2 {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-339de8a0, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-339de8a0 {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-339de8a0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-339de8a0, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-339de8a0, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-339de8a0 {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2f6ea54d, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-2f6ea54d {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-2f6ea54d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-2f6ea54d, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-2f6ea54d, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-2f6ea54d {
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2f7a8ab6, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-2f7a8ab6 {
  align-self: end;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-2f7a8ab6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c470b-2f7a8ab6, #w-node-defac42a-c782-108f-c2e2-d605d28c470d-2f7a8ab6, #w-node-defac42a-c782-108f-c2e2-d605d28c470f-2f7a8ab6 {
  place-self: center;
}

#w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9187-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9188-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9189-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918a-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918b-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918c-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918d-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918e-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef918f-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9190-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9192-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9193-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9194-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9195-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9196-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9197-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9198-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef9199-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919a-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919b-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919d-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919e-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef919f-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a0-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a1-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a2-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a3-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a4-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a5-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a6-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a8-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91a9-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91aa-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ab-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ac-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ad-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ae-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91af-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b0-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b1-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b3-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b4-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b5-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b6-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b7-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b8-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91b9-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ba-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bb-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bc-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91be-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91bf-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c0-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c1-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c2-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c3-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c4-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c5-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c6-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c7-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91c9-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ca-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cb-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cc-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cd-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91ce-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91cf-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d0-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d1-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d2-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d4-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d5-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d6-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d7-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d8-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91d9-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91da-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91db-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dc-bec6e658, #w-node-_1b6f40fa-a77a-29af-e6ce-e51461ef91dd-bec6e658 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2bb5b727, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-2bb5b727, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-2bb5b727, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-2bb5b727, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-2bb5b727, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-2bb5b727 {
  align-self: center;
}

#w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-2bb5b727 {
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-2bb5b727, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-2bb5b727, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-2bb5b727, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-2bb5b727, #w-node-_58f1743c-b5a5-b7dc-28d7-fd9cbd670742-2bb5b727 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-e8d679dd, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-e8d679dd, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-e8d679dd, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-e8d679dd, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-e8d679dd, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-e8d679dd {
  align-self: center;
}

#w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-e8d679dd {
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-e8d679dd, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-e8d679dd, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-e8d679dd, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-e8d679dd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-04c64faf, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-04c64faf, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-04c64faf, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-04c64faf, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-04c64faf, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-04c64faf {
  align-self: center;
}

#w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-04c64faf {
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-04c64faf, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-04c64faf, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-04c64faf, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-04c64faf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-9604aebe, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-9604aebe, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-9604aebe, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-9604aebe, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-9604aebe, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-9604aebe {
  align-self: center;
}

#w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-9604aebe {
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-9604aebe, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-9604aebe, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-9604aebe, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-9604aebe, #w-node-_0fdf7dfe-c635-36cb-4f48-f4eafd6edeea-9604aebe, #w-node-e025e0d8-86c8-c963-949d-86f62fc02aa4-9604aebe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-9c8e4a5a, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-9c8e4a5a, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-9c8e4a5a, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-9c8e4a5a, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-9c8e4a5a, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-9c8e4a5a {
  align-self: center;
}

#w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-9c8e4a5a {
  place-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-9c8e4a5a, #w-node-f91177f8-81a1-5357-717b-5fd8e1878f9d-9c8e4a5a, #w-node-_93b82ab7-2c64-03cf-58d7-63889f0bffaf-9c8e4a5a, #w-node-bc7a36e8-7fc9-8965-bf00-35a2615f8a34-9c8e4a5a, #w-node-_13a20ed5-e4aa-ed2d-a9a8-a577d1585af1-9c8e4a5a, #w-node-_65df47c5-44af-b91c-5d62-62254d99f84c-9c8e4a5a, #w-node-d12d6cc1-eabd-2b3d-640a-d440215261bc-9c8e4a5a, #w-node-d12d6cc1-eabd-2b3d-640a-d440215261c2-9c8e4a5a, #w-node-d12d6cc1-eabd-2b3d-640a-d440215261c8-9c8e4a5a, #w-node-d12d6cc1-eabd-2b3d-640a-d440215261ce-9c8e4a5a, #w-node-d12d6cc1-eabd-2b3d-640a-d440215261d4-9c8e4a5a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-c487fb43, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-c487fb43, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-c487fb43, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-c487fb43, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-c487fb43, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-c487fb43, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-c487fb43 {
  align-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-c487fb43, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-c487fb43, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-c487fb43, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-c487fb43, #w-node-_58f1743c-b5a5-b7dc-28d7-fd9cbd670742-c487fb43 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-a81aa726, #w-node-_0986a39f-c0d4-e7cb-d148-5a38d043abbd-a81aa726, #w-node-dfb6d421-bf06-a626-5653-476f3d4891ee-a81aa726, #w-node-b4b2d4a8-12cb-0690-ee32-107c65efa456-a81aa726, #w-node-_5ad1ac60-f835-2e23-21bf-9e7e2abae5ef-a81aa726, #w-node-_2f502cb2-5c8a-83fc-6daa-e73fdb1c62d7-a81aa726, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac52-a81aa726 {
  align-self: center;
}

#w-node-defac42a-c782-108f-c2e2-d605d28c4709-a81aa726, #w-node-fba69dcd-f2a2-de9b-e46e-98f8b445dbf1-a81aa726, #w-node-ba6482e0-ebbd-c97e-f35c-a0f746f630f1-a81aa726, #w-node-_7e45ec09-ce56-385e-94c8-fed57e18018d-a81aa726, #w-node-_58f1743c-b5a5-b7dc-28d7-fd9cbd670742-a81aa726 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-e880cd4a, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-72e3cece {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-a5d1a432-dbf8-afa8-cb26-fb69d59a65dc-2e6d5f30, #w-node-a5d1a432-dbf8-afa8-cb26-fb69d59a65e1-2e6d5f30, #w-node-_0db8f640-300e-e308-0a01-0a7df14bcd4b-2e6d5f30 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-730af79d, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-f01187fa {
    align-self: center;
  }

  #w-node-_4e8c1d79-dc80-a363-8c94-9025033cb58f-f01187fa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2c48fe86, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-36338ff7, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-23f715dc, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-5395caa2, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-8df535c2, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-339de8a0, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2f6ea54d, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2f7a8ab6 {
    align-self: center;
  }

  #w-node-_4e8c1d79-dc80-a363-8c94-9025033cb58f-775530d1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-2bb5b727, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-e8d679dd, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-04c64faf, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-9604aebe, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-9c8e4a5a, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-c487fb43, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-a81aa726, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-e880cd4a, #w-node-c63140a4-c5a4-5e97-34e3-f44da85c07dd-72e3cece {
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a5d1a432-dbf8-afa8-cb26-fb69d59a65d8-2e6d5f30 {
    grid-column: span 1 / span 1;
  }

  #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-730af79d, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-f01187fa, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-876d1c3d, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-2c48fe86, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-2c48fe86, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-36338ff7, #w-node-b2018f1b-d76e-1235-f365-c581e029197a-36338ff7, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-23f715dc, #w-node-b8347bc2-eaf0-d893-7263-03c00f72db30-23f715dc, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-5395caa2, #w-node-_3c25fb27-6704-f60b-8443-fab427278383-5395caa2, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-8df535c2, #w-node-d35c5b09-bc8b-49ad-fcba-077f28893999-8df535c2, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-339de8a0, #w-node-_5ea819c3-42e1-18fe-f884-c7b94360e88f-339de8a0, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-2f6ea54d, #w-node-a9d220b1-03a7-f305-859c-923a0fba0a43-2f6ea54d, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-2f7a8ab6, #w-node-_54aa0f8f-06d3-b994-e274-91afcea82617-2f7a8ab6, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-775530d1, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-2bb5b727, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-e8d679dd, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-04c64faf, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-9604aebe, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-9c8e4a5a, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-5cd53a06, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-97f090d1, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-f1392219, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-c487fb43, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-c487fb43, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-a81aa726, #w-node-_7f5a603a-588b-c1fc-6a0a-528d3decac50-a81aa726, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-e880cd4a, #w-node-fbabdeca-44ba-5a36-4651-f8237d66e0a3-72e3cece {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c0785d0b-d2bd-c352-400a-e3b3e9911b78-2e6d5eec {
    grid-column: span 1 / span 1;
  }

  #w-node-_4e8c1d79-dc80-a363-8c94-9025033cb58f-775530d1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}