@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.btn {
  padding: 1rem;
  border: 0;
  font-weight: 700;
  border-radius: 0.2rem;
  cursor: pointer;
}
.btn.green {
  background: #60B39B;
  color: #fff;
}
.btn.green-outline {
  background: transparent;
  outline: 2px solid #60B39B;
  outline-offset: -2px;
  color: #4A4E4E;
}
.btn.white-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

body {
  font-size: clamp(1.00rem, calc(0.92rem + 0.42vw), 1.1rem);
}

h1 {
  font-weight: 700;
  font-size: clamp(2.07rem, calc(1.75rem + 1.63vw), 3.05rem);
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.73rem, calc(1.49rem + 1.19vw), 2.44rem);
  line-height: 1.1;
}

#services-page h2 {
  font-weight: 400;
  margin-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
  line-height: 1.6;
  font-size: 16px;
  color: #c99d2c;
}
#services-page h2.bold {
  font-weight: 700;
}
#services-page h2 a {
  color: #c99d2c !important;
  text-decoration: underline !important;
}

h3 {
  font-weight: 700;
  font-size: clamp(1.44rem, calc(1.27rem + 0.86vw), 1.95rem);
  line-height: 1.1;
}

h4 {
  font-weight: 700;
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
  line-height: 1.1;
}

p {
  margin-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
  line-height: 1.6;
}
p.bold {
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.max-width {
  width: min(90%, 1280px);
  margin: 0 auto;
}

#header {
  background: #fff;
  position: fixed;
  z-index: 1;
  border-bottom: medium #c99d2c solid;
  width: 100%;
}
#header .desktop-nav-wrapper .desktop-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-logo img {
  max-width: 10rem;
  transition: 0.3s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span {
  margin: 0 auto;
  position: relative;
  top: 12px;
  width: 30px;
  height: 4px;
  background-color: #000;
  display: block;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span.active {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span.active::before {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span.active::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span::after, #header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #000;
  display: block;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span::before {
  margin-top: -12px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .burger-menu span::after {
  margin-top: 12px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links {
  display: none;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul {
  display: flex;
  padding: 0;
  margin: 0;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul li {
  list-style: none;
  border-right: 2px solid #c99d2c;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul li:last-child {
  border-right: 0;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul li a {
  text-decoration: none;
  color: #1d3058;
  transition: 0.05s;
  padding: 0 2rem;
  font-weight: 500;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul li a:hover {
  color: #c99d2c;
}
#header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links ul li a.active {
  color: #c99d2c;
}
#header .mobile-nav-wrapper {
  height: 0;
  overflow: scroll;
  transition: 0.4s ease-in-out;
}
#header .mobile-nav-wrapper.active {
  height: 100vh;
}
#header .mobile-nav-wrapper.active .mobile-nav-links ul {
  opacity: 1;
  transform: translateY(0px);
}
#header .mobile-nav-wrapper .mobile-nav-links {
  margin-top: 2rem;
}
#header .mobile-nav-wrapper .mobile-nav-links ul {
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-50px);
  transition: 0.4s ease-in-out;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li {
  list-style: none;
  transition: 0.4s;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li a {
  margin-left: 1.7rem;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li a:hover {
  color: #c99d2c;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li a.active {
  color: #c99d2c;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li a.active {
  color: #c99d2c;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li:last-child a {
  border-bottom: 0;
}
#header .mobile-nav-wrapper .mobile-nav-links ul li a {
  text-decoration: none;
  color: #000;
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
  margin-left: 0;
  display: block;
  padding: 1rem 0;
}

@media (min-width: 1100px) {
  #header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-logo img {
    max-width: 15rem;
  }
  #header .desktop-nav-wrapper .desktop-nav-inner .burger-menu {
    display: none;
  }
  #header .desktop-nav-wrapper .desktop-nav-inner .desktop-nav-links {
    display: block;
  }
}
.sidebar {
  max-width: 100%;
  min-width: 200px;
}
.sidebar ul {
  position: relative;
  overflow: hidden;
  color: #1d3058;
  padding: 0;
  margin: 0;
}
.sidebar ul span {
  color: white;
  list-style-type: none;
}
.sidebar ul span li {
  background-color: #c99d2c;
  padding: 1.5rem;
}
.sidebar ul span a:link {
  text-decoration: none;
  color: white;
}
.sidebar ul span a:visited {
  text-decoration: none;
  color: white;
}
.sidebar ul span a:hover {
  text-decoration: none;
  color: #1d3058;
}
.sidebar ul span a:active {
  text-decoration: none;
}
.sidebar ul span a {
  display: flex;
  justify-content: space-between;
  background-color: #c99d2c;
  border: #bdbdbd solid 1px;
}
.sidebar ul span a li {
  border: none;
}
.sidebar ul span a .mobile-arrow {
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 10%;
  min-width: 60px;
  transform: rotate(180deg);
  transition: 0.25s;
}
.sidebar ul span a .mobile-arrow.active {
  transform: rotate(0);
}
.sidebar ul #mobile-sidebar-collapse {
  display: none;
  padding-bottom: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
.sidebar ul li {
  border: #bdbdbd solid 1px;
  border-top: 0px;
  list-style-type: none;
  display: flex;
}
.sidebar ul li.last {
  border: 0;
  background: url("/images/lighter.svg") no-repeat left 100%;
  padding-bottom: 3rem;
  border-right: #bdbdbd solid 1px;
}
.sidebar ul li.shadow {
  background-color: #e3e3e3;
}
.sidebar ul li img {
  max-width: 0.7rem;
  margin-left: 1.5rem;
}
.sidebar ul li a {
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  text-decoration: none;
  color: #1d3058;
  text-transform: uppercase;
  display: block;
  width: 100%;
}
.sidebar ul li a:hover {
  color: #c99d2c;
}

#desktop-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  #desktop-sidebar {
    display: block;
  }

  #mobile-sidebar {
    display: none;
  }
}
.grey-box {
  background-color: #f8f8f8;
  padding: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
  margin: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem) 0;
}
.grey-box p {
  color: #c99d2c;
}
.grey-box ul li {
  padding-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  line-height: 1.2rem;
}
.grey-box ul li:first-child {
  padding-top: 0;
}

