.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.15rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 1.25rem;
  }
}

.smallContainer {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .smallContainer {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .smallContainer {
    padding: 0 2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html,
body {
  min-width: 340px;
  max-width: 100vw;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Host Grotesk", Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  color: #080604;
  background-color: #f5f5f5;
}
@media (min-width: 1100px) {
  body p,
  body ul,
  body ol {
    font-size: 18px;
  }
}
body strong {
  font-weight: 800;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -1%;
  font-family: "Host Grotesk", Georgia, serif;
}
h1.upper,
h2.upper,
h3.upper,
h4.upper,
h5.upper,
h6.upper {
  text-transform: uppercase;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

h1 {
  font-size: clamp(1.2rem, 2.85vw, 1.75rem);
  margin: 0;
}

h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(1.2rem, 2.85vw, 1.75rem);
}
@media (min-width: 1100px) {
  h2 {
    margin-bottom: 2rem;
  }
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 1.5rem;
}
@media (min-width: 1100px) {
  h3 {
    margin-bottom: 1.75rem;
  }
}

.anchor {
  position: relative;
  top: 4rem;
}

p,
li,
span,
a {
  letter-spacing: -1%;
}

p {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  p {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1100px) {
  p {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  p {
    margin-bottom: 1.85rem;
  }
}

a {
  color: #080604;
  text-decoration: none;
  font-family: "Host Grotesk", Georgia, serif;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-size: 0.9rem;
  gap: 0;
  font-family: "Host Grotesk", Georgia, serif;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (min-width: 1100px) {
  .btn,
  .button {
    font-size: 1rem;
  }
}
.btn .arrow,
.button .arrow {
  margin-left: 1rem;
}
.btn strong,
.btn .bold,
.button strong,
.button .bold {
  font-weight: 800;
  display: contents;
}
.btn.square,
.button.square {
  padding: 0.75rem;
}
.btn.square:after,
.button.square:after {
  border-radius: 8px;
}
.btn.whiteBG,
.button.whiteBG {
  background-color: #f5f5f5;
}
.btn.redBG,
.button.redBG {
  background-color: #ef4714;
  color: #f5f5f5;
}
.btn.blackBG,
.button.blackBG {
  background-color: #080604;
  color: #f5f5f5;
}
.btn.lighGreyBG,
.button.lighGreyBG {
  background-color: #eeeeee;
  color: #7c7c7c;
}
.btn.solid,
.button.solid {
  background-color: #cfcfcf;
  font-weight: 600;
}
.btn.outline,
.button.outline {
  background-color: #f5f5f5;
  color: #080604;
  border: 1px solid #cfcfcf;
}
.btn.outline .arrow,
.button.outline .arrow {
  transform: rotate(90deg);
}
.btn.outline .arrow circle,
.button.outline .arrow circle {
  fill: transparent;
}
.btn.pinkBG,
.button.pinkBG {
  background-color: #ffcedc;
}
.btn.see,
.button.see {
  font-size: 0.9rem;
  position: relative;
  padding: 0.75rem 4.5rem 0.75rem 4.5rem;
  border-radius: 0;
}
@media (min-width: 1100px) {
  .btn.see,
  .button.see {
    font-size: 1rem;
  }
}
.btn.see .bg,
.button.see .bg {
  position: absolute;
  inset: 0 0 0 3.5rem;
  z-index: -1;
  margin: auto;
  width: calc(100% - 3.25rem);
  height: 100%;
}
.btn.see span,
.button.see span {
  position: relative;
  z-index: 2;
}
.btn.see .glasses,
.button.see .glasses {
  position: absolute;
  right: 0.75rem;
  z-index: 1;
}
.btn.see .arrow,
.button.see .arrow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.btn.goOn,
.button.goOn {
  font-size: 0.9rem;
  position: relative;
  padding: 0.75rem 1rem 0.75rem 5.75rem;
  border-radius: 0;
}
@media (min-width: 1100px) {
  .btn.goOn,
  .button.goOn {
    font-size: 1rem;
  }
}
.btn.goOn .bg,
.button.goOn .bg {
  position: absolute;
  inset: 0 0 0 3.5rem;
  z-index: -1;
  margin: auto;
  width: calc(100% - 2.25rem);
  height: 100%;
}
.btn.goOn span,
.button.goOn span {
  position: relative;
  z-index: 2;
}
.btn.goOn .arrow,
.button.goOn .arrow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.buttonCTA {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-size: 0.9rem;
  gap: 0;
  font-family: "Host Grotesk", Georgia, serif;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (min-width: 1100px) {
  .buttonCTA {
    font-size: 1rem;
  }
}
.buttonCTA.anim {
  color: #080604;
  position: relative;
  padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .buttonCTA.anim {
    padding: 0.875rem 1rem;
  }
}
.buttonCTA.anim:after {
  transform: scale(1) translateX(0);
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffcedc;
  z-index: -1;
  position: absolute;
  width: 100%;
  border-radius: 12px;
  transition: background-color 0.35s ease, transform 0.35s ease, width 0.35s ease;
}
@media (min-width: 768px) {
  .buttonCTA.anim:after {
    border-radius: 10px;
  }
}
@media (min-width: 1100px) {
  .buttonCTA.anim:hover:after {
    transform: scale(1) translateX(7px);
    width: calc(100% + 14px);
    background-color: #cfcfcf;
  }
  .buttonCTA.anim:hover .svgWrapper:after {
    background-color: #ffcedc;
    width: 45px;
  }
  .buttonCTA.anim:hover .svgWrapper svg {
    transform: translateX(14px) rotate(45deg);
  }
  .buttonCTA.anim:hover .svgWrapper svg path {
    stroke: #080604;
  }
}
.buttonCTA.anim .svgWrapper {
  position: relative;
  height: 30px;
  width: 30px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.buttonCTA.anim .svgWrapper:after {
  transition: background-color 0.35s ease, width 0.35s ease, transform 0.35s ease;
  content: "";
  inset: 0;
  height: 30px;
  width: 30px;
  position: absolute;
  transform-origin: left center;
  background-color: #080604;
  border-radius: 45px;
  margin: auto;
  z-index: 1;
}
.buttonCTA.anim .svgWrapper svg {
  position: relative;
  z-index: 2;
  transform: translateX(0) rotate(0deg);
  transition: transform 0.35s ease;
}
.buttonCTA.anim .svgWrapper svg circle {
  display: none;
}
.buttonCTA.anim .svgWrapper svg path {
  transition: transform 0.35s ease, stroke 0.35s ease;
}
.buttonCTA.blackBG {
  color: #f5f5f5;
}
.buttonCTA.blackBG:after {
  background-color: #080604;
}
@media (min-width: 1100px) {
  .buttonCTA.blackBG:hover {
    color: #080604;
  }
  .buttonCTA.blackBG:hover:after {
    background-color: #ffcedc;
  }
  .buttonCTA.blackBG:hover .svgWrapper:after {
    background-color: #080604;
  }
  .buttonCTA.blackBG:hover .svgWrapper svg path {
    stroke: #f5f5f5;
  }
}
.buttonCTA.blackBG .svgWrapper:after {
  background-color: #f5f5f5;
}
.buttonCTA.greenBG {
  color: #f5f5f5;
}
.buttonCTA.greenBG:after {
  background-color: #0dab76;
}
@media (min-width: 1100px) {
  .buttonCTA.greenBG:hover:after {
    background-color: #080604;
  }
  .buttonCTA.greenBG:hover .svgWrapper:after {
    background-color: #0dab76;
  }
  .buttonCTA.greenBG:hover .svgWrapper svg path {
    stroke: #f5f5f5;
  }
}
.buttonCTA.greenBG .svgWrapper:after {
  background-color: #f5f5f5;
}
.buttonCTA.pinkBG {
  color: #080604;
}
.buttonCTA.pinkBG:after {
  background-color: #ffcedc;
}
@media (min-width: 1100px) {
  .buttonCTA.pinkBG:hover:after {
    background-color: #cfcfcf;
  }
  .buttonCTA.pinkBG:hover .svgWrapper:after {
    background-color: #ffcedc;
  }
  .buttonCTA.pinkBG:hover .svgWrapper svg path {
    stroke: #080604;
  }
}

.featuredCaseStudies {
  padding: 1rem 0;
  border-bottom: 1px solid #ebebeb;
}
@media (min-width: 640px) {
  .featuredCaseStudies .container .cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf {
  text-decoration: none;
}
@media (min-width: 640px) {
  .featuredCaseStudies .container .cs-grid a.csHalf {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 2rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .title {
  display: block;
}
.featuredCaseStudies .container .cs-grid a.csHalf .cs-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 0 2rem;
}
@media screen and (min-width: 640px) and (max-width: 899px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
}
@media screen and (min-width: 900px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro {
    padding: 0 0 2.5rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .cs-intro p {
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.25em;
  padding-right: 1rem;
  margin: 0;
  max-width: 635px;
}
@media screen and (min-width: 450px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro p {
    font-size: 1.25rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 899px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro p {
    padding-right: 0;
  }
}
@media screen and (min-width: 900px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro p {
    font-size: 1.5rem;
    padding-right: 4rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #e8e8e8;
  padding: 0.5rem;
  border-radius: 10px;
}
@media screen and (min-width: 640px) and (max-width: 899px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 900px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat {
    padding: 1rem 1.25rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat p {
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 640px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat p {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .cs-intro .stat p {
    font-size: 1.75rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container {
  position: relative;
  display: block;
  aspect-ratio: 1.025/1;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .img-container {
    aspect-ratio: 1.025/1;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .tags .tag {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  overflow: hidden;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .tags .tag .glass {
  background: hsla(0, 0%, 86.26%, 0.5);
  backdrop-filter: blur(8px);
  position: absolute;
  inset: 0;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .tags .tag .inner {
  position: relative;
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .img-container .tags .tag .inner {
    font-size: 1rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-radius: 6px;
  overflow: hidden;
  padding: 0.5rem 1.5rem 0.5rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .featuredCaseStudies .container .cs-grid a.csHalf .img-container .button {
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
  }
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .button::after {
  content: "";
  position: relative;
  left: 12px;
  display: inline-block;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3e%3ccircle cx='12' cy='12' r='12' fill='%23fff'%3e%3c/circle%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' d='m7.757 16.243 8.169-8.169m-8.047-.439 8.364.122.122 8.364'%3e%3c/path%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .button .glass {
  background: hsla(0, 0%, 86.26%, 0.5);
  backdrop-filter: blur(8px);
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .button .inner {
  position: relative;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .main-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.featuredCaseStudies .container .cs-grid a.csHalf .img-container .main-video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77%;
  height: 101%;
  pointer-events: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  z-index: 999999;
  padding: 8px 16px;
  color: #f5f5f5;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px;
}

main {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  main {
    padding-top: 4.75rem;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff3c1a;
}

#leadGen2 section .container .wrapper {
  background-color: #080604;
  color: #f5f5f5;
  border-radius: 10px;
  padding: 2rem;
}
@media (min-width: 768px) {
  #leadGen2 section .container .wrapper {
    padding: 4rem;
  }
}
@media (min-width: 768px) {
  #leadGen2 section .container .wrapper .leadGenInner {
    max-width: 1000px;
    margin: 0 auto;
  }
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .header h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
}
@media (min-width: 1024px) {
  #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .header h3 {
    margin-bottom: 1.75rem;
  }
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .header p {
  line-height: 150%;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .header p {
    max-width: 400px;
  }
}
@media (min-width: 1100px) {
  #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .header p {
    font-size: 18px;
  }
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form ::-moz-placeholder {
  color: #f5f5f5;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form ::placeholder {
  color: #f5f5f5;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p {
  margin: 0 0 1rem;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p.submit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p.submit .submitWrap {
  position: relative;
  padding-left: 2rem;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p.submit .submitWrap .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  bottom: 0;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p.submit .submitWrap svg {
  position: absolute;
  right: 1rem;
  top: 0;
  margin: auto;
  bottom: 0;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p textarea {
  font-family: "Host Grotesk", Georgia, serif;
  width: 100%;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  padding: 1rem;
  background-color: transparent;
  line-height: 150%;
  color: #f5f5f5;
  outline: none !important;
  font-weight: 400;
  letter-spacing: 1%;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p input[type=submit] {
  word-spacing: normal;
  font-family: "Host Grotesk", Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  background: #ef4714;
  color: #080604;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p input[type=submit] svg {
  margin-left: 1rem;
}
#leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p input[type=text], #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p input[type=email], #leadGen2 section .container .wrapper .leadGenInner #leadGenerationForm .leadGenerationForm .formWrapper form > p input[type=tel] {
  line-height: 150%;
  letter-spacing: 1px;
  outline: none !important;
  font-weight: 400;
  color: #f5f5f5;
  width: 100%;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  background-color: transparent;
  height: 58px;
}

.locations {
  border-top: 1px solid #ebebeb;
  padding: 3rem 0 2rem;
}
@media screen and (min-width: 500px) {
  .locations {
    padding: 3.5rem 0 1.5rem;
  }
}
.locations .container .title {
  text-align: center;
}
.locations .container .title h2 {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.75vw, 2.75rem);
}
@media (min-width: 1024px) {
  .locations .container .title h2 {
    margin-bottom: 1.75rem;
  }
}
.locations .container .location-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  padding: 1.5rem 0 0;
}
@media screen and (min-width: 500px) {
  .locations .container .location-grid {
    gap: 1rem;
    padding: 2rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .locations .container .location-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
.locations .container .location-grid .location-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .locations .container .location-grid .location-container {
    aspect-ratio: 1/1.3;
  }
}
@media screen and (min-width: 1024px) {
  .locations .container .location-grid .location-container {
    aspect-ratio: 480/545;
  }
}
.locations .container .location-grid .location-container .img-wrap {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1.1/1;
}
@media screen and (min-width: 500px) {
  .locations .container .location-grid .location-container .img-wrap {
    aspect-ratio: 1.25/1;
  }
}
@media screen and (min-width: 768px) {
  .locations .container .location-grid .location-container .img-wrap {
    aspect-ratio: 1/1.3;
  }
}
@media screen and (min-width: 1024px) {
  .locations .container .location-grid .location-container .img-wrap {
    aspect-ratio: 480/545;
  }
}
.locations .container .location-grid .location-container .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.locations .container .location-grid .location-container .address-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  padding: 1.25em 1.5em;
}
@media screen and (min-width: 500px) {
  .locations .container .location-grid .location-container .address-wrap {
    position: absolute;
    bottom: 1em;
    left: 1em;
    max-width: 370px;
  }
}
@media screen and (min-width: 768px) {
  .locations .container .location-grid .location-container .address-wrap {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    top: auto;
    height: calc(100% - 3rem);
    width: calc(100% - 1rem);
    padding: 1rem;
    max-height: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .locations .container .location-grid .location-container .address-wrap {
    max-height: 210px;
    max-width: 324px;
  }
}
@media screen and (min-width: 1200px) {
  .locations .container .location-grid .location-container .address-wrap {
    bottom: 1rem;
    left: 1rem;
  }
}
.locations .container .location-grid .location-container .address-wrap .blur-bg {
  background: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: blur(8px);
  position: absolute;
  inset: 0;
}
.locations .container .location-grid .location-container .address-wrap .location-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5em;
}
.locations .container .location-grid .location-container .address-wrap .location-title h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0;
}
.locations .container .location-grid .location-container .address-wrap .location-title img {
  width: 44px;
  max-width: 100%;
  height: auto;
}
.locations .container .location-grid .location-container .address-wrap .details {
  position: relative;
}
@media screen and (min-width: 768px) {
  .locations .container .location-grid .location-container .address-wrap .details {
    grid-template-rows: 92px 30px auto;
    display: grid;
  }
}
@media screen and (min-width: 1024px) {
  .locations .container .location-grid .location-container .address-wrap .details {
    grid-template-rows: auto;
  }
}
.locations .container .location-grid .location-container .address-wrap .details a {
  text-decoration: underline;
}
.locations .container .location-grid .location-container .address-wrap .details .contact-address {
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 500px) {
  .locations .container .location-grid .location-container .address-wrap .details .contact-address {
    font-size: 0.875rem;
  }
}
.locations .container .location-grid .location-container .address-wrap .details .contact-map-link {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 1.25em;
  transition: color 0.35s ease;
}
@media (min-width: 1100px) {
  .locations .container .location-grid .location-container .address-wrap .details .contact-map-link {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  .locations .container .location-grid .location-container .address-wrap .details .contact-map-link:hover:before {
    opacity: 1;
  }
  .locations .container .location-grid .location-container .address-wrap .details .contact-map-link:hover:after {
    transform: rotate(45deg);
  }
}
.locations .container .location-grid .location-container .address-wrap .details .contact-map-link::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 1em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.757519 9.72822L8.92582 1.55992M0.757533 1.24271L9.2428 1.24294L9.2428 9.72822' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
  transform: rotate(0deg);
}
@media (min-width: 1100px) {
  .locations .container .location-grid .location-container .address-wrap .details .contact-map-link::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    right: -0.25rem;
    opacity: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #f5f5f5;
    border-radius: 18px;
    position: absolute;
    z-index: 1;
    transition: opacity 0.35s ease;
  }
}
.locations .container .location-grid .location-container .address-wrap .details .contact-link {
  display: block;
  font-size: 1rem;
  transition: color 0.35s ease;
}
@media (min-width: 1100px) {
  .locations .container .location-grid .location-container .address-wrap .details .contact-link:hover {
    color: #0dab76;
  }
}

.hero {
  padding: 5rem 0 0;
  overflow: hidden;
}
@media only screen and (min-width: 640px) {
  .hero {
    padding: 5rem 0;
  }
}
.hero .container {
  padding: 0 !important;
  max-width: 100%;
}
.hero .container .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: clamp(1.2rem, 7vw, 6rem);
  gap: 0.4em;
}
@media only screen and (min-width: 640px) {
  .hero .container .hero-content {
    font-size: clamp(0.4rem, 6vw, 6rem);
  }
}
.hero .container .hero-content .top {
  display: flex;
  justify-content: flex-start;
}
.hero .container .hero-content .top .wrap {
  display: flex;
  gap: 1rem;
}
.hero .container .hero-content .top .wrap .svg {
  position: relative;
}
.hero .container .hero-content .top .wrap .svg.shape3 {
  background: #ffcedc;
  border-radius: 0.5em;
}
.hero .container .hero-content .top .wrap .svg.shape3 svg {
  opacity: 0;
}
.hero .container .hero-content .middle {
  display: flex;
  justify-content: center;
}
.hero .container .hero-content .middle .wrap .title {
  display: flex;
  gap: 1rem;
}
.hero .container .hero-content .middle .wrap .title h1 {
  font-size: 1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  background: #080604;
  color: #f5f5f5;
  border-radius: 10px;
  padding: 0.5em 1em;
  margin: 0;
}
@media only screen and (min-width: 640px) {
  .hero .container .hero-content .middle .wrap .title h1 {
    font-size: 0.63em;
    padding: 0.7em 1.05em;
  }
}
@media only screen and (min-width: 768px) {
  .hero .container .hero-content .middle .wrap .title h1 {
    border-radius: 22px;
  }
}
.hero .container .hero-content .bottom {
  display: flex;
  justify-content: flex-end;
}
.hero .container .hero-content .bottom .wrap {
  display: flex;
  gap: 1rem;
}
.hero .container .hero-content .wrap .svg {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero .container .hero-content .wrap .svg svg {
  height: 1em;
  width: auto;
  display: block;
}
.hero .container .hero-content .wrap .svg span {
  position: absolute;
  display: flex;
  font-size: 0.42em;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  inset: 0;
  margin: auto;
}
.hero .container .hero-content .wrap .svg:has(span) {
  height: 1em;
}
.hero .container .hero-content .wrap .svg:has(span) svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero .container .hero-content .wrap .svg:has(span) span {
  position: relative;
  inset: unset;
  margin: 0;
  padding: 0 1.5em;
  white-space: nowrap;
  z-index: 1;
}

.intro {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .intro {
    padding: 4rem 0 7rem;
  }
}
.intro .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .intro .grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .intro .grid {
    grid-template-columns: 6fr 5fr;
    gap: 5rem 3rem;
  }
}
.intro .one {
  order: 2;
}
@media (min-width: 768px) {
  .intro .one {
    order: 1;
  }
}
.intro .two {
  order: 1;
}
@media (min-width: 768px) {
  .intro .two {
    order: 2;
  }
}
.intro .three {
  order: 4;
}
@media (min-width: 768px) {
  .intro .three {
    order: 4;
  }
}
.intro .four {
  order: 3;
}
@media (min-width: 768px) {
  .intro .four {
    order: 3;
  }
}
.intro .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro .content .inner {
  max-width: 515px;
  width: 100%;
}
@media (min-width: 768px) {
  .intro .content .inner {
    flex: 0 1 100%;
    max-width: unset;
  }
}
@media (min-width: 1100px) {
  .intro .content .inner {
    flex: 0 1 450px;
    max-width: unset;
  }
}
@media (min-width: 1400px) {
  .intro .content .inner {
    flex: 0 0 515px;
  }
}
.intro .content .inner h2 {
  max-width: clamp(300px, 24.25vw, 375px);
  font-size: clamp(1.2rem, 2.25vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
  margin: 1rem 0 2.5rem;
}
@media (min-width: 768px) {
  .intro .content .inner h2.wider {
    max-width: clamp(330px, 32.25vw, 470px);
  }
}
.intro .content .inner p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin: 0 0 1rem;
}
.intro .content .inner .buttons {
  display: none;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .intro .content .inner .buttons {
    display: flex;
    justify-content: flex-start;
  }
}
.intro .media {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1100px) {
  .intro .media.one .inner {
    padding-right: 2rem;
  }
}
.intro .media .inner {
  flex: 0 0 100%;
}
.intro .media .inner .videoWrapper {
  position: relative;
  pointer-events: none;
  border-radius: 5px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media (min-width: 768px) {
  .intro .media .inner .videoWrapper {
    aspect-ratio: 1/1;
  }
}
.intro .media .inner .videoWrapper iframe,
.intro .media .inner .videoWrapper video {
  position: absolute;
  left: 0;
  width: 100%;
  top: -25%;
  height: 150%;
}
.intro .media.tags .inner .contentWrapper {
  aspect-ratio: 1/0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #181818;
  border-radius: 5px;
  padding: 3rem 1rem;
}
.intro .media.tags .inner .contentWrapper .label {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 400;
  color: #f5f5f5;
  text-transform: uppercase;
  padding-left: 0.5em;
}
.intro .media.tags .inner .contentWrapper .tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.intro .media.tags .inner .contentWrapper .tags .tag {
  display: flex;
}
.intro .media.tags .inner .contentWrapper .tags .tag::before {
  content: "";
  position: relative;
  color: transparent;
  display: inline-block;
  width: 1.75em;
  left: 0.5em;
  height: calc(100% + 1px);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='100' height='49' viewBox='0 0 100 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.734471 26.7689C-0.244795 25.0657 -0.244796 22.9703 0.73447 21.2671L11.3614 2.78368C12.3448 1.07334 14.1663 0.0179674 16.1391 0.0154802L22.8781 0.00698118C25.929 0.003136 28.4042 2.47526 28.4042 5.52611L28.4042 23.9985L28.4042 42.4848C28.4042 45.5302 25.9375 48.0001 22.8921 48.0039L16.1484 48.0124C14.1706 48.0149 12.3426 46.9589 11.3568 45.2443L0.734471 26.7689Z' fill='%23FFCEDC'/%3e%3crect width='57.399' height='48.0165' transform='translate(21.229)' fill='%23FFCEDC'/%3e%3cpath d='M99.123 21.2476C100.102 22.9508 100.102 25.0462 99.123 26.7494L88.496 45.2328C87.5127 46.9431 85.6912 47.9985 83.7183 48.001L76.9793 48.0095C73.9284 48.0133 71.4532 45.5412 71.4532 42.4904L71.4532 24.018L71.4532 5.53167C71.4532 2.48626 73.92 0.0163777 76.9654 0.012537L83.709 0.00403224C85.6868 0.0015379 87.5148 1.05758 88.5006 2.77223L99.123 21.2476Z' fill='%23FFCEDC'/%3e%3c/svg%3e ");
  background-size: cover;
  background-position: 0 50%;
}
.intro .media.tags .inner .contentWrapper .tags .tag::after {
  content: "";
  position: relative;
  color: transparent;
  display: inline-block;
  width: 1.75em;
  right: 0.5em;
  height: calc(100% + 1px);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='100' height='49' viewBox='0 0 100 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.734471 26.7689C-0.244795 25.0657 -0.244796 22.9703 0.73447 21.2671L11.3614 2.78368C12.3448 1.07334 14.1663 0.0179674 16.1391 0.0154802L22.8781 0.00698118C25.929 0.003136 28.4042 2.47526 28.4042 5.52611L28.4042 23.9985L28.4042 42.4848C28.4042 45.5302 25.9375 48.0001 22.8921 48.0039L16.1484 48.0124C14.1706 48.0149 12.3426 46.9589 11.3568 45.2443L0.734471 26.7689Z' fill='%23FFCEDC'/%3e%3crect width='57.399' height='48.0165' transform='translate(21.229)' fill='%23FFCEDC'/%3e%3cpath d='M99.123 21.2476C100.102 22.9508 100.102 25.0462 99.123 26.7494L88.496 45.2328C87.5127 46.9431 85.6912 47.9985 83.7183 48.001L76.9793 48.0095C73.9284 48.0133 71.4532 45.5412 71.4532 42.4904L71.4532 24.018L71.4532 5.53167C71.4532 2.48626 73.92 0.0163777 76.9654 0.012537L83.709 0.00403224C85.6868 0.0015379 87.5148 1.05758 88.5006 2.77223L99.123 21.2476Z' fill='%23FFCEDC'/%3e%3c/svg%3e ");
  background-size: cover;
  background-position: 100% 50%;
}
.intro .media.tags .inner .contentWrapper .tags .tag:nth-of-type(odd) {
  justify-content: flex-start;
}
.intro .media.tags .inner .contentWrapper .tags .tag:nth-of-type(even) {
  justify-content: flex-end;
}
.intro .media.tags .inner .contentWrapper .tags .tag span {
  position: relative;
  background: #ffcedc;
  color: #080604;
  padding: 0.3rem 0.25rem;
  font-size: clamp(0.8rem, 2.5vw, 1.125rem);
  max-width: 16em;
  border-radius: 8px;
  z-index: 1;
}
@media (min-width: 375px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
  }
}
@media (min-width: 415px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 17em;
  }
}
@media (min-width: 475px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 19em;
  }
}
@media (min-width: 525px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    max-width: unset;
    font-size: clamp(0.8rem, 2.5vw, 1.125rem);
  }
}
@media (min-width: 640px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    padding: 0.8rem 0.25rem;
    font-size: clamp(0.66rem, 2.5vw, 1.125rem);
  }
}
@media (min-width: 768px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    max-width: 16em;
  }
}
@media (min-width: 940px) {
  .intro .media.tags .inner .contentWrapper .tags .tag span {
    padding: 0.6rem 0.75rem;
    font-size: clamp(0.7rem, 1.125vw, 1rem);
    max-width: unset;
  }
}
.intro .media.tags .inner .closing {
  display: flex;
  justify-content: flex-end;
  color: #f5f5f5;
  margin: 2rem 0 0;
}
.intro .media.tags .inner .closing p {
  margin: 0;
}
.intro .buttons.mobile {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .intro .buttons.mobile {
    display: none;
  }
}

.what-we-do {
  padding: 0 0 3rem;
}
@media (min-width: 640px) {
  .what-we-do {
    padding: 0 0 5rem;
  }
}
@media (min-width: 768px) {
  .what-we-do {
    padding: 0 0 6rem;
  }
}
.what-we-do .header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 515px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .what-we-do .header {
    grid-template-columns: 6fr 5fr;
    gap: 2rem;
    max-width: unset;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1100px) {
  .what-we-do .header {
    gap: 1rem;
  }
}
.what-we-do .header .header-left {
  justify-self: center;
  max-width: 515px;
  width: 100%;
}
@media (min-width: 768px) {
  .what-we-do .header .header-left {
    max-width: 100%;
  }
}
@media (min-width: 1100px) {
  .what-we-do .header .header-left {
    max-width: 450px;
  }
}
@media (min-width: 1400px) {
  .what-we-do .header .header-left {
    max-width: 515px;
  }
}
.what-we-do .header .header-left h2 {
  font-size: clamp(1.4rem, 3.25vw, 2.25rem);
  width: 11.5em;
  margin: 0 0 1em;
}
@media (min-width: 1400px) {
  .what-we-do .header .header-left h2 {
    font-size: clamp(1.4rem, 3.25vw, 2.25rem);
    width: 13em;
  }
}
.what-we-do .header .header-left p {
  max-width: 500px;
}
.what-we-do .header .header-left .label {
  max-width: 515px;
  margin: 2em 0 0;
}
@media (min-width: 1025px) {
  .what-we-do .header .header-left .label {
    margin: 4em 0 0;
  }
}
.what-we-do .header .header-left .label .left span {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 300;
  background: #e2e2e2;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}
.what-we-do .header .header-right {
  display: none;
}
@media (min-width: 1025px) {
  .what-we-do .header .header-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 2.5rem;
  }
}
.what-we-do .header .header-right .drag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid #181818;
  border-radius: 15px;
  height: -moz-min-content;
  height: min-content;
}
.what-we-do .header .header-right .drag p {
  max-width: 260px;
  margin: 0;
}
.what-we-do .header .header-right .drag img {
  width: 38px;
  height: auto;
}
.what-we-do .servicesContainer {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 1200px) {
  .what-we-do .servicesContainer {
    padding: 0 1.25rem;
  }
}
.what-we-do .servicesContainer .capabilityTitle {
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: clamp(0.4rem, 7vw, 6.6rem);
  display: none;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1025px) {
  .what-we-do .servicesContainer .capabilityTitle {
    display: flex;
  }
}
.what-we-do .servicesContainer .capabilityTitle h2 {
  text-transform: uppercase;
  font-size: 1.125em;
  color: #cecece;
  max-width: -moz-min-content;
  max-width: min-content;
  margin: auto;
}
.what-we-do .servicesContainer::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  background: #e6e6e6;
  width: 100%;
  height: 100%;
  margin: auto;
}
@media (min-width: 1025px) {
  .what-we-do .servicesContainer::before {
    display: block;
    height: 90%;
  }
}
.what-we-do .services {
  position: relative;
  z-index: 0;
  font-size: clamp(0.4rem, 7vw, 6.6rem);
  min-height: 750px;
  padding-bottom: 2.5em;
  counter-reset: service-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1em;
}
@media (min-width: 640px) {
  .what-we-do .services {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .what-we-do .services {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .what-we-do .services {
    display: block;
    height: 125vh;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .what-we-do .services {
    height: 120vh;
    font-size: clamp(0.4rem, 7vw, 4.25rem);
  }
}
@media (min-width: 1400px) {
  .what-we-do .services {
    height: 115vh;
    font-size: clamp(0.4rem, 7vw, 4.5rem);
  }
}
@media (min-width: 1600px) {
  .what-we-do .services {
    height: 105vh;
    font-size: clamp(0.4rem, 7vw, 5rem);
  }
}
@media (min-width: 1800px) {
  .what-we-do .services {
    height: 100vh;
    font-size: clamp(0.4rem, 7vw, 6rem);
  }
}
.what-we-do .services .serviceCard {
  counter-increment: service-counter;
  width: 100%;
  background: #e1e1e1;
  padding: 0.5em 0.5em 0.6em;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 4px 10px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .what-we-do .services .serviceCard {
    padding: 0.15em 0.15em 0.25em;
  }
}
@media (min-width: 1025px) {
  .what-we-do .services .serviceCard {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.15em 0.15em 0.2em;
    max-width: 500px;
    width: var(--card-width, 4.1667em);
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .what-we-do .services .serviceCard.is-dragging {
    cursor: grabbing;
    transition: none;
  }
}
.what-we-do .services .serviceCard:hover {
  transform: scale(1.025);
}
.what-we-do .services .serviceCard.white {
  background: #f5f5f5;
}
.what-we-do .services .serviceCard.black {
  background: #181818;
  color: #f5f5f5;
}
.what-we-do .services .serviceCard.blue {
  background: #3a52ff;
  color: #f5f5f5;
}
.what-we-do .services .serviceCard.pink {
  background: #ffcedc;
}
.what-we-do .services .serviceCard .cardInner .serviceMedia {
  position: relative;
  margin-bottom: 0.35em;
}
.what-we-do .services .serviceCard .cardInner .serviceMedia .imageWrapper {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.what-we-do .services .serviceCard .cardInner .serviceMedia .imageWrapper img {
  vertical-align: bottom;
  inset: 0;
  transform: scale(1.05);
  -o-object-fit: cover;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.what-we-do .services .serviceCard .cardInner .serviceMedia .videoWrapper {
  position: relative;
  inset: 0;
  container-type: size;
  background-image: url(../images/backgrounds/loading-bg.gif);
  background-size: 80px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #080604;
  border-radius: 7px;
  overflow: hidden;
}
.what-we-do .services .serviceCard .cardInner .serviceMedia .videoWrapper iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: max(100cqw, 160cqh) !important;
  height: max(56.25cqw, 160cqh) !important;
  touch-action: none;
  pointer-events: none;
}
.what-we-do .services .serviceCard .cardInner .serviceTitle {
  display: block;
  padding: 0.5em 0 0.125em;
}
@media (min-width: 768px) {
  .what-we-do .services .serviceCard .cardInner .serviceTitle {
    padding: unset;
  }
}
.what-we-do .services .serviceCard .cardInner .serviceTitle h3 {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 0.55em;
}
@media (min-width: 640px) {
  .what-we-do .services .serviceCard .cardInner .serviceTitle h3 {
    font-size: 0.3em;
  }
}
@media (min-width: 768px) {
  .what-we-do .services .serviceCard .cardInner .serviceTitle h3 {
    font-size: 0.35em;
  }
}
@media (min-width: 1200px) {
  .what-we-do .services .serviceCard .cardInner .serviceTitle h3 {
    font-size: 0.23em;
  }
}
.what-we-do .services .serviceCard .cardInner .serviceTitle h3 .sNumber {
  display: inline;
}
.what-we-do .services .serviceCard .cardInner .serviceTitle h3 .sNumber::before {
  content: counter(service-counter, decimal-leading-zero) ". ";
}
.what-we-do .services .serviceCard .cardInner .serviceContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25em;
}
@media (min-width: 768px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent {
    min-height: unset;
  }
}
.what-we-do .services .serviceCard .cardInner .serviceContent .middle {
  padding: 0.25em 0;
}
@media (min-width: 640px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle {
    padding: 0;
  }
}
.what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
    font-size: 0.2em;
  }
}
@media (min-width: 1100px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
    font-size: 0.2em;
  }
}
@media (min-width: 1400px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
    font-size: 0.2em;
  }
}
@media (min-width: 1600px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
    font-size: 0.22em;
  }
}
@media (min-width: 1800px) {
  .what-we-do .services .serviceCard .cardInner .serviceContent .middle p {
    font-size: 18px;
  }
}
.what-we-do .serviceCTA {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.what-we-do .serviceCTA p {
  text-align: center;
  max-width: 425px;
  margin-bottom: 2.5rem;
}

.why-holdens {
  position: relative;
  padding: 3rem 0 4rem;
  background: #ffffff;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 640px) {
  .why-holdens {
    padding: 5rem 0 4rem;
  }
}
.why-holdens .inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .why-holdens .inner {
    gap: 2.5rem;
  }
}
.why-holdens .header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 515px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .why-holdens .header {
    grid-template-columns: 5fr 5fr;
    gap: 1rem;
    max-width: unset;
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .why-holdens .header {
    grid-template-columns: 6fr 5fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1100px) {
  .why-holdens .header {
    gap: 1rem;
  }
}
.why-holdens .header .header-left {
  justify-self: center;
  max-width: 515px;
  width: 100%;
}
@media (min-width: 768px) {
  .why-holdens .header .header-left {
    max-width: 100%;
  }
}
@media (min-width: 1100px) {
  .why-holdens .header .header-left {
    max-width: 450px;
  }
}
@media (min-width: 1400px) {
  .why-holdens .header .header-left {
    max-width: 515px;
  }
}
.why-holdens .header .header-left h2 {
  max-width: clamp(260px, 32.25vw, 430px);
  font-size: clamp(1.4rem, 2.25vw, 2rem);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .why-holdens .header .header-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.why-holdens .header .header-right .sub {
  display: flex;
  align-items: flex-end;
  font-size: 0.875rem;
  max-width: 200px;
  padding: 1rem 0;
  margin-left: auto;
  font-weight: 300;
}
@media (min-width: 768px) {
  .why-holdens .header .header-right .sub {
    align-items: center;
    font-size: 1rem;
    max-width: unset;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .why-holdens .header .header-right .sub {
    font-size: 1rem;
  }
}
.why-holdens .header .header-right .sub:after {
  content: "";
  position: relative;
  bottom: 1px;
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.2577 0.500104L0.864816 9.89296M10.2598 10.26L0.500317 10.2575L0.500317 0.500104' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .why-holdens .header .header-right .sub:after {
    width: 10px;
    height: 10px;
  }
}
.why-holdens .scroll-wrap {
  padding: 1rem 0;
}
@media (min-width: 640px) {
  .why-holdens .scroll-wrap {
    padding: 4rem 0;
  }
}
.why-holdens .scroll-wrap .cardSlider {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  overflow-x: scroll;
  scrollbar-width: none;
}
@media (min-width: 640px) {
  .why-holdens .scroll-wrap .cardSlider {
    flex-wrap: nowrap;
    padding: 4rem 0 4rem 1rem;
  }
}
@media (min-width: 768px) {
  .why-holdens .scroll-wrap .cardSlider {
    padding: 4rem 0 4rem 1.15rem;
    scroll-padding-left: 1.15rem;
  }
}
.why-holdens .scroll-wrap .cardSlider::-webkit-scrollbar {
  display: none;
}
.why-holdens .scroll-wrap .cardSlider.drag-active {
  cursor: none;
}
@media (min-width: 768px) {
  .why-holdens .scroll-wrap .cardSlider {
    padding: 4rem 0 4rem 1.15rem;
    scroll-padding-left: 1.15rem;
  }
}
@media (min-width: 1200px) {
  .why-holdens .scroll-wrap .cardSlider {
    padding: 4rem max(1.25rem, (100vw - 1480px) / 2 + 1.25rem) 4rem max(1.25rem, (100vw - 1480px) / 2 + 1.25rem);
    scroll-padding-left: max(1.25rem, (100vw - 1480px) / 2 + 1.25rem);
    scroll-padding-right: max(1.25rem, (100vw - 1480px) / 2 + 1.25rem);
  }
}
.why-holdens .scroll-wrap .cardSlider .card {
  flex: 0 0 88%;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .why-holdens .scroll-wrap .cardSlider .card {
    flex: 0 0 340px;
    border-radius: 1rem;
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .why-holdens .scroll-wrap .cardSlider .card {
    flex: 0 0 400px;
    padding: 2.25rem;
  }
}
@media (min-width: 1100px) {
  .why-holdens .scroll-wrap .cardSlider .card {
    flex: 0 0 428px;
  }
}
.why-holdens .scroll-wrap .cardSlider .card h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.why-holdens .scroll-wrap .cardSlider .card p {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.55;
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.why-holdens .scroll-wrap .cardSlider .card.pink {
  background: #ffcedc;
  margin-right: auto;
}
@media (min-width: 640px) {
  .why-holdens .scroll-wrap .cardSlider .card.pink {
    transform: translateY(-3em);
    margin: 0;
  }
}
.why-holdens .scroll-wrap .cardSlider .card.dark {
  background: #181818;
  color: #f5f5f5;
  margin-left: auto;
}
@media (min-width: 640px) {
  .why-holdens .scroll-wrap .cardSlider .card.dark {
    transform: translateY(3em);
    margin: 0;
  }
}
.why-holdens .dotsWrapper {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .why-holdens .dotsWrapper {
    padding: 0 1.15rem;
  }
}
@media (min-width: 1200px) {
  .why-holdens .dotsWrapper {
    padding: 0 1.25rem;
  }
}
.why-holdens .dotsWrapper {
  display: none;
  padding-top: 3rem;
}
@media (min-width: 640px) {
  .why-holdens .dotsWrapper {
    display: block;
  }
}
.why-holdens .dots {
  border: 1px solid #080604;
  border-radius: 100vw;
  padding: 0.25rem;
  width: 120px;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .why-holdens .dots {
    transform: translateY(2rem);
  }
}
.why-holdens .dots .dot {
  position: absolute;
  height: 12px;
  width: 26px;
  border-radius: 26px;
  background: #ffcedc;
  left: 4px;
  transition: left 0.1s ease;
}
.why-holdens .dots .dot:not(:first-of-type) {
  display: none;
}
.why-holdens .buttons {
  display: flex;
  justify-content: flex-end;
  padding: 1em 0 0;
}
@media (min-width: 640px) {
  .why-holdens .buttons {
    justify-content: flex-end;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .why-holdens .buttons .buttonCTA {
    transform: translateY(-4rem);
  }
}

.our-process {
  background: #080604;
  color: #f5f5f5;
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .our-process {
    padding: 3rem 0 6rem;
  }
}
.our-process .header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .our-process .header {
    margin-bottom: 4rem;
  }
}
.our-process .header h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.875rem);
  margin: 0 0 0.5rem;
  color: #f5f5f5;
  text-transform: uppercase;
}
.our-process .header .aside {
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  font-style: italic;
  color: #f5f5f5;
  display: block;
  text-align: right;
}
@media (min-width: 768px) {
  .our-process .header .aside {
    transform: translateX(5em);
  }
}
.our-process .grid {
  font-size: clamp(0.4rem, 7vw, 6.6rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .our-process .grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
@media (min-width: 1100px) {
  .our-process .grid {
    gap: 4rem;
    padding: 0 0.5em;
  }
}
@media (min-width: 1600px) {
  .our-process .grid {
    padding: 0 0.25em;
  }
}
.our-process .steps {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media (min-width: 768px) {
  .our-process .steps {
    order: 1;
    gap: 0.125em;
  }
}
.our-process .steps .process-step {
  position: relative;
  padding: 1em 0.5em;
  border: 1px solid #f5f5f5;
  border-radius: 0.6em;
}
@media (min-width: 768px) {
  .our-process .steps .process-step {
    border: 1px solid rgba(245, 245, 245, 0.2);
    padding: 0.25em;
    border-radius: 0.2em;
  }
}
@media (min-width: 1100px) {
  .our-process .steps .process-step {
    padding: 0.4em 0.5em 0.4em 0.25em;
  }
}
@media (min-width: 1600px) {
  .our-process .steps .process-step {
    padding: 0.25em 0.5em 0.25em 0.25em;
  }
}
.our-process .steps .process-step.active {
  border-color: #f5f5f5;
}
.our-process .steps .process-step.active::after {
  display: none;
  content: "";
  position: absolute;
  top: 1rem;
  right: 0.2em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f5f5f5;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .our-process .steps .process-step.active::after {
    display: block;
  }
}
.our-process .steps .process-step.intro {
  border-color: transparent !important;
  padding: 0.5em;
}
@media (min-width: 768px) {
  .our-process .steps .process-step.intro {
    padding: 0.25em;
  }
}
@media (min-width: 1100px) {
  .our-process .steps .process-step.intro {
    padding: 0.25em 0.5em 0.25em 0.25em;
  }
}
.our-process .steps .process-step .heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.our-process .steps .process-step .heading h3 {
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  margin: 0;
  font-weight: 500;
  color: #f5f5f5;
}
.our-process .steps .process-step p {
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  color: #f5f5f5;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .our-process .steps .process-step p {
    width: 24em;
  }
}
@media (min-width: 1100px) {
  .our-process .steps .process-step p {
    width: 30em;
  }
}
.our-process .image {
  order: 1;
}
@media (min-width: 768px) {
  .our-process .image {
    order: 2;
    position: sticky;
    top: 3em;
  }
}
@media (min-width: 1100px) {
  .our-process .image {
    top: 1em;
  }
}
@media (min-width: 1400px) {
  .our-process .image {
    top: 0.25em;
  }
}
@media (min-width: 1600px) {
  .our-process .image {
    top: 0.5em;
  }
}
.our-process .image .imageWrap {
  width: 100%;
  aspect-ratio: 10/8;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}
@media (min-width: 768px) {
  .our-process .image .imageWrap {
    margin-top: 1.6em;
  }
}
@media (min-width: 1100px) {
  .our-process .image .imageWrap {
    margin-top: 1.2em;
  }
}
.our-process .image .imageWrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.our-process .image .imageWrap img.active {
  opacity: 1;
}

.work-blog {
  padding: 2.5rem 0;
  border-top: 1px solid #ebebeb;
}
@media (min-width: 768px) {
  .work-blog {
    padding: 3.5rem 0;
  }
}
.work-blog__header {
  position: relative;
  display: grid;
  padding: 1rem 0 3.25rem;
}
@media (min-width: 768px) {
  .work-blog__header {
    grid-template-columns: 1fr 1fr;
    padding: 0 0 3.25rem;
  }
}
.work-blog__header.mobile {
  display: block;
  padding: 2.5rem 0 2rem;
}
@media (min-width: 768px) {
  .work-blog__header.mobile {
    display: none;
  }
}
.work-blog__header h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .work-blog__header h2 {
    font-size: 3rem;
  }
}
.work-blog__header h2.blog {
  display: none;
}
@media (min-width: 768px) {
  .work-blog__header h2.blog {
    display: block;
  }
}
.work-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .work-blog__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.work-blog__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 3.25rem;
}
@media (min-width: 768px) {
  .work-blog__ctas {
    gap: 1.5rem;
  }
}
.work-blog__ctasWrap .buttonCTA {
  padding: 1rem 0.75rem;
}

.work-card,
.blog-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.work-card a.link .imgWrap,
.blog-card a.link .imgWrap {
  position: relative;
  display: block;
  aspect-ratio: 1/0.9;
  border-radius: 6px;
  overflow: hidden;
}
.work-card a.link .imgWrap .main-video-overlay,
.blog-card a.link .imgWrap .main-video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0px;
  overflow: hidden;
}
.work-card a.link .imgWrap .main-video-overlay > div,
.blog-card a.link .imgWrap .main-video-overlay > div {
  padding: 0 !important;
  height: 100%;
  position: relative;
}
.work-card a.link .imgWrap .main-video-overlay > div iframe,
.work-card a.link .imgWrap .main-video-overlay > div video,
.blog-card a.link .imgWrap .main-video-overlay > div iframe,
.blog-card a.link .imgWrap .main-video-overlay > div video {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: 177.77% !important;
  height: 102% !important;
  pointer-events: none;
}
.work-card a.link:hover .work-card__info,
.work-card a.link:hover .blog-card__info,
.blog-card a.link:hover .work-card__info,
.blog-card a.link:hover .blog-card__info {
  transform: translateY(0);
}

.work-card a.link {
  position: relative;
  display: block;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .work-card a.link {
    aspect-ratio: 1/0.9;
    overflow: hidden;
  }
}
.work-card__stat {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 1rem;
  font-size: 0.7rem;
  background: #f5f5f5;
  color: #080604;
  border-radius: 50px;
  font-weight: 300;
  z-index: 2;
  padding: 0.5rem 1.25rem;
}
@media screen and (min-width: 400px) {
  .work-card__stat {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 640px) {
  .work-card__stat {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .work-card__stat {
    font-size: 0.8rem;
  }
}
@media (min-width: 1100px) {
  .work-card__stat {
    font-size: 20px;
    top: 1rem;
    left: 1rem;
  }
}
.work-card__stat.bs {
  background: #080604;
  color: #f5f5f5;
  border-radius: 8px;
}
.work-card__stat.br {
  background: #080604;
  color: #f5f5f5;
  border-radius: 50px;
}
.work-card__stat.ws {
  background: #f5f5f5;
  color: #080604;
  border-radius: 8px;
}
.work-card__stat.wr {
  background: #f5f5f5;
  color: #080604;
  border-radius: 50px;
}
.work-card__stat * {
  margin: 0;
}
.work-card__info {
  min-height: 25%;
  border-radius: 6px;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  bottom: 1em;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 768px) {
  .work-card__info {
    position: absolute;
    left: 1em;
    right: 1em;
    background: #080604;
    padding: 1rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    transform: translateY(150%);
  }
}
@media only screen and (min-width: 1200px) {
  .work-card__info {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 0.75rem;
  }
}
.work-card__info h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  margin: 0;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .work-card__info h3 {
    color: #f5f5f5;
  }
}
@media only screen and (min-width: 1200px) {
  .work-card__info h3 {
    max-width: 260px;
  }
}
.work-card__info h3 * {
  margin: 0;
  font-size: inherit;
}
.work-card__info .buttons {
  display: none;
  align-self: flex-end;
  justify-self: flex-end;
}
@media only screen and (min-width: 768px) {
  .work-card__info .buttons {
    display: block;
    justify-self: flex-end;
  }
}
.work-card__info .buttons .buttonCTA {
  padding: 0.75rem 1rem;
}
.work-card .ctasWrap {
  margin-top: 1em;
}

.blog-card a.link {
  position: relative;
  display: block;
  border-radius: 6px;
  padding: 0.5em;
  background: #eeeeee;
}
@media only screen and (min-width: 768px) {
  .blog-card a.link {
    aspect-ratio: 1/0.9;
    overflow: hidden;
    background: none;
    padding: 0;
  }
}
.blog-card a.link .imgWrap {
  aspect-ratio: 1/0.6;
}
@media only screen and (min-width: 768px) {
  .blog-card a.link .imgWrap {
    aspect-ratio: 1/0.9;
  }
}
.blog-card__info {
  position: relative;
  background: #eeeeee;
  border-radius: 6px;
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 2em;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 768px) {
  .blog-card__info {
    position: absolute;
    left: 1em;
    right: 1em;
    bottom: 1em;
    padding: 1em;
    background: #cfcfcf;
    transform: translateY(150%);
  }
}
.blog-card__info h3 {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  margin: 0;
  font-weight: 400;
}
.blog-card__info .catTopic {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
}
@media only screen and (min-width: 1200px) {
  .blog-card__info .catTopic .category,
  .blog-card__info .catTopic .topic {
    max-width: 260px;
  }
}
.blog-card__info .catTopic .category h5,
.blog-card__info .catTopic .topic h5 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.blog-card__info .catTopic .category span,
.blog-card__info .catTopic .topic span {
  opacity: 0.5;
}
.blog-card__info .catTopic .topic {
  text-align: right;
}
.blog-card__info .cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.blog-card__info .cta .readTime {
  font-size: 0.8rem;
  color: #f5f5f5;
  background: #080604;
  border-radius: 45px;
  padding: 0.4em 1em 0.3em;
}
.blog-card__info .cta .buttonCTA {
  display: none;
  padding: 0.75rem 1rem;
}
@media only screen and (min-width: 768px) {
  .blog-card__info .cta .buttonCTA {
    display: inline-flex;
  }
}
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  background: #080604;
  color: #f5f5f5;
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.blog-card .ctasWrap {
  margin-top: 1em;
}

.more-capabilities {
  padding-bottom: 0;
}
@media only screen and (min-width: 640px) {
  .more-capabilities {
    padding-bottom: 5em;
  }
}
.more-capabilities .capabilityLinks {
  font-size: clamp(1em, 10.5vw, 5rem);
  gap: 0.4em;
  padding: 0.5em 0;
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks {
    font-size: clamp(0.4rem, 6vw, 5.77rem);
    padding: unset;
  }
}
@media only screen and (min-width: 768px) {
  .more-capabilities .capabilityLinks {
    padding: 0.1em 0;
    gap: 0.25em;
  }
}
.more-capabilities .capabilityLinks .title {
  font-size: clamp(1rem, 2.5vw, 1.875rem);
  text-align: center;
  text-transform: uppercase;
}
.more-capabilities .capabilityLinks .title span {
  display: inline-block;
}
.more-capabilities .capabilityLinks .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25em 0em;
  overflow: hidden;
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links {
    display: flex;
    justify-content: center;
    padding: 0.1em 0;
    gap: 0.25em;
    overflow: visible;
    transform: translateX(0.195em);
  }
}
.more-capabilities .capabilityLinks .links a.svg {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links a.svg {
    transform: translateX(0.25em);
  }
}
.more-capabilities .capabilityLinks .links a.svg:nth-of-type(1) {
  transform: translateX(-0.3em);
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links a.svg:nth-of-type(1) {
    transform: translateX(0);
  }
}
.more-capabilities .capabilityLinks .links a.svg:nth-of-type(2) {
  transform: translateX(-0.8em);
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links a.svg:nth-of-type(2) {
    transform: translateX(0);
  }
}
.more-capabilities .capabilityLinks .links a.svg:nth-of-type(3) {
  transform: translateX(0.5em);
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links a.svg:nth-of-type(3) {
    transform: translateX(0);
    left: -0.25em;
  }
}
.more-capabilities .capabilityLinks .links a.svg:nth-of-type(4) {
  transform: translateX(0.1em);
}
@media only screen and (min-width: 640px) {
  .more-capabilities .capabilityLinks .links a.svg:nth-of-type(4) {
    transform: translateX(0);
    left: -0.5em;
  }
}
.more-capabilities .capabilityLinks .links a.svg svg.shape {
  height: 1.795em;
  width: auto;
  display: block;
  transition: all 0.4s ease;
}
.more-capabilities .capabilityLinks .links a.svg svg.shape rect,
.more-capabilities .capabilityLinks .links a.svg svg.shape path {
  fill: #181818;
}
.more-capabilities .capabilityLinks .links a.svg span {
  position: absolute;
  display: flex;
  font-size: 0.25em;
  color: #f5f5f5;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
  inset: 0;
  margin: auto;
}
.more-capabilities .capabilityLinks .links a.svg span svg {
  margin-left: 0.5em;
  transition: all 0.4s ease;
}
.more-capabilities .capabilityLinks .links a.svg:hover svg.shape {
  transform: scale(1.02);
}
.more-capabilities .capabilityLinks .links a.svg:hover svg.shape rect,
.more-capabilities .capabilityLinks .links a.svg:hover svg.shape path {
  fill: #0dab76;
}
.more-capabilities .capabilityLinks .links a.svg:hover span svg {
  margin-left: 0.75em;
  transform: rotate(45deg);
}
.page-id-6878 .more-capabilities .capabilityLinks .links .b-expression {
  pointer-events: none;
}
.page-id-6878 .more-capabilities .capabilityLinks .links .b-expression svg.shape rect,
.page-id-6878 .more-capabilities .capabilityLinks .links .b-expression svg.shape path {
  fill: #dedcdc;
}
.page-id-6878 .more-capabilities .capabilityLinks .links .b-expression span {
  color: #939393;
}
.page-id-6878 .more-capabilities .capabilityLinks .links .b-expression span svg {
  display: none;
}
.page-id-6881 .more-capabilities .capabilityLinks .links .b-engagement {
  pointer-events: none;
}
.page-id-6881 .more-capabilities .capabilityLinks .links .b-engagement svg.shape rect,
.page-id-6881 .more-capabilities .capabilityLinks .links .b-engagement svg.shape path {
  fill: #dedcdc;
}
.page-id-6881 .more-capabilities .capabilityLinks .links .b-engagement span {
  color: #939393;
}
.page-id-6881 .more-capabilities .capabilityLinks .links .b-engagement span svg {
  display: none;
}
.page-id-6883 .more-capabilities .capabilityLinks .links .b-exposure {
  pointer-events: none;
}
.page-id-6883 .more-capabilities .capabilityLinks .links .b-exposure svg.shape rect,
.page-id-6883 .more-capabilities .capabilityLinks .links .b-exposure svg.shape path {
  fill: #dedcdc;
}
.page-id-6883 .more-capabilities .capabilityLinks .links .b-exposure span {
  color: #939393;
}
.page-id-6883 .more-capabilities .capabilityLinks .links .b-exposure span svg {
  display: none;
}
.page-id-6885 .more-capabilities .capabilityLinks .links .b-experience {
  pointer-events: none;
}
.page-id-6885 .more-capabilities .capabilityLinks .links .b-experience svg.shape rect,
.page-id-6885 .more-capabilities .capabilityLinks .links .b-experience svg.shape path {
  fill: #dedcdc;
}
.page-id-6885 .more-capabilities .capabilityLinks .links .b-experience span {
  color: #939393;
}
.page-id-6885 .more-capabilities .capabilityLinks .links .b-experience span svg {
  display: none;
}

.cta-contact {
  background: #0dab76;
  padding: 4rem 0 5rem;
  border-radius: 1.25rem;
  margin: 0 1rem 3rem;
}
@media (min-width: 768px) {
  .cta-contact {
    padding: 5rem 0 6rem;
    margin: 0 1.15rem 4rem;
    border-radius: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .cta-contact {
    margin: 0 1.25rem 4rem;
  }
}
.cta-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .cta-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}
.cta-contact__left h2 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.cta-contact__left p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(245, 245, 245, 0.85);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}
.cta-contact__alts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-contact__alts-label {
  font-size: clamp(0.7rem, 1.1vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
  font-weight: 600;
}
.cta-contact__alts-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.cta-contact__alts-btns .btn {
  border-color: rgba(245, 245, 245, 0.4);
  color: #f5f5f5;
  border-radius: 2rem;
  padding: 0.65rem 1.25rem;
}
.cta-contact__alts-btns .btn:hover {
  border-color: #f5f5f5;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-form__field input,
.cta-form__field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.35);
  border-radius: 0.75rem;
  padding: 0.9rem 1.1rem;
  font-family: "Host Grotesk", Georgia, serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #f5f5f5;
  outline: none;
  transition: border-color 0.2s ease;
}
.cta-form__field input::-moz-placeholder, .cta-form__field textarea::-moz-placeholder {
  color: rgba(245, 245, 245, 0.55);
}
.cta-form__field input::placeholder,
.cta-form__field textarea::placeholder {
  color: rgba(245, 245, 245, 0.55);
}
.cta-form__field input:focus,
.cta-form__field textarea:focus {
  border-color: rgba(245, 245, 245, 0.75);
}
.cta-form__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.cta-form__submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}
.cta-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #080604;
  color: #f5f5f5;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-family: "Host Grotesk", Georgia, serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-form__btn:hover {
  background: rgb(42, 31.5, 21);
}

.bottom-teaser {
  padding: 0 0 3rem;
}
@media (min-width: 768px) {
  .bottom-teaser {
    padding: 0 0 4rem;
  }
}
.bottom-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  height: 200px;
}
@media (min-width: 768px) {
  .bottom-teaser__grid {
    height: 240px;
  }
}
.bottom-teaser__item {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-teaser__item .placeholder {
  min-height: unset;
  height: 100%;
  border-radius: 0;
}
.bottom-teaser__item--grey {
  background: #eeeeee;
}
.bottom-teaser__item--green {
  background: #0dab76;
}
.bottom-teaser__item--pink {
  background: #ffcedc;
}
.bottom-teaser__item--pink span {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0dab76;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gallery-drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #080604;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9999;
  will-change: transform;
  gap: 6px;
}
.gallery-drag-cursor span {
  font-family: "Host Grotesk", Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}/*# sourceMappingURL=capability.css.map */