@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Bold.woff2') format("woff2"), url('../fonts/GoogleSans-Bold.eot') format("embedded-opentype"), url('../fonts/GoogleSans-Bold.woff') format("woff"), url('../fonts/GoogleSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Medium.woff2') format("woff2"), url('../fonts/GoogleSans-Medium.eot') format("embedded-opentype"), url('../fonts/GoogleSans-Medium.woff') format("woff"), url('../fonts/GoogleSans-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Googlesans;
  src: url('../fonts/GoogleSans-Regular.woff2') format("woff2"), url('../fonts/GoogleSans-Regular.eot') format("embedded-opentype"), url('../fonts/GoogleSans-Regular.woff') format("woff"), url('../fonts/GoogleSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Bold.ttf') format("truetype"), url('../fonts/Poppins-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.header-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
}

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

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

.btn-arrow-line {
  opacity: 0;
  transform-origin: 100%;
  width: 12px;
  height: 2px;
  transform-style: preserve-3d;
  background-color: currentColor;
  margin-right: -7px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
  transform: scale3d(0, 1, 1);
}

.btn-arrow {
  border-bottom: 2px solid;
  border-right: 2px solid;
  width: 8px;
  height: 8px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
  position: relative;
  transform: rotate(-45deg);
}

.navbar {
  background-color: #e4b9a3;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #e4b9a3, #e8bfaa 13%, #f1d0c0 27%, #f3d0be 50%, #f1d0c0 69%, #e9c0ac 84%, #e5bba5 96%, #e4b9a3);
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
}

.btn-text {
  pointer-events: none;
  font-weight: 600;
  line-height: 1.5;
}

.btn-arrow-wrapper {
  justify-content: flex-start;
  align-items: center;
  transition: all .3s ease-in-out;
  transform: translate(-12px);
}

.btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  letter-spacing: .5px;
  cursor: pointer;
  background-color: #e5bba5;
  border: 1px solid #0000;
  border-radius: 15px;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: all .3s ease-in-out;
  display: inline-flex;
}

.btn.btn-primary {
  color: #fff;
  background-color: #00ac8d;
  border-color: #00ac8d;
}

.btn.btn-primary:hover {
  background-color: #002a4d;
  border-color: #002a4d;
}

.btn.btn-primary {
  color: #fff;
  background-color: #e4b9a3;
  border-color: #1b2a41;
  border-radius: 12px;
  min-width: auto;
}

.btn.btn-primary:hover {
  color: #002a4d;
  background-color: #fff;
  border-color: #1b2a41;
}

.btn.btn-primary.in-txt {
  margin-top: 40px;
}

