@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", serif;
  font-size: 1rem;
  color: #000;
  scroll-behavior: smooth;
}
@media (min-width: 768px) {
  * {
    font-size: 1.2rem;
  }
}

a {
  color: unset;
}

h1 {
  font-size: 1.7rem;
  font-weight: 500;
}

header {
  position: absolute;
  z-index: 2400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
header img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-left: 30px;
  max-width: 220px;
}
@media (min-width: 768px) {
  header img {
    margin-left: 50px;
  }
}
@media (min-width: 840px) {
  header img {
    max-width: 320px;
  }
}
header .menu {
  display: none;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 30px;
}
@media (min-width: 768px) {
  header .menu {
    margin: 50px;
  }
}
@media (min-width: 768px) {
  header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .menu .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
header .menu .menu-item a {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-decoration: none;
  margin-left: 30px;
  color: #ECF6F7;
}
@media (min-width: 768px) {
  header .menu .menu-item a {
    margin-left: 50px;
  }
}

.faux-logo {
  height: 120px;
}

.two-up-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  /* todo: min-height */
  /* background-color: #0f0; */
}
@media (min-width: 768px) {
  .two-up-div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.two-up-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* display: block; */
  min-height: 85vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ECF6F7;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.two-up-item p {
  font-size: 1rem;
}
.two-up-item p:not(:first-child) {
  margin-top: 1rem;
}

.two-up-item-text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .two-up-item-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.two-up-item-photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .two-up-item-photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.two-up-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  height: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* background-color: #90f; */
}
@media (min-width: 768px) {
  .two-up-text-block {
    padding: 50px;
  }
}
.two-up-text-block img {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.two-up-text-block p {
  display: block;
  color: #2B6ED9;
}
.two-up-text-block h1 {
  color: #2B6ED9;
}

.two-up-text-only-item {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.two-up-text-hero-text-block {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}
.two-up-text-hero-text-block p {
  font-size: 1.2rem !important;
}

.two-up-text-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.justify-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.margin-to-button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .margin-to-button {
    margin-top: 50px;
  }
}

.button {
  display: inline-block;
  background-color: #2B6ED9;
  padding: 18px 30px;
  color: #ECF6F7;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-decoration: none;
}

.two-up-item-bottom-aligned {
  -ms-flex-item-align: end;
      align-self: flex-end;
  /* background-color: #0f0; */
}
.two-up-item-bottom-aligned p {
  margin-top: 1rem;
}

.info-enclosed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: #ECF6F7;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-decoration: none;
  padding: 18px 30px;
  border: 1px solid;
  border-color: #ECF6F7;
}

#hero-image {
  background: url(images/hero-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #2B6ED9;
}

#about-us-image {
  background: url(images/rotorua-pohutu-lookout.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#about-us-image-2 {
  background: url(images/enable-surveying-vehicle.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.service-areas-section {
  display: block;
  padding: 30px;
  color: #ECF6F7;
  background-color: #2B6ED9;
}
@media (min-width: 768px) {
  .service-areas-section {
    padding: 50px;
  }
}
.service-areas-section h1 {
  color: #ECF6F7;
}

.service-areas-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 10% 45%;
  grid-template-columns: 45% 45%;
  -webkit-column-gap: 10%;
     -moz-column-gap: 10%;
          column-gap: 10%;
  row-gap: 40px;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .service-areas-list {
    -ms-grid-columns: 16% 5% 16% 5% 16% 5% 16% 5% 16%;
    grid-template-columns: 16% 16% 16% 16% 16%;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}

.service-area {
  color: #ECF6F7;
  font-size: 0.9em;
  display: block;
}
.service-area img {
  display: block;
  width: 90px;
}
.service-area .service-divider {
  display: block;
  margin-top: 30px;
  margin-bottom: 10px;
  width: 100%;
  border-top: 1px solid #ECF6F7;
}

.contact-section {
  padding: 30px;
  color: #ECF6F7;
  background-color: #2B6ED9;
  height: 100%;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 50px;
  }
}
.contact-section h1 {
  font-weight: 400;
  color: #ECF6F7;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact-section h1 {
    margin-bottom: 50px;
  }
}
.contact-section p {
  color: #ECF6F7;
}

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

.two-up-contact-div {
  height: auto !important;
}
.two-up-contact-div img {
  position: relative;
  right: 0px;
  margin-bottom: 20px;
  max-width: 220px;
}
@media (min-width: 768px) {
  .two-up-contact-div img {
    max-width: 320px;
  }
}

.two-up-contact-item {
  background-color: #2B6ED9;
  min-height: auto !important;
}

.divider-section {
  background-color: #2B6ED9;
  padding: 0px 30px;
}
@media (min-width: 768px) {
  .divider-section {
    padding: 0px 50px;
  }
}

.divider-line {
  border-top: 1px solid #ECF6F7;
}

.footer-image {
  background: url(images/footer-graphic-png8.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 85vh;
  background-color: #2B6ED9;
}

.teeny {
  font-size: 0.8rem;
}