:root {
  --font--headings: Roboto, sans-serif;
  --font--body: Roboto, sans-serif;
  --text-dark: #3a3b3d;
  --font--link: Roboto, sans-serif;
  --text-link: #fff;
  --text-light: white;
  --button--colour: #f2f2f2;
  --button--dark: #000;
  --button--light: #fff;
  --size--m: 4rem;
  --size--s: 2rem;
  --black: black;
  --white: white;
  --size--xs: 1.5rem;
  --size--l: 6rem;
  --size--xl: 8rem;
  --size--xxl: 10rem;
  --font--quote: Roboto, sans-serif;
  --font--display: Roboto, sans-serif;
}

.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;
}

@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: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

p {
  font-family: var(--font--body);
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  font-family: var(--font--link);
  color: var(--text-link);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none;
}

.button {
  font-family: var(--font--body);
  color: var(--text-light);
  text-align: center;
  background-color: #c0aa47;
  background-image: linear-gradient(#d0bc42, #b0912f);
  border-radius: 0;
  flex-direction: row;
  place-content: center;
  align-items: center;
  padding: .6rem 1.6rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button.colour {
  color: var(--text-light);
  background-color: #f2f2f2;
  border-radius: 0;
  justify-content: center;
  align-items: stretch;
  margin-top: 40px;
}

.button.colour:hover {
  color: var(--button--colour);
  background-color: #fff0;
}

.button.colour.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button.colour.reverse:hover {
  background-color: var(--button--colour);
  color: var(--text-light);
}

.button.dark {
  background-color: var(--button--dark);
  box-shadow: inset 0 0 0 2px var(--button--dark);
  color: var(--text-light);
  border-radius: 0;
}

.button.dark:hover {
  color: var(--text-dark);
  background-color: #8453ff00;
}

.button.dark.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button.dark.reverse:hover {
  background-color: var(--button--dark);
  color: var(--button--light);
}

.button.light {
  background-color: var(--button--light);
  box-shadow: inset 0 0 0 2px var(--button--light);
  color: var(--text-dark);
  border-radius: 0;
}

.button.light:hover {
  color: var(--text-light);
  background-color: #30303000;
}

.button.light.reverse {
  color: var(--text-light);
  background-color: #3898ec00;
  box-shadow: inset 0 0 0 2px #fff;
}

.button.light.reverse:hover {
  background-color: var(--button--light);
  color: var(--text-dark);
}

.button.colour-we {
  color: var(--text-light);
  background-color: #f2f2f2;
  border-radius: 0;
  justify-content: center;
  align-items: stretch;
  margin-top: 10px;
}

.button.colour-we:hover {
  color: var(--button--colour);
  background-color: #fff0;
}

.button.colour-we.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button.colour-we.reverse:hover {
  background-color: var(--button--colour);
  color: var(--text-light);
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section {
  padding-top: var(--size--m);
  padding-bottom: var(--size--m);
}

.section.padding-h-medium {
  padding-top: var(--size--s);
  padding-bottom: var(--size--s);
}

.section.colour-brand {
  padding-top: var(--size--m);
  padding-bottom: var(--size--m);
  border: 1px solid #f2f2f2;
  border-top-color: #e9e9e9;
}

.section.relative {
  position: relative;
}

.section.paralax {
  background-image: url('../images/placeholder.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section.section3 {
  padding-top: var(--size--m);
  padding-bottom: var(--size--s);
  background-image: linear-gradient(#f2f2f2, #f2f2f2);
}

.flex-h {
  display: flex;
}

.h1 {
  font-size: 60px;
  font-weight: 400;
}

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

.h1.light {
  color: var(--text-light);
}

.h1.light.margin-bottom-m {
  text-align: center;
  text-shadow: 1px 1px 5px #000000bf;
  font-size: 35px;
  font-weight: 200;
}

.h1.light.margin-bottom-s {
  color: var(--black);
  font-size: 35px;
  font-weight: 600;
}

.h1.margin-bottom-s {
  font-family: var(--font--body);
  color: #bca93e;
  flex: 0 auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.h1.margin-bottom-s.wetext {
  float: none;
  clear: right;
  color: #fff;
  width: 552.667px;
  padding-left: 0;
  font-size: 35px;
  position: static;
}

.h1.margin-bottom-s.wetext.bottomtext {
  font-weight: 400;
  line-height: 1.2;
}

.h6 {
  font-size: 1.25px;
}

.padding-h-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-large {
  font-size: 1.25rem;
}

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

.text-large.light {
  color: var(--text-light);
}

.text-medium {
  font-size: 1.125rem;
}

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

.text-medium.light {
  color: var(--text-light);
}

.text-regular {
  color: var(--text-dark);
  width: 100%;
  margin-left: 10px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

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

.text-regular.light {
  color: var(--black);
  margin-left: 0;
}

.text-regular.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular.light.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular.margin-bottom-s {
  color: var(--text-dark);
  border: 1px #b3a7a7;
  border-top: 1px solid #cac6c6;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.text-regular.margin-bottom-s.wetextp {
  color: var(--white);
  font-weight: 200;
}

.text-small {
  font-size: .875rem;
}

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

.text-small.light {
  color: var(--text-light);
}

.text-align-centre {
  text-align: center;
}

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

.container-medium {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  max-width: 64rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.container-medium.ourteam {
  margin-top: 60px;
}

.grid-2-about {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.grid-2-about.fourthsection {
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  padding-top: 0;
}

.grid-2-about.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about.margin-top-l.margin-bottom-l {
  margin-top: var(--size--s);
  margin-bottom: var(--size--m);
}

.grid-new {
  grid-column-gap: 0rem;
  grid-row-gap: 1rem;
  grid-template: "Area Area-2 Area-3 Area-4"
                 "Area-6 . . Area-5"
                 / .5fr .5fr .5fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-new.footergris {
  grid-column-gap: 0rem;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: 1.5fr .25fr 1fr 1fr;
}

.grid-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-6 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-12 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1 {
  grid-column-gap: var(--size--s);
  grid-row-gap: var(--size--s);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1.margin-bottom-l {
  grid-template-columns: minmax(200px, 1fr);
}

.container-large {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.container-large.grid {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-large.padding-global {
  padding-left: 0%;
  padding-right: 0%;
}

.style-guide-body {
  background-color: #e4e4e4;
}

.section-full-screen {
  width: 100%;
  height: auto;
}

.section-footer {
  padding: var(--size--m) 5%;
  color: var(--text-light);
  -webkit-text-fill-color: inherit;
  background-color: #222;
  background-clip: border-box;
}

.nav-padding {
  width: 100svw;
  height: 4rem;
}

.navbar {
  background-color: #ddd0;
  flex-direction: row;
  width: 100%;
  display: block;
  position: fixed;
}

.brand {
  height: 100%;
  padding-bottom: 0;
}

.image {
  object-fit: contain;
  height: 3rem;
  margin: 1rem;
}

.nav-link {
  color: var(--button--light);
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 2rem;
  line-height: 2.3rem;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--text-link);
}

.nav-menu {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #09000080;
  flex-direction: column;
  place-content: center space-around;
  align-items: stretch;
  width: 50%;
  height: 100vh;
  padding-top: 49px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: fixed;
  top: 0;
}

.menu-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1rem;
  display: flex;
}

.menu-button.w--open {
  background-color: #c8c8c800;
}

.icon {
  color: var(--button--colour);
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 2rem;
  display: block;
}

.footer-logo {
  object-fit: contain;
  width: 100%;
  height: 3rem;
  display: block;
  position: static;
}

.margin-top-xs {
  margin-top: var(--size--xs);
}

.margin-top-s {
  margin-top: var(--size--s);
}

.margin-top-l {
  margin-top: var(--size--xs);
  margin-top: var(--size--l);
}

.margin-top-xl {
  margin-top: var(--size--xl);
}

.margin-top-xxl {
  margin-top: var(--size--xxl);
}

.margin-bottom-xs {
  margin-bottom: var(--size--xs);
}

.margin-bottom-s {
  margin-bottom: var(--size--s);
}

.margin-bottom-m {
  margin-bottom: var(--size--m);
}

.margin-bottom-l {
  margin-bottom: var(--size--l);
}

.margin-bottom-xl {
  margin-bottom: var(--size--xl);
}

.margin-bottom-xxl {
  margin-bottom: var(--size--xxl);
}

.margin-xs {
  margin: var(--size--xs);
}

.margin-s {
  margin: var(--size--s);
}

.margin-m {
  margin: var(--size--m);
}

.margin-l {
  margin: var(--size--l);
}

.margin-xl {
  margin: var(--size--xl);
}

.margin-xxl {
  margin: var(--size--xxl);
}

.margin-left-xs {
  margin-left: var(--size--xs);
}

.margin-left-s {
  margin-left: var(--size--s);
}

.margin-left-m {
  margin-left: var(--size--m);
}

.margin-left-l {
  margin-left: var(--size--l);
}

.margin-left-xl {
  margin-left: var(--size--xl);
}

.margin-left-xxl {
  margin-left: var(--size--xxl);
}

.margin-right-xs {
  margin-right: var(--size--xs);
}

.margin-right-s {
  margin-right: var(--size--s);
}

.margin-right-m {
  margin-right: var(--size--m);
}

.margin-right-l {
  margin-right: var(--size--l);
}

.margin-right-xl {
  margin-right: var(--size--xl);
}

.margin-right-xxl {
  margin-right: var(--size--xxl);
}

.margin-vertical-xs {
  margin-top: var(--size--xs);
  margin-bottom: var(--size--xs);
}

.margin-vertical-s {
  margin-top: var(--size--s);
  margin-bottom: var(--size--s);
}

.margin-vertical-m {
  margin-top: var(--size--m);
  margin-bottom: var(--size--m);
}

.margin-vertical-l {
  margin-top: var(--size--l);
  margin-bottom: var(--size--l);
}

.margin-vertical-xl {
  margin-top: var(--size--xl);
  margin-bottom: var(--size--xl);
}

.margin-vertical-xxl {
  margin-top: var(--size--xxl);
  margin-bottom: var(--size--xxl);
}

.margin-horizontal-xs {
  margin-right: var(--size--xs);
  margin-left: var(--size--xs);
}

.margin-horizontal-s {
  margin-right: var(--size--s);
  margin-left: var(--size--s);
}

.margin-horizontal-m {
  margin-right: var(--size--m);
  margin-left: var(--size--m);
}

.margin-horizontal-l {
  margin-right: var(--size--l);
  margin-left: var(--size--l);
}

.margin-horizontal-xl {
  margin-right: var(--size--xl);
  margin-left: var(--size--xl);
}

.margin-horizontal-xxl {
  margin-right: var(--size--xxl);
  margin-left: var(--size--xxl);
}

.style-guide-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.style-guide-hero.colour-dark {
  background-image: url('../images/placeholder.webp');
  background-position: 0 0;
  background-size: auto;
}

.image-placeholder {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.container-full {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  overflow: hidden;
}

.padding-global {
  margin-top: 0;
  padding-left: 0%;
  padding-right: 0%;
}

.padding-global.margin-vertical-xxl {
  margin-top: var(--size--xxl);
}

.padding-global.thirdsection-about {
  padding-left: 0%;
  padding-right: 0%;
}

.padding-global.container-medium {
  color: var(--text-dark);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global.container-medium.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.padding-global.container-medium.otherservices {
  margin-bottom: 5rem;
}

.padding-global.container-medium {
  color: #3a3b3d;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global.container-medium-tablet {
  color: var(--text-dark);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global.container-medium-tablet.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.padding-global.container-medium-tablet.otherservices {
  margin-bottom: 5rem;
}

.flex-v {
  display: flex;
}

.flex-h-top-left {
  align-items: flex-start;
  display: flex;
}

.flex-h-top-right {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.flex-h-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.flex-h-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-h-center-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-h-center-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-h-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-h-top-center {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.flex-h-bottom-center {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.flex-v-top-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-v-top-center {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-v-top-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-v-bottom-right {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.flex-v-bottom-center {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-v-bottom-left {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

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

.flex-v-center-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 10px;
  display: flex;
}

.flex-v-center-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.colour-dark {
  background-color: var(--button--dark);
}

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

.colour-brand {
  background-color: var(--button--colour);
}

.navbar-wrap {
  width: 100%;
}

.card {
  padding: var(--size--s);
  background-color: var(--button--light);
  border-radius: 0;
}

.carousel-container {
  border-radius: 0;
  display: flex;
  overflow: hidden;
}

.carousel-container.margin-bottom-l {
  border-radius: 1rem;
  box-shadow: 0 0 20px #0003;
}

.logo-container {
  padding-top: var(--size--s);
  padding-bottom: var(--size--s);
  background-color: var(--button--dark);
  justify-content: space-around;
  min-width: 100.1%;
  display: flex;
}

.logo-container._2 {
  margin-left: -.1%;
}

.logo-image {
  height: 40px;
}

.social-icon {
  color: var(--button--colour);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 2rem;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.social-icon:hover {
  color: var(--button--dark);
  transform: scale(1.2);
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.card-flex-h-distribute {
  padding: var(--size--s);
  background-color: var(--button--light);
  border-radius: 1rem;
  justify-content: space-between;
  display: flex;
  box-shadow: 0 0 19px #0003;
}

.colour-text-brand {
  color: var(--button--colour);
}

.colour-text-light {
  color: var(--button--light);
}

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

.card-link {
  padding: var(--size--s);
  background-color: var(--button--light);
  color: var(--text-dark);
  border-radius: 1rem;
  text-decoration: none;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  box-shadow: 0 0 19px #0003;
}

.card-link:hover {
  transform: scale(1.05);
}

.section-2-col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-col-container {
  padding: var(--size--l) 10%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-2-col {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.div-block {
  background-color: var(--button--light);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 0 20px #0003;
}

.div-block-2 {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-icon {
  width: .7rem;
  height: .9rem;
  font-size: 1rem;
  line-height: 1rem;
}

.button-text {
  font-weight: 200;
}

.div-block-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cursor-wrapper {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.cursor-dot {
  -webkit-backdrop-filter: invert();
  backdrop-filter: invert();
  background-color: #f070;
  border-radius: 50%;
  width: 0;
  height: 0;
  inset: 0%;
}

.cursor-circle {
  border: 2px solid #ff00773b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.hero-heading {
  font-family: var(--font--headings);
  color: var(--text-light);
  font-size: 10rem;
  font-weight: 400;
  line-height: 11rem;
}

.hero-heading.margin-bottom-s {
  font-size: 60px;
  font-weight: 600;
  line-height: 11px;
}

.nav-menu-wrapper {
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  display: flex;
}

.accordian-wrapper {
  border-radius: 0;
  padding-top: 0;
  box-shadow: 2px 2px 8px 1px #0003;
}

.accordian {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.accordian-header {
  box-sizing: border-box;
  padding: 1rem 1rem 1rem var(--size--xs);
  text-align: left;
  object-fit: fill;
  border-top: 0 #000;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordian-panel {
  border: 0 #666;
  border-top-color: #777;
  border-radius: 0;
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 0;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.accordian-icon {
  color: #bfa73d;
  width: .7rem;
  height: .9rem;
  margin-right: 10px;
  font-size: 1rem;
  line-height: 1rem;
  transform: rotate(90deg);
}

.accordian-icon-wrapper {
  margin-left: 0;
}

.card-image {
  background-color: var(--button--light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 19px #0003;
}

.card-content-padding {
  padding: var(--size--s);
}

.card-image-content {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.quote {
  color: var(--text-light);
  text-align: center;
}

.quote-mark {
  opacity: .2;
}

.quote-mark.left {
  margin-right: 1rem;
}

.quote-mark.right {
  margin-left: 1rem;
}

.div-block-5 {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-image {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.section-image-static {
  z-index: -1;
  object-fit: cover;
  width: 100svw;
  height: 100svh;
  position: fixed;
  inset: 0;
}

.content-divider {
  background-color: var(--button--colour);
  width: 100%;
  height: 1px;
}

.custom-heading-1 {
  color: #3330;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--button--colour);
  word-break: normal;
  font-size: 13rem;
  font-weight: 400;
  line-height: .8;
}

.process-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

.slider-her-fullscreen {
  background-color: var(--black);
  width: 100%;
  height: 100svh;
}

.slide-link {
  background-image: url('../images/placeholder.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5rem 11.9rem;
  display: flex;
}

.slide-image {
  transition: all .6s;
}

.slide-image:hover {
  transform: scale(.95);
}

.menu-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.menu-name {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.menu-price {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-6 {
  color: #000;
  background-color: #000;
}

.grid-menu-1 {
  grid-column-gap: 5.8rem;
  grid-row-gap: 5.8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-7 {
  background-color: #000;
  width: 2px;
  height: 100%;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 0;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.navigationbar {
  background-color: #222;
  height: auto;
}

.style-guide-hero-new {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.style-guide-hero-new.colour-dark {
  background-image: url('../images/gsm-home-banner-new-copy.webp');
  background-position: 0 0;
  background-size: cover;
  width: auto;
  height: 650px;
}

.style-guide-hero-new.colour-dark.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
}

.text-block {
  color: #fff;
}

.image-2 {
  height: 206px;
}

.bold-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6px;
}

.heading {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: .5rem;
  margin-right: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}

.paragraph-newnn {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.bold-text-2 {
  color: #333;
  font-size: 24px;
  font-weight: 300;
  line-height: 1px;
}

.div-block-8 {
  background-image: url('../images/section-copy.webp');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  height: 400px;
  padding-top: 70px;
  position: relative;
}

.heading-2 {
  margin-bottom: 0;
  font-size: 18px;
}

.paragraph-2 {
  color: var(--text-light);
}

.grid-13 {
  grid-column-gap: 96px;
  grid-template: ". Area Area-2 Area-3" minmax(275px, 1.5fr)
  / .25fr .25fr .25fr .25fr;
  margin-left: 300px;
  margin-right: 300px;
}

.heading-3 {
  font-size: 18px;
}

.grid-14 {
  grid-column-gap: 0px;
  grid-template-columns: 1fr 1fr .75fr .25fr;
  grid-template-areas: "Area Area-8 Area-3 Area-5"
                       "Area-2 Area-7 Area-4 Area-6";
  margin-left: 300px;
  margin-right: 300px;
}

.heading-4 {
  font-size: 18px;
}

.paragraph-3 {
  color: var(--text-light);
}

.image-3 {
  margin-top: -20px;
}

.navbar-no-shadow {
  background-color: #222;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-menu-2 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-3 {
  font-family: var(--font--body);
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-3:hover {
  color: #1a1b1fbf;
}

.nav-link-3:focus-visible, .nav-link-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-2 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-2 {
  color: #fff;
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-2:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-2:focus-visible, .nav-dropdown-toggle-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-2 {
  margin-right: 10px;
}

.nav-dropdown-list-2 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-2.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list-2.shadow-three.mobile-shadow-hide.w--open {
  color: #fff;
  background-color: #3a3b3d;
  border-radius: 0;
}

.nav-dropdown-link-2 {
  font-family: var(--font--body);
  color: var(--white);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 200;
}

.nav-dropdown-link-2:focus-visible, .nav-dropdown-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.list-item {
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: flex;
}

.paragraph-4 {
  color: var(--text-light);
  margin-left: 0;
  font-size: 19px;
  font-weight: 600;
}

.text-block-2 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.grid-15 {
  grid-template: "Area Area-2 Area-3 Area-4"
  / 1fr 1fr 1fr 1fr;
}

.grid-15.imagegrid {
  grid-column-gap: 45px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: stretch;
  margin-left: 400px;
  margin-right: 400px;
}

.bold-text-3 {
  text-align: left;
  text-shadow: 1px 1px 5px #000000bf;
}

.grid-16 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr .5fr .5fr;
  height: 221px;
  margin-left: 300px;
  margin-right: 300px;
}

.image-4 {
  height: 221px;
}

.grid-17 {
  grid-column-gap: 16px;
  grid-template-rows: auto auto auto;
}

.grid-17.padding {
  grid-row-gap: 16px;
  margin-left: 300px;
  margin-right: 300px;
  padding-top: 100px;
}

.grid-18 {
  grid-template: "Area-2 Area"
  / 1fr 2.75fr;
}

.heading-5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 35px;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 80px;
  display: flex;
}

.grid-19 {
  grid-template-rows: auto auto auto;
  grid-template-areas: "Area-3"
                       "Area"
                       "Area-2";
}

.grid-19.gridpadding {
  grid-row-gap: 16px;
  grid-template-columns: .75fr 1fr;
  margin-left: 300px;
  margin-right: 300px;
  padding-top: 119px;
}

.grid-20 {
  grid-template: "Area-2 Area"
  / .25fr 1fr;
}

.heading-6 {
  color: #fff;
  font-size: 35px;
}

.icon-embed-xsmall-2 {
  color: #c1a533;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.paragraph-5 {
  color: var(--white);
  font-weight: 200;
}

.grid-21 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-22 {
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: ". Area-9 Area-8 Area-7 Area-6"
                       "Area Area-2 Area-3 Area-4 Area-5";
}

.grid-22.padding2 {
  margin: 0 400px;
}

.heading-7 {
  margin-left: 400px;
  margin-right: 400px;
}

.section-home-page {
  background-image: url('../images/gsm-home-banner-new-copy.webp');
  background-position: 50%;
  background-size: cover;
  width: auto;
  height: 550px;
}

.section-home-page.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
  background-position: 50%;
  height: 400px;
}

.container-2 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  max-width: 1150px;
}

.heading-8 {
  object-fit: fill;
  margin-left: auto;
  margin-right: auto;
}

.content-divider-2 {
  background-color: #fff;
  width: 100%;
  height: 2px;
}

.content-divider-2.small {
  width: 40px;
}

.hero-header {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 5px #000000b3;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-header.margin-bottom-s {
  text-align: center;
  text-shadow: 0 1px 1px #000000bf;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #3898ec;
  border-radius: .2rem;
  flex-direction: row;
  place-content: center;
  align-items: center;
  padding: .6rem 1.6rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-2.colour {
  color: #fff;
  background-color: #ed1c24;
  box-shadow: inset 0 0 0 2px #ed1c24;
}

.button-2.colour:hover {
  color: #ed1c24;
  background-color: #fff0;
}

.h5-2 {
  font-weight: 700;
}

.h5-2.hero-tagline {
  text-align: center;
}

.div-block-9 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-5 {
  float: none;
  aspect-ratio: auto;
  text-align: center;
  vertical-align: baseline;
  object-fit: fill;
  margin-left: auto;
  margin-right: auto;
}

.section-full-width {
  width: 100%;
}

.full-3-grid-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #212226;
  background-image: url('../images/ser5.webp');
  background-position: 0 0;
  background-size: cover;
  grid-template: ". . . Area"
  / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-card {
  aspect-ratio: 1;
  background-image: url('../images/placeholder.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-card.licence {
  background-image: url('../images/ser1.webp');
}

.service-card.private {
  background-image: url('../images/ser3.webp');
}

.service-card.events {
  background-image: url('../images/ser4.webp');
}

.service-card-hover {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all .2s;
  display: flex;
}

.service-card-hover:hover {
  -webkit-backdrop-filter: grayscale();
  backdrop-filter: grayscale();
  background-color: #00000078;
}

.service-card-hover.service-card {
  background-image: url('../images/ser5.webp');
}

.service-card-text {
  text-align: center;
  text-decoration: none;
}

.div-block-10 {
  width: 4%;
}

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

.div-block-12 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template: "."
  / .75fr .75fr .75fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  text-decoration: none;
  position: absolute;
}

.link:hover {
  color: #fff;
}

.link-2 {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.6rem;
  text-decoration: none;
  position: absolute;
}

.link-3 {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  text-decoration: none;
  position: absolute;
}

.link-4 {
  font-size: 24px;
  font-weight: 200;
  text-decoration: none;
  position: absolute;
}

.home-grid-block {
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  width: 232px;
  height: 232px;
  display: flex;
  position: relative;
}

.div-block-14, .div-block-15, .div-block-16 {
  position: relative;
}

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

.home-image-grid-image:hover {
  opacity: .69;
}

.image-7, .image-8, .image-9 {
  width: auto;
}

.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-light {
  background-color: #000;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px 40px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.footer-link-two {
  color: #1a1b1f;
  margin-top: 20px;
  text-decoration: none;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.footer-form {
  width: 315px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-form-block {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.footer-form-field {
  border: 1px solid #a6b1bf;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 22px;
  transition: all .2s;
}

.footer-form-field:hover, .footer-form-field:focus {
  border-color: #76879d;
}

.footer-form-field::placeholder {
  color: #1a1b1fcc;
  font-size: 14px;
  line-height: 22px;
}

.footer-form-submit {
  background-color: #1a1b1f;
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 50px;
  height: 48px;
  transition: all .2s;
}

.footer-form-submit:hover {
  background-color: #3a4554;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.footer-copyright.version {
  color: #4b4b4b;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.image-10 {
  position: absolute;
}

.text-block-3 {
  color: #fff;
}

.text-block-3.margin-top-xs-footer {
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.image-11 {
  box-sizing: border-box;
  float: right;
  vertical-align: baseline;
  object-fit: none;
  display: inline-flex;
  position: relative;
  left: 0;
}

.image-12 {
  max-height: 100%;
}

.bold-text-4 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

.subheading {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 200;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 5px #000000b3;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 200;
}

.bold-text-5 {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

.image-13 {
  padding-top: 20px;
}

.icon-embed-xsmall-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.image-14 {
  float: left;
  clear: none;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  padding-right: 0;
  position: relative;
}

.div-block-18 {
  clear: both;
  position: relative;
}

.image-15 {
  box-sizing: border-box;
  float: none;
  aspect-ratio: auto;
  object-fit: fill;
  text-decoration: none;
  display: block;
}

.link-5, .link-6 {
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
}

.icon-embed-custom {
  clear: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5625rem;
  display: flex;
}

.bold-text-6 {
  color: #bcac4a;
  font-weight: 300;
  line-height: .2em;
}

.bold-text-7 {
  color: #bca93e;
}

.bold-text-8 {
  color: #bcac4a;
}

.heading-9 {
  margin-top: 0;
  padding-top: 0;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.grid-2-about-howitworks {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.grid-2-about-howitworks.fourthsection {
  grid-template-columns: .25fr 1fr;
}

.grid-2-about-howitworks.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about-howitworks.margin-top-l.margin-bottom-l {
  grid-row-gap: 5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1.5fr 1.5fr;
}

.grid-23 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-23.container-medium {
  grid-column-gap: 2.3rem;
  grid-row-gap: 1rem;
  grid-template-rows: minmax(auto, .25fr);
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 60px;
}

.bold-text-9 {
  font-size: 18px;
  font-weight: 600;
}

.bold-text-10, .bold-text-11, .bold-text-12 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.bold-text-13 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.paragraph-6, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10 {
  font-size: 16px;
  font-weight: 300;
}

.section-2 {
  background-color: #fafafa;
}

.grid-24 {
  grid-template-rows: auto;
}

.grid-24.padding-global.container-large {
  margin-top: 40px;
}

.grid-24.padding-global.container-medium {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 0;
}

.paragraph-11 {
  color: #3a3b3d;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
}

.heading-10 {
  color: #3a3b3d;
  font-size: 35px;
  font-weight: 300;
}

.heading-10.margin-top-l {
  margin-top: var(--size--s);
}

.bold-text-14, .bold-text-15, .bold-text-16, .bold-text-17, .bold-text-18, .bold-text-19 {
  color: #bca93e;
}

.heading-11 {
  color: #3a3b3d;
  text-align: left;
  margin-right: 0;
  padding-right: 0;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.paragraph-12 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 300;
}

.bold-text-20 {
  color: #bca93e;
  font-size: 24px;
  font-weight: 300;
}

.grid-25 {
  grid-template-rows: auto;
}

.grid-2-about-security {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.grid-2-about-security.fourthsection {
  grid-template-columns: .25fr 1fr;
}

.grid-2-about-security.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about-security.padding-global._2grid-customer {
  padding-left: 0%;
  padding-right: 0%;
}

.section-3 {
  color: #822f2f;
}

.grid-2-about-security-property {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.grid-2-about-security-property.fourthsection {
  grid-template-columns: .25fr 1fr;
}

.grid-2-about-security-property.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about-security-property.padding-global {
  grid-template-columns: 1.5fr;
  padding-left: 0%;
  padding-right: 0%;
}

.section-3-4 {
  color: #822f2f;
  background-color: #fafafa;
}

.bold-text-21 {
  color: #bcac4a;
  font-weight: 300;
}

.bold-text-21.sub {
  font-size: 24px;
}

.container-small-section {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.grid-26 {
  grid-template-rows: auto;
  margin-top: auto;
}

.bold-text-22, .bold-text-23, .bold-text-24, .bold-text-25 {
  color: #bca93e;
}

.bold-text-26 {
  width: 100%;
  padding-left: 10px;
  font-weight: 300;
}

.bold-text-27, .bold-text-28, .bold-text-29, .bold-text-30, .bold-text-31 {
  font-weight: 300;
}

.bold-text-32 {
  font-weight: 300;
  text-decoration: none;
  display: inline;
}

.bold-text-33, .bold-text-34, .bold-text-35 {
  font-weight: 300;
}

.image-16 {
  width: 50px;
}

.image-17 {
  aspect-ratio: 1;
  width: 50px;
  padding-right: 0;
}

.image-18, .image-19, .image-20, .image-21, .image-22, .image-23, .image-24, .image-25 {
  width: 50px;
}

.form-wrap {
  width: 100%;
}

.form-contact {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 7fr 7fr;
  grid-auto-columns: minmax(0, .25fr);
  width: 100%;
  display: grid;
}

.field-wrap {
  height: auto;
}

.form-label {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.form-text-field {
  background-color: #f6f6f6;
  border: 3px solid #ddd;
  height: 40px;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #3898ec;
  border-radius: .2rem;
  flex-direction: row;
  place-content: center;
  align-items: center;
  padding: .6rem 1.6rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-3.colour {
  color: #fff;
  background-color: #ed1c24;
  box-shadow: inset 0 0 0 2px #ed1c24;
}

.button-3.colour:hover {
  color: #ed1c24;
  background-color: #fff0;
}

.button-3.colour.g-recaptcha {
  color: #fff;
  text-align: left;
  background-color: #c6b34b;
  background-image: linear-gradient(#d2bf43, #af902f);
  width: 200px;
  height: 50px;
  margin-top: 40px;
  padding-right: .5rem;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 200;
  text-decoration: none;
  box-shadow: inset 0 0 0 2px #d6d6d6;
}

.select-field {
  color: #979797;
  background-color: #f6f6f6;
  border: 3px solid #ddd;
  margin-bottom: 25px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.section-contacnumber {
  background-image: url('../images/contact-us-copy.webp');
  background-position: 0 0;
  background-size: cover;
  width: auto;
  height: 500px;
}

.margin-top-l-contact {
  margin-top: var(--size--m);
}

.heading-12 {
  color: #fff;
  text-shadow: 1px 1px 5px #000000bf;
  margin-right: 24px;
  font-size: 60px;
  font-weight: 500;
}

.paragraph-13 {
  color: var(--text-light);
  width: 100%;
  margin-top: 20px;
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.4em;
  text-decoration: none;
}

.image-26 {
  position: relative;
}

.heading-13 {
  aspect-ratio: auto;
}

.navbar-no-shadow-container-2 {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular-2 {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-3 {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.navbar-brand-3.w--current {
  height: 4.5rem;
}

.nav-menu-wrapper-4 {
  background-color: #c8c8c800;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  display: flex;
  position: static;
}

.nav-menu-3 {
  color: #fff;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.nav-link-4 {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 10px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 200;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-4:hover {
  color: #1a1b1fbf;
}

.nav-link-4:focus-visible, .nav-link-4[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-3 {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-dropdown-toggle-3 {
  letter-spacing: .25px;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
}

.nav-dropdown-toggle-3:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-3:focus-visible, .nav-dropdown-toggle-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle-3.w--open {
  justify-content: center;
  align-items: center;
}

.nav-dropdown-icon-3 {
  color: #fff;
  margin-right: 10px;
}

.nav-dropdown-list-3 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-3.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
  z-index: 1;
  background-color: #3a3b3d;
  border-radius: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: absolute;
  top: 5rem;
  left: 0;
}

.nav-dropdown-link-3 {
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 200;
}

.nav-dropdown-link-3:hover {
  color: #fff;
  background-color: #2c2c2c;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-3:focus-visible, .nav-dropdown-link-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #baa349;
  border-radius: 5px;
  outline: 0 solid #3a3b3d;
}

.nav-dropdown-link-3.w--current {
  outline-offset: 0px;
  pointer-events: auto;
  color: var(--button--light);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-position: under;
  outline: 3px #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-decoration-thickness: 0;
  display: block;
  overflow: visible;
}

.nav-dropdown-link-3.w--current:visited {
  text-decoration-color: #c9b74d;
}

.mobile-margin-top-12 {
  color: #fff;
  font-family: Roboto, sans-serif;
}

.nav-button-wrapper-2 {
  margin-left: 0;
}

.button-primary-3 {
  font-family: var(--font--body);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 0 12px 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.navbar-no-shadow-container-2-copy {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
}

.navbar-no-shadow-container-2-copy.container-large {
  height: 5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.list-item-2 {
  color: var(--white);
}

.text-block-5 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.list-item-3 {
  color: #fff;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.list-item-4 {
  color: #fff;
  margin-right: 10px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.list-item-5 {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-dropdown-link-3-copy {
  color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 200;
}

.nav-dropdown-link-3-copy:hover {
  color: #fff;
  background-color: #2c2c2c;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-3-copy:focus-visible, .nav-dropdown-link-3-copy[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link-3-copy.w--current {
  color: #fff;
  background-color: #4c4c4c;
}

.heading-14 {
  line-height: 1em;
  display: flex;
}

.heading-15 {
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1;
  display: flex;
}

.heading-16, .heading-17, .heading-18 {
  display: flex;
}

.section-home-page-security {
  background-image: url('../images/gsm-home-banner-new-copy.webp');
  background-position: 0 0;
  background-size: cover;
  width: auto;
  height: 550px;
}

.section-home-page-security.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
  background-position: 50%;
  height: 400px;
}

.section-home-page-security.securityservices {
  background-image: url('../images/SecurityServices.webp');
  background-position: 50%;
  height: 500px;
}

.padding-securityservices {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-securityservices.margin-vertical-xxl {
  margin-top: var(--size--xxl);
}

.padding-securityservices.container-medium {
  margin-top: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
}

.padding-securityservices.container-medium.whoweare {
  margin-top: 0;
  padding-top: 140px;
}

.container-medium-how {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  max-width: 64rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
}

.container-medium-how.ourteam {
  margin-top: 60px;
}

.securitysection2 {
  margin-top: 100px;
  margin-bottom: 50px;
}

.heading-security {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 33px;
  font-weight: 300;
  line-height: 1.5em;
}

.paragraph-security {
  font-family: var(--font--headings);
  color: var(--button--dark);
  margin-top: 10px;
  margin-bottom: 1rem;
  padding-top: 0;
  font-size: 16px;
  font-weight: 300;
}

.button-getintouch {
  font-family: var(--font--body);
  color: var(--text-light);
  text-align: center;
  background-color: #c0aa47;
  background-image: linear-gradient(#d0bc42, #b0912f);
  border-radius: 0;
  flex-direction: row;
  place-content: center;
  align-items: center;
  padding: .6rem 1.6rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-getintouch.colour {
  color: var(--text-light);
  background-color: #f2f2f2;
  border-radius: 0;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.button-getintouch.colour:hover {
  color: var(--button--colour);
  background-color: #fff0;
}

.button-getintouch.colour.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button-getintouch.colour.reverse:hover {
  background-color: var(--button--colour);
  color: var(--text-light);
}

.button-getintouch.dark {
  background-color: var(--button--dark);
  box-shadow: inset 0 0 0 2px var(--button--dark);
  color: var(--text-light);
  border-radius: 0;
}

.button-getintouch.dark:hover {
  color: var(--text-dark);
  background-color: #8453ff00;
}

.button-getintouch.dark.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button-getintouch.dark.reverse:hover {
  background-color: var(--button--dark);
  color: var(--button--light);
}

.button-getintouch.light {
  background-color: var(--button--light);
  box-shadow: inset 0 0 0 2px var(--button--light);
  color: var(--text-dark);
  border-radius: 0;
}

.button-getintouch.light:hover {
  color: var(--text-light);
  background-color: #30303000;
}

.button-getintouch.light.reverse {
  color: var(--text-light);
  background-color: #3898ec00;
  box-shadow: inset 0 0 0 2px #fff;
}

.button-getintouch.light.reverse:hover {
  background-color: var(--button--light);
  color: var(--text-dark);
}

.grid-2-about-security-copy {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.grid-2-about-security-copy.fourthsection {
  grid-template-columns: .25fr 1fr;
}

.grid-2-about-security-copy.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about-security-copy.padding-global._2grid-customer {
  margin-top: 0;
  padding: 40px 0% 80px;
}

.heading-copy {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.h1--security {
  font-size: 60px;
  font-weight: 400;
}

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

.h1--security.light {
  color: var(--text-light);
}

.h1--security.light.margin-bottom-m {
  text-align: center;
  text-shadow: 1px 1px 5px #000000bf;
  font-size: 35px;
  font-weight: 200;
}

.h1--security.light.margin-bottom-s {
  color: var(--black);
  font-size: 35px;
  font-weight: 600;
}

.h1--security.margin-bottom-s {
  font-family: var(--font--headings);
  color: #bca93e;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.6;
}

.h1--security.margin-bottom-s.wetext {
  float: none;
  clear: right;
  color: #fff;
  width: 552.667px;
  padding-left: 0;
  font-size: 35px;
  position: static;
}

.h1--security.margin-bottom-s.wetext.bottomtext {
  font-weight: 400;
}

.bold-text-2--sec {
  color: #333;
  font-size: 35px;
  font-weight: 300;
}

.padding-global-secc {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global-secc.margin-vertical-xxl {
  margin-top: var(--size--xxl);
}

.padding-global-secc.container-medium {
  color: var(--text-dark);
  margin-top: 60px;
  margin-bottom: 5rem;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global-secc.container-medium.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.boldtext {
  color: #3a3b3d;
  font-weight: 300;
  display: inline;
}

.text-regular-t-c {
  color: var(--text-dark);
  width: 100%;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

.text-regular-t-c.dark {
  color: var(--text-dark);
}

.text-regular-t-c.light {
  color: var(--black);
  margin-left: 0;
}

.text-regular-t-c.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular-t-c.light.margin-bottom-s.small {
  color: #afafaf;
  border: 1px #000;
  font-size: 12px;
}

.text-regular-t-c.margin-bottom-s {
  color: var(--text-dark);
  border-top: 1px solid #000;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  font-size: 15px;
  font-weight: 300;
}

.text-regular-t-c.margin-bottom-s.wetextp {
  color: var(--white);
  font-weight: 200;
}

.text-regular-ifyour {
  color: var(--text-dark);
  width: 100%;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

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

.text-regular-ifyour.light {
  color: var(--black);
  margin-left: 0;
  font-size: 24px;
  line-height: 1.6;
}

.text-regular-ifyour.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular-ifyour.light.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular-ifyour.margin-bottom-s {
  color: var(--text-dark);
  border-top: 1px solid #000;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  font-size: 15px;
  font-weight: 300;
}

.text-regular-ifyour.margin-bottom-s.wetextp {
  color: var(--white);
  font-weight: 200;
}

.text-regular-ifyour.light-tandc {
  color: #afafaf;
  margin-top: 20px;
  margin-left: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 200;
  line-height: 1.6;
}

.text-regular-ifyour.light-tandc.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular-ifyour.light-tandc.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular-footertwo {
  color: var(--text-dark);
  width: 100%;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

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

.text-regular-footertwo.light {
  color: var(--black);
  margin-left: 0;
}

.text-regular-footertwo.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular-footertwo.light.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular-footertwo.margin-bottom-s {
  color: var(--text-dark);
  border-top: 1px solid #000;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  font-size: 15px;
  font-weight: 300;
}

.text-regular-footertwo.margin-bottom-s.wetextp {
  color: var(--white);
  border: 1px #000;
  width: 99%;
  font-size: 16px;
  font-weight: 200;
}

.text-regular--secondpara {
  color: var(--text-dark);
  width: 100%;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

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

.text-regular--secondpara.light {
  color: var(--black);
  margin-left: 0;
}

.text-regular--secondpara.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular--secondpara.light.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular--secondpara.margin-bottom-s {
  color: var(--text-dark);
  border: 1px #000;
  margin: 0 0 2rem;
  padding-top: 0;
  font-size: 15px;
  font-weight: 300;
}

.text-regular--secondpara.margin-bottom-s.wetextp {
  color: var(--white);
  font-weight: 200;
}

.text-regular--secondpara.margin-bottom-s-copy {
  color: var(--text-dark);
  border: 1px #000;
  margin: 15px 0 2rem;
  padding-top: 0;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 300;
}

.text-regular--secondpara.margin-bottom-s-copy.wetextp {
  color: var(--white);
  font-weight: 200;
}

.flex-v-center-left-fgf {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 10px;
  display: flex;
}

.bold-text-36 {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

.text-block-6 {
  color: #fff;
}

.text-block-6.margin-top-xs-footer {
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.image-27 {
  padding-top: 20px;
}

.bold-text-37 {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

.text-block-7 {
  color: #fff;
}

.text-block-7.margin-top-xs-footer {
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.image-28 {
  padding-top: 20px;
}

.bold-text-38 {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

.text-block-8 {
  color: #fff;
}

.text-block-8.margin-top-xs-footer {
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.image-29 {
  padding-top: 20px;
}

.bold-text-39 {
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 17px;
}

.text-block-9 {
  color: #fff;
}

.text-block-9.margin-top-xs-footer {
  padding-top: 20px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.image-30 {
  padding-top: 20px;
}

.text-regular--h {
  color: var(--text-dark);
  width: 100%;
  margin-left: 20px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  display: block;
}

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

.text-regular--h.light {
  color: var(--black);
  margin-left: 0;
}

.text-regular--h.light.margin-bottom-s {
  color: #000;
  padding-right: 140px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.text-regular--h.light.margin-bottom-s.small {
  color: #afafaf;
  font-size: 12px;
}

.text-regular--h.margin-bottom-s {
  color: var(--text-dark);
  border: 1px #000;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 300;
}

.text-regular--h.margin-bottom-s.wetextp {
  color: var(--white);
  font-weight: 200;
}

.grid-2-about--contact {
  grid-column-gap: 3.4rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin: 80px auto 60px;
  padding-top: 0;
  display: grid;
}

.grid-2-about--contact.fourthsection {
  grid-template-columns: .25fr 1fr;
  padding-top: 0;
}

.grid-2-about--contact.boximg {
  grid-column-gap: 1.8rem;
  grid-template-columns: 1.25fr 1.25fr 1.25fr 1.25fr;
}

.grid-2-about--contact.margin-top-l.margin-bottom-l {
  margin-top: var(--size--m);
}

.container-full-contact {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.bold-text-40, .bold-text-41, .bold-text-42 {
  color: #bca93e;
}

.bold-text-2-contacttoday {
  color: #bca93e;
  font-size: 35px;
  font-weight: 300;
  line-height: 1px;
}

.heading-contact {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.div-block-19 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-clean {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.property-clean {
  margin-top: 100px;
  margin-bottom: 100px;
}

.grid-26-clean {
  grid-template-rows: auto;
  margin-top: 80px;
}

.section-home-page-property {
  background-image: url('../images/property-maintenance.webp');
  background-position: 50%;
  background-size: cover;
  width: auto;
  height: 500px;
}

.section-home-page-property.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
  background-position: 50%;
  height: 400px;
}

.heading--property {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.property-area2 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.padding-global-prop {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global-prop.margin-vertical-xxl {
  margin-top: var(--size--xxl);
}

.padding-global-prop.container-medium {
  color: var(--text-dark);
  margin-top: auto;
  margin-bottom: 4rem;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global-prop.container-medium.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.padding-global-prop.container-medium {
  color: #3a3b3d;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.section-home-page-cleaning {
  background-image: url('../images/cleaningServ.webp');
  background-position: 50%;
  background-size: cover;
  width: auto;
  height: 500px;
}

.section-home-page-cleaning.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
  background-position: 50%;
  height: 400px;
}

.bold-text-21-new {
  color: #bcac4a;
  font-weight: 300;
}

.bold-text-21-new.sub {
  font-size: 24px;
}

.paragraph--new {
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
}

.section-home-page-other {
  background-image: url('../images/other-services.webp');
  background-position: 50%;
  background-size: cover;
  width: auto;
  height: 500px;
}

.section-home-page-other.whoweare {
  background-image: url('../images/banners-_0002_about-copy.webp');
  background-position: 50%;
  height: 400px;
}

.paragraph-13-mobilenumber {
  clear: none;
  color: var(--text-light);
  flex-flow: row;
  width: auto;
  margin-top: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
  display: block;
}

.image-31 {
  display: inline-block;
}

.image-32 {
  text-align: left;
  vertical-align: baseline;
  height: auto;
  padding-top: 5px;
}

.list-item-3-dropdown {
  color: #fff;
  height: 100%;
}

.nav-dropdown-toggle-who {
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-who:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-who:focus-visible, .nav-dropdown-toggle-who[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle-contact {
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 10px;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-contact:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-contact:focus-visible, .nav-dropdown-toggle-contact[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.text-block-10 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
}

.text-block-5-numb-er {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 500;
}

.link-7 {
  text-decoration: none;
  display: block;
}

.link-7:hover {
  color: #828282;
}

.link-8 {
  text-decoration: none;
}

.link-8:hover {
  color: #fff;
}

.link-9 {
  text-decoration: none;
}

.link-9:hover {
  color: #828282;
}

.image-33 {
  color: #424242;
  width: 20px;
  height: 25px;
  padding-top: 0;
}

.paragraph-13-whoweare {
  color: var(--text-light);
  width: 50%;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.4em;
  text-decoration: none;
}

.heading-who {
  color: #3a3b3d;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
}

.bold-text-6-who {
  color: #bcac4a;
  font-weight: 300;
  line-height: .2%;
}

.image-34 {
  width: 30%;
  margin-top: 20px;
  padding-top: 0;
}

.paragraph-new-bottom, .paragraph-new-1 {
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.image-35 {
  float: none;
  width: 18px;
  height: 20px;
}

.image-36 {
  float: none;
  clear: right;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  inset: 0% auto auto 0%;
}

.div-block-20 {
  float: left;
  clear: both;
  position: relative;
}

.image-37 {
  width: 20px;
  height: 20px;
}

.rich-text-block {
  color: #fff;
}

.figure-caption {
  width: 50px;
  margin-top: 0;
}

.image-38 {
  width: 20px;
  height: 25px;
}

.form-text-field-bnig {
  border: 1px solid #000;
  height: 100px;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 0;
}

.formtext {
  background-color: #f6f6f6;
  border: 3px solid #ddd;
  height: 100px;
  margin-bottom: 0;
  padding-bottom: 80px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.button-3-copy {
  color: #fff;
  text-align: center;
  background-color: #3898ec;
  border-radius: .2rem;
  flex-direction: row;
  place-content: center;
  align-items: center;
  padding: .6rem 1.6rem;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button-3-copy.colour {
  color: #fff;
  background-color: #ed1c24;
  box-shadow: inset 0 0 0 2px #ed1c24;
}

.button-3-copy.colour:hover {
  color: #ed1c24;
  background-color: #fff0;
}

.button-3-copy.colour.g-recaptcha {
  float: none;
  box-shadow: none;
  color: #fff;
  text-align: center;
  background-color: #c6b34b;
  background-image: linear-gradient(#d2bf43, #af902f);
  width: 200px;
  height: 50px;
  margin-top: 40px;
  padding-right: 1.6rem;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 200;
  text-decoration: none;
}

.image-39 {
  width: 30px;
  height: 35px;
  margin-top: 5px;
}

.step-wrap {
  grid-column-gap: var(--size--xs);
  grid-row-gap: var(--size--xs);
  flex-flow: column;
  display: flex;
}

.link-10 {
  font-family: var(--font--headings);
  font-size: 24px;
  text-decoration: none;
}

.subnav-mobile {
  background-image: linear-gradient(#d0bc42, #b09130);
  display: none;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-5 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-5:hover {
  color: #1a1b1fbf;
}

.nav-link-5:focus-visible, .nav-link-5[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-4 {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle-4 {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle-4:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle-4:focus-visible, .nav-dropdown-toggle-4[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon-4 {
  margin-right: 10px;
}

.nav-dropdown-list-4 {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list-4.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link-4 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link-4:focus-visible, .nav-dropdown-link-4[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent-2:hover {
  color: #1a1b1fbf;
}

.button-primary-4 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-4:active {
  background-color: #43464d;
}

.nav-menu-three-bottom {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.text-block-11 {
  float: right;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}

.image-40 {
  float: none;
  clear: none;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: relative;
}

.mobile-nav {
  margin-left: 100px;
  margin-right: 100px;
}

.image-41 {
  width: 20px;
  height: 20px;
}

.link-block, .link-block-2, .link-block-3, .link-block-4 {
  width: 100%;
  height: 100%;
}

.padding-global-title {
  margin-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global-title.margin-vertical-xxl {
  margin-top: var(--size--xxl);
}

.padding-global-title.thirdsection-about {
  padding-left: 0%;
  padding-right: 0%;
}

.padding-global-title.container-medium {
  color: var(--text-dark);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global-title.container-medium.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.padding-global-title.container-medium.otherservices {
  margin-bottom: 5rem;
}

.padding-global-title.container-medium {
  color: #3a3b3d;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global-title.container-medium-tablet {
  color: var(--text-dark);
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.padding-global-title.container-medium-tablet.whoweare {
  margin-top: 0;
  padding-top: 100px;
}

.padding-global-title.container-medium-tablet.otherservices {
  margin-bottom: 5rem;
}

.div-block-22 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 0;
  display: flex;
}

.div-block-23 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: 0;
  display: flex;
}

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

.phonemobile {
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 10px;
  display: flex;
}

.error-message {
  background-color: #fff;
  border: 2px solid #ffb900;
}

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

.heading-9--how-it-works {
  margin-top: 0;
  padding-top: 0;
  font-size: 35px;
  font-weight: 300;
  line-height: 1.5;
}

.div-block-22-number {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 10px;
  display: flex;
}

.abn, .paragraph-new-contract {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.paragraph-new-property {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

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

.grid-27.padding-global.container-medium {
  margin-top: 10px;
}

.text-block-15 {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  position: absolute;
}

.div-block-25 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-25:hover {
  opacity: .7;
}

.div-block-26 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-26:hover {
  opacity: .7;
}

.text-block-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--white);
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  display: flex;
  position: absolute;
}

.text-block-17 {
  color: #fff;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  position: absolute;
}

.div-block-27 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-27:hover {
  opacity: .7;
}

.image-42:hover {
  opacity: 1;
}

.div-block-28 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.div-block-28:hover {
  opacity: .7;
}

.text-block-18 {
  color: #fff;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 300;
  position: absolute;
}

.paragraph-new-master {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #b9a949;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.nav-link, .navbar-mobile-link {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 200;
  display: flex;
}

.paragraph-new-home, .paragraph-new-home2 {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.paragraph-new-n {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}

.paragraph-newnn-extra {
  float: none;
  clear: none;
  font-family: var(--font--headings);
  color: #3a3b3d;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  display: flex;
}

.link-14, .link-15, .link-16, .link-17 {
  font-size: 24px;
}

.text-block-19 {
  font-size: 11px;
}

.text-block-20 {
  font-size: 12px;
}

.success-message {
  background-color: #badbb7;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .h1.light.margin-bottom-s {
    font-size: 25px;
  }

  .h1.margin-bottom-s {
    font-size: 20px;
  }

  .text-regular.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular.margin-bottom-s {
    font-size: 16px;
  }

  .container-medium {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-medium.ourteam {
    margin-left: 20px;
    margin-right: 60px;
  }

  .grid-2-about {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-2-about.fourthsection {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-2-about.margin-top-l.margin-bottom-l {
    margin-top: var(--size--s);
    grid-template-columns: 1.5fr 1.5fr;
    margin-left: 0;
    margin-right: 40px;
  }

  .grid-new {
    grid-template-columns: 1fr;
  }

  .grid-1 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .container-large.padding-global {
    height: 100%;
  }

  .margin-top-l {
    text-align: left;
    margin-right: 0;
  }

  .padding-global {
    color: #fff;
  }

  .padding-global.container-medium.whoweare {
    margin-left: 0;
  }

  .padding-global.container-medium.otherservices {
    margin-left: 20px;
  }

  .padding-global.container-medium {
    margin-left: 50px;
    margin-right: 50px;
  }

  .padding-global.container-medium-tablet {
    margin-left: auto;
    margin-right: auto;
  }

  .flex-v-center-left {
    margin-right: 20px;
  }

  .logo-image {
    height: 30px;
  }

  .cursor-wrapper {
    display: none;
  }

  .hero-heading {
    font-size: 7rem;
    line-height: 8rem;
  }

  .slide-link {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .grid-menu-1 {
    grid-template-columns: 1fr;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper-2 {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .bold-text {
    font-size: 18px;
  }

  .heading {
    margin-bottom: .5rem;
    font-size: 20px;
  }

  .paragraph-newnn {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .bold-text-2 {
    font-size: 18px;
  }

  .navbar-no-shadow {
    z-index: 1;
    width: 100%;
    position: static;
  }

  .navbar-wrapper-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .nav-menu-wrapper-3 {
    background-color: #0000;
  }

  .nav-menu-2 {
    color: #fff;
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link-3 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-3 {
    padding: 12px;
  }

  .menu-button-3.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .section-home-page.whoweare {
    display: block;
    position: static;
  }

  .service-card-hover {
    padding: .5rem;
  }

  .service-card-text {
    text-align: center;
  }

  .div-block-12 {
    grid-column-gap: 0rem;
    grid-row-gap: 2.2rem;
    grid-template-columns: .75fr 1.25fr;
    place-items: center;
  }

  .home-image-grid-image {
    transition: all .2s;
  }

  .footer-light {
    padding-right: 100px;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
    padding-right: 0;
  }

  .footer-form {
    width: 100%;
    margin-top: 40px;
  }

  .footer-form-container, .footer-form-container-copy {
    max-width: 350px;
  }

  .heading-9 {
    color: var(--text-dark);
    margin-bottom: 0;
    margin-left: 10px;
    padding-bottom: 0;
  }

  .grid-2-about-howitworks {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid-23.container-medium {
    grid-column-gap: 2.3rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-rows: minmax(auto, .25fr);
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
    display: grid;
  }

  .grid-24.padding-global.container-medium {
    margin-left: 0;
    margin-right: 0;
    padding-left: 3%;
    padding-right: 2%;
  }

  .heading-10.margin-top-l {
    margin-right: 10px;
    padding-left: 0;
  }

  .grid-2-about-security, .grid-2-about-security-property {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid-2-about-security-property.padding-global {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-26 {
    margin-left: -26px;
    margin-right: 76px;
  }

  .heading-12 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
  }

  .paragraph-13 {
    padding-left: 20px;
  }

  .nav-menu-wrapper-4 {
    background-color: #0000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
    position: absolute;
  }

  .nav-menu-3 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    background-color: #4f4f4f;
    flex-flow: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-left: 0;
    list-style-type: none;
    display: flex;
  }

  .nav-link-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-3 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-top: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-toggle-3 {
    width: 100%;
    height: 3rem;
    padding: 0;
    position: static;
  }

  .nav-dropdown-list-3.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
    z-index: 2;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    display: block;
    position: static;
  }

  .nav-dropdown-link-3 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-button-wrapper-2 {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-4 {
    margin-right: 0;
    padding: 0;
  }

  .menu-button-4.w--open {
    color: #fff;
    background-color: #bea541;
    margin-right: 0;
  }

  .navbar-no-shadow-container-2-copy.container-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-block-5 {
    pointer-events: none;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .list-item-3 {
    text-align: center;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-dropdown-link-3-copy {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .padding-securityservices {
    color: #fff;
  }

  .padding-securityservices.container-medium {
    margin-left: 50px;
    margin-right: 50px;
  }

  .padding-securityservices.container-medium.whoweare {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .securitysection2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .heading-security {
    font-size: 20px;
  }

  .paragraph-security {
    font-size: 16px;
  }

  .grid-2-about-security-copy {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid-2-about-security-copy.padding-global._2grid-customer {
    padding-left: 2%;
  }

  .heading-copy {
    font-size: 20px;
  }

  .h1--security.light.margin-bottom-s {
    font-size: 25px;
  }

  .h1--security.margin-bottom-s {
    font-size: 20px;
  }

  .bold-text-2--sec {
    font-size: 18px;
  }

  .padding-global-secc {
    color: #fff;
  }

  .padding-global-secc.container-medium {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
  }

  .text-regular-t-c.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular-t-c.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular-t-c.margin-bottom-s {
    font-size: 16px;
  }

  .text-regular-ifyour.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular-ifyour.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular-ifyour.margin-bottom-s {
    font-size: 16px;
  }

  .text-regular-ifyour.light-tandc.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular-ifyour.light-tandc.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular-footertwo.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular-footertwo.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular-footertwo.margin-bottom-s {
    font-size: 16px;
  }

  .text-regular--secondpara.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular--secondpara.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular--secondpara.margin-bottom-s {
    font-size: 16px;
  }

  .text-regular--secondpara.margin-bottom-s-copy {
    padding-left: 0;
    font-size: 16px;
  }

  .text-regular--h.light.margin-bottom-s {
    padding-right: 10px;
    font-size: 20px;
  }

  .text-regular--h.light.margin-bottom-s.small {
    margin-bottom: .125rem;
  }

  .text-regular--h.margin-bottom-s {
    font-size: 16px;
  }

  .grid-2-about--contact {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1.5fr;
  }

  .grid-2-about--contact.margin-top-l.margin-bottom-l {
    margin-top: var(--size--m);
  }

  .bold-text-2-contacttoday, .heading-contact {
    font-size: 28px;
  }

  .heading-clean {
    font-size: 20px;
  }

  .property-clean {
    margin-left: 20px;
    margin-right: 40px;
  }

  .grid-26-clean {
    margin-left: -19px;
    margin-right: 80px;
  }

  .heading--property {
    font-size: 20px;
  }

  .property-area2 {
    padding-left: 10px;
    padding-right: 40px;
  }

  .padding-global-prop {
    color: #fff;
  }

  .padding-global-prop.container-medium {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 0%;
    padding-right: 0%;
    display: block;
    position: static;
  }

  .paragraph--new {
    font-size: 16px;
  }

  .image-32 {
    width: 318px;
    height: 55px;
    margin-left: 10px;
  }

  .list-item-3-dropdown {
    text-align: center;
    width: 100%;
    height: auto;
  }

  .nav-dropdown-toggle-who {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    padding: 0;
    display: flex;
  }

  .nav-dropdown-toggle-contact {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3rem;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .link-7, .link-8, .link-9.w--current {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .paragraph-13-whoweare {
    width: 90%;
    padding-left: 20px;
  }

  .heading-who {
    font-size: 20px;
  }

  .paragraph-new-bottom, .paragraph-new-1 {
    font-size: 16px;
  }

  .image-35 {
    height: 25px;
  }

  .icon-2 {
    background-color: #bca93e;
    background-image: linear-gradient(#ac913b, #cdbb4f);
    margin-left: 0;
    padding: 20px;
    font-size: 40px;
    line-height: 1;
  }

  .subnav-mobile {
    justify-content: flex-start;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .container-4 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-5 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list-4.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-5 {
    padding: 12px;
  }

  .menu-button-5.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav-menu-three-bottom {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .mobile-nav {
    justify-content: flex-start;
    align-items: center;
    margin-left: 10px;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .link-11 {
    padding-left: 10px;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
  }

  .text-block-12 {
    float: right;
    clear: none;
    text-align: left;
  }

  .image-41 {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .link-12 {
    margin-left: 10px;
    padding-left: 0;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
  }

  .text-block-13 {
    clear: left;
    color: #5b4f1d;
    padding-bottom: 0;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    line-height: 18px;
  }

  .text-block-14 {
    color: #5b4f1d;
    font-family: Roboto, sans-serif;
  }

  .text-nav {
    border-left: 1px solid #5b4f1d;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
    line-height: 15px;
    display: flex;
  }

  .div-block-21 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
    margin-left: 10px;
    display: flex;
  }

  .text-span {
    font-weight: 400;
  }

  .padding-global-title {
    color: #fff;
  }

  .padding-global-title.container-medium.whoweare {
    margin-left: 0;
  }

  .padding-global-title.container-medium.otherservices {
    margin-left: 20px;
  }

  .padding-global-title.container-medium {
    margin-left: 50px;
    margin-right: 50px;
  }

  .padding-global-title.container-medium-tablet {
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-24 {
    padding-left: 20px;
  }

  .phonemobile {
    display: none;
  }

  .heading-9--how-it-works {
    color: var(--text-dark);
    margin-bottom: 0;
    margin-left: 20px;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .div-block-22-number {
    height: auto;
    margin-bottom: 10px;
  }

  .abn {
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .paragraph-new-contract {
    height: auto;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .paragraph-new-property {
    height: 50px;
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }

  .grid-27.padding-global.container-medium {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .paragraph-new-master, .paragraph-new-home, .paragraph-new-home2, .paragraph-new-n, .paragraph-newnn-extra {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .button.colour, .button.colour-we {
    margin-top: 40px;
    padding-top: .5rem;
  }

  .h1.margin-bottom-s {
    width: auto;
  }

  .h1.margin-bottom-s.wetext {
    font-size: 30px;
  }

  .text-large {
    font-size: 1.125rem;
  }

  .text-medium {
    font-size: 1rem;
  }

  .container-medium {
    margin-right: 220px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-medium.ourteam {
    margin-left: 10px;
  }

  .grid-2-about {
    grid-template-columns: 4fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid-2-about.fourthsection {
    grid-column-gap: 0rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 9.5fr 1fr;
    place-items: center start;
  }

  .grid-2-about.margin-top-l.margin-bottom-l {
    margin-left: 0;
    margin-right: 20px;
  }

  .grid-new {
    grid-template-columns: 1fr;
  }

  .grid-1.margin-bottom-l {
    margin-bottom: var(--size--s);
  }

  .image {
    height: 2.5rem;
  }

  .image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .padding-global.container-medium, .padding-global.container-medium.whoweare {
    margin-left: 10px;
    margin-right: 10px;
  }

  .padding-global.container-medium.otherservices {
    margin-left: 20px;
  }

  .padding-global.container-medium-tablet {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-global.container-medium-tablet.whoweare {
    margin-left: 10px;
    margin-right: 10px;
  }

  .flex-v-center-left {
    margin-left: 0;
    margin-right: 0;
  }

  .card {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .logo-container {
    min-width: 150%;
  }

  .card-flex-h-distribute, .card-link {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .section-2-col {
    grid-template-columns: 1fr .5fr;
  }

  .hero-heading {
    font-size: 5rem;
    line-height: 6rem;
  }

  .card-image {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .slide-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .grid-menu-1 {
    grid-template-columns: 1fr;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .paragraph-newnn {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-2 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-2.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-2.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-11 {
    margin-top: 10px;
  }

  .image-5 {
    max-width: 40%;
  }

  .full-3-grid-wrap {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 16 / 9;
  }

  .div-block-12 {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .link {
    text-align: center;
  }

  .link-2 {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .link-3, .link-4 {
    text-align: center;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .image-12 {
    width: 150px;
    height: 150px;
  }

  .bold-text-4 {
    font-size: 35px;
  }

  .text-block-4 {
    font-size: 28px;
  }

  .heading-9 {
    margin-left: 0;
  }

  .grid-2-about-howitworks {
    grid-template-columns: 4fr;
  }

  .grid-2-about-howitworks.fourthsection {
    grid-template-columns: .25fr 1fr;
  }

  .grid-23.container-medium {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
  }

  .grid-2-about-security {
    grid-template-columns: 4fr;
  }

  .grid-2-about-security.fourthsection {
    grid-template-columns: .25fr 1fr;
  }

  .grid-2-about-security-property {
    grid-template-columns: 4fr;
  }

  .grid-2-about-security-property.fourthsection {
    grid-template-columns: .25fr 1fr;
  }

  .grid-2-about-security-property.padding-global {
    padding-right: 10%;
  }

  .grid-26 {
    grid-template-columns: 1fr;
    margin-left: 10px;
    margin-right: 30px;
  }

  .field-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 39.7214%;
    margin-right: 0;
    display: flex;
  }

  .form-label {
    font-weight: 600;
  }

  .form-text-field {
    width: 100%;
  }

  .heading-12 {
    margin-right: 0;
  }

  .navbar-brand-3 {
    padding-left: 0;
  }

  .nav-menu-wrapper-4 {
    justify-content: flex-start;
    align-items: center;
  }

  .nav-menu-3 {
    flex-direction: column;
    padding-bottom: 0;
    padding-left: 0;
  }

  .nav-link-4 {
    cursor: auto;
    width: 86.9469%;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: opacity .2s;
    display: inline-block;
  }

  .nav-dropdown-3 {
    flex-direction: column;
    align-items: center;
    width: auto;
    display: flex;
  }

  .nav-dropdown-toggle-3 {
    border-bottom: 1px #666;
    border-radius: 0;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-icon-3 {
    margin-right: 0;
  }

  .nav-dropdown-list-3.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-3.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-3.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-dropdown-link-3 {
    text-align: center;
  }

  .mobile-margin-top-12 {
    margin-top: 10px;
  }

  .menu-button-4 {
    margin-right: 0;
  }

  .navbar-no-shadow-container-2-copy.container-large {
    padding-bottom: 0;
  }

  .list-item-3 {
    border-bottom: 1px solid #666;
    width: 100%;
  }

  .list-item-4 {
    border-bottom: 1px solid #666;
    width: 100%;
    margin-right: 0;
  }

  .list-item-5 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-dropdown-link-3-copy {
    text-align: center;
  }

  .grid-2-about-security-copy {
    grid-template-columns: 4fr;
  }

  .grid-2-about-security-copy.fourthsection {
    grid-template-columns: .25fr 1fr;
  }

  .h1--security.margin-bottom-s.wetext {
    font-size: 30px;
  }

  .text-regular-t-c.light.margin-bottom-s.small {
    margin-bottom: 0;
    padding-top: 0;
  }

  .text-regular-ifyour.light, .text-regular-ifyour.light-tandc {
    font-size: 18px;
  }

  .text-regular--secondpara.margin-bottom-s-copy {
    padding-left: 0;
  }

  .text-regular--h.margin-bottom-s {
    width: auto;
    height: auto;
    margin-right: 20px;
  }

  .grid-2-about--contact {
    grid-template-columns: 4fr;
    place-items: center;
  }

  .grid-2-about--contact.fourthsection {
    grid-template-columns: .25fr 1fr;
  }

  .container-full-contact {
    margin-left: 0;
  }

  .bold-text-40 {
    font-size: 18px;
  }

  .bold-text-41, .bold-text-42 {
    font-size: 16px;
  }

  .div-block-19 {
    grid-template-columns: 1fr;
  }

  .property-clean {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-26-clean {
    grid-template-columns: 1fr;
    margin-left: 10px;
    margin-right: 30px;
  }

  .property-area2 {
    padding-right: 20px;
  }

  .padding-global-prop.container-medium {
    margin-left: 10px;
    margin-right: 10px;
  }

  .image-32 {
    margin-left: 20px;
  }

  .list-item-3-dropdown {
    border-bottom: 1px solid #666;
    width: 100%;
  }

  .nav-dropdown-toggle-who, .nav-dropdown-toggle-contact {
    border-bottom: 1px #666;
    border-radius: 0;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .paragraph-13-whoweare {
    width: 100%;
  }

  .image-35, .image-38 {
    width: 20px;
    height: 20px;
  }

  .form-text-field-bnig, .formtext {
    width: 100%;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-5 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown-4 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle-4 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list-4.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list-4.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list-4.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent-2 {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-13 {
    margin-top: 10px;
  }

  .nav-menu-three-bottom {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .padding-global-title.container-medium {
    margin-left: 20px;
    margin-right: 20px;
  }

  .padding-global-title.container-medium.whoweare {
    margin-left: 10px;
    margin-right: 10px;
  }

  .padding-global-title.container-medium.otherservices {
    margin-left: 20px;
  }

  .padding-global-title.container-medium-tablet {
    margin-left: 0;
    margin-right: 0;
  }

  .padding-global-title.container-medium-tablet.whoweare {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-23 {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    display: flex;
    position: relative;
  }

  .phonemobile {
    border-bottom: 1px solid #666;
    width: 100%;
  }

  .link-13 {
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    display: flex;
    position: absolute;
  }

  .heading-9--how-it-works {
    margin-left: 10px;
  }

  .div-block-22-number {
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    display: flex;
  }

  .abn, .paragraph-new-contract {
    height: auto;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.5;
  }

  .paragraph-new-property {
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .grid-27.padding-global.container-medium {
    grid-template-columns: 1fr 1fr;
    margin-right: 0;
  }

  .paragraph-new-master {
    height: auto;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.5;
  }

  .form {
    margin-right: 20px;
  }

  .paragraph-new-home, .paragraph-new-home2, .paragraph-new-n, .paragraph-newnn-extra {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .button.colour, .button.colour-we {
    padding: .25rem 1rem;
  }

  .h1.margin-bottom-s.wetext {
    float: none;
    clear: left;
    object-fit: contain;
    width: 200px;
    font-size: 30px;
    position: relative;
  }

  .h1.margin-bottom-s.wetext.bottomtext {
    font-size: 28px;
  }

  .text-regular.margin-bottom-s.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
  }

  .container-medium {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-medium.ourteam {
    margin-left: 0;
  }

  .grid-2-about {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 10px;
  }

  .grid-2-about.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: 16.25fr 1.5fr;
  }

  .grid-2-about.margin-top-l.margin-bottom-l {
    margin-top: var(--size--xs);
    grid-template-columns: 1.5fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-1.margin-bottom-l {
    margin-bottom: var(--size--s);
    grid-auto-flow: row;
  }

  .image {
    height: 2rem;
  }

  .image-placeholder {
    aspect-ratio: 1;
    min-height: auto;
  }

  .container-full {
    margin-left: 0;
  }

  .padding-global.thirdsection-about {
    padding-left: 2%;
    padding-right: 2%;
  }

  .padding-global.container-medium {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    font-size: 28px;
  }

  .padding-global.container-medium.whoweare {
    margin-left: 0;
    padding-left: 0%;
    padding-right: 5%;
  }

  .padding-global.container-medium.otherservices {
    margin-left: 20px;
    margin-right: 0;
    padding-right: 40px;
    font-size: 28px;
  }

  .flex-v-center-left {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .background-dark {
    margin-left: 10px;
  }

  .carousel-container {
    border-radius: 0;
  }

  .logo-container {
    min-width: 300%;
  }

  .logo-image {
    height: 25px;
  }

  .section-2-col {
    grid-template-columns: 1fr;
  }

  .image-2-col {
    height: 100svw;
  }

  .hero-heading {
    font-size: 3rem;
    line-height: 4rem;
  }

  .accordian-icon-wrapper {
    margin-left: 0;
  }

  .slide-link {
    padding: 5rem 1.5rem;
  }

  .container {
    max-width: none;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .paragraph-newnn {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    display: flex;
  }

  .div-block-8 {
    background-position: 50%;
    padding-top: 20px;
  }

  .nav-menu-2 {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .hero-header.margin-bottom-s {
    font-size: 2.5px;
  }

  .image-5 {
    min-width: 40%;
  }

  .full-3-grid-wrap {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 3 / 2;
  }

  .div-block-12 {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .container-3 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-two {
    margin-top: 20px;
  }

  .text-block-3.margin-top-xs-footer {
    font-size: 14px;
  }

  .image-12 {
    width: 100px;
    height: 100px;
  }

  .bold-text-4 {
    font-size: 28px;
  }

  .text-block-4 {
    text-align: center;
    font-size: 24px;
    line-height: 40px;
  }

  .bold-text-5 {
    font-size: 14px;
  }

  .heading-9 {
    margin-left: 10px;
    font-size: 28px;
  }

  .grid-2-about-howitworks {
    grid-template-columns: 1fr;
  }

  .grid-2-about-howitworks.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .grid-23.container-medium {
    grid-template-columns: 1fr;
  }

  .paragraph-11 {
    margin-right: 0;
  }

  .heading-10.margin-top-l {
    padding-left: 5px;
    font-size: 28px;
  }

  .grid-2-about-security {
    grid-template-columns: 1fr;
  }

  .grid-2-about-security.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .grid-2-about-security-property {
    grid-template-columns: 1fr;
  }

  .grid-2-about-security-property.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .grid-2-about-security-property.padding-global {
    padding-right: 0%;
  }

  .grid-26 {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .field-wrap {
    width: 100%;
    margin-right: 0;
  }

  .form-text-field {
    width: auto;
  }

  .section-contacnumber {
    height: 400px;
  }

  .heading-12 {
    font-size: 35px;
  }

  .paragraph-13 {
    padding-left: 20px;
  }

  .navbar-brand-3.w--current {
    height: auto;
    padding-left: 10px;
  }

  .nav-menu-wrapper-4 {
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
  }

  .nav-menu-3 {
    flex-direction: column;
  }

  .nav-dropdown-toggle-3 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-dropdown-icon-3 {
    margin-right: 100px;
  }

  .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
    z-index: 3;
  }

  .nav-dropdown-link-3 {
    display: flex;
  }

  .nav-button-wrapper-2 {
    width: auto;
  }

  .menu-button-4 {
    padding: 0 0 0 10px;
  }

  .menu-button-4.w--open {
    margin-right: 0;
    padding-left: 0;
  }

  .list-item-3 {
    height: 3rem;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-home-page-security.securityservices {
    height: 400px;
  }

  .padding-securityservices.container-medium.whoweare {
    padding-top: 100px;
  }

  .securitysection2 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .grid-2-about-security-copy {
    grid-template-columns: 1fr;
  }

  .grid-2-about-security-copy.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .grid-2-about-security-copy.padding-global._2grid-customer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .h1--security.margin-bottom-s.wetext {
    float: none;
    clear: left;
    object-fit: contain;
    width: 200px;
    font-size: 30px;
    position: relative;
  }

  .padding-global-secc.container-medium {
    padding-left: 20px;
    font-size: 28px;
  }

  .text-regular-t-c.margin-bottom-s.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
  }

  .text-regular-ifyour.light {
    font-size: 16px;
  }

  .text-regular-ifyour.margin-bottom-s.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
  }

  .text-regular-ifyour.light-tandc {
    font-size: 16px;
  }

  .text-regular-footertwo.margin-bottom-s.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
    margin-bottom: 0;
    padding-top: 10px;
    font-size: 14px;
  }

  .text-regular--secondpara.margin-bottom-s.wetextp, .text-regular--secondpara.margin-bottom-s-copy.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
  }

  .text-regular--h.margin-bottom-s {
    width: auto;
    margin-left: 0;
    margin-right: 10px;
  }

  .text-regular--h.margin-bottom-s.wetextp {
    clear: none;
    aspect-ratio: auto;
    object-fit: fill;
  }

  .grid-2-about--contact {
    grid-template-columns: 1fr;
  }

  .grid-2-about--contact.fourthsection {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .container-full-contact {
    margin-left: 20px;
    margin-right: 5px;
  }

  .bold-text-40 {
    width: 20px;
    font-size: 16px;
  }

  .div-block-19 {
    grid-template-columns: 1fr;
    width: auto;
    margin-right: 0;
  }

  .property-clean {
    margin-left: 15px;
    margin-right: 15px;
  }

  .grid-26-clean {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .section-home-page-property {
    height: 400px;
  }

  .property-area2 {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global-prop.container-medium {
    margin-left: 20px;
    margin-right: -74px;
    padding-right: 15%;
    font-size: 28px;
  }

  .section-home-page-cleaning, .section-home-page-other {
    height: 400px;
  }

  .image-32 {
    width: 90%;
    min-width: auto;
    height: 90%;
    margin-left: 0;
  }

  .nav-dropdown-toggle-who {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
  }

  .nav-dropdown-toggle-contact {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 10px;
    display: flex;
  }

  .paragraph-new-bottom, .paragraph-new-1 {
    width: 100%;
  }

  .image-35 {
    height: auto;
  }

  .image-38 {
    width: auto;
    height: 1.5em;
  }

  .formtext {
    width: 200%;
    height: auto;
    margin-right: 0;
    padding-right: 0;
  }

  .icon-2 {
    padding: 20px;
  }

  .container-4 {
    max-width: none;
  }

  .nav-menu-three, .nav-menu-three-bottom {
    flex-direction: column;
  }

  .mobile-nav {
    margin-left: 5px;
  }

  .link-12 {
    margin-left: 5px;
    font-size: 16px;
  }

  .padding-global-title.container-medium {
    margin-left: 0;
    padding-left: 20px;
    font-size: 28px;
  }

  .padding-global-title.container-medium.whoweare {
    margin-left: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .padding-global-title.container-medium.otherservices {
    margin-left: 20px;
    margin-right: 0;
    padding-right: 40px;
    font-size: 28px;
  }

  .div-block-22 {
    line-height: 10px;
  }

  .div-block-23 {
    height: 20px;
    margin-top: 10px;
  }

  .link-13 {
    justify-content: flex-start;
    align-items: center;
    height: 20px;
    display: flex;
  }

  .heading-9--how-it-works {
    font-size: 28px;
  }

  .div-block-22-number {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    line-height: 10px;
  }

  .abn, .paragraph-new-contract {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .paragraph-new-property {
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .grid-27.padding-global.container-medium {
    grid-template-columns: 1fr;
  }

  .paragraph-new-master {
    margin-top: 0;
    margin-bottom: 0;
  }

  .form {
    margin-left: 0;
    margin-right: 10px;
  }

  .paragraph-new-home, .paragraph-new-home2, .paragraph-new-n, .paragraph-newnn-extra {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }
}

#w-node-_5517fbd2-f022-fd9c-bc9c-79ba3c105b7b-1bd8057c {
  place-self: center;
}

#w-node-_4ce88626-2e3b-c7f9-7d39-1b58e80f0471-1bd8057c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0600fe38-5e04-0f39-7848-a9d107b683d0-1bd8057d {
  place-self: auto start;
}

#w-node-_724fa3c2-87d1-b14e-ac5b-21b4e2834527-1bd8057e, #w-node-_724fa3c2-87d1-b14e-ac5b-21b4e283452f-1bd8057e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a61b47c-b90b-a1e6-63e2-2bc8266e32e5-1bd8057e {
  order: -9999;
}

#w-node-_61b1f222-6e55-69f1-d261-05aaa77a8110-1bd8057e {
  order: 9999;
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_61b1f222-6e55-69f1-d261-05aaa77a8111-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de66c-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de673-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de67a-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de682-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de68c-1bd8057e, #w-node-_07e0b9df-17e4-efae-8a61-5183602de696-1bd8057e, #w-node-_2f577732-2760-fff3-dad9-be308eab4bff-1bd8057e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6a506c1-b48f-59c4-83f4-18ececa4d7a1-48ee45b1 {
  grid-area: Area-4;
}

#w-node-b39173fd-e4bc-7610-31ab-5ff8f959c17c-48ee45b1 {
  grid-area: Area-5;
}

#w-node-_2b2600a1-d1e7-d9cd-3417-1582453b566b-48ee45b1 {
  grid-area: Area-2;
}

#w-node-e2d09f51-e0cd-7d80-bc94-fc35d8f33384-48ee45b1 {
  grid-area: Area;
}

#w-node-e09e17d5-e3a0-e486-6859-aab546c1537a-48ee45b1 {
  grid-area: Area-3;
}

#w-node-_63e4a60c-e5bb-01d6-70ce-7b9714928c50-1546c917 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63e4a60c-e5bb-01d6-70ce-7b9714928c60-1546c917 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 991px) {
  #w-node-_63e4a60c-e5bb-01d6-70ce-7b9714928c50-1546c917 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4ce88626-2e3b-c7f9-7d39-1b58e80f0471-1bd8057c, #w-node-_724fa3c2-87d1-b14e-ac5b-21b4e2834527-1bd8057e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ce2a24cd-57ce-62a1-6b14-afdeebe49f70-1546c917 {
    place-self: center;
  }

  #w-node-_63e4a60c-e5bb-01d6-70ce-7b9714928c50-1546c917 {
    grid-column: span 3 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8a61b47c-b90b-a1e6-63e2-2bc8266e32e5-1bd8057e {
    order: -9999;
  }

  #w-node-_61b1f222-6e55-69f1-d261-05aaa77a8110-1bd8057e {
    order: 9999;
  }
}


