:root {
  --background: black;
  --paragraphs: #e6e6e699;
  --light: #e6e6e6;
  --border: #e6e6e633;
  --dark: #191819;
  --yellowwhite: #fdf2df;
  --white: white;
}

.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-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(--background);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8em;
  display: flex;
}

h1 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.82em;
  font-weight: 700;
  line-height: 1.14em;
}

h2 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.17em;
  font-weight: 700;
  line-height: 1.18em;
}

h3 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.47em;
  font-weight: 700;
  line-height: 1.21em;
}

h4 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.76em;
  font-weight: 700;
  line-height: 1.23em;
}

h5 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.29em;
  font-weight: 700;
  line-height: 1.27em;
}

h6 {
  color: var(--light);
  margin-top: 0;
  margin-bottom: 0;
  font-size: .94em;
  font-weight: 700;
  line-height: 1.37em;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding-left: 2.2em;
}

li {
  padding: .3em .5em;
}

strong {
  color: var(--light);
  font-weight: 700;
}

em {
  font-family: DT Nightingale, sans-serif;
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--border);
  color: var(--light);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  margin-left: .9em;
  padding: .2em 0 .2em 1.2em;
  font-family: DT Nightingale, sans-serif;
  font-size: 1.29em;
  line-height: 1.59em;
}

figure {
  border-radius: .94em;
  margin-top: 2.7em;
  margin-bottom: 2.7em;
  overflow: hidden;
}

figcaption {
  background-color: var(--dark);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.2em 2.2em;
  font-size: .88em;
  line-height: 1.4em;
}

.link {
  box-shadow: inset 0 -1px 0 0 var(--light);
  color: var(--light);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  box-shadow: inset 0 -22px 0 0 var(--light);
  color: var(--background);
}

.rich-text-block p {
  margin-bottom: 1.4em;
}

.rich-text-block h1 {
  margin-bottom: .5em;
}

.rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: .9em;
  margin-bottom: .5em;
}

.rich-text-block a {
  box-shadow: inset 0 -1px 0 0 var(--light);
  color: var(--light);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  box-shadow: inset 0 -22px 0 0 var(--light);
  color: var(--background);
}

.navbar {
  z-index: 500;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: fixed;
  inset: 1.52em 1.52em auto auto;
}