.service-hero {
  display: grid;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  background-position: 30% center;
  background-size: cover;
}
.service-hero.boundary-disputes {
  background-image: url("/images/boundary-disputes/boundary-disputes.svg");
}
.service-hero.cad-drafting {
  background-image: url("/images/cad/cad.svg");
}
.service-hero.deformation-monitoring {
  background-image: url("/images/deformation-monitoring/deformation-monitoring.svg");
}
.service-hero.engineering-surveying {
  background-image: url("/images/engineering-surveying/engineering-surveying.svg");
}
.service-hero.gps-control {
  background-image: url("/images/gps-control/gps-control.svg");
}
.service-hero.health-safety {
  background-image: url("/images/health-and-safety/health-and-safety.svg");
}
.service-hero.hydrographic-surveying {
  background-image: url("/images/hydrographic-surveying/hydrographic-surveying.svg");
}
.service-hero.laser-scanning {
  background-image: url("/images/laser-scanning/laser-scanning.svg");
}
.service-hero.measured-building {
  background-image: url("/images/measured-building/measured-building.svg");
}
.service-hero.topographic-surveying {
  background-image: url("/images/typographic/blank-blue.svg");
}
.service-hero.utility-mapping {
  background-image: url("/images/utility-mapping/utility-mapping.svg");
}
.service-hero.request-quote {
  background-image: url("/images/contact/contact.svg");
}
.service-hero.health-and-safety {
  background-image: url("/images/health-and-safety/health-and-safety.svg");
}
.service-hero.about-us {
  background-image: url("/images/typographic/blank-blue.svg");
}
.service-hero.accreditation {
  background-image: url("/images/typographic/blank-blue.svg");
}
.service-hero .content {
  padding: clamp(7.00rem, calc(5.86rem + 17.68vw), 7.00rem) 0;
  color: #1d3058;
  position: relative;
}
.service-hero .content h1 {
  text-transform: uppercase;
  max-width: 40%;
  position: absolute;
  top: 35%;
  right: 5%;
  left: 0%;
  bottom: 5%;
}
.service-hero .content h1 span {
  color: #c99d2c;
}

