.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;
}
.hero .container {
  padding: 0 !important;
}
.hero .container .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: clamp(0.4rem, 4.47vw, 6rem);
  gap: 0.4em;
}
.hero .container .hero-content .svg {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (min-width: 1100px) {
  .hero .container .hero-content .svg:nth-of-type(1) {
    position: relative;
    right: -19%;
    top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .hero .container .hero-content .svg:nth-of-type(1) {
    top: 130px;
  }
}
@media screen and (min-width: 1100px) {
  .hero .container .hero-content .svg:nth-of-type(5) {
    position: relative;
    left: -16%;
    top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .hero .container .hero-content .svg:nth-of-type(5) {
    top: 130px;
  }
}
.hero .container .hero-content .svg svg {
  height: 1em;
  width: auto;
  display: block;
}
.hero .container .hero-content .title {
  text-align: center;
  padding: 0 0;
  flex-shrink: 0;
}
.hero .container .hero-content .title h1 {
  font-size: 1.25em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

.filterToggle .container .buttonWrap {
  display: flex;
  justify-content: center;
}
.filterToggle .container .buttonWrap .button {
  border: none;
  background-color: #0dab76;
  border-radius: 10px;
}
.filterToggle .container .buttonWrap .button svg {
  transition: transform 0.35s ease;
}
.filterToggle .container .buttonWrap .button.open svg {
  transform: rotate(45deg);
}
.filterToggle .container .buttonWrap .button span {
  font-weight: 300;
  color: #f5f5f5;
  margin-right: 1rem;
}

.workFilter {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
.workFilter.open {
  grid-template-rows: 1fr;
}
.workFilter.open .container .workFiltersInner {
  padding-top: 2rem;
}
.workFilter .container {
  min-height: 0;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1100px) {
  .workFilter .container {
    flex-direction: row;
    align-items: center;
  }
}
.workFilter .container .workFiltersInner {
  position: relative;
  padding-top: 0;
  transition: padding-top 0.35s ease;
}
.workFilter .container .workFiltersInner .serviceFilter,
.workFilter .container .workFiltersInner .sectorFilter {
  margin-bottom: 2rem;
}
.workFilter .container .workFiltersInner .serviceFilter .filter-title,
.workFilter .container .workFiltersInner .sectorFilter .filter-title {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.workFilter .container .workFiltersInner ul.cat-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 0.5rem;
}
.workFilter .container .workFiltersInner ul.cat-list li .filter-btn {
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.workFilter .container .workFiltersInner ul.cat-list li .filter-btn.active {
  color: #080604;
  background-color: #ffcedc;
  border-color: #ffcedc;
  border-radius: 50px;
}
.workFilter .container .workFiltersInner .clear-filters {
  border-radius: 8px;
  padding: 0.75rem;
  background-color: #080604;
  color: #f5f5f5;
}
.workFilter .container .workFiltersInner .clear-filters:hover {
  background-color: rgb(42, 31.5, 21);
}

.allWork {
  overflow: hidden;
  margin-top: 2rem;
}
@media screen and (min-width: 640px) {
  .allWork {
    border-bottom: none;
  }
}
@media screen and (min-width: 1100px) {
  .allWork .container {
    max-width: 1480px;
  }
}
.allWork .container .csContainer {
  display: grid;
  gap: 3.5rem;
  padding-top: 1rem;
}
@media screen and (min-width: 640px) {
  .allWork .container .csContainer {
    gap: 4rem 1.25rem;
    padding-top: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
.allWork .container .csContainer .project {
  padding: 0;
}
@media screen and (min-width: 640px) {
  .allWork .container .csContainer .project {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr; /* title takes natural height, image fills remaining */
    grid-template-columns: 1fr;
  }
}
.allWork .container .csContainer .project:nth-of-type(4n + 1) .caseStudyLink .stat {
  background: #080604;
  color: #f5f5f5;
  border-radius: 8px;
}
.allWork .container .csContainer .project:nth-of-type(4n + 2) .caseStudyLink .stat {
  background: #f5f5f5;
  color: #080604;
  border-radius: 50px;
}
.allWork .container .csContainer .project:nth-of-type(4n + 3) .caseStudyLink .stat {
  background: #f5f5f5;
  color: #080604;
  border-radius: 8px;
}
.allWork .container .csContainer .project:nth-of-type(4n + 4) .caseStudyLink .stat {
  background: #080604;
  color: #f5f5f5;
  border-radius: 50px;
}
.allWork .container .csContainer .project .caseStudyLink {
  display: block;
  position: relative;
  grid-row: 1/-1;
  grid-row: 2;
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap {
  position: relative;
  display: block;
  aspect-ratio: 1.025/1;
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .allWork .container .csContainer .project .caseStudyLink .imgWrap {
    max-height: 70vh;
    width: 100%;
  }
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award .awardWrap {
  display: flex;
  align-items: center;
  background: #000;
  padding: 0.5em 0.75em;
  border-radius: 8px;
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award .awardWrap .left h4 {
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  font-style: italic;
  color: #f5f5f5;
  margin: 0;
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award .awardWrap .right {
  display: none;
  min-width: 0;
  overflow: hidden;
  transition: grid-template-columns 0.3s ease, padding-left 0.3s ease;
}
@media (min-width: 1400px) {
  .allWork .container .csContainer .project .caseStudyLink .imgWrap .award .awardWrap .right {
    display: grid;
    grid-template-columns: minmax(0, 0fr);
  }
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award .awardWrap .right p {
  font-size: 16px;
  color: #f5f5f5;
  margin: 0;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
}
.allWork .container .csContainer .project .caseStudyLink .imgWrap .award:hover .right {
  grid-template-columns: minmax(0, 1fr);
  padding-left: 0.75rem;
}
.allWork .container .csContainer .project .caseStudyLink .stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-weight: 300;
  z-index: 2;
  padding: 0.5rem 1.25rem;
}
@media screen and (min-width: 400px) {
  .allWork .container .csContainer .project .caseStudyLink .stat {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 640px) {
  .allWork .container .csContainer .project .caseStudyLink .stat {
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .allWork .container .csContainer .project .caseStudyLink .stat {
    font-size: 0.8rem;
  }
}
@media (min-width: 1100px) {
  .allWork .container .csContainer .project .caseStudyLink .stat {
    font-size: 20px;
    top: 1rem;
    left: 1rem;
  }
}
.allWork .container .csContainer .project .caseStudyLink .stat.bs {
  background: #080604;
  color: #f5f5f5;
  border-radius: 8px;
}
.allWork .container .csContainer .project .caseStudyLink .stat.br {
  background: #080604;
  color: #f5f5f5;
  border-radius: 50px;
}
.allWork .container .csContainer .project .caseStudyLink .stat.ws {
  background: #f5f5f5;
  color: #080604;
  border-radius: 8px;
}
.allWork .container .csContainer .project .caseStudyLink .stat.wr {
  background: #f5f5f5;
  color: #080604;
  border-radius: 50px;
}
.allWork .container .csContainer .project .caseStudyLink .stat * {
  margin: 0;
}
.allWork .container .csContainer .project .caseStudyLink .stat p {
  font-size: inherit;
  margin: 0;
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem 0 0;
}
@media screen and (min-width: 1000px) {
  .allWork .container .csContainer .project .caseStudyLink .titleWrapper {
    flex-direction: row;
  }
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper p {
  flex: 0 0 65%;
  padding: 0 0 1rem 0;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 130%;
  font-weight: 300;
}
@media screen and (min-width: 640px) {
  .allWork .container .csContainer .project .caseStudyLink .titleWrapper p {
    flex: 0 0 60%;
  }
}
@media screen and (min-width: 1100px) {
  .allWork .container .csContainer .project .caseStudyLink .titleWrapper p {
    flex: 0 0 50%;
  }
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper p strong {
  font-weight: 600;
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper .tags {
  position: relative;
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper .tags ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.allWork .container .csContainer .project .caseStudyLink .titleWrapper .tags ul li {
  border-radius: 50px;
  padding: 0.25rem 0.75rem;
  background: #e2e2e2;
  font-size: 1rem;
  text-transform: uppercase;
  color: #080604;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .allWork .container .csContainer .project .caseStudyLink .titleWrapper .tags ul li {
    padding: 0.25rem 1rem;
  }
}
.allWork .container .csContainer .project .caseStudyLink .main-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.allWork .container .csContainer .project .caseStudyLink .main-video-overlay > div {
  padding: 0 !important;
  height: 100%;
}
.allWork .container .csContainer .project .caseStudyLink .main-video-overlay > div iframe {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  width: 177.77% !important;
  min-height: 101%;
  min-width: 100%;
  pointer-events: none;
}

.eyes {
  padding: 4rem 0 1.5rem;
}
.eyes .container .svgWrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid #dbdada;
  padding-top: 3rem;
}
.eyes .container .svgWrap svg {
  overflow: visible;
}
.eyes .container .svgWrap svg .eye {
  animation: eyeSequence 20s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes eyeSequence {
  0%, 20% {
    transform: translateX(0) scaleY(1);
  }
  21%, 24% {
    transform: translate(-10px, -10px) scaleY(1);
  }
  25%, 28% {
    transform: translate(10px, -10px) scaleY(1);
  }
  29%, 40% {
    transform: translateX(0) scaleY(1);
  }
  40.6% {
    transform: translateX(0) scaleY(0.1);
  }
  41.2% {
    transform: translateX(0) scaleY(1);
  }
  41.8% {
    transform: translateX(0) scaleY(0.1);
  }
  42.4%, 100% {
    transform: translateX(0) scaleY(1);
  }
}
.contact-form {
  display: flex;
  justify-content: center;
}

/* Loading spinner */
#loading-spinner {
  font-size: 18px;
  color: #666;
}

#loading-spinner p {
  margin: 0;
}

/* No results message */
#no-results {
  font-size: 18px;
  color: #999;
}

/* Fade in animation for results */
#work-results {
  transition: opacity 0.3s ease-in-out;
}

/* Optional: Add a visual indicator for filter counts */
.workFiltersInner {
  position: relative;
}

.filter-count {
  display: inline-block;
  background: #ff2d2f;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 12px;
  margin-left: 10px;
}

.ampCTA {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.ampCTA .container {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .ampCTA .container .titleWrapper {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1100px) {
  .ampCTA .container .titleWrapper {
    max-width: 860px;
  }
}
.ampCTA .container .titleWrapper h2 {
  position: relative;
  z-index: 5;
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3.75vw, 2.75rem);
}
@media (min-width: 1024px) {
  .ampCTA .container .titleWrapper h2 {
    margin-bottom: 1.75rem;
  }
}
.ampCTA .container .rightCube {
  position: absolute;
  right: 0;
  top: 40%;
  bottom: 0;
  margin: auto 0;
}
.ampCTA .container .rightCube img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 274px;
}
.ampCTA .container .leftCube {
  position: absolute;
  left: 0%;
  top: -40%;
  bottom: 0;
  margin: auto 0;
}
.ampCTA .container .leftCube img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 268px;
}/*# sourceMappingURL=archive-work.css.map */