:root {
  --medium-turquoise: #7ecac7;
  --white: white;
  --siege-yellow: #ffeb00;
  --siege-blue: #36a9e0;
  --peach: #f6ad85;
  --homes: #7ecac7;
  --black: black;
  --siege-attack: #ff8f00;
}

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

body {
  color: #333;
  background-color: #fff;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h6 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
}

p {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

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

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

figcaption {
  background-color: var(--medium-turquoise);
  color: var(--white);
  text-align: center;
  margin-top: 0;
  padding: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-style: italic;
  line-height: 20px;
}

.section-hero {
  perspective: 1000px;
  background-color: #fff;
  background-image: none;
  background-position: 0 0;
  flex: 1;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.section-row {
  background-color: #000;
  height: 120px;
  display: flex;
}

.container {
  flex-direction: column;
  height: 100vh;
  display: flex;
}

.header {
  background-color: #fff;
  justify-content: center;
  align-items: flex-end;
  height: 60px;
  display: flex;
}

.header.hide {
  display: none;
}

.col-side {
  flex: 0 auto;
  align-items: stretch;
  width: 100%;
  padding: 5% 0;
  transition: all 1s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  overflow: hidden;
}

.col-side.side-attack {
  background-image: url('../images/Untitled-13.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 4px #000;
  justify-content: flex-end;
}

.col-side.side-attack.contact {
  justify-content: center;
  align-items: center;
}

.col-side.side-defend {
  background-image: url('../images/425648-PDUVQF-496.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 auto;
  justify-content: flex-start;
}

.col-defend {
  flex: 0 auto;
  width: 50%;
  padding: 7%;
  transition: all 1s cubic-bezier(.23, 1, .32, 1);
}

.hero-logo {
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.header-brand {
  flex: 1;
  justify-content: center;
  width: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.section-col {
  flex: 1;
}

.container-op {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-left: 15%;
  margin-right: 15%;
  display: flex;
}

.container-op.side-defend {
  align-items: center;
}

.op-side.side-defend {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.op-side-title {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 100px;
  font-weight: 300;
  line-height: 100px;
  overflow: hidden;
}

.op-icon {
  flex: none;
  width: 350px;
  padding: 10px;
  overflow: hidden;
}

.button {
  background-color: var(--siege-yellow);
  color: #000;
  text-transform: uppercase;
  margin-top: 0;
  padding: 10px 20px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 300;
  transition: background-color .3s cubic-bezier(.215, .61, .355, 1);
  overflow: hidden;
}

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

.button.cta {
  background-color: var(--siege-blue);
  color: #fff;
  align-items: center;
  font-size: 16px;
  transition-property: all;
  display: flex;
}

.button.cta:hover {
  color: #000;
  background-color: #fff;
}

.button.side-attack {
  transition: border .3s cubic-bezier(.23, 1, .32, 1);
}

.button.side-attack:hover {
  border-left-width: 5px;
}

.button.hide {
  display: none;
}

.header-col {
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  width: 30%;
  height: 60px;
  display: flex;
  overflow: hidden;
}

.header-col.brand {
  justify-content: center;
  align-items: center;
  padding-right: 45px;
}

.header-col.cta {
  justify-content: flex-end;
}

.header-cta {
  flex: 0 auto;
  align-items: stretch;
  width: 30%;
  display: flex;
}

.headr-link {
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.headr-link:hover {
  background-color: rgba(255, 255, 255, .3);
}

.logo {
  justify-content: center;
  width: 150px;
  display: flex;
}

.button-mask {
  background-color: #000;
  width: auto;
  overflow: hidden;
}

.mask {
  width: auto;
  margin-bottom: 0;
  overflow: hidden;
}

.mask.hide {
  display: none;
}

.title-mask {
  width: auto;
  height: 90px;
  margin-top: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.side-mask {
  flex: 0 auto;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.side-mask.side-defened {
  justify-content: flex-end;
}

.image {
  display: inline;
}

.split-screen-link {
  box-shadow: none;
  background-color: rgba(255, 255, 255, .85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.link-block {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  padding: 16px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0;
  left: 47%;
  right: 0%;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .25);
}

.link-block.right {
  z-index: 1000;
  margin-right: 30px;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.section {
  height: 100vh;
  min-height: 600px;
}

.columns {
  height: 100vh;
  position: relative;
}

.column {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.header-image {
  clear: right;
  flex: 1;
  height: 100%;
}

.header-image.projects {
  background-image: url('../images/Untitled-13.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image.about {
  background-image: url('../images/ialicante-mediterranean-homes-475777-unsplash-1.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.header-image.sales {
  background-image: url('../images/For-Sale-Board-Mockup.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.header-image.sales.hide {
  display: none;
}

.header-image.leasing {
  background-image: url('../images/Homes-Feet.jpg');
  background-position: 6%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image.management {
  background-image: url('../images/maximillian-conacher-487500-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image.management.hide {
  display: none;
}

.header-image.contact {
  background-image: url('../images/Fluffy.jpg');
  background-position: 89%;
  background-size: cover;
}

.header-image.white {
  background-color: #fff;
}

.header-image.legal {
  background-image: url('../images/Homes-Couple.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.home {
  background-image: url('../images/ialicante-mediterranean-homes-475777-unsplash-1.jpg');
  background-position: 50%;
  background-size: cover;
  display: block;
}

.header-image.p---about {
  background-image: url('../images/Projects-About.jpg');
  background-position: 100%;
  background-size: cover;
}

.header-image.p---sales {
  background-image: url('../images/bandw-1.jpg');
  background-position: 90%;
  background-size: cover;
}

.header-image.p---sales.hide {
  display: none;
}

.header-image.p---lease {
  background-image: url('../images/Untitled-1.jpg');
  background-position: 0%;
  background-size: cover;
}

.header-image.p---dev {
  background-image: url('../images/Projects-Dev.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.p---contacts {
  background-image: url('../images/Properties-Contact.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.projects-legal {
  background-image: url('../images/Untitled-13.jpg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.header-image.nib-tech {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/negative-space-mac-macbook-tablet-iphone-desk-minimal-domenico-loia.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.mac-repair {
  background-image: url('../images/5e1d6b4d67815400017edb8e.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.mac-repair.hide {
  background-color: rgba(0, 0, 0, 0);
}

.header-image.mac-repair.hide-deskop {
  display: none;
}

.header-image.assist {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/3740039.jpg');
  background-position: 50%;
  background-size: cover;
}

.header-image.blog-1 {
  background-image: url('../images/pexels-vlada-karpovich-4050430-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image.blog_2 {
  background-image: url('../images/WhatsApp-Image-2021-08-12-at-11.47.23.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-image.blog_1_2 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.brand-2 {
  background-color: #fff;
  margin-top: 20px;
  margin-left: 10px;
  display: none;
}

.navbar {
  float: right;
  background-color: rgba(0, 0, 0, 0);
  width: 50%;
  min-width: 782px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.navbar.projects {
  width: 45%;
  min-width: 788px;
}

.image-3 {
  width: 100px;
}

.container-2 {
  float: right;
  background-color: #7ecac7;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 663px;
  height: 10vh;
  padding-right: 20px;
  display: flex;
}

.container-2.projects {
  background-color: #f6ad85;
  min-width: 665px;
}

.intro-header {
  z-index: 50;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 411px;
  height: 100vh;
  padding: 40px 40px 40px 70px;
  display: flex;
  position: relative;
}

.intro-header.about {
  width: auto;
}

.intro-header.colour {
  background-color: var(--medium-turquoise);
  height: 100%;
}

.intro-header.peach {
  background-color: #f6ad85;
  height: 100%;
}

.intro-header.contact {
  height: auto;
}

.intro-header.projects {
  background-color: rgba(255, 255, 255, .9);
  max-width: 600px;
  height: 80vh;
  padding-left: 15px;
  padding-right: 15px;
}

.heading {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 35px;
  line-height: 50px;
}

.heading.white {
  color: #fff;
}

.spacer {
  width: 200px;
  height: 20px;
}

.section-2 {
  align-items: flex-start;
  height: 100vh;
  min-height: 800px;
  display: flex;
}

.section-2.projects {
  background-color: #f6ad85;
}

.section-2.ck {
  min-height: 900px;
}

.section-2.blog-content {
  justify-content: center;
  align-items: flex-start;
  display: block;
}

.intro-div {
  width: 42%;
  min-width: 500px;
  height: 100%;
}

.intro-div.about {
  width: 60%;
}

.div-block-2 {
  flex: 1;
  height: 100%;
}

.image-4 {
  width: 250px;
  margin-top: -80px;
  margin-bottom: -50px;
  margin-left: -25px;
  position: relative;
}

.image-4.spacing {
  margin-bottom: 0;
}

.paragraph {
  text-align: center;
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

.paragraph.white {
  color: #fff;
}

.paragraph.white.left {
  text-align: left;
  border: 3px solid #fff;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  line-height: 36px;
}

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

.nav-link {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.nav-link.w--current {
  color: rgba(0, 0, 0, .3);
}

.nav-link.border {
  border: 1px solid #fff;
  display: block;
}

.nav-link.font {
  text-transform: none;
  font-family: Better grade, sans-serif;
  font-size: 45px;
  font-weight: 400;
}

.lisitings-link-div {
  z-index: 100;
  background-color: #7ecac7;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  height: 10vh;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lisitings-link-div.projects {
  background-color: #f6ad85;
}

.lisitings-link-div.yellow {
  background-color: var(--peach);
}

.columns-2 {
  flex: 1;
  height: 100%;
}

.column-3 {
  color: #5c5c5c;
  text-align: right;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  padding-right: 28px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: flex;
}

.column-3.about {
  background-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #fff;
  padding-right: 10px;
}

.column-4 {
  border-right: 1px solid #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-5 {
  width: 55%;
}

.image-5:hover {
  filter: grayscale(0%);
}

.column-5 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.text-block {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  padding: 12px;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.div-block-4 {
  float: right;
  background-color: var(--siege-yellow);
  justify-content: space-around;
  width: 200px;
  height: 50px;
  display: flex;
}

.column-6 {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.image-6 {
  width: 50px;
}

.enter-button {
  float: right;
  background-color: #f6ad85;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 70px;
  margin-top: -44px;
  padding-top: 5px;
  text-decoration: none;
  display: flex;
  position: relative;
  left: -22px;
}

.enter-button.homes {
  text-align: center;
  background-color: #7ecac7;
  width: 250px;
  height: 70px;
  padding-top: 5px;
  left: -78px;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav-menu-links {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 38px;
  text-decoration: none;
}

.arrowdiv {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.arrow {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 32px;
  line-height: 32px;
}

.image-7 {
  height: 25%;
  transform: rotate(180deg);
}

.columns-3 {
  width: 100%;
  max-width: 430px;
  margin-top: 15px;
  margin-bottom: 15px;
}

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

.image-8 {
  width: 60px;
  margin-bottom: 30px;
}

.contact-text {
  color: #272727;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.contact-text.light {
  font-weight: 400;
}

.link-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

.text-span {
  font-size: 26px;
  font-weight: 500;
}

.bold-text {
  text-transform: uppercase;
  font-weight: 400;
}

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

.contact-link {
  color: #333;
  text-decoration: none;
}

.footer-links {
  color: #0e0e0e;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.text-span-2 {
  font-size: 12px;
  font-weight: 400;
  line-height: 27px;
}

.div-block-5 {
  align-self: stretch;
  width: 80%;
  margin: 54px;
}

.image-9 {
  width: 40%;
}

.section-3 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  display: flex;
}

.contact-general {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.contact-general.projects {
  background-image: url('../images/Untitled-13.jpg');
  background-position: 0%;
  background-size: cover;
}

.contact-general.homes {
  background-image: url('../images/425648-PDUVQF-496.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-10 {
  width: 30%;
}

.mobile-curtain {
  display: none;
}

.link, .link-2 {
  color: #333;
  text-decoration: none;
}

.gallery-section {
  height: 100%;
  padding-bottom: 120px;
}

.gallery-images-div {
  width: 80%;
  margin-top: 140px;
  margin-left: auto;
  margin-right: auto;
}

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

.heading-2 {
  text-align: center;
}

.blog-button {
  background-color: var(--medium-turquoise);
  margin-top: 30px;
  padding: 20px 30px;
}

.blog-spacer {
  height: 50px;
}

.blog_post_content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 100%;
  margin: 85px auto;
  padding-top: 0;
  display: flex;
}

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

.blog_header_image {
  height: 400px;
}

.blog_header_image.blog_1 {
  background-image: url('../images/WhatsApp-Image-2021-08-12-at-12.03.54.jpeg');
  background-position: 100% 82%;
  background-size: cover;
  height: 400px;
}

.blog_header_image.blog_2 {
  background-image: url('../images/4016-SA-Vodacom-Case-Study-3.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-12 {
  width: 100%;
}

.column-9 {
  padding-top: 10px;
  padding-left: 0;
  padding-right: 50px;
}

.column-10 {
  padding-top: 10px;
  padding-left: 0;
  padding-right: 0;
}

.button-2 {
  margin-top: 20px;
}

.button-3 {
  background-color: var(--medium-turquoise);
  text-transform: uppercase;
  margin-top: 20px;
  padding: 30px 31px;
}

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

.team-div {
  text-align: center;
}

.team-heading {
  color: var(--medium-turquoise);
}

.team-heading.peach, .text-span-4 {
  color: var(--peach);
}

.column-6-copy {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.mobile-footer-div {
  display: none;
}

@media screen and (max-width: 991px) {
  .section-hero {
    display: flex;
  }

  .container {
    display: none;
  }

  .header.hide {
    display: flex;
  }

  .link-block {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .header-image.sales {
    background-position: 89%;
  }

  .header-image.home {
    display: block;
  }

  .navbar {
    background-color: var(--medium-turquoise);
    width: 100%;
    min-width: 436px;
  }

  .navbar.projects {
    background-color: #f6ad85;
    min-width: 520px;
  }

  .container-2 {
    width: 100%;
    height: 7vh;
  }

  .container-2.projects {
    width: 100%;
  }

  .intro-header {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .intro-header.projects {
    width: 80%;
    min-width: 0;
    height: 90%;
  }

  .heading {
    font-size: 40px;
    line-height: 50px;
  }

  .nav-link {
    text-align: center;
    width: 60%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link.w--current {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link.border {
    width: 40%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lisitings-link-div {
    width: 100%;
    height: 7vh;
  }

  .lisitings-link-div.projects, .lisitings-link-div.blue {
    width: 100%;
  }

  .text-block {
    font-size: 13px;
  }

  .nav-menu {
    background-color: var(--medium-turquoise);
  }

  .nav-menu.peach {
    background-color: #f6ad85;
  }

  .image-6 {
    width: 37px;
  }

  .footer-nav-menu-links {
    text-decoration: none;
  }

  .columns-3 {
    max-width: 450px;
  }

  .image-10 {
    width: 50%;
  }

  .mobile-curtain {
    height: 100vh;
    min-height: 600px;
    display: block;
  }

  .projects-div {
    background-image: url('../images/Untitled-13.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    padding: 50px;
  }

  .homes-div {
    background-image: url('../images/425648-PDUVQF-496.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    padding: 50px;
  }

  .projects-container {
    background-color: rgba(255, 255, 255, .8);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
  }

  .image-11 {
    height: 60%;
    margin-bottom: 30px;
  }

  .link-text-button {
    color: #fff;
    text-align: center;
    background-color: #f6ad85;
    padding: 10px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    text-decoration: none;
  }

  .link-text-button.homes {
    background-color: var(--medium-turquoise);
  }

  .text-span-3 {
    font-weight: 400;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button:active {
    color: var(--medium-turquoise);
  }

  .menu-button.w--open {
    color: var(--medium-turquoise);
    background-color: #fff;
  }

  .menu-button-2 {
    color: #fff;
  }

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

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

  .mobile-footer-div {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header-image.about {
    display: none;
  }

  .intro-div.about {
    width: 100%;
    min-width: 0;
  }

  .column-3 {
    padding-right: 10px;
  }

  .image-5 {
    width: 90%;
  }

  .text-block {
    text-align: center;
    font-size: 10px;
    line-height: 15px;
  }

  .footer-nav-menu-links {
    font-size: 15px;
    line-height: 19px;
  }

  .blog-spacer {
    height: 50px;
  }

  .grid-2 {
    display: block;
  }

  .team-div {
    margin-bottom: 40px;
  }

  .mobile-footer-div {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .link-block {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    margin-right: 15px;
    padding: 10px;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .link-block.right {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    margin-right: 15px;
    padding: 11px;
  }

  .header-image.about {
    height: 300px;
    display: block;
  }

  .header-image.sales {
    height: 300px;
    display: none;
  }

  .header-image.sales.hide {
    display: block;
  }

  .header-image.leasing {
    height: 300px;
  }

  .header-image.management {
    height: 300px;
    display: none;
  }

  .header-image.management.hide {
    display: block;
  }

  .header-image.p---about {
    height: 300px;
  }

  .header-image.p---sales {
    height: 300px;
    display: none;
  }

  .header-image.p---sales.hide {
    display: block;
  }

  .header-image.p---dev {
    height: 300px;
  }

  .header-image.projects-legal {
    display: none;
  }

  .header-image.nib-tech, .header-image.mac-repair {
    min-height: 350px;
  }

  .header-image.mac-repair.hide {
    display: none;
  }

  .header-image.mac-repair.hide-deskop {
    display: block;
  }

  .header-image.assist {
    min-height: 350px;
  }

  .navbar {
    min-width: 0;
  }

  .navbar.projects {
    width: 100%;
    min-width: 0;
  }

  .container-2, .container-2.projects {
    min-width: 0;
  }

  .intro-header {
    min-width: 0;
    height: 100%;
  }

  .intro-header.about {
    padding-top: 80px;
    display: block;
  }

  .intro-header.colour {
    padding-top: 50px;
    padding-bottom: 140px;
  }

  .intro-header.peach {
    height: auto;
    padding-top: 50px;
    padding-bottom: 100px;
    display: block;
  }

  .intro-header.projects {
    height: 100%;
    padding-bottom: 100px;
  }

  .intro-header.touch, .intro-header.h---home {
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .heading {
    font-size: 30px;
    line-height: 40px;
  }

  .spacer.hide {
    display: none;
  }

  .section-2 {
    flex-direction: row;
    height: 100%;
    min-height: 0;
    display: block;
  }

  .section-2.projects.ck, .section-2.ck {
    min-height: 0;
  }

  .section-2.p---home {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .intro-div {
    width: 100%;
    min-width: 0;
  }

  .intro-div.about {
    width: 100%;
    min-width: 0;
    height: 100%;
  }

  .intro-div.about.ck {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .image-4 {
    width: 200px;
    margin-top: -40px;
  }

  .paragraph {
    flex: 1;
  }

  .paragraph.white.left {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .nav-link {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-link.w--current {
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .nav-link.border {
    width: 180px;
  }

  .lisitings-link-div {
    height: 50px;
  }

  .lisitings-link-div.projects {
    height: 50px;
    display: block;
    position: fixed;
  }

  .lisitings-link-div.blue {
    background-color: var(--white);
    display: none;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .columns-2 {
    display: none;
  }

  .image-5 {
    width: 100%;
  }

  .text-block {
    font-size: 6px;
    line-height: 12px;
  }

  .column-6 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .image-6 {
    width: 30px;
  }

  .footer-nav-menu-links {
    font-size: 10px;
    line-height: 14px;
  }

  .arrowdiv.hide {
    display: none;
  }

  .column-8 {
    margin-top: 20px;
  }

  .section-3 {
    height: 100%;
    display: block;
  }

  .contact-general.projects, .contact-general.homes {
    width: 100%;
  }

  .image-10 {
    width: 50%;
  }

  .image-11 {
    margin-bottom: 15px;
  }

  .link-text-button {
    padding: 5px 10px;
    font-size: 13px;
    line-height: 19px;
  }

  .gallery-section {
    padding-bottom: 140px;
  }

  .blog-spacer {
    height: 25px;
    margin-bottom: 0;
    padding-bottom: 31px;
  }

  .column-6-copy {
    padding-left: 4px;
    padding-right: 4px;
  }

  .mobile-footer-div {
    z-index: 100;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .footer-elements {
    justify-content: center;
    align-items: center;
    width: 25%;
    display: flex;
  }

  .footer-elements.blue {
    background-color: var(--homes);
  }

  .footer-elements.white {
    background-color: var(--white);
  }

  .footer-elements.peach {
    background-color: var(--peach);
  }

  .image-13 {
    height: 70px;
    margin-left: auto;
    margin-right: auto;
  }
}

#w-node-_4fdfed9d-6d8e-4011-48bb-31e13476a984-b08ae122, #w-node-_50f33327-2cd0-019b-ee18-ede0bde7d926-b08ae122, #w-node-_158eef65-99ec-5f85-c1e3-47bb0a9ebd5c-b08ae122, #w-node-_701eb81d-a465-28f0-615b-d37622c761c4-b08ae122, #w-node-d819841c-03b5-e564-c4a3-ef5529d9bcb5-b08ae122, #w-node-aca9432f-f145-48d2-0e46-54b8c4a06868-b08ae122, #w-node-_520f47c2-508d-1a70-cb42-909fc990b8c6-b08ae122, #w-node-_2ea4b89e-125a-074b-46d0-a6f2a6a25c82-b08ae122, #w-node-_6fda0d8a-f8eb-e6a2-dd7f-811a746b75a2-b08ae122, #w-node-_701eb81d-a465-28f0-615b-d37622c761c4-d54d77bb, #w-node-d819841c-03b5-e564-c4a3-ef5529d9bcb5-d54d77bb, #w-node-aca9432f-f145-48d2-0e46-54b8c4a06868-d54d77bb, #w-node-_2ea4b89e-125a-074b-46d0-a6f2a6a25c82-d54d77bb, #w-node-_4c03aead-61cf-e48a-74f2-f8ac9b3651c6-d54d77bb, #w-node-_8077202c-5bf2-d675-00b0-e41c1fa7b99f-d54d77bb, #w-node-eafe363d-44c4-dc6e-a853-10054995a310-d54d77bb, #w-node-_4fdfed9d-6d8e-4011-48bb-31e13476a984-d54d77bb, #w-node-_50f33327-2cd0-019b-ee18-ede0bde7d926-d54d77bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Better grade';
  src: url('../fonts/Better-Grade.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}