@media (min-width: 700px) {
  .service-hero .content {
    padding: clamp(10.00rem, calc(5.86rem + 17.68vw), 10.00rem) 0;
  }
}
@media (min-width: 1165px) {
  .service-hero {
    background-position: 50% center;
  }
  .service-hero .content h1 {
    max-width: 10%;
    position: absolute;
    top: 35%;
    right: 5%;
    left: 0%;
    bottom: 5%;
  }
  .service-hero.boundary-disputes {
    background-image: url("/images/boundary-disputes/boundary-disputes-icon.svg");
  }
  .service-hero.cad-drafting {
    background-image: url("/images/cad/cad-icon.svg");
  }
  .service-hero.deformation-monitoring {
    background-image: url("/images/deformation-monitoring/deformation-icon.svg");
  }
  .service-hero.engineering-surveying {
    background-image: url("/images/engineering-surveying/engineering-surveying-icon.svg");
  }
  .service-hero.gps-control {
    background-image: url("/images/gps-control/gps-icon.svg");
  }
  .service-hero.health-safety {
    background-image: url("/images/health-and-safety/health-and-safety-icon.svg");
  }
  .service-hero.hydrographic-surveying {
    background-image: url("/images/hydrographic-surveying/hydrographic-icon.svg");
  }
  .service-hero.laser-scanning {
    background-image: url("/images/laser-scanning/laser-scanning-icon.svg");
  }
  .service-hero.measured-building {
    background-image: url("/images/measured-building/measured-building-icon.svg");
  }
  .service-hero.topographic-surveying {
    background-image: url("/images/typographic/typographic-icon-new.svg");
  }
  .service-hero.utility-mapping {
    background-image: url("/images/utility-mapping/utility-mapping-icon.svg");
  }
  .service-hero.request-quote {
    background-image: url("/images/contact/contact-icon.svg");
  }
  .service-hero.health-and-safety {
    background-image: url("/images/health-and-safety/health-and-safety-icon.svg");
  }
  .service-hero.about-us {
    background-image: url("/images/about-icon.svg");
  }
  .service-hero.accreditation {
    background-image: url("/images/about-icon.svg");
  }
}
* {
  font-family: "Roboto";
}

.page {
  padding-top: 83px;
}
@media (min-width: 1100px) {
  .page {
    padding-top: 108px;
  }
}

body {
  background: #efefef;
}
body.scroll-disabled {
  overflow: hidden;
}
body #header .desktop-nav-wrapper .desktop-nav-inner a {
  padding-top: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
  padding-bottom: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
}
body #header .mobile-nav-wrapper .mobile-nav-links ul li a {
  color: #1d3058;
}

#home-page .new-hero {
  background: url("/images/mobile-hero.jpg") no-repeat 15% 80%/150%;
}
#home-page .new-hero .content {
  padding: 2rem 0 clamp(10.00rem, calc(5.86rem + 17.68vw), 20.00rem) 0;
  color: #1d3058;
}
#home-page .new-hero .content h1 span {
  color: #c99d2c;
}
@media (min-width: 768px) {
  #home-page .new-hero {
    background: url("/images/home-desktop-hero.jpg") no-repeat center/cover;
  }
  #home-page .new-hero .content {
    padding: clamp(10.00rem, calc(5.86rem + 17.68vw), 20.00rem) 0 clamp(10.00rem, calc(5.86rem + 17.68vw), 20.00rem) 0;
  }
}
@media (min-width: 768px) {
  #home-page .intro-news-articles .wrapper .cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
  }
  #home-page .intro-news-articles .wrapper .cta .buttons {
    padding-top: 0;
  }
}
@media (min-width: 1600px) {
  #home-page .new-hero {
    background: url("/images/home-desktop-hero.jpg") no-repeat 50% 35%/cover;
  }
}
#home-page .image-grid {
  display: grid;
}
#home-page .image-grid .categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
#home-page .image-grid .categories a {
  padding: 1px;
  position: relative;
}
#home-page .image-grid .categories a p {
  line-height: 95%;
  position: absolute;
  top: 70%;
  right: 5%;
  left: 5%;
  bottom: 5%;
  color: white;
  max-width: 60%;
  font-weight: bold;
}
#home-page .image-grid .categories a:hover p {
  color: #f1c148;
}
#home-page .image-grid .categories a:hover #lighter-text {
  color: #1c305c;
}
@media (max-width: 1350px) {
  #home-page .image-grid {
    display: grid;
  }
  #home-page .image-grid .categories a p {
    top: 60%;
    max-width: 75%;
  }
}
@media (max-width: 1024px) {
  #home-page .image-grid {
    display: grid;
  }
  #home-page .image-grid .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #home-page .image-grid .categories a {
    padding: 1px;
  }
  #home-page .image-grid .categories a p {
    max-width: 75%;
    top: 72%;
  }
}
@media (max-width: 530px) {
  #home-page .image-grid {
    display: grid;
  }
  #home-page .image-grid .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #home-page .image-grid .categories a {
    padding: 1px;
  }
  #home-page .image-grid .categories a p {
    max-width: 65%;
    position: absolute;
    top: 70%;
    right: 5%;
    left: 5%;
    bottom: 5%;
  }
}
#home-page .home-about-new {
  background: #fff;
}
#home-page .home-about-new .wrapper {
  display: grid;
  padding: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem) 0;
}
#home-page .home-about-new .wrapper .text .header {
  font-size: clamp(1.44rem, calc(1.27rem + 0.86vw), 1.95rem);
  padding-top: 1rem;
  line-height: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