.block-navbar {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-logo {
  height: 1.2em;
  font-size: 27px;
}

.brand {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1em .7em;
  display: flex;
}

.nav-menu {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #2d2c2d80;
  border-radius: .76em;
  padding: .35em;
}

.nav-link {
  color: var(--light);
  border-radius: .59em;
  padding: .95em 1.3em;
  font-size: .82em;
  font-weight: 600;
  line-height: 1.1em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-link:hover {
  background-color: #0006;
}

.nav-link.w--current {
  color: var(--light);
  background-color: #0003;
}

.nav-link.w--current:hover {
  background-color: #0006;
}

.section-hero {
  min-height: 100vh;
}

.grid-hero-a {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  width: 100%;
  min-height: 100vh;
  padding: .7em;
}

.project-hero-a {
  background-color: var(--dark);
  perspective: 1200px;
  border-radius: 1.17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-a {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10em 1.6em 1.2em;
  display: flex;
  position: sticky;
  bottom: .7em;
}

.text-info {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.link-motion {
  flex-direction: column;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-block {
  grid-row-gap: .2em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 25px;
  display: flex;
}

.link-motion-text {
  color: var(--light);
  font-size: .94em;
  font-weight: 600;
  line-height: 1.4em;
}

.link-motion-text.absolute {
  position: absolute;
  top: 100%;
}

.paragraph-hero {
  color: var(--paragraphs);
  max-width: 22em;
  font-size: 1.06em;
  line-height: 1.72em;
}

.heading-hero {
  color: var(--light);
  font-size: 3.35vw;
}

.block-hero {
  grid-row-gap: 1.7em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 6.4em;
  display: flex;
}

.text-span {
  color: var(--light);
  font-family: DT Nightingale, sans-serif;
  font-weight: 400;
  line-height: .8em;
}

.grid-project-a {
  z-index: 50;
  grid-column-gap: 2.35em;
  grid-row-gap: 2.35em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  width: 100%;
  position: absolute;
}

.lightbox-link {
  perspective: 1200px;
  border-radius: .94em;
  width: 44vw;
  height: 25vw;
  position: relative;
  overflow: hidden;
}

.lightbox-link.type-b, .lightbox-link.type-c {
  background-color: #e6e6e608;
  width: 52vw;
  height: 30vw;
  position: relative;
}

.lightbox-link.type-full, .lightbox-link.type-full-50 {
  background-color: var(--dark);
  width: 100%;
  height: 100%;
  position: relative;
}

.background-video {
  z-index: 0;
  border-radius: .94em;
  width: 100%;
  height: 100%;
}

.block-project-text {
  z-index: 30;
  grid-row-gap: .12em;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #2d2c2d80;
  border-radius: .76em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: .9em 2.5em .9em 1.1em;
  display: flex;
  position: absolute;
  inset: auto auto .95em .95em;
}

.subheading-project {
  color: #e6e6e680;
  font-size: .82em;
  line-height: 1.4em;
}

.image-hover {
  z-index: 20;
  object-fit: cover;
  border-radius: .94em;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.logo {
  z-index: 700;
  mix-blend-mode: difference;
  font-size: 20px;
  position: fixed;
  inset: 1.52em auto auto 1.52em;
}

.grid-hero-b {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  place-items: end stretch;
  width: 100%;
  min-height: 100vh;
  padding: .7em;
}

.hero-b {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10em 1.6em 1.2em;
  display: flex;
  position: sticky;
  bottom: .7em;
}

.grid-project-b {
  grid-column-gap: 2.35em;
  grid-row-gap: 7em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 10em;
  margin-bottom: 9em;
  position: relative;
}

.project-hero-b {
  background-color: var(--dark);
  border-radius: 1.17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 1.6em 1.8em;
  display: flex;
}

.block-footer {
  grid-column-gap: .8em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-footer {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  flex: none;
  padding: 1em;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.block-lightbox {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.block-project-c {
  perspective: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.block-project-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-project-c {
  grid-column-gap: 2.35em;
  grid-row-gap: 8em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 15em;
  margin-bottom: 11em;
  position: relative;
}

.project-hero-c {
  background-color: var(--dark);
  border-radius: 1.17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-c {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10em 1.6em 1.2em;
  display: flex;
  position: sticky;
  bottom: .7em;
}

.grid-hero-c {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  place-items: end stretch;
  width: 100%;
  min-height: 100vh;
  padding: .7em;
}

.section-hero-horizontal {
  height: 650vh;
  position: relative;
}

.hero-sticky {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.frame {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.frame-100 {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: .7em;
  display: flex;
}

.frame-100.padding-0 {
  padding: 0;
}

.frame-50 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50vw;
  height: 100vh;
  padding: .7em;
  display: flex;
}

.grid-2-lightbox {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
}

.block-cta-full {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 6.5em 12% 3em;
  display: flex;
}

.heading-cta-full {
  font-size: 6.17vw;
  line-height: 1.05em;
}

.link-cta-full {
  max-width: 50vw;
  text-decoration: none;
  position: relative;
}

.yellow-circle {
  filter: blur(20px);
  perspective: 1000px;
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #e3d026 10%, #e32626 90%);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 9vw;
  height: 9vw;
  display: flex;
  position: relative;
}

.blue-circle {
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #5ecfff 10%, #006ded 90%);
  border-radius: 100%;
  width: 60%;
  height: 60%;
}

.circle {
  perspective: 1000px;
  mix-blend-mode: difference;
  position: absolute;
  inset: auto -7% 0% auto;
}

.hero-horizontal {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8em;
  padding-bottom: 6em;
  padding-left: 12%;
  display: flex;
}

.block-hero-horizontal {
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 50vw;
  display: flex;
}

.heading-hero-large {
  font-size: 6.17vw;
  line-height: 1.04em;
}

.circle-hero {
  perspective: 1000px;
  mix-blend-mode: difference;
  position: absolute;
  inset: auto -8vw auto auto;
}

.block-circle-hero {
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.yellow-circle-hero {
  filter: blur(35px);
  perspective: 1000px;
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #e3d026 10%, #e32626 90%);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 16vw;
  height: 16vw;
  display: flex;
  position: relative;
}

.blue-circle-hero {
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #5ecfff 10%, #006ded 90%);
  border-radius: 100%;
  width: 60%;
  height: 60%;
}

.text-circle {
  color: var(--light);
  margin-right: 7vw;
  font-size: .92em;
  font-weight: 600;
  line-height: 1.4em;
}

.section {
  padding: 7.6em 1.52em 1.52em;
}

.grid-work {
  grid-column-gap: 1.9em;
  grid-row-gap: 2.9em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.lightbox-link-work {
  perspective: 1200px;
  width: 100%;
  text-decoration: none;
  position: relative;
}

.block-project-work {
  border-radius: .94em;
  width: 100%;
  height: 17vw;
  position: relative;
  overflow: hidden;
}

.block-project-work.large {
  height: 36vw;
}

.block-project-text-work {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1em;
  display: flex;
}

.heading-project-work {
  margin-bottom: .1em;
}

.subheading-project-work {
  color: #e6e6e680;
  font-size: .82em;
  font-weight: 600;
  line-height: 1.4em;
}

.section-call-to-action {
  justify-content: flex-start;
  align-items: center;
  padding: 9vw 7%;
  display: flex;
  position: relative;
}

.circle-cta {
  perspective: 1000px;
  mix-blend-mode: difference;
  position: absolute;
  inset: auto auto auto -4vw;
}

.yellow-circle-cta {
  filter: blur(30px);
  perspective: 1000px;
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #e3d026 10%, #e32626 90%);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  display: flex;
  position: relative;
}

.blue-circle-cta {
  mix-blend-mode: color-dodge;
  background-image: linear-gradient(150deg, #5ecfff 10%, #006ded 90%);
  border-radius: 100%;
  width: 60%;
  height: 60%;
}

.heading-cta {
  font-size: 3.7vw;
}

.link-cta {
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.section-full {
  perspective: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-work-full {
  z-index: 50;
  grid-column-gap: 2.35em;
  grid-row-gap: 2.35em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  width: 100%;
  position: absolute;
}

.section-call-to-action-large {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12vw 9%;
  display: flex;
}

.heading-cta-large {
  font-size: 6.17vw;
  line-height: 1.05em;
}

.link-cta-large {
  max-width: 50vw;
  text-decoration: none;
  position: relative;
}

.grid-work-r {
  grid-column-gap: 1.9em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

.grid-work-l {
  grid-column-gap: 1.9em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
}

.block-work-r-l {
  grid-row-gap: 4.6em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.block-heading-top {
  grid-row-gap: 1.7em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 70em;
  margin-bottom: 6.2em;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.7em;
  padding-bottom: 2.7em;
  display: flex;
}

.heading-top {
  font-size: 6.17em;
}

.paragraph-top {
  max-width: 20em;
  font-size: 1.06em;
  line-height: 1.72em;
}

.paragraph-top.large {
  max-width: 30em;
}

.collection-list-wrapper {
  width: 100%;
  max-width: 60.4em;
  margin-bottom: 10em;
  margin-left: auto;
  margin-right: auto;
}

.collection-list {
  grid-column-gap: 0em;
  grid-row-gap: 8.8em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.image-blog {
  object-fit: cover;
  border-radius: .94em;
  width: 100%;
}

.link-heading-blog {
  text-decoration: none;
}

.block-heading-blog {
  grid-column-gap: .84em;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-info-blog {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.collection-item {
  grid-row-gap: 1.3em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.block-image-blog {
  border-radius: .94em;
  width: 100%;
  overflow: hidden;
}

.empty-state {
  background-color: var(--dark);
  border-radius: .94em;
  padding: 1.2em 1.6em;
}

.text-empty {
  font-size: .92em;
  line-height: 1.4em;
}

.image-blog-main {
  object-fit: cover;
  border-radius: 1.17em;
  width: 100%;
  height: 70vh;
}

.image-gallery {
  object-fit: cover;
  border-radius: 1.17em;
  width: 100%;
}

.collection-list-gallery {
  grid-column-gap: 0em;
  grid-row-gap: .7em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-main {
  width: 100%;
  max-width: 47em;
  margin: 6.4em auto 5.4em;
}

.block-heading-blog-main {
  grid-row-gap: .8em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3.5em;
  display: flex;
}

.text-info-blog-main {
  background-color: var(--dark);
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-radius: 50em;
  padding: .8em 1.4em;
  font-size: .65em;
  font-weight: 600;
  line-height: 1.4em;
}

.block-img-large-a {
  background-color: var(--background);
  word-break: normal;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  object-fit: cover;
  background-image: url('../images/aboutusneon.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: scroll;
  background-clip: border-box;
  border-radius: 1.17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 75vh;
  padding: 8em 7%;
  display: flex;
  position: static;
  transform: translate(0);
}

.section-thin {
  cursor: auto;
  padding: .7em;
}

.heading-large {
  mix-blend-mode: normal;
  margin-top: -.6em;
  margin-bottom: .2em;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 10vw;
  transition: opacity .2s;
  position: static;
}

.block-img-large-b {
  background-color: var(--dark);
  background-image: url('../images/about_2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 1.17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 75vh;
  display: flex;
}

.content {
  grid-row-gap: 7.8em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 65em;
  margin: 8em auto;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
}

.grid-content {
  grid-column-gap: 1em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr;
}

.heading-content {
  font-family: DT Nightingale, sans-serif;
  font-weight: 400;
  line-height: 1.18em;
}

.block-content {
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.block-lists {
  grid-row-gap: .9em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-info-content {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.grid-contact-a {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  width: 100%;
  min-height: 100vh;
  padding: .7em;
  overflow: hidden;
}

.contact-a {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 10em 1.6em 1.2em;
  display: flex;
  position: sticky;
  bottom: .7em;
}

.grid-contact-links {
  grid-column-gap: .7em;
  grid-row-gap: .7em;
  width: 100%;
}

.contact-link {
  grid-column-gap: .9em;
  background-color: var(--dark);
  border-radius: 1.17em;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 2em 2.2em;
  text-decoration: none;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-link:hover {
  background-color: #539165;
}

.contact-link.color-a1:hover {
  background-color: #d47733;
}

.contact-link.color-a2:hover {
  background-color: #4058b8;
}

.heading-contact {
  margin-bottom: -.1em;
}

.text-contact {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: capitalize;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.hover {
  z-index: 10;
  background-color: var(--background);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.grid-contact-c {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.3fr;
  width: 100%;
  min-height: 100vh;
  padding: .7em;
  overflow: hidden;
}

.contact-c {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10em 15% 7em 12%;
  display: flex;
  position: sticky;
  bottom: .7em;
}

.form-block {
  width: 100%;
  max-width: 40em;
  margin-bottom: 0;
}

.block-contact-c {
  grid-row-gap: 2.8em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--light);
  background-color: #0000;
  height: 3.2em;
  margin-bottom: 1.7em;
  padding: .6em 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4em;
  transition: border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-bottom-color: var(--light);
}

.text-field::placeholder {
  color: #e6e6e680;
}

.textarea {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--light);
  background-color: #0000;
  min-width: 100%;
  max-width: 100%;
  min-height: 10em;
  max-height: 25em;
  margin-bottom: 2.1em;
  padding: .6em 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4em;
  transition: border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-bottom-color: var(--light);
}

.textarea::placeholder {
  color: #e6e6e680;
}

.form {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: flex;
}

.form.center {
  align-items: center;
}

.block-field {
  grid-column-gap: 1.8em;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.submit-button {
  background-color: var(--dark);
  color: var(--light);
  border-radius: 50em;
  padding: 1.3em 3em;
  font-size: .94em;
  font-weight: 600;
  line-height: 1.4em;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: var(--light);
  color: var(--background);
}

.success-message {
  background-color: #53916524;
  border-radius: 1.17em;
  padding: 1.2em 2.2em;
}

.text-success {
  color: #539165;
  font-size: .92em;
  font-weight: 600;
  line-height: 1.4em;
}

.error-message {
  background-color: #d81f1f24;
  border-radius: 1.17em;
  margin-top: 1.2em;
  padding: 1.2em 2.2em;
}

.text-error {
  color: #d81f1f;
  font-size: .92em;
  font-weight: 600;
  line-height: 1.4em;
}

.section-center {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 9em 8% 6em;
  display: flex;
}

.block-center {
  grid-row-gap: 3em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-block-center {
  grid-row-gap: 1.7em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 70em;
  display: flex;
}

.utility-page-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 9em 8% 6em;
  display: flex;
}

.utility-page-content {
  grid-row-gap: 1.25em;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 21em;
  margin-bottom: 0;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.field-label {
  color: #e6e6e680;
  text-align: left;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 3em;
  margin-bottom: 0;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.button {
  background-color: var(--dark);
  color: var(--light);
  border-radius: 50em;
  padding: 1.3em 3em;
  font-size: .94em;
  font-weight: 600;
  line-height: 1.4em;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--light);
  color: var(--background);
}

.grid-colors {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.block-color {
  grid-row-gap: .25em;
  background-color: var(--background);
  border-radius: .94em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 8em;
  padding: 1.3em;
  display: flex;
}

.block-color.dark-color {
  background-color: var(--dark);
}

.block-color.border-color {
  background-color: var(--border);
}

.block-color.paragraphs-color {
  background-color: var(--paragraphs);
}

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

.hex-color {
  color: #e6e6e680;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.hex-color.dark {
  color: #00000080;
}

.text-color {
  color: var(--light);
  font-size: .9em;
  font-weight: 500;
  line-height: 1.2em;
}

.text-color.dark {
  color: var(--background);
}

.grid-licensing {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  grid-template-rows: auto;
  margin-top: -1em;
}

.image-licensing {
  object-fit: cover;
  border-radius: .94em;
  width: 100%;
}

.fonts-licensing {
  grid-row-gap: 1.4em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: -1em;
  display: flex;
}

.dt-nightingale {
  font-family: DT Nightingale, sans-serif;
  font-weight: 400;
}

.splash-subsection {
  text-align: center;
  padding-top: 0;
  padding-bottom: 1.6em;
}

.heading-subsection-splash {
  font-family: DT Nightingale, sans-serif;
  font-weight: 400;
}

.grid-splash {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  grid-template-rows: auto;
  margin-bottom: 10em;
}

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

.splash {
  margin-bottom: -3em;
}

.link-splash {
  background-color: var(--background);
  color: #e6e6e680;
  border: 1px solid #e6e6e626;
  border-radius: 1.17em;
  width: 100%;
  padding: 9% 12% 8%;
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: block;
  position: relative;
}

.link-splash:hover {
  color: var(--light);
  background-color: #191819bf;
  border-color: #e6e6e600;
}

.background-video-splash {
  z-index: 5;
  border: 1px solid #e6e6e626;
  border-radius: .6em;
  height: 22.5vw;
}

.heading-splash {
  text-align: center;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 2em;
  font-size: .59em;
  font-weight: 600;
  line-height: 1.4em;
}

.image-splash {
  border: 1px solid #e6e6e626;
  border-radius: .6em;
  width: 100%;
}

.body {
  cursor: auto;
}

.banner-section {
  background-color: #000;
  padding-top: 100px;
}

.container {
  background-color: #000;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.banner-wrap {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.banner-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
}

.banner-content-wrap {
  max-width: 765px;
}

.banner-content {
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-weight: 400;
}

.banner-image-wrap {
  padding-top: 60px;
}

.banner-image {
  border-radius: 15px;
  width: 100%;
}

.count-section {
  background-color: #000;
  padding-bottom: 140px;
}

.count-bg {
  background-image: linear-gradient(160deg, #47474e, #1d1d20);
  border-radius: 15px;
  padding: 1px;
}

.count-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #000;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-top: 80px;
  display: flex;
}

.count-card {
  background-color: #000;
  border-radius: 15px;
  min-width: 260px;
  height: 100%;
  padding: 35px 45px;
}

.count-card-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 38px;
  line-height: 1.2;
}

.count-card-subtext {
  color: #ff4a4a;
}

.count-card-subtext.card-four {
  color: #a54aff;
}

.count-card-subtext.card-two {
  color: #ffb74a;
}

.count-card-subtext.card-three {
  color: #a5ff4a;
}

.count-card-text {
  margin-bottom: 0;
}

.section-linear-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.2;
}

.our-story-content {
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-weight: 400;
}

.our-story-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 14px;
  padding-top: 0;
  padding-left: 0;
  font-family: Intertight, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

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

.our-story-content-wrap {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  max-width: 55%;
  padding-top: 30px;
  display: flex;
}

.section-linear-title-wrap {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(170deg, #47474e, #3e3e3e00 90%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: -30px;
  margin-left: 0;
}

.our-story-title-wrap {
  max-width: 540px;
}

.our-story-image-wrap {
  max-width: 40%;
}

.our-story-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.our-story-image {
  border-radius: 15px;
}

.our-story-area {
  background-color: #000;
  padding-bottom: 140px;
  position: relative;
}

.our-story-subtitle {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Intertight, sans-serif;
  font-size: 36px;
  font-weight: 600;
}

.service-post-image-wrap {
  z-index: 1;
  flex-flow: column;
  display: flex;
  position: relative;
}

.service-title-wrap {
  max-width: 560px;
}

.service-post-wrap {
  width: 60%;
}

.service-wrap {
  padding-bottom: 140px;
  position: relative;
}

.service-post-image-area {
  flex-flow: column;
  width: 50%;
  margin-top: 50px;
  display: flex;
  position: sticky;
  top: 50px;
  bottom: 50px;
}

.service-post-image {
  object-fit: cover;
  border-radius: 15px;
  flex: 1;
  align-self: stretch;
}

.service-post-area {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 35px;
  display: flex;
}

.button-arrow-wrap {
  display: flex;
  position: relative;
}

.button-hover-icon {
  opacity: 0;
  position: absolute;
}

.team-post-area {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 70px;
}

.team-wrap {
  padding-bottom: 90px;
  position: relative;
}

.section-title-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.team-item {
  padding-left: 15px;
  padding-right: 15px;
}

.secondary-button-link {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  transition-property: none;
  display: flex;
}

.secondary-button-link.large {
  justify-content: space-between;
  padding-left: 35px;
  padding-right: 35px;
}

.testimonial-designation {
  margin-bottom: 0;
  font-size: 18px;
}

.testimonial-detail-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-image {
  border-radius: 100%;
}

.testimonial-review-content {
  margin-top: 15px;
  margin-bottom: 0;
}

.testimonial-image-wrap {
  width: 90px;
  min-width: 90px;
}

.testimonial-detail-area {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.testimonial-name {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 24px;
}

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

.testimonial-rating-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.testimonial-wrap {
  position: relative;
}

.testimonial-card {
  border: 1px solid #595959;
  border-radius: 30px;
  padding: 40px 35px;
  position: relative;
}

.client-section {
  background-color: #000;
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
}

.client-marquee-wrap {
  width: 500%;
  padding-right: 100px;
  display: flex;
}

.client-logo-marquee {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  padding-right: 80px;
  display: flex;
}

.client-logo-marquee-bg {
  background-color: #0a0a0a;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 150px;
  display: flex;
}

.client-logo {
  width: 160px;
}

.service-post {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 35px;
  display: flex;
}

.image {
  max-width: 5%;
  margin-left: 278px;
  margin-right: 16px;
  position: fixed;
}

.section-linear-title-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Intertight, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.2;
}

.section-title-2 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 50px;
  line-height: 1.2;
}

.container-3 {
  background-color: #000;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.section-title-3 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 50px;
  line-height: 1.2;
}

.container-4 {
  background-color: #000;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.service-post-area-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 35px;
  display: flex;
}

.section-title-4 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 25px;
  font-family: Intertight, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.container-5 {
  background-color: #000;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.service-post-area-3 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 35px;
  display: flex;
}

.text-block {
  color: var(--light);
  font-family: Intertight, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.text-block-2 {
  font-family: Intertight, sans-serif;
  font-size: 20px;
  line-height: 1.5em;
}

.collection-item-2 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-bottom: 1px solid #4d4d4d;
  flex-flow: column;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-6 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.team-name {
  color: var(--light);
  font-family: Intertight, sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.team-designation {
  font-family: Intertight, sans-serif;
}

.licence-image {
  z-index: auto;
  clear: none;
  position: relative;
  inset: 0% auto;
}

.grid {
  box-sizing: content-box;
  object-fit: fill;
  object-position: 50% 50%;
  grid-template: ". Area" 1%
  / 1fr .3fr;
  align-self: auto;
  width: 100%;
}

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

.list {
  list-style-type: none;
}

.service-title {
  color: var(--light);
  font-family: Intertight, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.service-description {
  font-family: Intertight, sans-serif;
  font-size: 20px;
  line-height: 1.5em;
}

.list-item {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border-bottom: 1px solid #4d4d4d;
  flex-flow: column;
  align-items: flex-start;
  padding: 50px 0;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .banner-section {
    background-color: #000;
    padding-top: 99px;
  }

  .container {
    background-color: #000;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-title {
    font-size: 80px;
  }

  .count-section {
    padding-bottom: 150px;
  }

  .count-wrap {
    flex-flow: row;
    justify-content: space-between;
    margin-top: 100px;
  }

  .count-card-title {
    font-size: 44px;
  }

  .section-linear-title {
    font-family: Intertight, sans-serif;
    font-size: 120px;
  }

  .our-story-content {
    font-family: Intertight, sans-serif;
  }

  .our-story-title {
    font-family: Intertight, sans-serif;
    font-size: 46px;
    font-weight: 600;
  }

  .section-title {
    padding-top: 0;
    padding-left: 0;
    font-family: Intertight, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .our-story-content-wrap {
    max-width: 590px;
  }

  .our-story-section {
    background-color: #000;
  }

  .section-linear-title-wrap {
    margin-left: -35px;
  }

  .our-story-wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .our-story-wrap.top {
    margin-top: 60px;
  }

  .our-story-area {
    padding-bottom: 150px;
  }

  .our-story-subtitle {
    font-family: Intertight, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .service-post-wrap {
    width: 100%;
    max-width: 550px;
  }

  .service-wrap {
    padding-bottom: 150px;
  }

  .service-post-area {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .service-post-section {
    background-color: #000;
  }

  .team-wrap {
    padding-bottom: 100px;
  }

  .team-post-section {
    background-color: #000;
  }

  .team-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-section {
    background-color: #000;
  }

  .testimonial-name {
    font-size: 25px;
  }

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

  .testimonial-card {
    padding: 50px 55px 50px 50px;
  }

  .client-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .client-logo-marquee-bg {
    width: 300px;
    height: 150px;
  }

  .client-logo {
    width: auto;
  }

  .service-post {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .image {
    max-width: 18%;
    margin-left: 285px;
    position: relative;
    top: 19px;
  }

  .section-linear-title-2 {
    font-size: 120px;
  }

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

  .container-3 {
    background-color: #000;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .section-title-3 {
    font-size: 56px;
  }

  .container-4 {
    background-color: #000;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-post-area-2 {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .section-title-4 {
    font-size: 40px;
  }

  .container-5 {
    background-color: #000;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }

  .service-post-area-3 {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .collection-item-2 {
    border-bottom: 1px solid #4d4d4d;
  }

  .team-name {
    color: var(--light);
    font-family: Intertight, sans-serif;
    font-size: 25px;
    font-weight: 600;
  }

  .team-designation {
    font-family: Intertight, sans-serif;
  }
}

@media screen and (min-width: 1440px) {
  .banner-section {
    background-color: #000;
  }

  .banner-title {
    font-family: Intertight, sans-serif;
    font-size: 100px;
    font-weight: 600;
  }

  .banner-content {
    font-family: Intertight, sans-serif;
    font-weight: 400;
  }

  .count-section {
    background-color: #000;
  }

  .count-card-title {
    font-size: 50px;
  }

  .section-linear-title {
    font-family: Intertight, sans-serif;
    font-size: 150px;
    font-weight: 700;
  }

  .our-story-content {
    font-family: Intertight, sans-serif;
    font-weight: 400;
  }

  .our-story-title {
    font-family: Intertight, sans-serif;
    font-size: 50px;
    font-weight: 600;
  }

  .section-title {
    padding-top: 0;
    padding-left: 0;
    font-family: Intertight, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .our-story-section {
    background-color: #000;
  }

  .section-linear-title-wrap {
    margin-left: -110px;
  }

  .our-story-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .our-story-subtitle {
    font-family: Intertight, sans-serif;
    font-weight: 600;
  }

  .service-post-area {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .service-post-section, .team-post-section {
    background-color: #000;
  }

  .testimonial-detail-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .testimonial-section {
    background-color: #000;
  }

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

  .client-logo-marquee {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-right: 100px;
  }

  .client-logo-marquee-bg {
    width: 340px;
    height: 170px;
  }

  .service-post {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .image {
    max-width: 18%;
    margin-left: 404px;
    position: relative;
    bottom: -20px;
    right: 63px;
  }

  .section-linear-title-2 {
    font-size: 150px;
  }

  .section-title-2, .section-title-3 {
    font-size: 60px;
  }

  .service-post-area-2 {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .section-title-4 {
    font-size: 40px;
  }

  .service-post-area-3 {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .collection-item-2 {
    border-bottom: 1px solid #4d4d4d;
  }

  .team-name {
    color: var(--light);
    font-family: Intertight, sans-serif;
    font-size: 25px;
    font-weight: 600;
  }

  .team-designation {
    font-family: Intertight, sans-serif;
    font-weight: 400;
  }
}

@media screen and (min-width: 1920px) {
  .heading-hero {
    color: var(--light);
  }

  .banner-section {
    background-color: #000;
    padding-top: 109px;
  }

  .container {
    mix-blend-mode: normal;
  }

  .banner-title {
    width: auto;
    padding-right: 0;
    font-family: Intertight, sans-serif;
    font-weight: 600;
  }

  .banner-content {
    direction: ltr;
    color: var(--paragraphs);
    letter-spacing: 0;
    text-transform: none;
    word-break: normal;
    overflow-wrap: normal;
    font-family: Intertight, sans-serif;
    font-style: normal;
    font-weight: 400;
  }

  .banner-image {
    width: 100%;
  }

  .count-section {
    background-color: #000;
    padding-bottom: 150px;
  }

  .count-card {
    background-color: #000;
    width: auto;
  }

  .section-linear-title {
    width: 800px;
    font-family: Intertight, sans-serif;
    font-size: 150px;
    font-weight: 700;
  }

  .our-story-content {
    color: var(--paragraphs);
    font-family: Intertight, sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  .our-story-title {
    font-family: Intertight, sans-serif;
    font-weight: 600;
  }

  .section-title {
    color: var(--light);
    margin-bottom: 25px;
    padding-top: 0;
    padding-left: 0;
    font-family: Intertight, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .our-story-card-title-wrap {
    max-width: 580px;
  }

  .our-story-section {
    background-color: #000;
  }

  .section-linear-title-wrap {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-left: -145px;
  }

  .our-story-subtitle {
    font-family: Intertight, sans-serif;
    font-weight: 600;
  }

  .service-post-image {
    background-color: #000;
  }

  .service-post-area {
    justify-content: space-between;
    align-items: flex-start;
  }

  .service-post-section, .team-post-section {
    background-color: #000;
  }

  .testimonial-review-content {
    color: var(--light);
  }

  .testimonial-section {
    background-color: #000;
  }

  .testimonial-name {
    color: var(--paragraphs);
  }

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

  .client-section {
    background-color: #000;
  }

  .client-marquee-wrap {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .image {
    vertical-align: baseline;
    max-width: 1%;
    margin-left: 23px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    bottom: 32.2917px;
    left: 466.08px;
  }

  .container-2 {
    position: relative;
    top: 52px;
    left: 207px;
  }

  .image-2 {
    max-width: 15%;
    font-size: 100px;
    display: block;
    position: relative;
    overflow: auto;
  }

  .section-title-4 {
    font-family: Intertight, sans-serif;
    font-size: 40px;
    font-weight: 600;
  }

  .collection-item-2 {
    border-bottom: 1px solid #4d4d4d;
  }

  .image-3 {
    object-fit: cover;
  }

  .team-image {
    border-radius: 30px;
  }

  .team-name {
    color: var(--light);
    font-family: Intertight, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
  }

  .team-designation {
    color: var(--paragraphs);
    font-family: Intertight, sans-serif;
    font-size: 20px;
    line-height: 1.5;
  }
}

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

  h2 {
    font-size: 2.6em;
  }

  h3 {
    font-size: 2em;
  }

  h4 {
    font-size: 1.4em;
  }

  h5 {
    font-size: 1.1em;
  }

  .grid-hero-a {
    align-items: end;
  }

  .grid-project-a {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 7em;
    margin-bottom: 7vw;
    position: relative;
  }

  .lightbox-link {
    width: 52vw;
    height: 30vw;
  }

  .lightbox-link.type-full {
    height: 54vw;
  }

  .lightbox-link.type-full-50 {
    height: 30vw;
  }

  .lightbox-link.type-work-c {
    width: 82vw;
    height: 46vw;
  }

  .background-video {
    display: none;
  }

  .background-video.no-image {
    display: block;
  }

  .grid-project-b {
    grid-row-gap: 2.35em;
    margin-top: 7em;
    margin-bottom: 2em;
  }

  .grid-project-c {
    grid-row-gap: 6em;
  }

  .section-hero-horizontal {
    height: auto;
  }

  .hero-sticky {
    height: auto;
    position: relative;
  }

  .frame {
    flex-direction: column;
  }

  .frame-100, .frame-50 {
    width: 100%;
    height: auto;
  }

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

  .block-cta-full {
    min-height: 40vh;
    padding-top: 3em;
    padding-left: 8%;
    padding-right: 8%;
  }

  .heading-cta-full {
    font-size: 8vw;
  }

  .link-cta-full {
    max-width: 62vw;
  }

  .hero-horizontal {
    flex-direction: column;
    min-height: auto;
    padding: 14em 8% 0;
  }

  .block-hero-horizontal {
    text-align: center;
    align-items: center;
    max-width: 60vw;
  }

  .heading-hero-large {
    font-size: 8vw;
  }

  .circle-hero {
    top: 8vw;
    right: auto;
  }

  .block-circle-hero {
    text-align: center;
    margin-top: 8em;
  }

  .yellow-circle-hero {
    filter: blur(30px);
  }

  .text-circle {
    margin-bottom: 2em;
    margin-right: 0;
  }

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

  .block-project-work, .block-project-work.large {
    height: 25vw;
  }

  .section-call-to-action {
    padding-top: 12vw;
    padding-bottom: 12vw;
  }

  .yellow-circle-cta {
    filter: blur(20px);
  }

  .heading-cta {
    font-size: 5vw;
  }

  .section-full {
    height: auto;
  }

  .grid-work-full {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 8em;
    margin-bottom: 9vw;
    position: relative;
  }

  .section-call-to-action-large {
    padding-top: 14vw;
    padding-bottom: 14vw;
  }

  .grid-work-r, .grid-work-l {
    grid-template-columns: 1fr 1fr;
  }

  .block-work-r-l {
    grid-row-gap: 2.9em;
  }

  .block-heading-top {
    margin-bottom: 4.2em;
  }

  .heading-top {
    font-size: 4.4em;
  }

  .collection-list-wrapper {
    margin-bottom: 6em;
  }

  .collection-list {
    grid-row-gap: 5.5em;
  }

  .image-blog-main {
    height: auto;
  }

  .blog-main {
    margin-top: 4.4em;
    margin-bottom: 3.4em;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }

  .block-img-large-a {
    background-position: 50% 100%;
    background-size: cover;
    min-height: 60vh;
  }

  .heading-large {
    font-size: 14vw;
  }

  .block-img-large-b {
    min-height: 60vh;
  }

  .content {
    margin-top: 5.5em;
    margin-bottom: 5.5em;
  }

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

  .grid-splash {
    margin-bottom: 8em;
  }

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

  .banner-section {
    padding-top: 122px;
  }

  .banner-title {
    font-family: Intertight, sans-serif;
    font-size: 50px;
  }

  .banner-content {
    font-weight: 400;
  }

  .banner-image-wrap {
    padding-top: 50px;
  }

  .count-section {
    padding-bottom: 120px;
  }

  .count-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin-top: 60px;
  }

  .count-card {
    min-width: 250px;
    padding: 30px 40px;
  }

  .count-card-title {
    font-size: 32px;
  }

  .section-linear-title {
    font-size: 100px;
  }

  .our-story-title {
    font-size: 38px;
  }

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

  .our-story-content-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 20px;
  }

  .section-linear-title-wrap {
    margin-bottom: -10px;
  }

  .our-story-image-wrap {
    max-width: 60%;
  }

  .our-story-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 40px;
  }

  .our-story-area {
    padding-bottom: 120px;
  }

  .our-story-subtitle {
    font-size: 32px;
  }

  .service-title-wrap {
    max-width: none;
  }

  .service-post-wrap {
    width: 100%;
    max-width: 75%;
  }

  .service-wrap {
    padding-bottom: 120px;
  }

  .service-post-image-area {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    min-width: 300px;
  }

  .service-post-area {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 30px;
  }

  .team-post-area {
    margin-top: 60px;
  }

  .team-wrap {
    padding-bottom: 70px;
  }

  .section-title-wrap {
    flex-flow: wrap;
  }

  .team-item {
    width: 50%;
  }

  .secondary-button-link.large {
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-detail-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .testimonial-image-wrap {
    width: 80px;
    min-width: 80px;
  }

  .testimonial-detail-area {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-self: flex-end;
    align-items: flex-start;
    margin-top: 25px;
  }

  .testimonial-name {
    font-size: 22px;
  }

  .team-grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-top: 50px;
  }

  .testimonial-card {
    border-radius: 25px;
    flex-flow: wrap;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .testimonial-quote-icon-wrap {
    max-width: 70px;
    position: absolute;
    inset: 20px 20px auto auto;
  }

  .client-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .client-logo-marquee {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-right: 60px;
  }

  .client-logo-marquee-bg {
    width: 220px;
    height: 120px;
    padding: 30px;
  }

  .client-logo {
    width: 140px;
  }

  .service-post {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 30px;
  }

  .image {
    max-width: 8%;
    margin-bottom: 1615px;
    margin-left: 198px;
    margin-right: 0;
    position: fixed;
  }

  .section-linear-title-2 {
    font-size: 100px;
  }

  .section-title-2, .section-title-3 {
    font-size: 44px;
  }

  .service-post-area-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 30px;
  }

  .section-title-4 {
    font-size: 44px;
  }

  .service-post-area-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 30px;
  }

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

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }
}

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

  h1 {
    font-size: 2.8em;
  }

  h2 {
    font-size: 2.2em;
  }

  h3 {
    font-size: 1.7em;
  }

  h4 {
    font-size: 1.3em;
  }

  .navbar {
    padding: 1.52em;
    inset: 0% 0% auto;
  }

  .nav-menu {
    margin-left: .6em;
    margin-right: .6em;
  }

  .nav-link {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
  }

  .icon-menu {
    font-size: .96em;
    line-height: 1em;
  }

  .menu-button {
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    color: var(--light);
    background-color: #2d2c2d80;
    border-radius: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: .54em;
    transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
    display: flex;
  }

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

  .grid-hero-a {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .heading-hero {
    font-size: 8vw;
  }

  .grid-project-a {
    margin-top: 8vw;
    margin-bottom: 8vw;
  }

  .lightbox-link, .lightbox-link.type-b, .lightbox-link.type-c {
    width: 80vw;
    height: 45vw;
  }

  .lightbox-link.type-full-50 {
    height: 54vw;
  }

  .grid-hero-b {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .grid-project-b {
    margin-top: 8vw;
  }

  .footer {
    grid-row-gap: .75em;
    flex-direction: column;
  }

  .grid-project-c {
    margin-top: 10em;
    margin-bottom: 12em;
  }

  .grid-hero-c {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

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

  .block-cta-full {
    min-height: auto;
    padding-top: 7em;
    padding-bottom: 7em;
  }

  .yellow-circle {
    filter: blur(12px);
  }

  .hero-horizontal {
    padding-top: 10em;
  }

  .circle-hero {
    top: 3em;
  }

  .block-circle-hero {
    margin-top: 6em;
  }

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

  .block-project-work, .block-project-work.large {
    height: 50vw;
  }

  .yellow-circle-cta {
    filter: blur(12px);
  }

  .heading-cta {
    font-size: 6.5vw;
  }

  .grid-work-r, .grid-work-l {
    grid-row-gap: 2.9em;
    grid-template-columns: 1fr;
  }

  .heading-top {
    font-size: 3.6em;
  }

  .blog-main {
    margin-top: 3.4em;
    margin-bottom: 2.4em;
  }

  .block-img-large-a {
    background-position: 50% 100%;
    background-size: cover;
  }

  .grid-contact-a {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-link {
    min-height: 50vw;
  }

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

  .contact-c {
    padding-left: 10%;
    padding-right: 10%;
  }

  .block-field {
    flex-direction: column;
  }

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

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

  .splash-subsection {
    padding-bottom: 1em;
  }

  .grid-splash {
    grid-row-gap: 4vw;
    grid-template-columns: 1fr;
  }

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

  .background-video-splash {
    height: 43vw;
  }

  .banner-section {
    padding-top: 97px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .banner-title {
    font-size: 40px;
  }

  .banner-content {
    font-size: 16px;
  }

  .banner-image-wrap {
    padding-top: 40px;
  }

  .count-section {
    padding-bottom: 100px;
  }

  .count-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 40px;
  }

  .count-card {
    min-width: 200px;
    padding: 20px 25px;
  }

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

  .count-card-text {
    font-size: 18px;
  }

  .section-linear-title {
    font-size: 100px;
  }

  .our-story-title {
    font-size: 34px;
  }

  .section-title {
    margin-bottom: 20px;
    font-size: 27px;
  }

  .our-story-content-wrap {
    max-width: 100%;
    padding-top: 10px;
  }

  .section-linear-title-wrap {
    margin-bottom: -10px;
  }

  .our-story-image-wrap {
    order: -1;
    max-width: 80%;
  }

  .our-story-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .our-story-area {
    padding-bottom: 100px;
  }

  .our-story-subtitle {
    font-size: 30px;
  }

  .service-post-wrap {
    max-width: none;
  }

  .service-wrap {
    padding-bottom: 100px;
  }

  .service-wrap.about {
    padding-bottom: 60px;
  }

  .service-post-image-area {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-auto-columns: 1fr;
    display: none;
  }

  .service-post-area {
    flex-flow: wrap;
    margin-top: 25px;
  }

  .team-post-area {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-wrap {
    padding-bottom: 60px;
  }

  .team-post-section {
    background-color: #000;
    padding-top: 40px;
  }

  .section-title-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .team-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .secondary-button-link {
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 18px;
  }

  .testimonial-rating-icon-wrap {
    justify-content: center;
    align-items: center;
    max-width: 25px;
    display: flex;
  }

  .testimonial-detail-area {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial-name {
    font-size: 20px;
  }

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

  .testimonial-card {
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-quote-icon-wrap {
    max-width: 60px;
  }

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

  .client-logo-marquee {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-right: 40px;
  }

  .client-logo-marquee-bg {
    width: 180px;
    height: 100px;
    padding: 20px;
  }

  .client-logo {
    width: 120px;
  }

  .service-post {
    flex-flow: wrap;
    margin-top: 25px;
  }

  .image {
    max-width: 10%;
    margin-left: 437px;
  }

  .section-linear-title-2 {
    font-size: 100px;
  }

  .section-title-2 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .container-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title-3 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .container-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-post-area-2 {
    flex-flow: wrap;
    margin-top: 25px;
  }

  .section-title-4 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .container-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-post-area-3 {
    flex-flow: wrap;
    margin-top: 25px;
  }

  .team-slider {
    padding: 60px 15px;
  }
}

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

  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: 1.3em;
  }

  h4 {
    font-size: 1.1em;
  }

  h5 {
    font-size: 1em;
  }

  h6 {
    font-size: .9em;
  }

  .navbar {
    padding: 1.1em 1em;
  }

  .grid-hero-a {
    padding: 0;
  }

  .grid-project-a {
    grid-row-gap: 1.25em;
    margin-top: 5vw;
    margin-bottom: 5vw;
  }

  .lightbox-link, .lightbox-link.type-b, .lightbox-link.type-c {
    width: 90vw;
    height: 50vw;
  }

  .background-video {
    display: flex;
  }

  .block-project-text {
    grid-row-gap: 0em;
    padding: .8em 2em .8em .9em;
    bottom: .4em;
    left: .4em;
  }

  .subheading-project {
    font-size: .7em;
  }

  .heading-project {
    font-size: .8em;
  }

  .logo {
    top: 1.1em;
    left: 1em;
  }

  .grid-hero-b {
    padding: 0;
  }

  .grid-project-b {
    grid-row-gap: 1.25em;
    margin-top: 5vw;
  }

  .footer {
    grid-row-gap: 1.75em;
  }

  .block-footer {
    grid-row-gap: .5em;
    flex-direction: column;
  }

  .grid-hero-c {
    padding: 0;
  }

  .frame-100, .frame-50 {
    padding-top: .35em;
    padding-bottom: .35em;
  }

  .grid-2-lightbox {
    grid-row-gap: .7em;
  }

  .block-cta-full {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }

  .yellow-circle-hero {
    filter: blur(20px);
    width: 20vw;
    height: 20vw;
  }

  .section {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }

  .section-call-to-action {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }

  .section-call-to-action-large {
    padding-top: 17vw;
    padding-bottom: 17vw;
  }

  .block-heading-top {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .heading-top {
    font-size: 2.8em;
  }

  .collection-list-wrapper {
    margin-bottom: 4.5em;
  }

  .collection-list {
    grid-row-gap: 4em;
  }

  .block-heading-blog {
    grid-row-gap: .25em;
    flex-direction: column;
  }

  .block-img-large-a {
    -webkit-text-fill-color: inherit;
    object-fit: fill;
    background-image: url('../images/aboutusneon.jpg');
    background-position: 50% 100%;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    background-clip: border-box;
    position: static;
  }

  .content {
    grid-row-gap: 6em;
  }

  .grid-content {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .contact-link {
    padding: 1.6em;
  }

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

  .grid-splash {
    margin-bottom: 6em;
  }

  .splash {
    margin-bottom: -2em;
  }

  .banner-section {
    background-color: #000;
    padding-top: 92px;
  }

  .container {
    background-color: #000;
  }

  .banner-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .banner-title {
    font-size: 34px;
  }

  .banner-content {
    font-size: 16px;
  }

  .banner-image-wrap {
    padding-top: 30px;
  }

  .count-section {
    background-color: #000;
    padding-bottom: 80px;
  }

  .count-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .count-card-title {
    font-size: 24px;
  }

  .count-card-text {
    font-size: 16px;
  }

  .section-linear-title {
    font-size: 60px;
  }

  .our-story-title {
    font-size: 30px;
  }

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

  .our-story-content-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section-linear-title-wrap {
    margin-bottom: 0;
  }

  .our-story-image-wrap {
    max-width: 100%;
  }

  .our-story-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
  }

  .our-story-area {
    padding-bottom: 80px;
  }

  .our-story-subtitle {
    margin-bottom: 5px;
    font-size: 28px;
  }

  .service-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 80px;
  }

  .service-wrap.about {
    padding-bottom: 40px;
  }

  .service-post-image-area {
    min-width: auto;
    max-width: 100%;
    top: 20px;
  }

  .service-post-area {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 20px;
  }

  .team-post-area {
    max-width: 100%;
    margin-top: 40px;
  }

  .team-wrap {
    padding-bottom: 40px;
  }

  .team-post-section {
    background-color: #000;
  }

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

  .team-item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .secondary-button-link {
    font-size: 16px;
  }

  .secondary-button-link.large {
    padding-left: 25px;
    padding-right: 25px;
  }

  .testimonial-designation {
    font-size: 16px;
  }

  .testimonial-detail-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    min-width: 225px;
  }

  .testimonial-image-wrap {
    width: 70px;
    min-width: 70px;
  }

  .testimonial-rating-icon-wrap {
    max-width: 22px;
  }

  .testimonial-detail-area {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
  }

  .testimonial-section {
    overflow: hidden;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .team-grid {
    margin-top: 30px;
  }

  .testimonial-card {
    border-radius: 15px;
    padding: 30px 20px;
  }

  .testimonial-quote-icon-wrap {
    max-width: 50px;
  }

  .client-section {
    background-color: #000;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .client-logo-marquee {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    padding-right: 25px;
  }

  .client-logo-marquee-bg {
    border-radius: 15px;
    width: 140px;
    height: 80px;
  }

  .client-logo {
    width: 100px;
  }

  .service-post {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 20px;
  }

  .image {
    max-width: 15%;
    margin-left: 237px;
    position: fixed;
  }

  .section-linear-title-2 {
    font-size: 60px;
  }

  .section-title-2 {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .container-3 {
    background-color: #000;
  }

  .section-title-3 {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .container-4 {
    background-color: #000;
  }

  .service-post-area-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 20px;
  }

  .section-title-4 {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .container-5 {
    background-color: #000;
  }

  .service-post-area-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 20px;
  }

  .container-6 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }
}

#w-node-_41956b69-a315-424a-ecf1-0f19fff4546d-5d445120, #w-node-f7b7a4ae-9e87-1db1-5504-56d64dc709d4-5d445122, #w-node-ad134e9e-34fb-7446-97f0-41d3ea16a351-5d445122 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db670680-0d7f-8180-8e2c-5efe494a4ed7-5d445122 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f7b7a4ae-9e87-1db1-5504-56d64dc709d4-5d445126, #w-node-_6847cd84-5a68-23c2-53ae-0a12d7ef874f-5d445126, #w-node-_2e0d7e89-6d16-341c-0a86-19d0142fa770-5d445126, #w-node-e2a44cb6-e23a-4745-e5c8-bd9204df7cf6-5d445126, #w-node-_189b958c-2945-7767-a0ac-5aa33b1cf823-5d445126, #w-node-_8cc8b5f5-9e67-e88c-939f-081a75c57fd8-5d445126, #w-node-_8a4515c9-85a3-04eb-a4a5-ff5b5ddcc279-5d445126, #w-node-_79108424-ea6e-323f-866f-b333f4e87506-5d445126, #w-node-_080e7087-2034-2301-c999-af29f7a0cfaf-5d445126, #w-node-_5615d716-8473-c162-eca5-1d82ffa6352c-5d445126, #w-node-c58d7300-d47f-84b5-0d4f-40c5e1c8fc5a-5d445126, #w-node-_41956b69-a315-424a-ecf1-0f19fff4546d-5d44512a, #w-node-_29bc6e10-fb8a-299a-3e92-59ee0e95d209-5d44512a, #w-node-_62e5f132-6abc-d5a4-7419-476be9c43d01-5d44512a, #w-node-_796bf0e8-6e33-7292-44f0-33969f4867c9-5d44512a, #w-node-b9a8551d-a3ca-ecca-8fa6-e8d23352adff-5d44512a, #w-node-_55ee025a-307c-f850-322d-e2ff51a36e21-5d44512a, #w-node-_855f1ae2-b348-11b4-dacd-45d2bccf4c04-5d44512a, #w-node-_41956b69-a315-424a-ecf1-0f19fff4547d-5d44512a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_11aa8dfa-024b-4bc0-1d53-ac06493aa24a-5d44512a, #w-node-_11aa8dfa-024b-4bc0-1d53-ac06493aa24b-5d44512a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_41956b69-a315-424a-ecf1-0f19fff45493-5d44512a, #w-node-_41956b69-a315-424a-ecf1-0f19fff4546d-5d44512b, #w-node-_41956b69-a315-424a-ecf1-0f19fff4547d-5d44512b, #w-node-_698f3142-8df0-8c06-6ae8-a50645ac2a73-5d44512b, #w-node-a4ba1a24-edf1-f0a5-5baa-8cc4407f2af9-5d44512b, #w-node-aaf53456-eb7f-b74a-a0d8-35308a95e07b-5d44512b, #w-node-a7177d71-467e-0080-2e9c-9f338f106576-5d44512b, #w-node-bf44db32-21e6-6228-7f4f-6305f0ae5b7e-5d44512b, #w-node-_41956b69-a315-424a-ecf1-0f19fff45493-5d44512b, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc64a-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc646-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc642-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc63e-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc62a-5d44512f, #w-node-_4427b156-2d51-4d27-aad1-3a115bd0e434-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc62e-5d44512f, #w-node-_904ba1ea-20c7-ffdf-d2ec-9dc1abe80a20-5d44512f, #w-node-e7499df6-65b7-f618-5e8a-2f95f0a72315-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc632-5d44512f, #w-node-_1c9171e1-7b03-76dd-5331-02822161b68a-5d44512f, #w-node-_40187ecf-6acd-4a84-961a-c6274e3d5a5b-5d44512f, #w-node-_22fe302e-9818-3f19-7490-a85f598b4674-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc63a-5d44512f, #w-node-_5efcac20-9f9c-fe9d-8f97-0619cb526823-5d44512f, #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc636-5d44512f, #w-node-ffaa4f6e-a542-2d47-fce5-4fa1d40869b6-5d44512f, #w-node-_4e139b13-7a28-f942-a19f-329d8b8cc439-5d44512f, #w-node-_2e49d921-7fcd-7bae-8399-c0a715d26ac7-5d44512f, #w-node-f1aca8a9-f75d-15ee-ab85-2ef78e805c86-5d44512f, #w-node-_5fbc94b8-4843-64c7-fd44-d22b6e2a5f50-5d44512f, #w-node-_80b65db9-a97c-22e2-b7cf-2f7eccd75f26-5d44512f, #w-node-e7eda9de-b8f1-21ef-fa1f-c3b363f3949d-5d44512f, #w-node-b953341f-cb54-7da9-57c5-4e2fd8309b4a-5d44512f, #w-node-_40b775d0-2ac8-558a-e2c9-dc6c2d055111-5d44512f, #w-node-_7ca5db6d-40a7-8d49-be20-de8ef17d205e-5d44512f, #w-node-e31f9b69-7730-8822-3746-e9608d61a1a5-5d44512f, #w-node-_86338430-8f6b-f997-353a-bf0729e64468-5d44512f, #w-node-_32c560fb-7db1-9bce-aa56-d59644aacec7-5d44512f, #w-node-dbcc349d-3a96-32bf-4e21-521412acff82-5d44512f, #w-node-debbc579-1aa7-4562-2a7d-1e743afa454a-5d44512f, #w-node-_71ad5a59-d433-b944-2e1a-60f4e7d3a64c-5d44512f, #w-node-a75758cc-fd48-4d1f-d41f-e5327879bd19-5d44512f, #w-node-_28e256f2-8800-8cd9-d49e-28d7f911365a-5d44512f, #w-node-ab4b0860-12b7-8538-a172-1ed82fdcb566-5d44512f, #w-node-cf388b49-471f-c15f-fe31-522ba96400b3-5d44512f, #w-node-_59540b9c-eaea-c82d-8062-d88f9c0130f2-5d44512f, #w-node-_32088a1f-6115-ea18-0270-4a3a1e09e5fe-5d44512f, #w-node-_1b25fd6e-0315-3d68-e004-a1a94ab257e5-5d44512f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-c6cd439f-eaf5-bf69-7c6b-8d0eed294dea-5d44511e, #w-node-ba4d246a-40fb-4c1d-761b-1722cf90ef21-5d44511e, #w-node-_86549fa9-973d-d9b2-b92e-618119e11a9b-5d44511e, #w-node-e02c882e-564c-b7f1-d3f9-95ff83598ce7-5d44511e, #w-node-_06741384-2b78-3e37-35d8-d8dced915293-5d44511e, #w-node-b9c3695f-fffb-3580-b09b-e60e2f40ec67-5d44511e, #w-node-db670680-0d7f-8180-8e2c-5efe494a4ed7-5d445122 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4d4bc8fe-3a68-35f2-72f8-fe73b06fc636-5d44512f, #w-node-_2e49d921-7fcd-7bae-8399-c0a715d26ac7-5d44512f, #w-node-_5fbc94b8-4843-64c7-fd44-d22b6e2a5f50-5d44512f, #w-node-_80b65db9-a97c-22e2-b7cf-2f7eccd75f26-5d44512f, #w-node-_40b775d0-2ac8-558a-e2c9-dc6c2d055111-5d44512f, #w-node-_7ca5db6d-40a7-8d49-be20-de8ef17d205e-5d44512f, #w-node-e31f9b69-7730-8822-3746-e9608d61a1a5-5d44512f, #w-node-_86338430-8f6b-f997-353a-bf0729e64468-5d44512f, #w-node-_32c560fb-7db1-9bce-aa56-d59644aacec7-5d44512f, #w-node-dbcc349d-3a96-32bf-4e21-521412acff82-5d44512f, #w-node-debbc579-1aa7-4562-2a7d-1e743afa454a-5d44512f, #w-node-_71ad5a59-d433-b944-2e1a-60f4e7d3a64c-5d44512f, #w-node-a75758cc-fd48-4d1f-d41f-e5327879bd19-5d44512f, #w-node-_28e256f2-8800-8cd9-d49e-28d7f911365a-5d44512f, #w-node-ab4b0860-12b7-8538-a172-1ed82fdcb566-5d44512f, #w-node-cf388b49-471f-c15f-fe31-522ba96400b3-5d44512f, #w-node-_59540b9c-eaea-c82d-8062-d88f9c0130f2-5d44512f, #w-node-_32088a1f-6115-ea18-0270-4a3a1e09e5fe-5d44512f, #w-node-_1b25fd6e-0315-3d68-e004-a1a94ab257e5-5d44512f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'DT Nightingale';
  src: url('../fonts/Nightingale-v2.0.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-ExtraBold.ttf') format('truetype'), url('../fonts/InterTight-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-BoldItalic.ttf') format('truetype'), url('../fonts/InterTight-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Intertight';
  src: url('../fonts/InterTight-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}