:root {
  --white: white;
  --dark-blue: #0c1434;
  --green: #5ac2a9;
  --light-blue: #ecf8fb;
  --light-green: #69c9b2;
  --transparent: #fff0;
  --black: #000;
}

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

@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 {
  background-color: var(--white);
  color: var(--dark-blue);
  font-family: century-gothic, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--dark-blue);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: color 1s;
}

a:hover {
  color: var(--green);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  margin-bottom: 6px;
}

.columns {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.columns.padding {
  margin-top: 40px;
  margin-bottom: 20px;
}

.ul-point {
  margin-bottom: 14px;
  padding-left: 40px;
}

.spacer {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 30px;
  display: flex;
}

.spacer.thin {
  height: 10px;
}

.title-border {
  background-color: var(--green);
  width: 60px;
  height: 4px;
}

.title-border.white {
  background-color: #fff;
}

.body-container {
  z-index: 4;
  max-width: 1200px;
  position: relative;
}

.body-container.blog {
  padding-right: 25%;
}

.colours-box {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.colour-example {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: 120px;
  display: flex;
}

.colour-example._2 {
  background-color: var(--light-blue);
}

.colour-example._3 {
  background-color: var(--light-green);
  color: #fff;
}

.colour-example._4 {
  background-color: var(--dark-blue);
  color: #fff;
}

.colour-example._1 {
  background-color: var(--green);
}

.main-button {
  z-index: 2;
  border: 1px solid var(--dark-blue);
  background-color: var(--dark-blue);
  color: var(--green);
  text-align: center;
  cursor: pointer;
  border-radius: 100px;
  width: auto;
  padding: 12px 30px;
  font-weight: 700;
  line-height: 1;
  transition: color 1s, background-color 1s;
  position: relative;
}

.main-button:hover {
  background-color: var(--white);
  text-decoration: none;
}

.main-button.green {
  border-color: var(--green);
  background-color: var(--green);
  color: var(--white);
}

.main-button.green:hover {
  background-color: var(--white);
  color: var(--green);
}

.main-button.head {
  border-color: var(--green);
  color: var(--white);
}

.main-button.head:hover {
  color: var(--dark-blue);
}

.main-button.form {
  color: var(--white);
  font-size: 16px;
}

.main-button.form:hover {
  color: var(--dark-blue);
}

.main-button.venue-form {
  min-width: 200px;
}

.button-holder {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  font-size: 16px;
  display: flex;
}

.button-holder.globe {
  height: 42px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.button-holder.left {
  justify-content: flex-start;
  align-items: center;
}

.column-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.title-holder {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.title-holder.left {
  align-items: flex-start;
}

.title-holder.white {
  color: var(--white);
}

.body-section {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 10%;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.body-section.blog {
  padding-top: 60px;
}

.body-section.green {
  background-color: var(--green);
  color: var(--white);
}

.body-section.green.dark-text {
  color: var(--dark-blue);
}

.body-section.light {
  background-color: var(--light-blue);
}

.body-section.dark {
  background-color: var(--dark-blue);
  color: var(--green);
}

.body-section.thin {
  padding: 30px 0%;
}

.body-section.case-study {
  z-index: 4;
  padding-top: 0;
  overflow: visible;
}

.column {
  width: 100%;
  height: auto;
}

.column.vertical {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-restrict {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

.text-restrict._2-cols {
  text-align: left;
  column-count: 2;
  column-gap: 50px;
}

.text-restrict.slim {
  padding-left: 15%;
  padding-right: 15%;
}

.text-restrict.left {
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.text-restrict.left.dark {
  color: var(--dark-blue);
}

.background-overlay {
  z-index: 2;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-overlay.light {
  mix-blend-mode: normal;
  background-color: #000000bf;
}

.background-overlay.home {
  color: #fff;
  text-align: center;
  background-color: #0006;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
}

.background-overlay.white {
  background-color: #fffffff2;
}

.page-header {
  z-index: 1;
  color: #fff;
  text-align: left;
  cursor: auto;
  background-color: #1d1d1d;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 400px;
  padding: 120px 10% 80px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.page-header.blog {
  min-height: auto;
  padding-bottom: 40px;
}

.bottom-orange-border {
  z-index: 6;
  background-color: var(--green);
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.background-image.half {
  width: 50%;
  margin-left: -30px;
}

.background-image.half.right {
  margin-left: 0;
  margin-right: -30px;
  left: auto;
}

.background-image.blur {
  filter: grayscale() contrast(200%);
}

.blog-title {
  font-size: 46px;
}

.blog-columns {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 70% 30%;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.blog-content {
  padding-right: 40px;
}

.blog-side-bar {
  grid-row-gap: 60px;
  border-left: 1px solid #d6d6d6;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 20px;
  display: flex;
}

.blog-side-bar-items {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.blog-side-bar-title {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.blog-side-bar-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--dark-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  font-weight: 400;
  display: flex;
}

.blog-side-bar-links:hover {
  color: var(--green);
}

.card-item-date {
  color: #5e5e5e;
  font-size: 14px;
}

.benefits-grid {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 40px;
  font-size: 16px;
  display: grid;
}

.benefit-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.benefit-icon-holder {
  border: 3px solid var(--green);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 18px;
  display: flex;
}

.benefit-icon-holder.orange {
  background-color: #e89c53;
}

.benefit-icon-holder.red {
  background-color: #e94e1b;
}

.benefit-icon {
  background-color: var(--green);
  color: var(--green);
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.benefit-title {
  color: var(--dark-blue);
  font-size: 21px;
  font-weight: 600;
}

.faqs-holder {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
}

.faq-item {
  cursor: pointer;
  border: 1px solid #e94e1b;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.faq-title {
  padding: 20px 100px 20px 30px;
}

.faq-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
  position: absolute;
  top: 20px;
  right: 16px;
}

.faq-line-1 {
  background-color: #e94e1b;
  width: 6px;
  height: 100%;
}

.faq-line-2 {
  background-color: #e94e1b;
  width: 100%;
  height: 6px;
  position: absolute;
}

.faq-answer {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 16px;
}

.faq-spacer {
  width: 100%;
  height: 20px;
}

.menu-line-top {
  background-color: var(--dark-blue);
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  top: 0;
}

.menu-line-low {
  background-color: var(--dark-blue);
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  bottom: 0;
}

.menu-line-mid {
  background-color: var(--dark-blue);
  border-radius: 4px;
  width: 42px;
  height: 4px;
}

.menu-button {
  z-index: 999;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 28px;
  display: flex;
  position: absolute;
  right: 30px;
}

.menu-inner {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: start stretch;
  width: 100%;
  height: auto;
  min-height: auto;
  display: grid;
}

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

.main-button-2 {
  z-index: 2;
  color: #165365;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff0;
  border: 1px solid #165365;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 1s, color 1s, background-color 1s;
  position: relative;
}

.main-button-2:hover {
  color: #fff;
  background-color: #e89c53;
  border-color: #e89c53;
  text-decoration: none;
}

.main-button-2.alt {
  color: #fff;
  background-color: #e94e1b;
  border-color: #e94e1b;
  font-size: 16px;
}

.main-button-2.alt:hover {
  color: #fff;
  background-color: #fff0;
  border-color: #fff;
}

.menu-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--dark-blue);
  letter-spacing: 1px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.menu-link:hover {
  color: var(--green);
}

.menu-drawer {
  z-index: 98;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--light-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 140px 10% 100px;
  display: none;
  position: fixed;
  inset: 0%;
}

.nav-bar {
  z-index: 998;
  background-color: var(--white);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 0 30px 0 160px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-logo-link {
  z-index: 99;
  width: auto;
  height: auto;
  position: absolute;
  left: 30px;
}

.brand-logo {
  object-fit: contain;
  object-position: 0% 0%;
  width: 88.7188px;
  height: 62px;
}

.counterweight {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 5px;
}

.home-header {
  z-index: 1;
  color: #fff;
  text-align: center;
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 100px 10%;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.header {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 300;
}

.move-link, .move-link:hover {
  color: #fff;
}

.header-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 30px;
  display: flex;
  transform: rotate(-90deg);
}

.hidden-nav {
  display: none;
}

.home-slider-mask {
  width: 100%;
  height: 100%;
}

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

.home-slider, .home-background-video {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-link-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #fff;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  min-height: 82px;
  display: flex;
  position: relative;
}

.menu-link-2 {
  grid-column-gap: 8px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.menu-link-2:hover {
  color: #df312b;
}

.menu-link-2.drop {
  white-space: pre-wrap;
  border-bottom: 1px solid #df312b;
  justify-content: flex-start;
  align-items: center;
  min-height: 42px;
  padding: 6px 14px;
  transition: background-color 1s, color 1s;
}

.menu-link-2.drop:hover {
  color: #11182d;
  background-color: #df312b;
}

.menu-icon {
  color: #fff;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 14px;
  transform: rotate(-90deg);
}

.drop-holder {
  background-color: #11182d;
  border-top: 2px solid #df312b;
  flex-flow: column;
  width: auto;
  min-width: 180px;
  max-width: 360px;
  display: none;
  position: absolute;
  top: 82px;
  left: 0;
}

.service-slider {
  z-index: 8;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 280px;
  display: flex;
  position: absolute;
  bottom: 142px;
  left: 0;
  right: 0;
}

.service-slider-holder {
  height: 280px;
}

.service-slider-button {
  z-index: 10;
  background-color: var(--green);
  color: var(--white);
  cursor: pointer;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 32px;
  transition: box-shadow 1s, background-color 1s;
  display: flex;
  position: absolute;
  left: 5%;
}

.service-slider-button:hover {
  background-color: var(--dark-blue);
  box-shadow: 0 2px 12px 2px #00000059;
}

.service-slider-button.right {
  left: auto;
  right: 5%;
}

.service-slider-mask {
  width: 300px;
  height: 280px;
  margin-left: -25%;
  overflow: visible;
}

.service-slider-slide {
  width: 100%;
  height: 100%;
  padding: 0;
}

.service-slide-inner {
  width: 100%;
  height: 280px;
  padding-left: 10px;
  padding-right: 10px;
}

.service-card {
  color: var(--white);
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  height: 100%;
  min-height: 280px;
  max-height: 280px;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  color: var(--white);
}

.service-card-image {
  object-fit: cover;
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  height: 100%;
  min-height: 280px;
  max-height: 280px;
}

.service-card-cover {
  z-index: 2;
  text-align: center;
  background-image: linear-gradient(#0000, #0003);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.service-card-border {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.service-card-border-inner {
  background-color: var(--white);
  width: 1px;
  height: 100%;
}

.service-card-border-inner.dark-dots {
  border-left: 3px dotted var(--dark-blue);
  background-color: var(--transparent);
}

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

.service-card-path {
  z-index: 10;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 280px;
  display: flex;
  position: absolute;
  bottom: 142px;
  left: 0;
  right: 0;
}

.service-card-inner-path {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  display: flex;
}

.header-overlay {
  z-index: 3;
  background-color: #0c143480;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-head {
  z-index: 1;
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: center;
  cursor: auto;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 85vh;
  padding: 120px 10%;
  font-size: 24px;
  font-style: normal;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-head.blog {
  padding-top: 60px;
}

.home-head.green {
  background-color: var(--green);
  color: var(--white);
}

.home-head.light {
  background-color: var(--light-blue);
}

.home-head.page {
  min-height: auto;
  padding-top: 170px;
  padding-bottom: 90px;
}

.home-head.case-study {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 200px;
}

.header-card-border {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.header-card-border.short {
  height: 60px;
}

.half-cover {
  position: absolute;
  inset: 50% 0 -1px;
}

.half-cover.green {
  z-index: 2;
  background-color: var(--green);
}

.background-circle-holder {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-circle {
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 100%;
  height: 100%;
}

.globe-cover {
  aspect-ratio: 1;
  width: 60%;
  height: auto;
}

.globe-top-content {
  height: auto;
  margin-bottom: 30px;
}

.globe-cover-holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  position: relative;
}

.location-card {
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: left;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px;
  height: 420px;
  padding: 12px;
  transition: box-shadow 1s, color 1s;
  display: flex;
  position: absolute;
  right: -70px;
}

.location-card:hover {
  color: var(--white);
  box-shadow: 0 2px 12px 2px #00000059;
}

.location-card.slider {
  width: 100%;
  height: 100%;
  position: static;
}

.location-card.globe {
  width: 100%;
  height: auto;
  position: relative;
  right: auto;
}

.location-card-image {
  border: 1px solid var(--light-blue);
  border-radius: 4px;
  width: 100%;
  height: 140px;
}

.location-card-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.location-details {
  color: var(--green);
  font-size: 14px;
  font-weight: 400;
}

.location-details.other {
  color: var(--light-blue);
}

.location-button {
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
}

.faq-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.q {
  aspect-ratio: 1;
  background-color: var(--light-blue);
  color: #00004f;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 500;
  display: flex;
}

.faq-button-2 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 10px;
}

.faq-answer-2 {
  grid-column-gap: 12px;
  align-items: flex-start;
  padding: 0 20px;
  font-weight: 300;
  display: flex;
}

.faq-vert {
  background-color: var(--green);
  width: 24px;
  height: 3px;
  margin-left: -1.5px;
  transform: rotate(-35deg);
}

.faq-item-2 {
  border: 1px solid var(--dark-blue);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 25px;
  width: 100%;
  max-width: 800px;
  height: auto;
  position: relative;
  overflow: hidden;
}

.faq-spacer-2 {
  height: 16px;
}

.faq-horiz {
  background-color: var(--green);
  width: 24px;
  height: 3px;
  margin-right: -1.5px;
  transform: rotate(35deg);
}

.faq-title-2 {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  min-height: 50px;
  padding: 12px 60px 8px 8px;
  display: flex;
}

.news-spacer {
  width: 100%;
  height: 280px;
}

.news-track {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  display: flex;
  position: absolute;
  bottom: 142px;
  left: 0;
  right: 0;
}

.news-card {
  color: var(--white);
  width: 33.333%;
  min-width: 25%;
  height: 100%;
  min-height: 280px;
  transition-property: none;
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  color: var(--white);
}

.news-card.center {
  min-width: 40%;
  transition-property: none;
}

.news-card.full {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  min-height: auto;
}

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

.news-card-image.full {
  aspect-ratio: 3 / 2;
  height: auto;
}

.news-card-overlay {
  z-index: 2;
  text-align: left;
  background-image: linear-gradient(#0000, #00000080);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.news-card-border {
  background-color: var(--white);
  width: 1px;
  height: 400%;
  position: absolute;
  top: 0;
  left: -20px;
}

.news-card-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.news-card-title-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  display: flex;
  position: absolute;
  top: 170px;
}

.news-card-title-holder.full {
  width: 80%;
  top: 55%;
}

.text-field {
  border: 1px solid var(--light-blue);
  background-color: var(--light-blue);
  color: var(--dark-blue);
  cursor: text;
  border-radius: 26px;
  width: 100%;
  height: 52px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field:hover {
  border-color: var(--dark-blue);
}

.text-field.area {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
}

.text-field.venue-finder {
  border-width: 2px;
  border-color: var(--dark-blue);
  background-color: var(--white);
  text-align: center;
}

.contact-form-block {
  padding-left: 50px;
  position: relative;
}

.contact-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-form.wide {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
}

.form-background {
  z-index: -1;
  background-color: var(--green);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: -100px -30px -100px 20px;
}

.form-background.wide {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 500px;
  inset: 0 auto;
  box-shadow: 0 2px 12px 2px #0003;
}

.form-background-pointer {
  background-color: var(--green);
  width: 60px;
  height: 100px;
  position: absolute;
  left: -60px;
}

.link-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--dark-blue);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  padding-left: 26px;
  font-size: 21px;
  font-weight: 400;
  display: inline-flex;
  position: relative;
}

.link-item.alt {
  color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-left: 21px;
  font-size: 16px;
}

.link-item.alt:hover {
  color: var(--green);
}

.link-item.ld:hover {
  color: var(--white);
}

.link-item-descr {
  color: var(--green);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.link-item-descr.ld {
  color: var(--white);
}

.footer {
  z-index: 1;
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: left;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 10% 80px;
  font-size: 16px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.footer.blog {
  padding-top: 60px;
}

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

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

.footer.dark {
  background-color: var(--dark-blue);
  color: var(--green);
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .35fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-links-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.footer-logo-link {
  z-index: 99;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.footer-column-title {
  color: var(--green);
}

.footer-link-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-top: 1px solid var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
}

.footer-link {
  color: var(--white);
  font-weight: 400;
}

.footer-link:hover {
  color: var(--green);
}

.inner-link-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: grid;
}

.footer-copyright {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 16px 10%;
  font-size: 14px;
}

.footer-background {
  opacity: .05;
  filter: saturate(0%);
  object-fit: contain;
  object-position: 100% 100%;
  width: auto;
  height: 85%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.link-items-holder {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.footer-brand-logo {
  object-fit: contain;
  object-position: 0% 0%;
  width: 88.7188px;
  height: 62px;
}

.form-inner-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contact-links-holder {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.contact-links-holder.ld {
  justify-content: flex-start;
  align-items: center;
}

.venue-finder-form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.venue-finder-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 56px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.venue-finder-background {
  z-index: -1;
  opacity: .7;
  object-fit: contain;
  object-position: 50% 100%;
  width: 100%;
  height: auto;
  position: absolute;
  inset: auto 0 -102px 0%;
}

.venue-finder-border {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: absolute;
  bottom: -102px;
  left: 0;
  right: 0;
}

.venue-finder-border.dots {
  z-index: -1;
  height: auto;
  top: 56px;
  bottom: 0;
}

.logo-carousel {
  white-space: nowrap;
  word-break: keep-all;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.logo-track {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  width: 2030.41px;
  min-width: 2030.41px;
  max-width: none;
  padding-left: 0;
  padding-right: 30px;
  display: flex;
}

.company-logo {
  filter: grayscale();
  object-fit: contain;
  width: auto;
  height: 22px;
}

.review-holder {
  text-align: center;
  flex-flow: column;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  display: flex;
  position: relative;
}

.review-holder.in-slider {
  height: 100%;
  min-height: 100%;
  margin-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
}

.quote-icon {
  background-color: var(--dark-blue);
  width: 26px;
  height: 26px;
  margin-left: -30px;
  position: absolute;
  top: 0;
}

.quote-icon.right {
  margin-left: 0;
  margin-right: -30px;
  top: auto;
  bottom: 4px;
  right: 15%;
}

.social-media-links {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
}

.social-media-icon {
  background-color: #fff;
  width: 24px;
  height: 24px;
  transition-property: background-color;
}

.social-media-icon:hover {
  background-color: var(--green);
}

.anchor-link {
  position: absolute;
  top: -80px;
}

.div-block {
  width: 200px;
}

.div-spacer {
  background-color: var(--white);
  border-radius: 3px;
  width: 200px;
  height: 3px;
}

.menu-link-image {
  border-left: 3px solid var(--green);
  object-fit: cover;
  width: 100%;
  height: 22vh;
  transition: filter 1s;
}

.menu-link-image:hover {
  filter: brightness(70%);
}

.menu-contact-section {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.blog-video {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
}

.video-holder {
  aspect-ratio: 16 / 9;
  background-color: var(--dark-blue);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: box-shadow 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-holder:hover {
  box-shadow: 0 2px 12px 2px #00000073;
}

.video-holder.cs.blank:hover {
  box-shadow: 0 2px 12px 2px #0000;
}

.video-placeholder {
  z-index: 2;
  opacity: .5;
  filter: grayscale();
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-placeholder.blank {
  opacity: 1;
  filter: grayscale(0%);
}

.video-play {
  z-index: 6;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 12px 10px 12px 14px;
  transition: background-color 1s;
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.video-play:hover {
  background-color: var(--green);
}

.play-inner {
  background-color: #fff;
  width: 80%;
  height: 100%;
}

.gallery-holder {
  grid-column-gap: 5%;
  grid-row-gap: 24px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.gallery-lightbox {
  aspect-ratio: 1;
  object-fit: contain;
  width: 30%;
  height: auto;
  transition-property: box-shadow;
}

.gallery-lightbox:hover {
  box-shadow: 0 2px 12px 2px #00000040;
}

.gallery-thumb {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 1s;
}

.gallery-thumb:hover {
  filter: brightness(80%);
}

.blog-image-holder {
  grid-column-gap: 4%;
  grid-row-gap: 20px;
  aspect-ratio: 16 / 9;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

.blog-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-image.half {
  width: 48%;
}

.main-video {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.project-button-select {
  background-color: #83b6e1;
  border-radius: 20px;
  width: 100px;
  height: 34px;
  position: absolute;
}

.project-slide-image {
  z-index: 1;
  filter: brightness(110%) saturate(110%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-slide-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px 2px #0003;
}

.after {
  z-index: 2;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 20px;
  width: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 700;
  position: relative;
}

.project-slide-view {
  z-index: 4;
  background-color: var(--green);
  color: #fff;
  letter-spacing: 1px;
  border: 1px solid #fff;
  border-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 4px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 1s, color 1s;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.project-slide-view:hover {
  color: #1f2f4f;
  background-color: #fff;
}

.before {
  z-index: 2;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 20px;
  width: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 700;
  position: relative;
}

.projects-slider-nav {
  color: var(--dark-blue);
  cursor: pointer;
  width: 80px;
  height: 100%;
  font-size: 50px;
  transition: color 1s;
}

.projects-slider-nav:hover {
  color: var(--green);
}

.project-slide-cover {
  z-index: 2;
  opacity: 0;
  filter: saturate(110%) brightness(110%);
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.projects-slider-mask {
  width: 100%;
  height: 100%;
}

.projects-slider {
  background-color: #fff0;
  width: 100%;
  height: 440px;
  margin-top: 40px;
  padding: 0 70px;
}

.projects-slide {
  width: 100%;
  height: 100%;
  margin-right: 20px;
  padding: 20px;
  overflow: hidden;
}

.project-slide-buttons {
  z-index: 4;
  background-color: #fff;
  border-radius: 30px;
  justify-content: flex-end;
  align-items: center;
  height: 46px;
  padding: 6px;
  font-size: 16px;
  font-weight: 200;
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.case-study-text {
  z-index: 3;
  color: var(--white);
  width: 100%;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.case-study-overlay {
  z-index: 2;
  background-image: linear-gradient(#0000, #00000080);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.case-study-title {
  font-size: 28px;
}

.green {
  color: var(--light-green);
}

.case-study-holder {
  background-color: var(--white);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  margin-top: -180px;
  display: flex;
  box-shadow: 0 2px 12px 2px #00000040;
}

.main-case-study-details {
  text-align: left;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 65%;
  padding: 30px;
  display: flex;
}

.cs-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--green);
  color: var(--white);
  text-align: left;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35%;
  padding: 30px;
  display: flex;
}

.cs-video {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  display: flex;
}

.cs-logo-holder {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.cs-logo-inner {
  aspect-ratio: 1;
  border: 1px solid var(--white);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 180px;
  padding: 8px;
  display: flex;
}

.cs-logo {
  aspect-ratio: 1;
  background-color: var(--white);
  object-fit: contain;
  border-radius: 100%;
  padding: 30px;
}

.cs-details {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.cs-title {
  font-weight: 700;
}

.cs-detail {
  grid-column-gap: 8px;
  grid-row-gap: 2px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.3;
  display: flex;
}

.cs-column-title {
  color: var(--dark-blue);
  font-size: 26px;
}

.cs-review {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 16px;
  display: flex;
}

.cs-top-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.landing-page-holder {
  z-index: 6;
  background-color: #5ac2a9f2;
  background-image: linear-gradient(145deg, var(--light-green), #69c9b200);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 60px 10%;
  display: flex;
  position: relative;
}

.landing-page-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
}

.cle-landing-logo {
  filter: brightness(200%) grayscale();
  width: 200px;
  height: auto;
}

.contact-restrict {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 60px;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
}

.contact-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.contact-link-icon {
  background-color: var(--green);
  width: 32px;
  height: 32px;
}

.contact-link {
  color: var(--dark-blue);
  font-family: century-gothic, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.contact-link:hover {
  color: var(--green);
}

.contact-item-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #13163d;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.contact-link-icon-2 {
  background-color: #13163d;
  width: 32px;
  height: 32px;
}

.contact-address-holder {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #13163d;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  max-width: 300px;
  height: auto;
  font-family: century-gothic, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.contact-address-holder:hover {
  color: #bd9967;
}

.contact-form-title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-form-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #1c1c23;
  background-color: #eff6fc;
  border: 1px solid #13163d;
  border-radius: 8px;
  flex-flow: column;
  width: 650px;
  height: auto;
  padding: 40px;
  display: flex;
}

.gdpr-text {
  max-width: 50%;
}

.contact-form-block-wide {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 60px;
  margin-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  position: relative;
}

.text-field-2 {
  color: #13163d;
  cursor: text;
  border: 1px solid #13163d;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field-2:hover {
  border-color: #bd9967;
}

.text-field-2.area {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
}

.form-button {
  z-index: 2;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  cursor: pointer;
  background-color: #bd9967;
  border: 1px solid #bd9967;
  border-radius: 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 165px;
  height: 50px;
  padding: 3px 12px 1px;
  font-size: 18px;
  font-weight: 400;
  transition: border-color 1s, color 1s, background-color 1s;
  display: flex;
  position: relative;
}

.form-button:hover {
  color: #fff;
  background-color: #3d9be9;
  border-color: #3d9be9;
  text-decoration: none;
}

.submit-details {
  color: #161619;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  display: flex;
}

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

.globe-background {
  background-color: var(--light-blue);
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  width: auto;
  height: 35%;
  position: absolute;
  bottom: -1px;
  left: -25%;
  right: -25%;
}

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

.card-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: grid;
}

.card-grid.two-cols {
  grid-template-columns: 1fr 1fr;
  padding-left: 10%;
  padding-right: 10%;
}

.location-grid-card {
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: left;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 12px 12px 36px;
  font-size: 16px;
  transition: box-shadow 1s, color 1s;
  display: flex;
  position: relative;
}

.location-grid-card:hover {
  color: var(--white);
  box-shadow: 0 2px 12px 2px #00000059;
}

.location-grid-card-image {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--light-blue);
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.location-grid-space {
  width: 100%;
  height: 20px;
}

.team-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 30px;
  display: grid;
}

.person-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: flex;
}

.person-image {
  aspect-ratio: 2 / 2.5;
  border: 2px solid var(--green);
  object-fit: cover;
  border-radius: 8px 0;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 12px 2px #0003;
}

.team-member-name {
  color: var(--green);
  letter-spacing: 1px;
  font-size: 21px;
  font-weight: 700;
}

.team-role {
  color: var(--dark-blue);
  margin-top: -16px;
  font-size: 18px;
}

.column-slider {
  aspect-ratio: 3 / 2;
  background-color: var(--transparent);
  border-radius: 12px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.column-slider-mask {
  width: 100%;
  height: 100%;
}

.about-us-point {
  background-color: var(--light-blue);
  text-align: left;
  border-radius: 10px;
  margin-top: 30px;
  padding: 30px 30px 10px 100px;
  position: relative;
}

.about-us-point.grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-left: 30px;
  display: flex;
}

.about-us-icon {
  z-index: 30;
  background-color: var(--green);
  border-radius: 42px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
  position: absolute;
  top: 30px;
  left: 30px;
}

.about-us-icon-inner {
  background-color: var(--dark-blue);
  width: 24px;
  height: 24px;
}

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

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

.mission-title {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-family: century-gothic, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

.mission-icon {
  background-color: var(--dark-blue);
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.location-card-columns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  font-size: 14px;
  display: grid;
}

.location-card-columns.in-slider {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 2fr;
}

.location-card-column {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.location-card-column.in-slider {
  min-width: auto;
  max-width: none;
  max-height: none;
}

.location-column-inner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.case-study-card {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  display: flex;
}

.cs-card-image-link {
  aspect-ratio: 3 / 2;
  background-color: var(--dark-blue);
  width: 100%;
  height: auto;
}

.cs-card-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 1s, opacity 1s;
}

.cs-card-image:hover {
  opacity: .5;
  filter: grayscale();
}

.cs-card-title {
  font-size: 21px;
}

.reviews-slider {
  background-color: var(--transparent);
  text-align: center;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  padding-left: 80px;
  padding-right: 80px;
}

.reviews-arrow {
  border: 1px solid var(--white);
  color: var(--white);
  cursor: pointer;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 32px;
  transition: background-color 1s;
  display: flex;
}

.reviews-arrow:hover {
  background-color: var(--dark-blue);
}

.reviews-slider-mask {
  width: 100%;
  height: 100%;
}

.reviews-slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.location-card-holder {
  color: var(--white);
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 500px;
  height: 420px;
  display: flex;
  position: absolute;
  right: -70px;
}

.location-card-holder.slider {
  width: 100%;
  height: 100%;
  position: static;
}

.heading-holder {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 34px;
  }

  .column-image {
    min-height: 320px;
  }

  .service-card-path {
    width: 125%;
    position: absolute;
    left: 0;
    right: 0;
  }

  .home-head {
    padding-left: 15%;
    padding-right: 15%;
  }

  .news-card-title.full {
    font-size: 21px;
    line-height: 1.3;
  }

  .video-holder.cs {
    max-width: none;
  }

  .projects-slider {
    height: 450px;
  }

  .news-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-holder {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 36px;
  }

  .column-image {
    min-height: 330px;
  }

  .body-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .menu-inner {
    grid-column-gap: 30px;
  }

  .menu-link {
    font-size: 28px;
  }

  .home-header {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-card-path {
    bottom: 162px;
  }

  .location-card {
    width: 560px;
  }

  .location-card.slider {
    padding: 30px;
    font-size: 21px;
  }

  .news-spacer {
    height: 300px;
  }

  .news-track {
    height: 300px;
    bottom: 162px;
  }

  .news-card-title.full {
    font-size: 21px;
  }

  .news-card-title-holder {
    top: 190px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .review-holder {
    margin-bottom: 80px;
    font-size: 32px;
  }

  .projects-slider {
    height: 480px;
  }

  .news-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .team-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .location-column-inner {
    font-size: 14px;
  }

  .location-card-holder {
    width: 560px;
  }

  .location-card-holder.slider {
    padding: 30px;
    font-size: 21px;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 21px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 46px;
  }

  .main-button {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .column-image {
    min-height: 340px;
  }

  .text-restrict._2-cols {
    column-gap: 60px;
  }

  .blog-title {
    font-size: 48px;
  }

  .menu-inner {
    grid-column-gap: 40px;
  }

  .main-button-2 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .menu-link {
    font-size: 32px;
  }

  .home-header {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .projects-slider {
    height: 520px;
  }

  .news-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .form-button {
    font-size: 16px;
  }

  .team-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  .columns {
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .columns.reverse {
    flex-direction: column-reverse;
  }

  .title-holder.white.left {
    justify-content: flex-start;
    align-items: center;
  }

  .body-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .body-section.blog {
    padding-top: 40px;
  }

  .column.image-spacer {
    height: 270px;
  }

  .column.details {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }

  .text-restrict {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-restrict._2-cols {
    text-align: center;
    column-count: 1;
  }

  .text-restrict.slim {
    margin-top: 20px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .background-overlay.home, .page-header {
    padding-left: 5%;
    padding-right: 5%;
  }

  .background-image.half {
    width: 100%;
    height: 340px;
    margin-left: 0;
    bottom: auto;
  }

  .background-image.half.right {
    margin-right: 0;
  }

  .blog-title {
    font-size: 42px;
  }

  .blog-columns {
    flex-direction: column;
    display: flex;
  }

  .blog-content {
    padding-right: 0;
  }

  .blog-side-bar {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    border-top: 1px solid #d6d6d6;
    border-left-style: none;
    border-left-width: 0;
    flex-flow: wrap;
    padding-top: 40px;
    padding-left: 0;
  }

  .blog-side-bar-items {
    width: 50%;
    padding-right: 60px;
  }

  .blog-side-bar-links {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .benefits-grid {
    font-size: 16px;
  }

  .benefit-icon-holder {
    width: 80px;
    height: 80px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .faqs-holder {
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq-title {
    padding-left: 20px;
    padding-right: 80px;
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-line-top {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
  }

  .menu-line-low {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    bottom: 0;
  }

  .menu-line-mid {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-button {
    z-index: 999;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 28px;
    padding: 0;
    display: flex;
    position: absolute;
    right: 20px;
  }

  .menu-inner {
    flex-direction: column;
    height: auto;
    min-height: 404px;
  }

  .main-button-2.alt.head, .main-button-2.alt.head-copy {
    position: absolute;
    top: 0;
    left: 0;
  }

  .menu-link {
    font-size: 21px;
  }

  .menu-drawer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 110px 5% 40px;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .header-logo-link {
    z-index: 999;
  }

  .brand-logo {
    width: 74.4141px;
    height: 52px;
  }

  .home-header {
    padding: 40px 5%;
  }

  .menu-link-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .menu-link-2 {
    font-size: 21px;
  }

  .menu-link-2.drop {
    white-space: normal;
    border-bottom: 0 #fff0;
    min-height: auto;
    margin-left: 20px;
    padding: 0;
  }

  .menu-link-2.drop:hover {
    color: #df312b;
    background-color: #fff0;
  }

  .menu-icon {
    display: none;
  }

  .drop-holder {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    background-color: #fff0;
    border-top: 0 #fff0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-top: 8px;
    display: flex;
    position: static;
  }

  .home-head {
    min-height: auto;
    padding: 170px 10% 100px;
    font-size: 21px;
  }

  .home-head.blog {
    padding-top: 40px;
  }

  .home-head.page {
    padding-top: 150px;
  }

  .header-card-border {
    height: 80px;
  }

  .globe-cover {
    width: 75%;
  }

  .location-card {
    height: 340px;
    right: -30px;
  }

  .faq-holder {
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq-answer-2 {
    padding-left: 12px;
  }

  .news-card-overlay.full {
    background-image: linear-gradient(0deg, #0000, #00000080);
  }

  .news-card-title-holder.full {
    top: 40px;
  }

  .contact-form-block {
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-background {
    top: -20px;
    left: 0;
    right: 0;
  }

  .footer {
    padding: 40px 5%;
  }

  .footer.blog {
    padding-top: 40px;
  }

  .footer-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-logo-link {
    z-index: 999;
  }

  .link-items-holder {
    width: 50%;
    margin-top: 0;
  }

  .footer-titles {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    display: flex;
  }

  .form-inner-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .contact-links-holder {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    display: flex;
  }

  .venue-finder-inner {
    padding-top: 0;
    padding-left: 15%;
    padding-right: 15%;
  }

  .venue-finder-background {
    width: 60%;
    bottom: -96px;
    left: 20%;
  }

  .company-logo {
    height: 40px;
  }

  .blog-video {
    justify-content: center;
    align-items: flex-start;
  }

  .video-holder.cs {
    max-width: none;
  }

  .gallery-holder {
    grid-column-gap: 4%;
  }

  .gallery-lightbox {
    width: 30%;
  }

  .main-video {
    justify-content: center;
    align-items: center;
  }

  .projects-slider-nav {
    width: 60px;
  }

  .projects-slider {
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .case-study-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .main-case-study-details {
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    width: 100%;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cs-column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    width: 100%;
    padding: 40px;
  }

  .cs-video {
    justify-content: center;
    align-items: center;
  }

  .cs-logo-holder {
    width: 25%;
  }

  .cs-details {
    width: 75%;
    padding-left: 40px;
  }

  .cs-top-column {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    display: flex;
  }

  .contact-restrict {
    padding-left: 0%;
    padding-right: 0%;
  }

  .contact-item, .contact-item-2 {
    font-size: 21px;
  }

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

  .contact-form-block-wide {
    padding-left: 5%;
    padding-right: 5%;
  }

  .card-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .team-grid {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .location-card-columns.in-slider {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1.5fr;
  }

  .location-card-holder {
    height: 340px;
    right: -30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 30px;
  }

  .body-container {
    padding-left: 0;
  }

  .body-container.blog {
    padding-right: 0%;
  }

  .button-holder.flex {
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .column-image {
    max-height: 300px;
  }

  .body-section {
    padding: 40px 30px;
  }

  .column.image-spacer {
    height: 210px;
  }

  .column.details {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-restrict.slim {
    padding-left: 0%;
    padding-right: 0%;
  }

  .background-overlay.home, .page-header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .background-image.half {
    height: 280px;
  }

  .blog-title {
    font-size: 38px;
  }

  .blog-side-bar-items {
    width: 100%;
  }

  .benefits-grid {
    grid-column-gap: 4%;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .benefit-item {
    width: 48%;
  }

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

  .menu-inner {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .menu-drawer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .home-header {
    padding: 40px 30px;
  }

  .home-head {
    min-height: auto;
    padding: 120px 30px 80px;
    font-size: 21px;
  }

  .home-head.page {
    padding-top: 120px;
  }

  .header-card-border {
    height: 60px;
  }

  .globe-cover {
    width: 90%;
  }

  .location-card {
    right: -20px;
  }

  .news-spacer {
    height: 840px;
  }

  .news-track {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 840px;
    bottom: 122px;
  }

  .news-card {
    width: 100%;
  }

  .news-card-overlay.full {
    background-image: linear-gradient(#0000, #00000080);
  }

  .news-card-title {
    font-size: 21px;
  }

  .news-card-title-holder {
    width: 300px;
    top: 180px;
  }

  .news-card-title-holder.full {
    top: 55%;
  }

  .footer {
    padding: 40px 30px;
  }

  .footer-links-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-items-holder, .footer-titles {
    width: 100%;
  }

  .venue-finder-background {
    bottom: -76px;
  }

  .company-logo {
    height: 36px;
  }

  .review-holder {
    padding-left: 40px;
    padding-right: 40px;
  }

  .quote-icon {
    margin-left: 0;
    left: 0;
  }

  .quote-icon.right {
    margin-right: 0;
    left: auto;
    right: 0;
  }

  .menu-link-image {
    display: none;
  }

  .menu-contact-section {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .video-play {
    width: 80px;
    height: 80px;
  }

  .gallery-holder {
    grid-column-gap: 5%;
  }

  .gallery-lightbox {
    width: 47%;
  }

  .projects-slider-nav {
    width: 50px;
    font-size: 42px;
  }

  .projects-slider {
    height: 440px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .project-slide-buttons {
    inset: 10px 10px auto auto;
  }

  .case-study-text {
    font-size: 16px;
  }

  .case-study-overlay {
    background-image: linear-gradient(#0000, #000000a6);
  }

  .case-study-title {
    font-size: 24px;
  }

  .main-case-study-details {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cs-column {
    padding: 20px 20px 30px;
  }

  .cs-logo-holder {
    width: 35%;
  }

  .cs-details {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    width: 65%;
    padding-left: 20px;
  }

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

  .contact-restrict {
    grid-column-gap: 8%;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
  }

  .contact-item {
    width: 45%;
  }

  .contact-item.full {
    width: 100%;
  }

  .contact-item-2 {
    width: 45%;
  }

  .contact-item-2.full {
    width: 100%;
  }

  .contact-form-inner {
    padding: 30px 20px 20px;
  }

  .contact-form-block-wide {
    padding-left: 0%;
    padding-right: 0%;
  }

  .submit-details {
    text-align: left;
  }

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

  .card-grid.two-cols {
    padding-left: 0%;
    padding-right: 0%;
  }

  .location-grid-card-image.in-slide {
    width: 40%;
    height: 120px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .mission, .location-card-columns.in-slider {
    grid-template-columns: 1fr;
  }

  .location-card-column.in-slider {
    height: auto;
  }

  .location-card-column.in-slider.title {
    flex-flow: column;
    height: auto;
    min-height: 120px;
    padding-right: 160px;
  }

  .in-slider {
    width: 100%;
  }

  .reviews-slider {
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .reviews-arrow {
    margin-bottom: 0;
    margin-left: -70px;
    bottom: 0;
    left: 50%;
  }

  .reviews-arrow.right {
    margin-left: 10px;
  }

  .location-card-holder {
    right: -20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  .spacer {
    justify-content: center;
    align-items: flex-start;
    height: 20px;
  }

  .main-button {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .button-holder {
    grid-row-gap: 16px;
    flex-wrap: wrap;
  }

  .column-image {
    min-height: 200px;
    max-height: 220px;
  }

  .title-holder {
    align-items: flex-start;
  }

  .title-holder.white.left {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .body-section {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .column {
    text-align: left;
  }

  .column.image-spacer {
    height: 170px;
  }

  .text-restrict._2-cols {
    text-align: left;
  }

  .background-overlay.home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header {
    text-align: left;
    min-height: auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .background-image.half {
    height: 240px;
  }

  .blog-title {
    font-size: 36px;
  }

  .blog-side-bar-items {
    padding-right: 20px;
  }

  .benefits-grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .benefit-item {
    align-items: flex-start;
    width: 100%;
  }

  .faq-title {
    padding-left: 14px;
  }

  .faq-answer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-button {
    right: 12px;
  }

  .menu-inner {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .main-button-2 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .menu-link {
    font-size: 18px;
  }

  .menu-drawer {
    padding-top: 94px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-bar {
    height: 72px;
  }

  .header-logo-link {
    left: 12px;
  }

  .brand-logo {
    width: 65.8281px;
    height: 46px;
  }

  .home-header {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .home-head {
    padding: 110px 20px 70px;
  }

  .header-card-border {
    height: 56px;
  }

  .globe-cover {
    width: 100%;
  }

  .globe-cover-holder {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .location-card {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
  }

  .location-button {
    display: none;
  }

  .faq-answer-2 {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
  }

  .news-spacer {
    height: 600px;
  }

  .news-track {
    height: 600px;
    bottom: 132px;
  }

  .news-card {
    height: 200px;
    min-height: 200px;
  }

  .news-card-overlay.full {
    background-color: #00000059;
    background-image: linear-gradient(0deg, #0000, #00000080);
  }

  .news-card-title {
    font-size: 18px;
  }

  .news-card-title-holder {
    width: 80%;
    top: 110px;
  }

  .news-card-title-holder.full {
    top: 20px;
  }

  .contact-form-block {
    padding-top: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-background.wide {
    width: auto;
    left: -20px;
    right: -20px;
  }

  .footer {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .footer-logo-link {
    left: 20px;
  }

  .inner-link-list {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-background {
    width: 100%;
  }

  .footer-brand-logo {
    width: 65.8281px;
    height: 46px;
  }

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

  .contact-links-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .venue-finder-inner {
    padding-left: 0%;
    padding-right: 0%;
  }

  .venue-finder-background {
    width: 100%;
    bottom: -86px;
    left: 0%;
  }

  .company-logo {
    height: 24px;
  }

  .review-holder {
    margin-top: 26px;
    padding: 6px 0;
  }

  .review-holder.in-slider {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    padding: 0 0%;
    font-size: 21px;
  }

  .quote-icon {
    top: -26px;
  }

  .quote-icon.right {
    bottom: -26px;
    left: 0;
  }

  .video-play {
    width: 44px;
    height: 44px;
    bottom: 16px;
    left: 16px;
  }

  .gallery-lightbox {
    width: 100%;
  }

  .blog-image-holder {
    aspect-ratio: auto;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-image.half {
    width: 100%;
  }

  .project-slide-inner {
    border: 1px solid #83b6e1;
    box-shadow: 0 2px 12px 2px #0000;
  }

  .project-slide-view {
    bottom: 6px;
    right: 6px;
  }

  .projects-slider-nav {
    height: 50px;
    margin-bottom: 0;
    margin-left: 0;
    bottom: 0;
    left: 0%;
  }

  .projects-slider-nav.right {
    margin-left: 50px;
  }

  .projects-slider {
    height: 600px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .projects-slide {
    padding: 0;
  }

  .project-slide-buttons {
    font-size: 14px;
    top: 6px;
    right: 6px;
  }

  .case-study-overlay {
    background-image: linear-gradient(#0000, #000000bf);
  }

  .main-case-study-details {
    padding: 14px 14px 4px;
  }

  .cs-logo-holder {
    width: 100%;
  }

  .cs-logo-inner {
    max-width: none;
    max-height: none;
  }

  .cs-logo {
    padding: 40px;
  }

  .cs-details {
    width: 100%;
    padding-left: 0;
  }

  .cs-top-column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-restrict {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
  }

  .contact-item {
    border: 1px solid var(--dark-blue);
    background-color: var(--light-blue);
    text-align: center;
    border-radius: 8px;
    width: 100%;
    padding: 20px 16px;
  }

  .contact-item-2 {
    background-color: #eff6fc;
    border: 1px solid #13163d;
    border-radius: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 20px 16px;
  }

  .contact-address-holder {
    width: 100%;
    max-width: 100%;
  }

  .contact-form-inner {
    padding: 20px 16px;
  }

  .gdpr-text {
    max-width: 100%;
  }

  .contact-form-block-wide {
    margin-top: 30px;
  }

  .form-button {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .submit-details {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-form-grid, .card-grid, .card-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .location-grid-card-image.in-slide {
    width: 50%;
  }

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

  .about-us-point {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
  }

  .about-us-point.grid {
    padding-left: 16px;
  }

  .about-us-icon {
    position: static;
  }

  .mission-title {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .location-card-column {
    max-width: none;
    max-height: none;
  }

  .location-card-column.in-slider.title {
    padding-top: 50px;
    padding-right: 110px;
  }

  .reviews-arrow {
    width: 50px;
    height: 50px;
    margin-left: 0;
    font-size: 26px;
    left: 0%;
  }

  .reviews-arrow.right {
    margin-left: 60px;
  }

  .location-card-holder {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
  }
}

#w-node-d2eb49f6-2a57-fda2-0aa5-2c4787c51592-5e58eae5, #w-node-_584a605b-e27f-5671-5016-a18f87a2cd51-5e58eae5, #w-node-c2f1bd4e-79ea-15f7-044d-0a8088c4e538-5e58eae5, #w-node-c2f1bd4e-79ea-15f7-044d-0a8088c4e55e-5e58eae5, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68077-5e58eae6, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68079-5e58eae6, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68087-5e58eae6, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68094-5e58eae6, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a8c-5e58eae7, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a93-5e58eae7, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a9a-5e58eae7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70961c28-513d-aa82-c2bc-d18637adbac8-5e58eae7, #w-node-_70961c28-513d-aa82-c2bc-d18637adbad9-5e58eae7 {
  place-self: start stretch;
}

#w-node-_1de40879-5880-1c95-59c1-9ac333221230-5e58eae7, #w-node-_2f1f3cbc-2b08-df90-d49b-3bacab8f7122-5e58eae7, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1244-5e58eae7, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1243-5e58eae7, #w-node-c2978013-604f-0156-dd8f-0db7c24ddddd-5e58eae8, #w-node-c2978013-604f-0156-dd8f-0db7c24ddde6-5e58eae8, #w-node-d2eb49f6-2a57-fda2-0aa5-2c4787c51592-92407c77, #w-node-_584a605b-e27f-5671-5016-a18f87a2cd51-92407c77, #w-node-_584a605b-e27f-5671-5016-a18f87a2cd51-6f2e2fe6, #w-node-d2eb49f6-2a57-fda2-0aa5-2c4787c51592-ca861f7f, #w-node-_584a605b-e27f-5671-5016-a18f87a2cd51-ca861f7f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