#home-page .home-about-new .wrapper .text .header p {
  color: #1d3058;
  padding-bottom: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
#home-page .home-about-new .wrapper .text p {
  color: #555a5e;
  padding-bottom: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
#home-page .home-about-new .wrapper .text h2 {
  color: #c99d2c;
  font-size: clamp(1.00rem, calc(0.92rem + 0.42vw), 1.1rem);
}
#home-page .home-about-new .wrapper .image {
  position: relative;
  max-width: 400px;
}
#home-page .home-about-new .wrapper .image .text-overlay {
  position: absolute;
  top: 3rem;
  left: 2rem;
  color: #fff;
  display: grid;
  justify-items: flex-start;
}
#home-page .home-about-new .wrapper .image .text-overlay p {
  padding: 0 7rem 0 0;
}
#home-page .home-about-new .wrapper .image .text-overlay .btn {
  background-color: #ff7263;
  padding: 1rem;
  margin-top: 2rem;
}
#home-page .home-about-new .wrapper .image:hover .text-overlay .btn {
  background-color: #ff8563;
}
@media (min-width: 915px) {
  #home-page .home-about-new .wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
  #home-page .home-about-new .wrapper .image {
    min-width: 200px;
  }
  #home-page .home-about-new .wrapper .image .text-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #fff;
  }
  #home-page .home-about-new .wrapper .image .text-overlay p {
    padding: 0 4rem 0 0;
  }
}
@media (min-width: 1030px) {
  #home-page .home-about-new .wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
  #home-page .home-about-new .wrapper .image .text-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #fff;
  }
  #home-page .home-about-new .wrapper .image .text-overlay p {
    padding: 0 4rem 0 0;
  }
}

#services-page .breadcrumb {
  background-color: white;
  color: #c99d2c;
  padding: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem) 0;
  border-bottom: #bdbdbd solid 1px;
}
#services-page .breadcrumb p {
  text-decoration: none;
}
#services-page .breadcrumb p a:link {
  text-decoration: none;
  color: #c99d2c;
}
#services-page .breadcrumb p a:visited {
  text-decoration: none;
  color: #c99d2c;
}
#services-page .breadcrumb p a:hover {
  text-decoration: none;
}
#services-page .breadcrumb p a:active {
  text-decoration: none;
}
#services-page .breadcrumb p span {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: #54595d;
}
#services-page .text-section-container {
  background-color: white;
  color: #54595d;
  padding: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  padding-top: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  padding-bottom: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
#services-page .text-section-container .wrapper .text-body {
  max-width: 100%;
}
#services-page .text-section-container .wrapper .text-body .container-text-body {
  padding-top: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  padding-bottom: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
@media (min-width: 1024px) {
  #services-page .text-section-container .wrapper .text-body .container-text-body {
    padding-top: 0;
  }
}
#services-page .text-section-container .wrapper .text-body .container-text-body span {
  color: #c99d2c;
  text-transform: uppercase;
}
#services-page .text-section-container .wrapper .text-body .container-text-body .large-text {
  font-size: clamp(1.44rem, calc(1.27rem + 0.86vw), 1.95rem);
  line-height: normal;
  color: #1d3058;
}
#services-page .text-section-container .wrapper .text-body .container-text-body #too-big {
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
}
#services-page .text-section-container .wrapper .text-body span {
  color: #c99d2c;
}
#services-page .text-section-container .wrapper .text-body .paragraph {
  padding-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#services-page .text-section-container .wrapper .text-body .paragraph span {
  display: block;
}
#services-page .text-section-container .wrapper .text-body .paragraph a {
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: space-between;
}
#services-page .text-section-container .wrapper .text-body .paragraph a p {
  text-align: left;
  padding: clamp(0.56rem, calc(0.37rem + 0.98vw), 1.06rem);
}
#services-page .text-section-container .wrapper .text-body .paragraph a img {
  padding-right: 1rem;
}
#services-page .text-section-container .wrapper .text-body .paragraph #download-background {
  background-color: #c99d2c;
  margin-bottom: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  margin-top: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