.nav-link {
  color: #342e2c;
  letter-spacing: 0;
  font-family: Newsreader, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.nav-link.enq {
  color: #fff;
}

.header-img-content {
  padding-left: 0;
}

.header {
  z-index: 999;
  font-family: Googlesans, Arial, sans-serif;
  position: sticky;
  top: 0;
  box-shadow: 4px 4px 6px #00000045;
}

.nav-option {
  color: #002a4d;
  padding: 10px;
  transition: all .3s ease-in-out;
}

.nav-option:hover {
  color: #00ac8d;
}

.nav-option.contact {
  background-color: #e4b9a3;
  border-radius: 12px;
  margin-left: 20px;
}

.header-img {
  max-width: 260px;
  height: auto;
  max-height: 75px;
}

.main {
  flex: 1;
  font-family: Fahkwang;
}

.social-media-item {
  color: #00ac8d;
  transition: all .3s;
}

.social-media-item:hover {
  color: #fff;
  border-color: #fff;
}

.footer {
  color: #fff;
  background-color: #0d1b2a;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  font-family: Googlesans, Arial, sans-serif;
}

.footer-link {
  color: #00ac8d;
  border-bottom: 1px solid #0000;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.footer-link:hover {
  border-bottom-color: #00ac8d;
}

.social-media-img {
  max-width: 20px;
  max-height: 20px;
  display: block;
}

.footer-wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright-logo-img {
  width: 16px;
  margin-top: -3px;
  margin-right: 5px;
}

.copyright-text {
  align-self: center;
  font-size: 14px;
  display: inline;
}

.social-media-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.slider {
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  font-family: Poppins, Arial, sans-serif;
  display: flex;
  overflow: hidden;
}

.slider.contact {
  padding-top: 0;
}

.slider.hero {
  background-color: #fff;
  padding-top: 0;
}

.slider-content-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.slider-text-title {
  font-family: Newsreader, sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

.slider-text-span {
  color: #1b2a41;
  font-weight: 700;
  display: block;
}

.slider-description {
  max-width: 400px;
  font-family: Newsreader, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.slider-wave {
  z-index: 2;
  color: #fff;
  margin-top: -.6vw;
  display: inline-block;
  position: absolute;
  inset: 0% 0% auto;
}

.slider-wave.wave-bottom {
  margin-bottom: -.6vw;
  inset: auto 0% 0%;
  transform: rotate(-180deg);
}

.slider-main {
  z-index: 2;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.slider-main.contact {
  margin-top: 0;
}

.splide__list {
  align-items: stretch;
}

.splide__slide {
  flex: none;
  width: 33.3333%;
  height: 600px;
  padding-left: 5px;
  padding-right: 5px;
}

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

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

.controls {
  z-index: 8;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: auto;
  left: 0%;
  right: 0%;
}

.control {
  z-index: 2;
  aspect-ratio: 1;
  color: #0d0628;
  border: 2px solid #0d0628;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.control.next-splide {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.control__arrow {
  aspect-ratio: 1;
  width: 30px;
}

.btn-text-2 {
  pointer-events: none;
  margin-top: 1px;
}

.slider-content-wrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  align-items: flex-start;
}

.medium-text {
  color: #282f48;
  font-size: 18px;
  line-height: 28px;
}

.medium-heading {
  color: #282f48;
  text-align: center;
  font-family: Newsreader, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
}

.icon-row-image {
  flex: none;
  max-width: 50px;
  margin-right: 14px;
}

.uppercase {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.uppercase.subtitle {
  color: #e4b9a3;
  text-align: center;
  text-underline-offset: 2px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 28px;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-decoration-thickness: 2px;
}

.uppercase.subtitle.white {
  color: #303030;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.uppercase.subtitle.white._2 {
  margin-bottom: 0;
}

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

.icon-row-item {
  align-items: center;
  margin-left: 28px;
  margin-right: 28px;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: 940px;
}

.container-large.align-center {
  margin-left: auto;
  margin-right: auto;
}

.section {
  text-align: center;
  background-color: #fff0;
  padding-top: 112px;
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
}

.section.home {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 40px;
}

.section.home.thanks {
  padding-bottom: 100px;
}

.icon-row {
  justify-content: center;
  align-items: center;
  margin-top: 56px;
  display: flex;
}

.main-container {
  z-index: 1;
  text-align: left;
  max-width: 1328px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
}

.service-heading {
  margin-bottom: 20px;
  font-family: Newsreader, sans-serif;
  font-weight: 500;
}

.service-heading.margin-bottom.margin-tiny {
  font-family: Newsreader, sans-serif;
  font-weight: 500;
}

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

.service-heading.white {
  color: #fff;
}

.service-heading.clr-bck {
  color: #494949;
}

.section-service {
  text-align: left;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-service.colour {
  background-color: #ffd8c5;
  background-image: linear-gradient(#ffd8c5 15%, #f5e2d8 30% 70%, #ffd8c5 85%);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section-service.colour._2 {
  padding-bottom: 140px;
}

.section-service.colour.btm {
  background-image: linear-gradient(#ffd8c5 62%, #f5e2d8);
  padding-bottom: 100px;
}

.section-service.colour.nrml {
  background-image: linear-gradient(#fff7f4, #fff6f1 30% 70%, #fff7f4);
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-service.cntr {
  text-align: center;
}

.section-service.events {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-service._2 {
  padding-top: 20px;
}

.section-service.buttons {
  padding-top: 0;
  padding-bottom: 0;
}

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

.service-description {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.service-description.centre {
  text-align: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.4;
}

.service-description.centre.px {
  margin-bottom: 40px;
}

.service-description.clr-bck {
  color: #696969;
  font-size: 18px;
  line-height: 1.4;
}

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

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

.container-large-2 {
  text-align: left;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-wrapper.inverse {
  flex-flow: row-reverse wrap;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global._2-sec {
  margin-top: 60px;
  margin-bottom: 40px;
}

.dark-maroon-gradient-line {
  background-image: linear-gradient(270deg, #6e000000, #6e0000 50%, #6e000000 104%);
  width: 100%;
  max-width: 14.68rem;
  height: 1px;
}

.shadow-two {
  border-radius: 10px;
  box-shadow: 4px 4px 12px #0000004f;
}

.shadow-two.x {
  max-width: 90%;
}

.body {
  background-color: #fff;
  font-family: Newsreader, sans-serif;
}

.section-title {
  margin-top: 0;
  margin-bottom: 0;
}

.section-title.centre {
  text-align: center;
  margin-bottom: 40px;
  font-family: Newsreader, sans-serif;
  font-size: 22px;
  font-weight: 200;
}

.section-title-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #333;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 46%;
  max-width: 450px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6em;
  display: flex;
}

.process-content-container {
  color: #3b3333;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.process-card-title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
}

.process-card-title.pink {
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.process-card-container {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 55%;
  display: flex;
}

.process-card-container.grid {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 55%;
  display: flex;
}

.link-arrow {
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  display: flex;
  position: relative;
}

.project-link {
  grid-column-gap: 10px;
  color: #fff;
  align-items: center;
  margin-left: -10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.project-link:hover {
  color: #75a729;
}

.project-link.px-above {
  margin-top: 20px;
}

.process-card {
  grid-row-gap: 20px;
  background-color: #fff;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 20px;
  display: flex;
}

.process-card.mini {
  grid-row-gap: 10px;
  opacity: 1;
  background-color: #ffd9c5;
  border-radius: 0;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 45%;
  min-width: auto;
  padding: 10px 10px 10px 20px;
  box-shadow: 2px 2px 4px #00000054;
}

.service-card-title {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1em;
}

.service-card-title.category-home {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
}

.in-page-logo {
  width: 100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.in-page-logo.mini {
  width: 50px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.in-page-logo.hero {
  margin-bottom: 0;
}

.in-page-logo.cs {
  width: 200px;
}

.service-cards-wrapper {
  grid-column-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.service-cards-wrapper.category-home {
  grid-column-gap: 10px;
  margin-top: 10px;
}

.service-card {
  background-color: #4454fe00;
  background-image: linear-gradient(144deg, #ff6f4c24, #4454fe24);
  padding: 50px;
  transition: all .4s;
}

.service-card:hover {
  background-color: #4454fe1a;
}

.service-card.category-home {
  text-align: center;
  background-color: #e4b9a3;
  background-image: linear-gradient(144deg, #e4b9a3, #dac1b5);
  flex-flow: column;
  align-items: center;
  width: 25%;
  padding: 10px 20px 0;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.service-card.category-home._1-3 {
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 33%;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.service-card.category-home.vertical {
  background-color: #fff;
  background-image: none;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
  display: flex;
}

.service-card.category-home.mini {
  width: 45%;
}

.list {
  width: auto;
  margin: 10px auto 20px;
}

.list.clr-bck {
  color: #6a6a6a;
}

.socials-wrapper {
  z-index: 1;
  grid-column-gap: 1.1vw;
  grid-row-gap: 1.1vw;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-right-flex {
  grid-column-gap: 8vw;
  grid-row-gap: 8vw;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.max-width-17vw {
  max-width: 17vw;
}

.footer-flex {
  grid-column-gap: 1.1vw;
  grid-row-gap: 1.1vw;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-wrapper-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-link-2 {
  color: #000;
  text-align: left;
  font-size: 12px;
  line-height: 1.78vw;
}

.footer-link-2.move-down {
  position: absolute;
  top: 100%;
}

.footer-2 {
  width: 100%;
}

.footer-2.background-primary {
  background-color: #fce4a1;
}

.footer-link-wrapper {
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-block {
  grid-column-gap: .6vw;
  grid-row-gap: .6vw;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.footer-bottom-text {
  color: #000;
}

.footer-bottom {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 2.2vw;
  padding-bottom: 2.2vw;
  display: flex;
}

.footer-logo {
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 50px;
  max-height: 50px;
}

.footer-logo-link-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.container-3.padding-4-5rem {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.container-3.padding-4-5rem.ft {
  background-color: #e4b9a3;
}

.footer-line {
  grid-column-gap: 2.2vw;
  grid-row-gap: 2.2vw;
  text-align: center;
  background-color: #050505;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: .07vw;
  display: flex;
}

.space-2rem {
  min-height: 2.2vw;
}

.social-icon {
  object-fit: cover;
  background-image: radial-gradient(circle closest-side, #dbec62 80%, #050505 90%);
  border-radius: 100%;
  min-width: 2.2vw;
  max-width: 2.2vw;
  min-height: 2.2vw;
  max-height: 2.2vw;
}

.social-icon.smaller {
  background-image: none;
  min-width: 1.1vw;
  max-width: 1.1vw;
  min-height: 1.1vw;
  max-height: 1.1vw;
}

.footer-flex-bottom {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-top {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4.4vw;
  padding-bottom: 4.4vw;
  display: flex;
}

.lynx-nav-info {
  background-color: #e4b9a3;
  border-bottom: 1px #dfdad2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 20px;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.lynx-nav-block {
  text-transform: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 94%;
  display: flex;
}

.nav {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.button-group-2 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  margin-top: 20px;
  font-weight: 400;
  display: flex;
}

.button-group-2.centre {
  justify-content: center;
}

.button-group-2.centre.px-btm {
  margin-bottom: 20px;
}

.text-button {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.text-button:hover {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  color: #0e3a28;
}

.text-block-4 {
  color: #c59f8b;
  font-weight: 400;
}

.text-block-4.white {
  color: #000;
}

.button-icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  display: inline-flex;
}

.svg {
  color: #1b2a41;
}

.path {
  color: #c59f8b;
}

.path.white {
  color: #000;
}

.contact-icon-div-2 {
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.text-block-5 {
  color: #6f0000;
  font-weight: 400;
}

.text-block-5.contact {
  color: #1b2a41;
  font-weight: 600;
}

.text-button-2 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #000;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.text-button-2:hover {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  color: #0e3a28;
}

.text-button-2.contact {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.button-group-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  font-weight: 400;
  display: flex;
}

.icon-col {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.combine-icon_large-4 {
  color: #e4b9a3;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 10px;
  margin-left: 40px;
  margin-right: 40px;
}

.contact-icon-columns-2 {
  width: 60%;
  padding-top: 0;
  padding-bottom: 0;
}

.service-heading-2.margin-bottom.margin-tiny.centre {
  text-align: center;
}

.contact-icon-div-3 {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

.text-block-6 {
  color: #6f0000;
  font-weight: 400;
}

.text-block-6.contact {
  color: #1b2a41;
  font-weight: 600;
}

.text-button-3 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #000;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.text-button-3:hover {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  color: #0e3a28;
}

.text-button-3.contact {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.contact-container {
  z-index: 99999;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  align-items: center;
  width: 50%;
  max-width: none;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 14px 4px #0003;
}

.in-page-logo-2 {
  width: 75px;
}

.form-holding-div {
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  padding-bottom: 10px;
  display: flex;
}

.svg-2 {
  color: #1b2a41;
}

.application-section {
  margin-top: -300px;
  padding-bottom: 0;
}

.button-group-4 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  font-weight: 400;
  display: flex;
}

.icon-col-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.combine-icon_large-5 {
  color: #e4b9a3;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.contact-icon-columns-3 {
  width: 85%;
  padding-top: 0;
  padding-bottom: 0;
}

.section-hero {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.section-hero.subpage {
  background-image: none;
  background-position: 0 0;
  height: 60vh;
}

.hero-background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#19000080, #19000080), url('../images/WhatsApp-Image-2025-11-03-at-10.21.38-2.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.hero-background-image-wrapper.sub {
  background-image: linear-gradient(#0000000f, #0000000f), url('../images/PHOTO-2025-10-27-11-24-14.jpg');
  background-position: 0 0, 50% 45%;
}

.wave {
  background-image: url('../images/Health--Safety-9.png'), linear-gradient(#fcd6c3, #fcd6c3);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  border-top: 1px #000;
  min-height: 12vw;
  margin-bottom: 100px;
}

.wave._2 {
  background-image: url('../images/Health--Safety-10.png'), linear-gradient(#0000, #0000);
  margin-top: 100px;
  margin-bottom: 0;
}

.path-2, .path-3 {
  color: #fff;
}

.subhead-3 {
  color: #fffffff7;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.subhead-3.home {
  width: 90%;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
  font-family: Newsreader, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}

.footer10_social-list {
  grid-column-gap: .5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

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

.icon-embed-xsmall-2._2 {
  color: #f3d1c0;
  width: 2rem;
  height: 2rem;
}

.lynx-nav-button-green-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background-color: #707170;
  border-radius: 8px;
  padding: 15px 25px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .2s;
}

.lynx-nav-button-green-2:hover {
  background-color: #000000cf;
}

.hero-section-2 {
  background-image: linear-gradient(to right, #050c14ad, #fff0), url('../images/partnerimg.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding: 290px 10% 250px;
}

.hero-section-2.spaced {
  background-image: linear-gradient(54deg, #050c14b3 18%, #fff0 68%, #ffffff12 96%), url('../images/PHOTO-2025-10-27-11-24-14.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 88vh;
  margin-left: 0;
  margin-right: 0;
  padding: 200px 5% 140px;
}

.div-content-hero {
  width: 65%;
}

.div-content-hero._60 {
  width: 55%;
}

.headline-2 {
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 68px;
  line-height: 82px;
}

.headline-2.non-responsive {
  margin-top: 20px;
  font-family: Newsreader, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.footer10_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.image {
  width: 50px;
  margin-right: 10px;
}

.hearts {
  opacity: .31;
  background-image: url('../images/Health--Safety-12.png');
  background-position: 50%;
  background-size: cover;
  min-height: 125px;
  position: absolute;
  inset: 8% 0% auto;
}

.hearts.sub {
  top: 15%;
}

.image-2 {
  margin-top: 20px;
  margin-left: auto;
  box-shadow: 0 2px 5px #0003;
}

.container-4 {
  margin-top: 20px;
}

.html-embed {
  color: #000;
  text-align: left;
  border-radius: 12px;
  width: 100%;
  min-width: auto;
  max-width: none;
  margin: 0 auto;
  font-family: Newsreader, sans-serif;
  line-height: 1.8;
}

.section-title-container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #333;
  flex-direction: column;
  width: 46%;
  max-width: 450px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6em;
  display: flex;
}

.contact-content-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.section-tag-container {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  font-size: 11px;
  line-height: 1em;
  display: flex;
}

.section-tag-line {
  background-image: linear-gradient(90deg, #fff0, #e6bba5);
  flex: 1;
  height: 1px;
  margin-left: 20px;
}

.section-wrapper {
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.section-wrapper.glow-1 {
  background-image: radial-gradient(circle closest-corner at 0%, #9afcab1a, #ff6f4c00);
}

.section-wrapper.glow-1.x {
  background-image: radial-gradient(circle closest-corner at 0%, #e4b9a3, #e5d1c7);
}

.contact-form-container {
  grid-row-gap: 5px;
  flex-direction: column;
  width: 50%;
  display: flex;
}

.section-container {
  flex: 1;
  max-width: 1400px;
}

.section-container.contact {
  padding-top: 0;
  padding-bottom: 0;
}

.section-container.service {
  padding-top: 60px;
  padding-bottom: 100px;
}

.section-container.service.cs {
  height: 100vh;
  padding-top: 200px;
}

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

.image-3 {
  box-shadow: 2px 2px 5px #0003;
}

.fixed-image {
  background-image: url('../images/ldcic-11.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 40vh;
}

.button-arrow {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
  position: relative;
}

.project-marquee {
  width: 50%;
  margin-top: 4px;
  display: flex;
}

.projects-marquee-container {
  width: 240vw;
  display: flex;
}

.project-thumbnail-container {
  border-radius: 12px;
  min-width: 30%;
  margin-left: 2px;
  margin-right: 2px;
  box-shadow: 2px 2px 3px #0006;
}

.button-2 {
  grid-column-gap: 15px;
  grid-row-gap: 12px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: #2c2d37cc;
  border: 1px solid #fff;
  border-radius: 50px;
  align-items: center;
  padding: 12px 13px 12px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition-duration: .4s;
  display: flex;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.arrow-circle {
  background-image: linear-gradient(138deg, #7eb13c, #9cc589);
  border-radius: 50%;
  padding: 12px;
}

.projects-wrapper {
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.explore-button-wrapper {
  z-index: 2;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.explore-button-copntainer {
  flex: 1;
  justify-content: flex-end;
  max-width: 1400px;
  padding-bottom: 0;
  display: flex;
}

.section-3 {
  margin-top: 40px;
}

.image-4 {
  border-radius: 12px;
}

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

.grid-img {
  border-radius: 14px;
}

.section-tag-container-2 {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  font-size: 11px;
  line-height: 1em;
  display: flex;
}

.body-2 {
  font-family: Newsreader, sans-serif;
}

.coming-soon {
  text-align: center;
}

.link-19 {
  color: #c5c5c5;
}

.logos {
  padding-top: 40px;
}

.logo-col {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.logo-col.embed {
  width: 40%;
  margin-bottom: 20px;
}

.columns {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.columns.images {
  width: 60%;
  margin-top: 40px;
}

.buttons-div {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

@media screen and (min-width: 1280px) {
  .service-card {
    padding: 55px;
  }
}

@media screen and (min-width: 1440px) {
  .header-wrapper {
    padding-left: 60px;
  }

  .nav-link {
    font-size: 15px;
  }

  .nav-option {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-option.w--current {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-option.contact {
    background-color: #e4b9a3;
    border-radius: 12px;
    box-shadow: 0 2px 5px #0003;
  }

  .header-img {
    max-width: 280px;
    max-height: 85px;
  }

  .slider {
    padding-bottom: 0;
  }

  .slider.hero {
    padding-bottom: 60px;
  }

  .slider-text-span {
    margin-bottom: 10px;
  }

  .slider-main {
    margin-bottom: 0;
  }

  .section-service.colour.btm {
    padding-bottom: 100px;
  }

  .section-service.colour.nrml {
    background-image: linear-gradient(#ffede4, #fff6f1 30% 70%, #ffede4);
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-service._2 {
    padding-top: 20px;
  }

  .section-service.buttons {
    padding-top: 60px;
  }

  .padding-global._2-sec {
    margin-top: 100px;
  }

  .shadow-two.x {
    margin-top: 20px;
  }

  .section-title-container {
    max-width: 500px;
  }

  .process-card-title {
    font-size: 22px;
  }

  .process-card-container {
    width: 50%;
  }

  .process-card-container.grid {
    grid-column-gap: 10px;
    justify-content: flex-end;
  }

  .process-card {
    background-color: #fff;
    flex-flow: row;
    align-items: center;
    padding: 15px 20px;
  }

  .process-card.mini {
    background-color: #ffd9c5;
  }

  .service-card-title {
    font-size: 26px;
  }

  .service-card {
    font-size: 15px;
  }

  .service-card.category-home.mini {
    padding-left: 25px;
    padding-right: 25px;
  }

  .lynx-nav-info {
    background-color: #e4b9a3;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 500;
  }

  .lynx-nav-block {
    justify-content: space-between;
  }

  .nav {
    font-size: 13px;
  }

  .nav.no-mob {
    font-size: 14px;
  }

  .contact-container {
    width: 40%;
  }

  .subhead-3.home {
    font-size: 24px;
    line-height: 1.2;
  }

  .icon-embed-xsmall-2._2 {
    width: 2rem;
    height: 2rem;
  }

  .lynx-nav-button-green-2 {
    padding: 20px 30px;
    font-size: 15px;
  }

  .hero-section-2.spaced {
    background-position: 0 0, 50% 60%;
    height: auto;
    padding: 240px 5% 120px;
  }

  .div-content-hero._60 {
    width: 50%;
  }

  .headline-2.non-responsive {
    text-shadow: 1.5px 1.5px 1px #2e2e2e;
    margin-bottom: 15px;
    font-size: 64px;
    line-height: 1.1;
  }

  .image-2 {
    border: 1px solid #b4b4b4;
    min-width: 100%;
    box-shadow: 2px 2px 5px #00000069;
  }

  .container-4 {
    max-width: 95%;
  }

  .html-embed {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title-container-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    max-width: 500px;
  }

  .section-container.contact {
    padding-top: 60px;
  }

  .section-container.service.cs {
    width: 250px;
  }

  .fixed-image {
    background-image: url('../images/ldcic-11.png');
  }

  .project-thumbnail-container {
    width: 352.6px;
    min-width: 352.6px;
    max-width: 352.6px;
  }

  .button-2 {
    font-size: 17px;
  }

  .image-4 {
    max-width: 100%;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin-top: 40px;
  }

  .grid-img {
    border-radius: 14px;
    box-shadow: 2px 2px 5px #0003;
  }

  .logos {
    padding-top: 100px;
  }

  .logo-col {
    width: 70%;
  }

  .logo-col.embed {
    width: 50%;
  }

  .columns {
    width: 70%;
  }
}

@media screen and (min-width: 1920px) {
  .section-title {
    font-size: 40px;
  }

  .section-title-container {
    max-width: 530px;
  }

  .process-card-container {
    grid-row-gap: 5px;
    flex-direction: column;
  }

  .service-card {
    padding: 60px;
  }

  .section-title-container-2 {
    max-width: 530px;
  }

  .contact-form-container {
    grid-row-gap: 5px;
    flex-direction: column;
  }

  .projects-marquee-container {
    width: 200vw;
  }
}

@media screen and (max-width: 991px) {
  .nav-link.enq {
    color: #342e2c;
  }

  .nav-option.contact {
    background-color: #fff0;
    border-radius: 0;
    margin-left: 0;
  }

  .copyright-wrapper {
    text-align: center;
  }

  .footer-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .slider {
    min-height: calc(100vh - var(--headerHeight)  - var(--footerHeight));
  }

  .slider-description {
    font-size: 14px;
  }

  .splide__slide {
    height: 400px;
  }

  .icon-row-item {
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-title-container {
    font-size: 15px;
  }

  .process-card {
    grid-row-gap: 10px;
    padding: 30px;
  }

  .process-card.mini {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card {
    padding: 35px 25px;
  }

  .service-card:hover {
    background-color: #4454fe00;
  }

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

  .footer-right-flex {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .max-width-17vw {
    max-width: 15rem;
  }

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

  .footer-wrapper-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .footer-link-2 {
    font-size: .9rem;
    line-height: 1.6rem;
  }

  .footer-block {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .footer-bottom {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-logo {
    min-height: 2rem;
    max-height: 2rem;
  }

  .footer-logo-link-wrapper {
    z-index: 1000000;
  }

  .container-3.padding-4-5rem {
    padding-left: 10%;
    padding-right: 10%;
  }

  .footer-line {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    height: .06rem;
  }

  .space-2rem {
    min-height: 2rem;
  }

  .social-icon {
    min-width: 2rem;
    max-width: 2rem;
    min-height: 2rem;
    max-height: 2rem;
  }

  .social-icon.smaller {
    min-width: 1rem;
    max-width: 1rem;
    min-height: 1rem;
    max-height: 1rem;
  }

  .footer-top {
    max-width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lynx-nav-info {
    display: flex;
  }

  .nav {
    font-size: 10px;
    line-height: 1;
  }

  .icon-col {
    margin-bottom: 20px;
  }

  .combine-icon_large-4 {
    margin-bottom: 10px;
  }

  .contact-icon-columns-2 {
    flex-flow: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .icon-col-2 {
    margin-bottom: 20px;
  }

  .combine-icon_large-5 {
    margin-bottom: 10px;
  }

  .contact-icon-columns-3 {
    flex-flow: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .wave {
    min-height: 5rem;
  }

  .subhead-3.home {
    width: 90%;
  }

  .footer10_social-list {
    margin-bottom: 2rem;
  }

  .hero-section-2.spaced {
    margin-left: 0;
    margin-right: 0;
    padding: 200px 5% 150px;
  }

  .div-content-hero, .div-content-hero._60 {
    width: 100%;
  }

  .headline-2 {
    font-size: 52px;
    line-height: 1;
  }

  .html-embed {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
  }

  .section-title-container-2 {
    font-size: 15px;
  }

  .section-tag-container {
    margin-bottom: 50px;
  }

  .section-container.contact {
    padding-top: 0;
    padding-bottom: 220px;
  }

  .section-container.service {
    padding-top: 40px;
  }

  .projects-marquee-container {
    width: 250vw;
  }

  .project-thumbnail-container {
    margin-left: 1px;
    margin-right: 1px;
  }

  .button-2 {
    padding: 8px 9px 8px 21px;
  }

  .button-2:hover {
    transform: none;
  }

  .section-tag-container-2 {
    margin-bottom: 50px;
  }

  .columns {
    width: 90%;
  }

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

@media screen and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-menu {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header-btn {
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 40px;
  }

  .header-btn.w--open {
    color: #000;
    background-color: #c8c8c800;
  }

  .btn {
    padding: 16px 32px;
  }

  .header-btn-icon {
    background-color: #0000;
  }

  .nav-option {
    width: 100%;
  }

  .footer-wrapper {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: center;
    align-items: center;
  }

  .copyright-text {
    line-height: 1.6;
  }

  .slider {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .slider-content-wrapper {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .slider-text-title {
    text-align: center;
    max-width: none;
    font-size: 28px;
  }

  .slider-description {
    text-align: center;
  }

  .slider-main {
    margin-top: 40px;
  }

  .splide__slide {
    height: 280px;
  }

  .slider-content-wrap {
    justify-content: center;
    align-items: center;
  }

  .medium-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .icon-row-item {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .icon-row {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-top: 28px;
    display: grid;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title.centre {
    text-align: left;
  }

  .section-title-container {
    width: 100%;
    max-width: none;
  }

  .process-content-container {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .process-card-container {
    width: 100%;
  }

  .link-arrow {
    width: 9px;
    height: 9px;
  }

  .project-link {
    font-size: 14px;
  }

  .process-card {
    grid-row-gap: 15px;
    padding: 40px;
  }

  .process-card.mini {
    padding-left: 40px;
    padding-right: 40px;
  }

  .service-card-title {
    font-size: 22px;
  }

  .in-page-logo {
    margin-left: 0;
  }

  .service-cards-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .service-cards-wrapper.category-home {
    flex-flow: column;
    align-items: stretch;
    margin-top: 20px;
  }

  .service-card {
    padding: 40px;
  }

  .service-card.category-home {
    width: 100%;
  }

  .footer-right-flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer-block {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-link-wrapper {
    padding-left: 0;
  }

  .footer-top {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }

  .contact-container {
    width: 80%;
  }

  .application-section {
    padding-bottom: 90px;
  }

  .wave {
    min-height: 3.5rem;
  }

  .subhead-3 {
    width: 85%;
  }

  .subhead-3.home {
    margin-left: auto;
    margin-right: auto;
  }

  .footer10_social-list {
    justify-content: center;
  }

  .hero-section-2.spaced {
    padding: 180px 2% 120px;
  }

  .div-content-hero {
    text-align: center;
  }

  .headline-2 {
    text-align: center;
    font-size: 52px;
    line-height: 64px;
  }

  .headline-2.non-responsive {
    display: block;
  }

  .html-embed {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .section-title-container-2 {
    width: 100%;
    max-width: none;
  }

  .contact-content-container {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .section-tag-container {
    margin-bottom: 40px;
    font-size: 10px;
  }

  .contact-form-container {
    width: 100%;
  }

  .section-container {
    max-width: 500px;
  }

  .section-container.contact {
    padding-top: 75px;
    padding-bottom: 160px;
  }

  .button-arrow {
    width: 10px;
    height: 10px;
  }

  .projects-marquee-container {
    width: 320vw;
  }

  .button-2 {
    font-size: 15px;
  }

  .projects-wrapper {
    padding-bottom: 80px;
  }

  .explore-button-copntainer {
    padding-bottom: 50px;
  }

  .section-tag-container-2 {
    margin-bottom: 40px;
    font-size: 10px;
  }

  .columns {
    width: 60%;
  }
}

@media screen and (max-width: 479px) {
  .header-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.full-width {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu {
    z-index: 99999;
    background-color: #fff;
  }

  .header-btn {
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .btn {
    min-width: auto;
    padding: 14px 28px;
  }

  .btn.btn-primary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn.btn-primary.stack {
    padding: 10px;
    font-size: 14px;
  }

  .header-btn-icon {
    color: #000;
    background-color: #fff0;
    font-size: 38px;
  }

  .header {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-img {
    max-width: 90px;
    max-height: none;
  }

  .copyright-text {
    font-size: 14px;
  }

  .slider {
    padding-bottom: 20px;
  }

  .slider.hero {
    padding-bottom: 60px;
  }

  .slider-text-title {
    text-align: center;
  }

  .splide__slide {
    width: 100%;
    max-width: 90%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .splide__slide.full-width {
    max-width: 100%;
  }

  .medium-text {
    font-size: 16px;
  }

  .medium-heading {
    font-size: 18px;
    line-height: 1.3;
  }

  .icon-row-image {
    max-width: 40px;
  }

  .uppercase.subtitle {
    margin-bottom: 14px;
  }

  .uppercase.subtitle.white {
    font-size: 12px;
  }

  .section.home {
    padding-top: 60px;
  }

  .icon-row {
    place-items: flex-start center;
  }

  .service-heading.margin-bottom.margin-tiny, .service-heading.clr-bck {
    text-align: center;
  }

  .service-heading.cntr-mob {
    text-align: center;
    margin-bottom: 0;
  }

  .service-heading.cntr-mob.x {
    margin-bottom: 20px;
  }

  .section-service {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-service.colour._2, .section-service.colour.btm {
    padding-bottom: 60px;
  }

  .section-service.colour.nrml {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-service.colour.nrml._2 {
    padding-top: 0;
  }

  .hero-split {
    text-align: center;
    align-items: center;
  }

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

  .service-description.centre {
    width: auto;
  }

  .service-description.centre.px._2 {
    margin-bottom: 20px;
  }

  .service-description.clr-bck {
    text-align: center;
  }

  .service-description.l-mob {
    text-align: left;
  }

  .container-2 {
    width: 100%;
    max-width: none;
  }

  .hero-wrapper.inverse-mob {
    flex-flow: wrap-reverse;
  }

  .shadow-two.x {
    max-width: 100%;
    display: none;
  }

  .section-title.centre {
    font-size: 16px;
  }

  .section-title-container {
    align-items: center;
  }

  .process-card-container.grid {
    width: 100%;
  }

  .project-link.px-above {
    margin-top: 0;
  }

  .process-card {
    padding: 30px 20px;
  }

  .process-card.mini {
    grid-row-gap: 0px;
    padding: 20px 20px 10px;
  }

  .service-card-title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .service-card-title.category-home {
    text-align: center;
    margin-bottom: 0;
    font-size: 18px;
  }

  .in-page-logo {
    width: 80px;
  }

  .in-page-logo.mini {
    margin-left: auto;
    margin-right: auto;
  }

  .in-page-logo.hero, .in-page-logo.cs {
    margin-left: auto;
  }

  .service-cards-wrapper.category-home {
    grid-row-gap: 10px;
    margin-top: 10px;
  }

  .service-card {
    padding: 30px;
  }

  .service-card.category-home {
    padding-bottom: 15px;
  }

  .service-card.category-home._1-3 {
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
  }

  .service-card.category-home.mini {
    width: 100%;
  }

  .list {
    padding-left: 20px;
  }

  .socials-wrapper {
    top: 64%;
  }

  .footer-right-flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .max-width-17vw {
    max-width: none;
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-flex {
    grid-row-gap: 0rem;
    flex-direction: column;
  }

  .footer-wrapper-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
  }

  .footer-bottom {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer-logo {
    z-index: 999;
    max-width: none;
    min-height: 50px;
    max-height: 50px;
    position: relative;
  }

  .container-3.padding-4-5rem {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container-3.padding-4-5rem.ft {
    border-top: 1px solid #555;
  }

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

  .footer-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lynx-nav-info {
    padding-left: 5px;
    padding-right: 5px;
  }

  .lynx-nav-block {
    justify-content: center;
  }

  .nav {
    text-align: center;
  }

  .nav.no-mob {
    display: none;
  }

  .button-group-2 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .text-button, .text-button-2 {
    justify-content: center;
  }

  .button-group-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .contact-icon-columns-2 {
    flex-flow: row;
  }

  .service-heading-2.margin-bottom.margin-tiny {
    text-align: center;
  }

  .text-button-3 {
    justify-content: center;
  }

  .contact-container {
    z-index: 2;
    background-color: #ffffffdb;
    width: 90%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .in-page-logo-2 {
    width: 75px;
  }

  .form-holding-div {
    padding-bottom: 60px;
  }

  .application-section {
    margin-top: -220px;
    padding-bottom: 0;
  }

  .button-group-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .contact-icon-columns-3 {
    flex-flow: row;
  }

  .section-hero.subpage {
    height: 40vh;
    padding-top: 60px;
  }

  .hero-background-image-wrapper.sub {
    background-image: linear-gradient(#0000, #0000), url('../images/PHOTO-2025-10-27-11-24-14.jpg');
    background-position: 0 0, 50% 80%;
  }

  .wave {
    min-height: 60px;
    margin-bottom: 60px;
  }

  .wave._2 {
    margin-top: 60px;
  }

  .subhead-3 {
    width: 95%;
  }

  .subhead-3.home {
    font-size: 18px;
    line-height: 1.2;
  }

  .footer10_social-list {
    margin-bottom: 10px;
  }

  .hero-section-2.spaced {
    background-image: linear-gradient(0deg, #050c148c, #00000073 39%, #fff0), url('../images/Untitled-design---2025-11-18T145853.350.png');
    background-position: 0 0, 40% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 90vh;
    padding-top: 204px;
    padding-bottom: 100px;
  }

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

  .headline-2.non-responsive {
    font-size: 32px;
  }

  .hearts {
    background-size: auto;
    display: none;
    position: absolute;
  }

  .html-embed {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-tag-container {
    text-align: left;
    justify-content: center;
    margin-bottom: 30px;
  }

  .section-tag-line {
    display: none;
  }

  .section-wrapper {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .section-wrapper.glow-1.x {
    background-color: #e4b9a3;
  }

  .section-container.contact {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-container.service {
    padding-bottom: 40px;
  }

  .section-container.service.cs {
    flex-flow: column;
    align-items: center;
    padding-top: 210px;
    display: flex;
  }

  .fixed-image {
    height: 35vh;
  }

  .projects-marquee-container {
    width: 500vw;
  }

  .arrow-circle {
    padding: 10px;
  }

  .projects-wrapper {
    padding-bottom: 60px;
  }

  .explore-button-wrapper {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .explore-button-copntainer {
    padding-bottom: 35px;
  }

  .grid-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .grid-img {
    box-shadow: 2px 2px 5px #00000063;
  }

  .section-tag-container-2 {
    margin-bottom: 30px;
  }

  .coming-soon {
    background-color: #e5d1c7;
  }

  .link-19 {
    color: #8d8d8d;
  }

  .logo-col {
    width: 90%;
    display: flex;
  }

  .logo-col.embed {
    width: 80%;
  }

  .logo-img {
    width: 60px;
  }

  .columns {
    width: 90%;
  }

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


@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Bold.woff2') format('woff2'), url('../fonts/GoogleSans-Bold.eot') format('embedded-opentype'), url('../fonts/GoogleSans-Bold.woff') format('woff'), url('../fonts/GoogleSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Medium.woff2') format('woff2'), url('../fonts/GoogleSans-Medium.eot') format('embedded-opentype'), url('../fonts/GoogleSans-Medium.woff') format('woff'), url('../fonts/GoogleSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Googlesans';
  src: url('../fonts/GoogleSans-Regular.woff2') format('woff2'), url('../fonts/GoogleSans-Regular.eot') format('embedded-opentype'), url('../fonts/GoogleSans-Regular.woff') format('woff'), url('../fonts/GoogleSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}