#services-page .text-section-container .wrapper .text-body .paragraph #download-background p {
  padding: 0;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
#services-page .text-section-container .wrapper .text-body .paragraph .accreditiation-links {
  color: #54595d;
}
@media (min-width: 1024px) {
  #services-page .text-section-container {
    display: flex;
    justify-content: center;
  }
  #services-page .text-section-container .wrapper {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  }
  #services-page .text-section-container .wrapper .sidebar ul {
    min-width: 375px;
  }
  #services-page .text-section-container .wrapper .request-quote {
    max-width: 100%;
  }
  #services-page .text-section-container .wrapper .request-quote .container-text-body {
    display: flex;
  }
  #services-page .text-section-container .wrapper .request-quote .container-text-body .left {
    padding-right: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  }
  #services-page .text-section-container .wrapper .request-quote .container-text-body .right {
    min-width: 40%;
    max-width: 400PX;
  }
}

#contact-page div.grecaptcha-badge {
  z-index: 1;
}
#contact-page .breadcrumb {
  background-color: white;
  color: #c99d2c;
  padding: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
  padding-left: 12%;
  border-bottom: #bdbdbd solid 1px;
}
#contact-page .breadcrumb p {
  text-decoration: none;
}
#contact-page .breadcrumb p a:link {
  text-decoration: none;
  color: #c99d2c;
}
#contact-page .breadcrumb p a:visited {
  text-decoration: none;
  color: #c99d2c;
}
#contact-page .breadcrumb p a:hover {
  text-decoration: none;
}
#contact-page .breadcrumb p a:active {
  text-decoration: none;
}
#contact-page .breadcrumb p span {
  padding: 0 0.5rem;
  color: #54595d;
}
#contact-page .text-section-container {
  background-color: white;
  color: #54595d;
  padding: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  padding-top: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  padding-bottom: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
#contact-page .text-section-container .text-body {
  max-width: 100%;
  padding: 0 clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#contact-page .text-section-container .text-body .container-text-body {
  padding-bottom: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
#contact-page .text-section-container .text-body .container-text-body .large-text {
  font-size: clamp(1.44rem, calc(1.27rem + 0.86vw), 1.95rem);
  color: #1d3058;
}
#contact-page .text-section-container .text-body .container-text-body form {
  justify-content: center;
  align-items: center;
  text-align: left;
}
#contact-page .text-section-container .text-body .container-text-body form div.textbox {
  padding: 1rem 0;
}
#contact-page .text-section-container .text-body .container-text-body form div.textbox input:not([type=checkbox]),
#contact-page .text-section-container .text-body .container-text-body form div.textbox textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #000;
  color: #000;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 1.1rem);
}
#contact-page .text-section-container .text-body .container-text-body form div.textbox.error input {
  border: #ff470a 2px solid;
}
#contact-page .text-section-container .text-body .container-text-body form label.services {
  display: block;
  font-weight: bold;
}
#contact-page .text-section-container .text-body .container-text-body form div#services-wrapper {
  margin-top: 5px;
  column-count: 2;
}
@media (max-width: 670px) {
  #contact-page .text-section-container .text-body .container-text-body form div#services-wrapper {
    column-count: 1;
  }
}
#contact-page .text-section-container .text-body .container-text-body form div#services-wrapper div.checkbox {
  padding-top: 10px;
}
#contact-page .text-section-container .text-body .container-text-body form div#services-wrapper div.checkbox label {
  white-space: nowrap;
  font-size: 0.9em;
}
#contact-page .text-section-container .text-body .container-text-body form button[type=submit] {
  padding: 2rem;
  margin-top: 2rem;
  background-color: #1d3058;
  text-align: center;
  color: white;
  min-width: 100%;
  border: 0;
  cursor: pointer;
}
#contact-page .text-section-container .text-body .container-text-body form a#upload-file {
  padding: 0.75rem;
  margin-top: 2rem;
  background-color: #c99d2c;
  text-align: center;
  color: white;
  min-width: 100%;
  border: 0;
  display: block;
  text-decoration: none;
}
#contact-page .text-section-container .text-body .container-text-body form #map-button {
  padding: 0.75rem;
  margin-top: 2rem;
  background-color: #c99d2c;
  text-align: center;
  color: white;
  min-width: 100%;
  border: 0;
  display: block;
}
#contact-page .text-section-container .text-body .container-text-body .left #error-warning {
  color: #ff470a;
  display: block;
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
  text-align: left;
  padding: 0.75rem 0;
}
#contact-page .text-section-container .text-body .container-text-body .left #message {
  color: green;
  display: block;
  font-size: clamp(1.44rem, calc(1.27rem + 0.86vw), 1.95rem);
  text-align: center;
  padding: 1rem;
}
#contact-page .text-section-container .text-body .container-text-body .left form p {
  padding: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem) 0;
}
#contact-page .text-section-container .text-body .container-text-body .left form span.error {
  display: block;
  padding-top: 1rem;
  color: #ff470a;
}
#contact-page .text-section-container .text-body .container-text-body .left form div#filename-wrapper {
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#contact-page .text-section-container .text-body .container-text-body .left form div#filename-wrapper span#original-filename-text {
  color: #54595d;
  word-break: break-word;
  display: block;
  padding: 1.5rem 0;
}
#contact-page .text-section-container .text-body .container-text-body .left form div#filename-wrapper a#remove-file {
  display: inline-block;
  padding: 0.5rem;
  background-color: #b10909;
  color: white;
  text-decoration: none;
}
#contact-page .text-section-container .text-body .container-text-body .right a p {
  text-decoration: underline;
}
#contact-page .text-section-container .text-body .container-text-body .right a:link {
  text-decoration: none;
  color: #1d3058;
}
#contact-page .text-section-container .text-body .container-text-body .right a:visited {
  text-decoration: none;
  color: #1d3058;
}
#contact-page .text-section-container .text-body .container-text-body .right a:hover {
  text-decoration: none;
  color: #c99d2c;
}
#contact-page .text-section-container .text-body .container-text-body .right a:active {
  text-decoration: none;
}
@media (min-width: 1100px) {
  #contact-page .text-section-container {
    display: flex;
    justify-content: center;
  }
  #contact-page .text-section-container .sidebar {
    max-width: 40%;
  }
  #contact-page .text-section-container .sidebar ul {
    min-width: 375px;
  }
  #contact-page .text-section-container .text-body {
    max-width: 45%;
  }
}
@media (min-width: 1100px) {
  #contact-page .text-section-container {
    display: flex;
    justify-content: center;
  }
  #contact-page .text-section-container .sidebar {
    max-width: 40%;
  }
  #contact-page .text-section-container .request-quote {
    max-width: 100%;
  }
  #contact-page .text-section-container .request-quote .container-text-body {
    display: flex;
  }
  #contact-page .text-section-container .request-quote .container-text-body .left {
    padding-right: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
  }
  #contact-page .text-section-container .request-quote .container-text-body .right {
    min-width: 40%;
    max-width: 400PX;
  }
}

#popup {
  padding-top: 0;
}
#popup .popup-wrapper {
  padding: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  padding-bottom: 0;
}
#popup .popup-wrapper h1 {
  padding: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  color: #1d3058;
  text-align: center;
}
#popup .popup-wrapper #popup-error-text {
  padding-left: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  color: #ff470a;
}
#popup .popup-wrapper .file-choice {
  padding: 10px 0;
  text-align: center;
}
#popup .popup-wrapper .buttons {
  display: flex;
  max-width: 80%;
  padding: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
  gap: 50%;
}
#popup .popup-wrapper .buttons a {
  display: flex;
  background-color: #b10909;
  padding: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem) clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  max-width: 50%;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
#popup .popup-wrapper .buttons button {
  color: white;
  background-color: #1d3058;
  padding: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem) clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  max-width: 50%;
  border: none;
  border-radius: 5px;
}

#admin-page {
  padding-bottom: 0;
  background-color: white;
}
@media (min-width: 900px) {
  #admin-page {
    background-color: #e3e3e3;
    padding: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  }
}
#admin-page #content-wrapper {
  max-width: 100%;
  min-height: 100vh;
  color: #54595d;
  text-decoration: none;
  background-color: white;
  overflow-x: auto;
}
@media (min-width: 900px) {
  #admin-page #content-wrapper {
    max-width: 90%;
    padding-top: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
    padding-left: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
    padding-right: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  }
}
#admin-page #content-wrapper .page-header {
  display: flex;
  justify-content: space-between;
  color: #1d3058;
  border-bottom: solid #bdbdbd 2px;
}
#admin-page #content-wrapper .page-header a {
  max-width: 100%;
}
#admin-page #content-wrapper .page-header a img {
  padding-bottom: 1rem;
}
#admin-page #content-wrapper #logout-button {
  padding: 1rem;
  display: flex;
  float: right;
  color: #c99d2c;
  max-width: fit-content;
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
}
#admin-page #content-wrapper #logout-button:hover {
  text-decoration: none;
  color: #1d3058;
}
#admin-page #content-wrapper #admin-download-button {
  background-color: #1d3058;
  color: white;
  padding: 0.75rem;
  border-radius: 5px;
  white-space: nowrap;
}
#admin-page #content-wrapper #admin-download-button:link {
  text-decoration: none;
  color: white;
}
#admin-page #content-wrapper #admin-download-button:visited {
  text-decoration: none;
  color: white;
}
#admin-page #content-wrapper #admin-download-button:hover {
  text-decoration: none;
  color: #c99d2c;
}
#admin-page #content-wrapper #admin-download-button:active {
  text-decoration: none;
}
#admin-page #content-wrapper #view-enquiry {
  background-color: #c99d2c;
  color: white;
  padding: 0.75rem;
  border-radius: 5px;
  white-space: nowrap;
}
#admin-page #content-wrapper #view-enquiry:link {
  text-decoration: none;
  color: white;
}
#admin-page #content-wrapper #view-enquiry:visited {
  text-decoration: none;
  color: white;
}
#admin-page #content-wrapper #view-enquiry:hover {
  text-decoration: none;
  color: #1d3058;
}
#admin-page #content-wrapper #view-enquiry:active {
  text-decoration: none;
}
#admin-page #content-wrapper table {
  min-width: 100%;
}
#admin-page #content-wrapper table th {
  text-align: left;
}
#admin-page #content-wrapper table tr {
  padding: 1rem;
}
#admin-page #content-wrapper table tr td {
  padding: 1rem 0;
}
#admin-page #content-wrapper #enquiry-info strong {
  color: #292d31;
}
#admin-page #content-wrapper #enquiry-info a {
  color: #1d3058;
}
#admin-page #content-wrapper #enquiry-info a:link {
  text-decoration: underline;
  color: #1d3058;
}
#admin-page #content-wrapper #enquiry-info a:visited {
  text-decoration: underline;
  color: #1d3058;
}
#admin-page #content-wrapper #enquiry-info a:hover {
  text-decoration: underline;
  color: #c99d2c;
}
#admin-page #content-wrapper #enquiry-info a:active {
  text-decoration: none;
}
#admin-page #content-wrapper #back-button {
  max-width: fit-content;
  display: flex;
}
#admin-page #content-wrapper #back-button #back-arrow {
  transform: rotate(180deg);
}
#admin-page #content-wrapper #back-button span {
  margin-left: 1rem;
  margin-top: 0.5rem;
}
#admin-page #content-wrapper ol.pager {
  margin: 20px 0 0 0;
  padding: 0;
  text-align: center;
}
#admin-page #content-wrapper ol.pager li {
  list-style: none;
  display: inline-block;
  padding: 0 10px;
}
#admin-page #content-wrapper ol.pager li.page-no span {
  font-weight: bold;
}
#admin-page #content-wrapper ol.pager li.first a, #admin-page #content-wrapper ol.pager li.last a, #admin-page #content-wrapper ol.pager li.next a, #admin-page #content-wrapper ol.pager li.previous a, #admin-page #content-wrapper ol.pager li.page-no a {
  color: #c99d2c;
}
#admin-page #content-wrapper ol.pager li.first a:hover, #admin-page #content-wrapper ol.pager li.last a:hover, #admin-page #content-wrapper ol.pager li.next a:hover, #admin-page #content-wrapper ol.pager li.previous a:hover, #admin-page #content-wrapper ol.pager li.page-no a:hover {
  color: #1d3058;
}
#admin-page #content-wrapper ol.pager li.ellipses {
  padding: 0;
}

#login-page {
  padding: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  padding-bottom: 0;
  padding: clamp(3.00rem, calc(1.93rem + 5.37vw), 5.75rem);
}
#login-page h1 {
  color: #1d3058;
  padding-bottom: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#login-page form .form-group {
  padding: 1rem 0;
  color: #1d3058;
  padding-right: 0;
}
#login-page form .email {
  justify-content: space-around;
}
#login-page form .email label {
  padding-right: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#login-page form .password .wrapper {
  justify-content: space-around;
}
#login-page form .password .wrapper label {
  padding-right: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#login-page form .password a {
  padding-left: 20%;
}
#login-page form .submit {
  padding-top: 0;
  justify-content: space-around;
}
#login-page form .submit label {
  padding-right: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
#login-page form .submit button {
  background-color: #1d3058;
  border-radius: 5px;
  color: white;
  margin-right: 2rem;
}
#login-page form .submit label {
  padding-top: 1rem;
}

footer {
  background-color: white;
  justify-content: center;
  text-align: left;
  padding-left: 0%;
  padding-right: 0;
  padding-bottom: 0%;
}
footer .container {
  max-width: 100vw;
  padding-left: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem);
  padding-right: clamp(4.4rem, calc(2.89rem + 8.05vw), 8.73rem);
  padding-bottom: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
footer .container .col {
  padding: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
}
footer .container .col .text {
  color: #1d3058;
}
footer .container .col .text a:link {
  text-decoration: underline;
  color: #1d3058;
}
footer .container .col .text a:visited {
  text-decoration: underline;
  color: #1d3058;
}
footer .container .col .text a:hover {
  text-decoration: underline;
  color: #c99d2c;
}
footer .container .col .text a:active {
  text-decoration: none;
}
footer .container .col .text a {
  text-decoration: underline;
}
footer .container .col .text span {
  color: #c99d2c;
}
footer .container .col image {
  padding: 0;
  padding-bottom: clamp(1.13rem, calc(0.71rem + 2.07vw), 2.19rem);
}
footer .container .third {
  display: none;
  border-left: 2px solid #c99d2c;
  padding-top: 0;
  margin-top: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  padding: 0;
  padding-left: clamp(1.50rem, calc(0.96rem + 2.68vw), 2.88rem);
  max-height: 350px;
}
footer .self-promo {
  background-color: #ebebeb;
  color: #1d3058;
  padding: 1rem;
  max-width: 100%;
}
footer .self-promo .textwrapper {
  display: flex;
  justify-content: space-between;
}
footer .self-promo .textwrapper a {
  color: #1d3058;
  text-decoration: none;
}
footer .self-promo .textwrapper a:visited {
  color: #1d3058;
  text-decoration: none;
}
footer .self-promo .textwrapper a:hover {
  color: #c99d2c;
  text-decoration: none;
}

@media (min-width: 775px) {
  footer {
    display: grid;
  }
  footer .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1150px) {
  footer {
    display: grid;
  }
  footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  footer .container .col.third {
    display: grid;
    gap: 0.5rem;
  }
  footer .container .col.third img {
    max-width: 200px;
  }
}
footer .worked-with {
  background-color: #ebebeb;
  display: grid;
}
footer .worked-with .content .text p {
  color: #575a5f;
  justify-content: center;
  text-align: left;
  padding-bottom: clamp(0.75rem, calc(0.48rem + 1.34vw), 1.44rem);
}
footer .worked-with .container {
  border-top: 2px solid #b1b1b1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding: clamp(2.25rem, calc(1.45rem + 4.02vw), 4.31rem);
  align-items: center;
}
footer .worked-with .container img {
  place-self: center;
  max-width: 75%;
}
footer .worked-with .container img:nth-child(1) {
  max-width: 90%;
}
footer .worked-with .container img:nth-child(2) {
  max-width: 50%;
}

@media (max-width: 1010px) {
  footer .worked-with .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  footer .worked-with .container img {
    max-width: 40%;
  }
}
@media (max-width: 800px) {
  footer .worked-with .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  footer .worked-with .container img {
    max-width: 40%;
    max-height: 80%;
  }
  footer .worked-with .container img:nth-child(1) {
    max-width: 60%;
  }
  footer .worked-with .container img:nth-child(2) {
    max-width: 20%;
  }
}
#footer .categories {
  display: grid;
}
#footer .categories a {
  position: relative;
  padding: 1px;
}
#footer .categories a p {
  position: absolute;
  top: 75%;
  right: 5%;
  left: 5%;
  bottom: 5%;
  color: white;
  font-size: clamp(1.20rem, calc(1.08rem + 0.60vw), 1.56rem);
  font-weight: bold;
}
#footer .categories a:hover p {
  color: #f1c148;
}
#footer .categories a:hover #lighter-text {
  color: #38538d;
}

@media (min-width: 600px) {
  #footer .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  #footer .categories a:nth-child(3) {
    grid-column: span 2;
  }
}
@media (min-width: 950px) {
  #footer .categories {
    grid-template-columns: repeat(3, 1fr);
  }
  #footer .categories a:nth-child(3) {
    grid-column: revert;
  }
}

/*# sourceMappingURL=site.css.map */
