:root {
  --brand-green: #127c42;
  --brand-green-dark: #0c6132;
  --primary: #182824;
  --ink: #182824;
  --white: #ffffff;
  --border: rgba(24, 40, 36, 0.1);
  --page-gutter: 15px;
  --header-width: 1300px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

html {
  color-scheme: light;
  overflow-y: scroll;
  /* scrollbar-width: thin; */
  scrollbar-width: inherit;
  /* scrollbar-color: var(--brand-green) var(--primary); */
  scrollbar-color: var(--brand-green) #ffffff;
}

::-webkit-scrollbar-track {
  border-left: 1px solid var(--primary);
  background-color: var(--primary);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--brand-green);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-green);
}

::selection {
  color: var(--white);
  background: var(--brand-green);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Host Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__container,
.site-preloader__ring {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.site-preloader__ring {
  border: 1px solid transparent;
  border-color: transparent var(--white) transparent var(--white);
  animation: site-preloader-rotate 1.5s linear infinite;
  transform-origin: 50% 50%;
}

.site-preloader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
}

@keyframes site-preloader-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__ring {
    animation: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

.header-container {
  width: 100%;
  max-width: var(--header-width);
  padding-inline: var(--page-gutter);
  margin-inline: auto;
}

.utility-bar {
  padding: 15px 0;
  background: var(--brand-green);
  color: var(--white);
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-details,
.social-links,
.utility-link {
  display: flex;
  align-items: center;
}

.contact-details {
  flex-wrap: wrap;
  gap: 10px 30px;
}

.utility-link {
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.utility-link:focus-visible {
  color: var(--primary);
}

.utility-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
}

.social-links > span:first-child {
  margin-right: 5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  line-height: 1em;
}

.social-links a:focus-visible {
  color: var(--primary);
}

.social-divider {
  width: 1px;
  height: 18px;
  margin: 0 1px;
  background: var(--white);
}

.main-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.main-header__inner {
  display: grid;
  grid-template-columns: minmax(159px, 1fr) auto minmax(159px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.site-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  height: 82px;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
  margin: 0 10px;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: var(--brand-green);
}

.primary-navigation a i {
  font-size: 14px;
}

.contact-button,
.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: var(--brand-green);
  color: var(--white);
  font-family: "Host Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  transition: color 0.4s ease-in-out;
  z-index: 1;
}

.contact-button {
  justify-self: end;
  padding: 17px 20px;
}

.hero__cta {
  padding: 17px 20px;
}

.contact-button::after,
.hero__cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.contact-button:hover::after,
.contact-button:focus-visible::after,
.hero__cta:hover::after,
.hero__cta:focus-visible::after {
  right: auto;
  left: 0;
  width: 100%;
}

.hero__cta::after {
  background: var(--white);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  color: var(--primary);
}

.contact-button span,
.contact-button img,
.hero__cta span,
.hero__cta img {
  position: relative;
  z-index: 1;
}

.contact-button__icon,
.hero__cta img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition:
    filter 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.contact-button:hover .contact-button__icon,
.contact-button:focus-visible .contact-button__icon,
.hero__cta:hover img,
.hero__cta:focus-visible img {
  transform: rotate(45deg);
}

.hero__cta:hover img,
.hero__cta:focus-visible img {
  filter: brightness(0) invert(0);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: var(--primary) url("../images/hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  visibility: hidden;
}

.hero__video.is-active {
  visibility: visible;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 26, 41, 0.96) 0%,
    rgba(0, 26, 41, 0.79) 39%,
    rgba(0, 26, 41, 0.35) 67%,
    rgba(0, 26, 41, 0.12) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  width: 58.333333%;
  padding-right: 4.167vw;
}

.hero__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
  padding: 9px 16px 9px 31px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.hero__eyebrow span {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translateY(-50%);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: 0;
}

.hero__description {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 40px;
}

.hero[data-home-hero] [data-hero-title] {
  perspective: 400px;
}

.hero-title__word,
.hero-title__char {
  display: inline-block;
}

.hero.is-animated [data-hero-reveal] {
  animation: hero-fade-in-up 1s ease both;
}

.hero.is-animated [data-hero-reveal="description"] {
  animation-delay: 0.2s;
}

.hero.is-animated [data-hero-reveal="actions"] {
  animation-delay: 0.4s;
}

.hero.is-animated .hero-title__char {
  animation: hero-title-char-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation-delay: calc(var(--hero-char-index) * 0.01s);
}

@keyframes hero-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-title-char-in {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-animated [data-hero-reveal],
  .hero.is-animated .hero-title__char {
    animation: none;
  }
}

.about-us[data-home-about] [data-about-title] {
  perspective: 400px;
}

.about-title__word,
.about-title__char {
  display: inline-block;
}

.about-us.is-animation-ready [data-about-reveal] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}

.about-us.is-animation-ready .about-title__char {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
}

.about-us.is-animation-ready [data-about-image-reveal] {
  visibility: hidden;
}

.about-us.is-animated [data-about-reveal] {
  animation: about-fade-in-up 1s ease both;
}

.about-us.is-animated [data-about-reveal="description"] {
  animation-delay: 0.2s;
}

.about-us.is-animated [data-about-reveal="items"] {
  animation-delay: 0.4s;
}

.about-us.is-animated [data-about-reveal="footer"] {
  animation-delay: 0.6s;
}

.about-us.is-animated .about-title__char {
  animation: about-title-char-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  animation-delay: calc(var(--about-char-index) * 0.01s);
}

.about-us.is-animated [data-about-image-reveal] {
  visibility: visible;
  animation: about-image-container-reveal 1s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.about-us.is-animated [data-about-image-reveal] img {
  animation: about-image-reveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes about-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes about-title-char-in {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-image-container-reveal {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes about-image-reveal {
  from {
    transform: translate3d(100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-us.is-animation-ready [data-about-reveal],
  .about-us.is-animation-ready .about-title__char {
    opacity: 1;
    transform: none;
  }

  .about-us.is-animation-ready [data-about-image-reveal] {
    visibility: visible;
  }

  .about-us.is-animated [data-about-reveal],
  .about-us.is-animated .about-title__char,
  .about-us.is-animated [data-about-image-reveal],
  .about-us.is-animated [data-about-image-reveal] img {
    animation: none;
  }
}

.hero__story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  cursor: pointer;
}

.hero__play {
  position: relative;
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
}

.hero__play i {
  position: relative;
  margin-left: 2px;
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s ease-in-out;
  z-index: 1;
}

.hero__play:hover i,
.hero__story:focus-visible .hero__play i {
  color: var(--primary);
}

.about-us {
  padding: 120px 0;
  background: var(--white);
}

.about-us__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.about-us figure {
  margin: 0;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover::after {
  height: 250%;
  background-color: transparent;
  transition: all 600ms linear;
}

.about-us-image-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-right: 15px;
}

.about-us-image-box-1 {
  width: 40%;
}

.about-us-image-box-2 {
  position: relative;
  width: 60%;
  z-index: 1;
}

.about-us-image figure {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.about-us-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about-us-image-box-1 .about-us-image figure {
  margin-right: -168px;
}

.about-us-image-box-1 .about-us-image img {
  aspect-ratio: 1 / 1.1042;
}

.about-us-image-box-2 .about-us-image figure {
  border: 6px solid var(--white);
}

.about-us-image-box-2 .about-us-image img {
  aspect-ratio: 1 / 1.2583;
  border-radius: 8px;
}

.about-us-counter-box {
  margin: 20px 15px 0 0;
  padding: 30px 40px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.about-us-counter-box h2 {
  margin: 0;
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
  line-height: 1em;
}

.about-us-counter-box p {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.5em;
}

.about-us-image-box-2 .contact-us-circle {
  margin: 0 40px 30px 0;
  text-align: right;
}

.contact-us-circle a {
  display: inline-block;
  border-radius: 50%;
}

.contact-us-circle img {
  display: block;
  width: 100%;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  animation: contact-circle-rotate 20s infinite linear;
}

@keyframes contact-circle-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-us-circle a:hover img,
.contact-us-circle a:focus-visible img {
  animation-play-state: paused;
}
.about-us-heading {
  margin-bottom: 40px;
}

.section-eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 15px;
  padding: 9px 16px 9px 31px;
  border-radius: 100px;
  background: #f4f8fa;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
}

.section-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translateY(-50%);
}

.about-us-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.about-us-heading > p:last-child {
  margin: 20px 0 0;
  color: #667077;
  font-size: 16px;
  line-height: 1.6em;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-item-list {
  width: calc(100% - 220px);
  align-content: center;
}

.about-us-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.about-us-item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.about-us-icon-box {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.about-us-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.about-us-item:hover .about-us-icon-box::before {
  transform: scale(1);
}

.about-us-icon-box img {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.about-us-item-content {
  width: calc(100% - 65px);
}

.about-us-item-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.about-us-item-content p {
  margin: 10px 0 0;
  color: #667077;
  font-size: 16px;
  line-height: 1.6em;
}

.about-us-body-image {
  max-width: 190px;
}

.about-us-body-image figure {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.about-us-body-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.146;
  object-fit: cover;
  border-radius: 14px;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-us-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 17px 20px;
  border-radius: 5px;
  background: var(--brand-green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  z-index: 1;
}

.about-us-button::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: var(--primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.about-us-button:hover::after,
.about-us-button:focus-visible::after {
  right: auto;
  left: 0;
  width: 100%;
}

.about-us-button span,
.about-us-button img {
  position: relative;
  z-index: 1;
}

.about-us-button img {
  display: block;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease-in-out;
}

.about-us-button:hover img,
.about-us-button:focus-visible img {
  transform: rotate(45deg);
}

.about-us-story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  cursor: pointer;
}

.about-us-play {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
}

.about-us-play i {
  margin-left: 2px;
  color: var(--white);
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

.about-us-story:hover .about-us-play i,
.about-us-story:focus-visible .about-us-play i {
  color: var(--brand-green);
}

.page-header {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background-image: url("../images/new-page-header-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-header::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    270deg,
    transparent 27.45%,
    rgba(0, 26, 41, 0.9) 72.29%
  );
}

.page-header__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1em;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  color: var(--white);
  font-size: 16px;
  line-height: 1.4em;
  text-transform: capitalize;
}

.breadcrumb li + li::before {
  content: "/";
  display: inline-block;
  margin: 0 10px;
  color: inherit;
}

.breadcrumb a {
  color: inherit;
  transition: color 0.3s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--brand-green);
}

.our-services {
  padding: 120px 0;
  background-color: #f4f8fa;
  background-image: url("../images/section-bg-1.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 80px;
}

.services-heading .section-eyebrow {
  background: var(--white);
}

.services-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.services-intro {
  align-self: end;
}

.services-intro > p {
  margin: 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.services-button {
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.page-services {
  padding: 120px 0;
  background: var(--white);
}

.page-services .service-item {
  background: #f4f8fa;
}
.services-scope-heading {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.services-scope-heading h2 {
  margin: 0 auto;
  padding: 30px 0 20px;
  color: var(--primary);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.1em;
}

.page-contact-us {
  padding: 120px 0 60px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 30px;
  align-items: stretch;
}

.contact-us-content {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: 40px;
  padding: 10px;
  border-radius: 14px;
  background: var(--primary);
}

.contact-us-image {
  min-height: 0;
  flex: 1;
}

.contact-us-image figure {
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.contact-us-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  border-radius: 14px;
}

.contact-us-body {
  padding: 0 30px 30px;
}

.contact-us-body-title {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-us-body-title h2 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.contact-info-item {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--white);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-icon::before {
  transform: scale(1);
}

.contact-info-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  transition: filter 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-icon img {
  filter: brightness(0);
}

.contact-info-item-content {
  width: calc(100% - 65px);
  min-width: 0;
}

.contact-info-item-content p {
  margin: 0 0 5px;
  color: var(--white);
  line-height: 1.4em;
}

.contact-info-item-content h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25em;
  overflow-wrap: anywhere;
}

.contact-info-item-content a {
  transition: color 0.3s ease-in-out;
}

.contact-info-item-content a:hover,
.contact-info-item-content a:focus-visible {
  color: var(--brand-green);
}

.contact-us-form {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.125vw, 60px);
  border-radius: 14px;
  background: #f4f8fa;
}

.contact-form-heading {
  margin-bottom: 40px;
}

.contact-form-heading h2,
.map-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.contact-form-heading p,
.map-heading > p:last-child {
  margin: 20px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 20px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  outline: 0;
  background: var(--white);
  color: var(--primary);
  font: inherit;
  font-size: 16px;
  line-height: 1.45em;
  padding: 20px;
  resize: vertical;
  box-shadow: 0 0 0 1px transparent;
  transition: box-shadow 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #74787c;
  font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 2px var(--brand-green);
}

.contact-submit {
  border: 0;
  font-family: inherit;
}

.google-map {
  padding: 60px 0 120px;
}

.map-heading {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 80px;
  text-align: center;
}

.map-heading .section-eyebrow {
  background: #f4f8fa;
}

.google-map-iframe {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 14px;
}

.google-map-iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.our-approach {
  padding: 120px 0;
  background-color: #f4f8fa;
  background-image: url("../images/section-bg-1.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 30px;
  align-items: stretch;
}

.our-approach-content {
  display: flex;
  min-width: 0;
  height: calc(100% - 50px);
  flex-direction: column;
  margin-bottom: 50px;
}

.approach-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.approach-heading h2,
.team-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.approach-heading > p:last-child,
.team-intro p {
  margin: 20px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.approach-item-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-right: -190px;
}

.approach-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: 30px;
  border-radius: 14px;
  background: var(--white);
}

.approach-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  transition: height 0.4s ease-in-out;
}

.approach-item:hover::before {
  height: 100%;
}

.approach-icon-box {
  position: relative;
  z-index: 1;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
}

.approach-icon-box img {
  display: block;
  width: 24px;
  height: 24px;
}

.approach-item-content {
  position: relative;
  z-index: 1;
}

.approach-item-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color 0.4s ease-in-out;
}

.approach-item-content p {
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
  transition:
    color 0.4s ease-in-out,
    border-color 0.4s ease-in-out;
}

.approach-item:hover .approach-item-content h3,
.approach-item:hover .approach-item-content p {
  color: var(--white);
}

.approach-item:hover .approach-item-content p {
  border-color: rgba(255, 255, 255, 0.12);
}

.approach-image {
  height: 100%;
  min-height: 0;
  margin-left: 15px;
}

.approach-image figure {
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  aspect-ratio: 1 / 1.2926;
  object-fit: cover;
  border-radius: 14px;
}
[data-image-reveal].is-image-reveal-ready {
  visibility: hidden;
  transform: translate3d(-100%, 0, 0);
}

[data-image-reveal].is-image-reveal-ready img {
  transform: translate3d(100%, 0, 0);
  transform-origin: left center;
}

[data-image-reveal].is-image-revealed {
  visibility: visible;
  animation: image-reveal-frame 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-image-reveal].is-image-revealed img {
  animation: image-reveal-media 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes image-reveal-frame {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes image-reveal-media {
  from {
    transform: translate3d(100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.our-team {
  padding: 120px 0 0px;
  background: var(--white);
}

.team-section-header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 80px;
}

.team-intro {
  align-self: end;
}

.team-intro p {
  margin-top: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.team-item {
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  background: #f4f8fa;
}

.team-item-image {
  overflow: hidden;
  border-radius: 14px;
}

.team-item-image figure {
  display: block;
  margin: 0;
  border-radius: 14px;
}

.team-item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.6s ease-in-out;
}

.team-item:hover .team-item-image img {
  transform: scale(1.06);
}

.team-item-body {
  padding: 30px 20px 20px;
  text-align: center;
}

.team-item-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.team-item-content p {
  margin: 10px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.5em;
}

.team-workforce-highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: 24px;
  border-radius: 14px;
  background: #f4f8fa;
  color: #74787c;
}

.team-workforce-highlight__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(18, 124, 66, 0.1);
  color: var(--brand-green);
  font-size: 18px;
}

.team-workforce-highlight p {
  margin: 0;
  color: #74787c;
  font-size: 18px;
  line-height: 1.6em;
}

.team-workforce-highlight strong {
  color: var(--primary);
  font-weight: 500;
}

.project-core-feature-royal {
  padding: 120px 0 60px;
  background: var(--white);
}

.project-core-feature-royal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 50px;
}

.project-core-feature-royal__content {
  align-content: center;
}

.project-core-feature-royal__heading {
  margin-bottom: 50px;
}

.project-core-feature-royal__heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.project-core-feature-royal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.project-core-feature-royal__item {
  display: flex;
  min-width: 0;
  min-height: 114px;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 14px;
  background: #f4f8fa;
  transition: background-color 0.4s ease-in-out;
}

.project-core-feature-royal__item:hover {
  background: var(--brand-green);
}

.project-core-feature-royal__icon {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.project-core-feature-royal__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.project-core-feature-royal__item:hover
  .project-core-feature-royal__icon::before {
  transform: scale(1);
}

.project-core-feature-royal__icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
}

.project-core-feature-royal__item h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3em;
  transition: color 0.4s ease-in-out;
}

.project-core-feature-royal__item:hover h3 {
  color: var(--white);
}

.project-core-feature-royal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.project-core-feature-royal__phone {
  display: flex;
  align-items: center;
  gap: 15px;
}

.project-core-feature-royal__phone-icon {
  display: flex;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
}

.project-core-feature-royal__phone-icon img {
  display: block;
  width: 30px;
  height: 30px;
}

.project-core-feature-royal__phone-content p {
  margin: 0 0 7px;
  color: #74787c;
  font-size: 16px;
  line-height: 1em;
}

.project-core-feature-royal__phone-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.project-core-feature-royal__phone-content a {
  transition: color 0.3s ease;
}

.project-core-feature-royal__phone-content a:hover,
.project-core-feature-royal__phone-content a:focus-visible {
  color: var(--brand-green);
}

.project-core-feature-royal__image-box {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.project-core-feature-royal__image {
  display: block;
  height: 100%;
  margin: 0;
  border-radius: 14px;
}

.project-core-feature-royal__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.987;
  object-fit: cover;
  border-radius: 14px;
}

.project-core-feature-royal__trust {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 260px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(24, 40, 36, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-core-feature-royal__avatars {
  display: flex;
  align-items: center;
}

.project-core-feature-royal__avatars span {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: -14px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-green);
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(24, 40, 36, 0.14);
}

.project-core-feature-royal__avatars span:first-child {
  margin-left: 0;
}

.project-core-feature-royal__avatars .project-core-feature-royal__avatar-more {
  background: var(--brand-green);
  color: var(--white);
  font-size: 18px;
}

.project-core-feature-royal__trust p {
  margin: 15px 0 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
}

.project-video-gallery {
  padding: 30px 0 30px;
  background: var(--white);
}

.project-video-grid,
.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.project-video-card,
.project-photo-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
}

.project-video-card a,
.project-photo-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.project-video-card figure,
.project-photo-card figure {
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.project-video-card a::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 14px;
  background: var(--primary);
  opacity: 0.18;
  transition: opacity 0.4s ease-in-out;
}

.project-video-card:hover a::before,
.project-video-card a:focus-visible::before {
  opacity: 0.5;
}

.project-video-card img,
.project-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.9422;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.6s ease-in-out;
}

.project-video-card:hover img,
.project-video-card a:focus-visible img,
.project-photo-card:hover img,
.project-photo-card a:focus-visible img {
  transform: scale(1.06);
}

.project-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--white);
  transform: translate(-50%, -50%);
  transition:
    background-color 0.35s ease-in-out,
    transform 0.35s ease-in-out;
}

.project-video-card:hover .project-video-card__play,
.project-video-card a:focus-visible .project-video-card__play {
  background: var(--white);
  color: var(--primary);
  transform: translate(-50%, -50%) scale(1.08);
}

.project-video-card__play i {
  margin-left: 3px;
  color: inherit;
  font-size: 18px;
}

.project-photo-gallery {
  padding: 0 0 90px;
  background: var(--white);
}

.service-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
}

.service-item figure {
  margin: 0;
}

.service-item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 14px;
}

.service-item-image figure,
.service-item-image img {
  border-radius: 14px;
}

.service-item-image > figure > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.6578;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

.service-item:hover .service-item-image > figure > img {
  transform: scale(1.06);
}

.service-icon-box {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
}

.service-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.service-item:hover .service-icon-box::before {
  transform: scale(1);
}

.service-icon-box img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 24px;
  height: auto;
  z-index: 1;
  overflow: visible;
}

.service-item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 10px 10px;
}

.service-item-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.service-item-content p {
  margin: 10px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.service-item-btn {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-inquire-link {
  position: relative;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding-right: 36px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  transition: color 0.3s ease-in-out;
}

.service-inquire-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-green) url("../images/arrow-white.svg") center / 16px
    auto no-repeat;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease-in-out,
    transform 0.4s ease-in-out;
}

.service-inquire-link:hover,
.service-inquire-link:focus-visible {
  color: var(--brand-green);
}

.service-inquire-link:hover::after,
.service-inquire-link:focus-visible::after {
  background-color: var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

.services-footer {
  margin-top: 30px;
  text-align: center;
}

.services-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.satisfy-client-images {
  display: flex;
  align-items: center;
}

.satisfy-client-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 1px solid var(--white);
  border-radius: 50%;
  z-index: 1;
}

.satisfy-client-image figure {
  display: block;
  margin: 0;
}

.satisfy-client-image figure img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.satisfy-client-image--phone {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  background: var(--brand-green);
}

.satisfy-client-image--phone img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.services-trust-line p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.6em;
}

.services-trust-line p a {
  color: var(--brand-green);
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease-in-out;
}

.services-trust-line p a:hover,
.services-trust-line p a:focus-visible {
  color: var(--primary);
}

.services-reviews {
  width: 100%;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.services-reviews li {
  display: inline-block;
  margin-right: 10px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.services-reviews li:last-child {
  margin-right: 0;
}

.services-stars i {
  color: var(--brand-green);
  font-size: 16px;
}

.why-choose-us {
  padding: 120px 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.why-choose-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.why-choose-heading {
  margin-bottom: 40px;
}

.why-choose-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.why-choose-heading > p:last-child {
  margin: 20px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.why-choose-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  border-left: 4px solid var(--brand-green);
  border-radius: 14px;
  background: #f4f8fa;
}

.why-choose-icon-box {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.why-choose-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-icon-box::before {
  transform: scale(1);
}

.why-choose-icon-box img {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.why-choose-item-content {
  width: calc(100% - 65px);
}

.why-choose-item-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.why-choose-item-content p {
  margin: 10px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.why-choose-counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.why-choose-counter-item {
  position: relative;
  width: calc(33.333% - 26.667px);
}

.why-choose-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: var(--border);
}

.why-choose-counter-item:last-child::before {
  display: none;
}

.why-choose-counter-item h3 {
  margin: 0;
  color: var(--primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1em;
}

.why-choose-counter-item p {
  margin: 5px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.why-choose-image-box {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  gap: 30px;
  margin-left: 15px;
}

.why-choose-image-box-1 {
  position: relative;
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 14px;
}

.why-choose-image,
.why-choose-image figure {
  height: 100%;
}

.why-choose-image figure,
.why-choose-info-image figure {
  display: block;
  margin: 0;
  border-radius: 14px;
}

.why-choose-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.why-choose-image-box-1 .why-choose-image img {
  aspect-ratio: 1 / 0.5405;
}

.why-choose-scrolling-ticker {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
}

.why-choose-ticker-box {
  --ticker-gap: 20px;
  display: flex;
  align-items: center;
  gap: var(--ticker-gap);
  overflow: hidden;
  user-select: none;
}

.why-choose-ticker-content {
  display: flex;
  min-width: 100%;
  flex-shrink: 0;
  gap: var(--ticker-gap);
  animation: why-choose-scroll 50s linear infinite;
}

@keyframes why-choose-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--ticker-gap)));
  }
}

.why-choose-ticker-box:hover .why-choose-ticker-content {
  animation-play-state: paused;
}

.why-choose-ticker-content span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 5px;
  background: rgba(24, 40, 36, 0.55);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-choose-image-box-2 {
  display: flex;
  min-height: 0;
  flex: 1 1 0;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-image--lower {
  width: calc(50% - 15px);
}

.why-choose-image--lower img {
  aspect-ratio: 1 / 0.9809;
}

.why-choose-info-box {
  display: flex;
  width: calc(50% - 15px);
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  border-radius: 14px;
  background: var(--brand-green);
}

.why-choose-info-image {
  max-width: 110px;
}

.why-choose-info-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.why-choose-info-content h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.why-choose-info-content p {
  margin: 15px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6em;
}

.why-choose-footer {
  margin-top: 60px;
}

.why-choose-footer-list {
  display: flex;
  max-width: 900px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.why-choose-footer-list li {
  position: relative;
  padding: 9px 16px 9px 32px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
  transition: all 0.4s ease-in-out;
}

.why-choose-footer-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translateY(-50%);
}

.why-choose-footer-list li:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.why-choose-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  text-align: center;
}

.why-choose-footer-contact p {
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.6em;
}

.why-choose-footer-contact p a {
  color: var(--brand-green);
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease-in-out;
}

.why-choose-footer-contact p a:hover,
.why-choose-footer-contact p a:focus-visible {
  color: var(--primary);
}

.intro-video {
  position: relative;
  padding: 60px 0;
  background: var(--white);
}

.intro-video__card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.intro-video-image {
  position: relative;
  overflow: hidden;
}

.intro-video-image figure {
  position: relative;
  display: block;
  margin: 0;
}

.intro-video-image figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 40, 36, 0.94) 0%,
    rgba(24, 40, 36, 0.72) 50%,
    rgba(24, 40, 36, 0.38) 100%
  );
  z-index: 1;
}

.intro-video-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.495;
  object-fit: cover;
  transition: transform 2s ease-in-out;
}

.intro-video__card:hover .intro-video-image img {
  transform: scale(1.03);
}

.intro-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.intro-video__overlay-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: clamp(40px, 5vw, 70px);
}

.intro-video__content {
  max-width: 760px;
}

.intro-video__eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.intro-video__content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08em;
}

.intro-video__description {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7em;
}

.intro-video__story {
  width: fit-content;
  margin-top: 30px;
}

.core-features {
  overflow: hidden;
  padding: 120px 0;
  background-color: #f4f8fa;
  background-image: url("../images/section-bg-3.png");
  background-repeat: no-repeat;
  background-position: bottom -50px right;
  background-size: auto;
}

.core-features-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}

.core-features-heading .section-eyebrow {
  background: var(--white);
}

.core-features-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.core-features-intro > p {
  margin: 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.core-features-button {
  margin-top: 30px;
}

.core-features-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 30px;
  align-items: stretch;
}

.core-features-image {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.core-features-image figure {
  display: block;
  width: 100%;
  margin: 0 0 -120px;
}

.core-features-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.52;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.core-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-left: 15px;
}

.core-feature-item {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 30px;
  border-radius: 14px;
  background: var(--white);
}

.core-feature-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--brand-green);
  transition: height 0.4s ease-in-out;
}

.core-feature-item:hover::before {
  height: 100%;
}

.core-feature-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
}

.core-feature-icon-box {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.core-feature-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.core-feature-item:hover .core-feature-icon-box::before {
  transform: scale(1);
}

.core-feature-icon-box img {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.core-feature-number {
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color 0.4s ease-in-out;
}

.core-feature-content {
  position: relative;
  z-index: 1;
}

.core-feature-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color 0.4s ease-in-out;
}

.core-feature-content p {
  margin: 10px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
  transition: color 0.4s ease-in-out;
}

.core-feature-item:hover .core-feature-number,
.core-feature-item:hover .core-feature-content h3,
.core-feature-item:hover .core-feature-content p {
  color: var(--white);
}

.home-faqs {
  padding: 120px 0;
  background: var(--white);
}

.home-faqs-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 30px;
  align-items: start;
}

.home-faqs-content {
  position: sticky;
  top: 30px;
}

.home-faqs-heading {
  margin-bottom: 40px;
}

.home-faqs-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.home-faqs-heading > p:last-child {
  margin: 20px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.faq-accordion {
  margin-left: 15px;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 40px 2px 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-family: "Host Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--brand-green);
  transform: translateY(-50%);
}

.faq-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease-in-out;
}

.faq-question[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows 0.35s ease-in-out,
    opacity 0.3s ease-in-out,
    visibility 0.35s ease-in-out;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 20px 40px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.faq-counter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4.167vw;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

.faq-counter-item {
  position: relative;
  display: flex;
  width: calc(33.333% - 2.778vw);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faq-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2.083vw;
  width: 1px;
  height: 100%;
  background: var(--border);
}

.faq-counter-item:last-child::before {
  display: none;
}

.faq-counter-icon-box {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.faq-counter-icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
}

.faq-counter-item:hover .faq-counter-icon-box::before {
  transform: scale(1);
}

.faq-counter-icon-box img {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.faq-counter-content {
  max-width: calc(100% - 65px);
}

.faq-counter-content h3 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1em;
}

.faq-counter-content p {
  margin: 5px 0 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
}

.home-testimonials {
  padding: 120px 0;
  background-color: #f4f8fa;
  background-image: url("../images/section-bg-1.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 30px;
  align-items: stretch;
}

.testimonials-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-right: 15px;
}

.testimonials-heading {
  margin-bottom: 40px;
}

.testimonials-heading .section-eyebrow {
  background: var(--white);
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.testimonial-client-box {
  width: 100%;
  max-width: 360px;
  padding: 30px;
  border-radius: 14px;
  background: var(--white);
}

.testimonial-summary-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
  margin-bottom: 20px;
}

.testimonial-summary-rating > span {
  color: var(--primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 1em;
}

.testimonial-summary-rating i {
  color: var(--brand-green);
  font-size: 20px;
}

.testimonial-client-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.testimonial-client-images {
  display: flex;
  align-items: center;
}

.testimonial-client-images span {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: -14px;
  border: 1px solid var(--white);
  border-radius: 50%;
  z-index: 1;
}

.testimonial-client-images span:first-child {
  margin-left: 0;
}

.testimonial-client-images img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-client-images .testimonial-client-more {
  background: var(--brand-green);
  color: var(--white);
  font-size: 18px;
}

.testimonial-client-body > p {
  max-width: 155px;
  margin: 0;
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.testimonial-viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  min-width: 0;
  gap: 0;
  cursor: default;
  user-select: none;
  will-change: transform;
}

.testimonial-viewport:active .testimonial-track {
  cursor: default;
}

.testimonial-card {
  display: flex;
  height: auto;
  min-height: 490px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  border-radius: 14px;
  background: var(--white);
}

.testimonial-card-rating i {
  color: var(--brand-green);
  font-size: 20px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
}

.testimonial-author {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.testimonial-author h3 {
  margin: 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.testimonial-author p {
  margin: 5px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.testimonial-footer {
  margin-top: 60px;
  text-align: center;
}

.client-logos {
  padding: 120px 0;
  overflow: hidden;
  background: var(--white);
}

.client-logos-header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 60px;
}

.client-logos-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.client-logos-intro p {
  max-width: 520px;
  margin: 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.client-logos-button {
  margin-top: 30px;
}

.client-logo-tickers {
  display: grid;
  gap: 50px;
}

.client-logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: client-logos-scroll-left 36s linear infinite;
  will-change: transform;
}

.client-logo-marquee--reverse .client-logo-track {
  animation-name: client-logos-scroll-right;
}

.client-logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  padding-right: 20px;
}

.client-logo-set > img {
  display: block;
  width: auto;
  height: 200px;
  flex: 0 0 auto;
  object-fit: contain;
  user-select: none;
}

@keyframes client-logos-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes client-logos-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .client-logos-header {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .client-logos {
    padding: 60px 0;
  }

  .client-logos-header {
    margin-bottom: 40px;
  }

  .client-logos-heading h2 {
    font-size: 38px;
  }

  .client-logo-tickers {
    gap: 30px;
  }

  .client-logo-set > img {
    height: 150px;
  }
}

@media (max-width: 767px) {
  .client-logos {
    padding: 60px 0;
  }

  .client-logos-header {
    margin-bottom: 40px;
  }

  .client-logos-heading h2 {
    font-size: 28px;
  }

  .client-logo-set {
    gap: 12px;
    padding-right: 12px;
  }

  .client-logo-set > img {
    height: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
  }
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  [data-cursor-text] {
    cursor: none;
  }
}

.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  contain: layout style size;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    color 0.4s ease;
  will-change: transform;
}

.cb-cursor::before {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-green);
  content: "";
  opacity: 1;
  transform: scale(0);
  transition:
    transform 0.3s ease-in-out,
    opacity 0.1s ease;
}

.cb-cursor.-visible::before {
  transform: scale(0.2);
}

.cb-cursor.-visible.-active::before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}

.cb-cursor.-pointer::before {
  transform: scale(0);
}

.cb-cursor.-text::before {
  background: #000;
  opacity: 0.8;
  transform: scale(1.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cb-cursor.-text.-active::before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.cb-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.01em;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transform: scale(0) rotate(10deg);
  transition:
    opacity 0.4s ease,
    transform 0.3s ease;
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.video-modal-open,
body.image-lightbox-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease-out,
    visibility 0.16s ease-out;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  transform: scale(0.96);
  transition: transform 0.16s ease-out;
}

.video-modal.is-open .video-modal__dialog {
  transform: scale(1);
}

.video-modal__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  right: -8px;
  bottom: calc(100% + 8px);
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font:
    300 38px/1 Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  color: var(--brand-green);
  transform: rotate(90deg);
}

.project-photo-card a {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  cursor: zoom-out;
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1440px);
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.image-lightbox.is-open .image-lightbox__dialog {
  opacity: 1;
  transform: scale(1);
}

.image-lightbox__figure {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.image-lightbox__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  margin: 0 auto;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.image-lightbox__figure img.is-changing {
  opacity: 0.25;
}

.image-lightbox__caption {
  display: flex;
  min-height: 34px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.image-lightbox__caption [data-image-lightbox-counter] {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.image-lightbox__close,
.image-lightbox__nav {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible,
.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
  color: var(--white);
}

.image-lightbox__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  font:
    300 40px/1 Arial,
    sans-serif;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  color: var(--brand-green);
  transform: rotate(90deg);
}

.image-lightbox__nav {
  display: flex;
  width: 72px;
  height: 110px;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 30px;
}

.image-lightbox__nav:hover,
.image-lightbox__nav:focus-visible {
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .image-lightbox {
    padding: 54px 12px 20px;
  }

  .image-lightbox__dialog {
    display: block;
    width: 100%;
  }

  .image-lightbox__figure img {
    max-height: calc(100vh - 145px);
  }

  .image-lightbox__close {
    right: 0;
    bottom: calc(100% + 4px);
  }

  .image-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 80px;
    font-size: 24px;
    transform: translateY(-50%);
  }

  .image-lightbox__nav:hover,
  .image-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.08);
  }

  .image-lightbox__nav--previous {
    left: 0;
  }

  .image-lightbox__nav--next {
    right: 0;
  }

  .image-lightbox__caption {
    padding-right: 4px;
    padding-left: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox__dialog,
  .image-lightbox__figure img,
  .image-lightbox__close,
  .image-lightbox__nav {
    transition: none;
  }
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #127c42;
  color: var(--white);
}

.whatsapp-float i {
  font-size: 30px;
  line-height: 1;
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(18, 124, 66, 0.35);
  outline-offset: 3px;
}

.site-footer {
  padding: 120px 0 0;
  background-color: var(--primary);
  background-image: url("../images/dark-section-bg-image.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: var(--white);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.site-footer__logo {
  display: inline-block;
  cursor: pointer;
}

.site-footer__logo img {
  display: block;
  width: 250px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.site-footer__description {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.55em;
}

.site-footer__social {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__social h2,
.site-footer__links h2,
.site-footer__profile h2 {
  margin: 0 0 25px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.site-footer__social ul,
.site-footer__links ul {
  margin: 0;
}

.site-footer__social ul {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.site-footer__social a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  border-color: var(--brand-green);
  background: var(--brand-green);
}

.site-footer__social i {
  font-size: 17px;
}

.site-footer__links-box {
  display: grid;
  grid-template-columns: minmax(145px, 0.75fr) minmax(210px, 1.15fr) minmax(
      250px,
      1.3fr
    );
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(50px);
}

.site-footer__links ul {
  padding: 0 0 0 20px;
  list-style: disc;
}

.site-footer__links li {
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.45em;
}

.site-footer__links li:last-child {
  margin-bottom: 0;
}

.site-footer__links li::marker {
  color: var(--brand-green);
}

.site-footer__links a {
  transition: color 0.3s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--brand-green);
}

.site-footer__profile p {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.55em;
}

.site-footer__download {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 6px;
  background: var(--brand-green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  cursor: pointer;
  transition:
    color 0.35s ease,
    background-color 0.35s ease;
}

.site-footer__download img {
  width: 18px;
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.site-footer__download:hover,
.site-footer__download:focus-visible {
  background: var(--white);
  color: var(--primary);
}

.site-footer__download:hover img,
.site-footer__download:focus-visible img {
  filter: brightness(0);
  transform: rotate(45deg);
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__contact-item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.site-footer__contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__contact-icon {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--brand-green);
}

.site-footer__contact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--white);
  transform: scale(0);
  transition: transform 0.35s ease;
}

.site-footer__contact-item:hover .site-footer__contact-icon::before {
  transform: scale(1);
}

.site-footer__contact-icon img {
  position: relative;
  z-index: 1;
  width: 24px;
  transition: filter 0.35s ease;
}

.site-footer__contact-item:hover .site-footer__contact-icon img {
  filter: brightness(0);
}

.site-footer__contact-content {
  min-width: 0;
}

.site-footer__contact-content p {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 16px;
  line-height: 1em;
}

.site-footer__contact-content h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25em;
  overflow-wrap: anywhere;
}

.site-footer__contact-content a {
  transition: color 0.3s ease;
}

.site-footer__contact-content a:hover,
.site-footer__contact-content a:focus-visible {
  color: var(--brand-green);
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copyright p {
  margin: 0;
  color: var(--white);
  line-height: 1.4em;
}

.site-footer__copyright a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer__copyright a:hover,
.site-footer__copyright a:focus-visible {
  color: var(--brand-green);
}

@media (max-width: 1199px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__about {
    max-width: 100%;
  }

  .site-footer__links-box {
    width: 100%;
  }

  .site-footer__contacts {
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .site-footer__contact-item:not(:last-child)::after {
    right: -20px;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 60px;
  }

  .site-footer__links-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px;
  }

  .site-footer__profile {
    grid-column: 1 / -1;
  }

  .site-footer__contacts {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer__contact-item:not(:last-child)::after {
    display: none;
  }

  .site-footer__copyright {
    margin-top: 30px;
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float i {
    font-size: 27px;
  }

  .site-footer__logo img {
    width: 210px;
  }

  .site-footer__description {
    margin-top: 18px;
  }

  .site-footer__social {
    margin-top: 20px;
    padding-top: 20px;
  }

  .site-footer__links-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }

  .site-footer__profile {
    grid-column: auto;
  }

  .site-footer__social h2,
  .site-footer__links h2,
  .site-footer__profile h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .site-footer__links li {
    margin-bottom: 10px;
  }

  .site-footer__contact-content h3 {
    font-size: 18px;
  }

  .site-footer__copyright {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services-button {
    margin-top: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-content {
    height: auto;
  }

  .contact-us-image,
  .contact-us-image figure {
    height: auto;
  }

  .contact-us-image img {
    height: auto;
    aspect-ratio: 1 / 0.65;
  }

  .contact-us-form {
    height: auto;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .our-approach-content {
    height: auto;
    margin-bottom: 0;
  }

  .approach-item-list {
    margin-right: 0;
  }

  .approach-image {
    height: auto;
    margin-left: 0;
  }

  .approach-image figure {
    height: auto;
  }

  .approach-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.7;
  }

  .team-section-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-image-box {
    height: auto;
    margin-left: 0;
  }

  .why-choose-image-box-1,
  .why-choose-image-box-2 {
    flex: none;
    height: auto;
  }

  .why-choose-image-box-1 .why-choose-image,
  .why-choose-image-box-1 .why-choose-image figure,
  .why-choose-image--lower,
  .why-choose-image--lower figure {
    height: auto;
  }

  .why-choose-image--lower img {
    height: auto;
    aspect-ratio: 1 / 0.65;
  }

  .core-features {
    background-position: bottom center;
    background-size: 100% auto;
  }

  .core-features-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .core-features-button {
    margin-top: 20px;
  }

  .core-features-body {
    grid-template-columns: 1fr;
  }

  .core-feature-list {
    order: 1;
    margin: 0 0 30px;
  }

  .core-features-image {
    order: 2;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }

  .project-core-feature-royal__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-core-feature-royal__image-box {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
  }

  .project-core-feature-royal__image,
  .project-core-feature-royal__image img {
    height: auto;
  }

  .project-core-feature-royal__image img {
    aspect-ratio: 1 / 0.7;
  }

  .home-faqs-grid {
    grid-template-columns: 1fr;
  }

  .home-faqs-content {
    position: static;
    margin-bottom: 30px;
  }

  .faq-accordion {
    margin-left: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-content {
    height: auto;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 0 30px;
  }

  .testimonials-content-header {
    width: calc(60% - 10px);
  }

  .testimonial-client-box {
    width: calc(40% - 10px);
    max-width: 100%;
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: 20px;
  }

  .social-links {
    display: none;
  }

  .utility-bar__inner {
    max-width: none;
    padding-inline: 20px;
  }

  .contact-details {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .utility-link {
    font-size: 12px;
  }

  .utility-icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .main-header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
    padding: 15px 20px;
  }

  .site-logo img {
    height: 64px;
  }
  .contact-button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 6px;
    background: var(--brand-green);
    color: var(--white);
    font-weight: 600;
    justify-content: center;
  }

  .menu-toggle i {
    font-size: 20px;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    visibility: hidden;
    border: 0;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--brand-green);
    box-shadow: 0 18px 45px rgba(24, 40, 36, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.3s ease-in-out,
      transform 0.3s ease-in-out,
      visibility 0.3s ease-in-out;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation ul {
    display: block;
    padding: 15px 20px 22px;
  }

  .primary-navigation li {
    margin: 0;
  }

  .primary-navigation a {
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
  }

  .primary-navigation li:last-child a {
    border-bottom: 0;
  }

  .primary-navigation a:hover,
  .primary-navigation a:focus-visible {
    color: var(--primary);
  }
  .hero {
    padding: 140px 0;
  }

  .page-header {
    padding: 90px 0;
  }

  .page-header h1 {
    font-size: 44px;
  }

  .page-services {
    padding: 60px 0;
  }

  .page-contact-us {
    padding: 60px 0 30px;
  }

  .contact-form-heading h2,
  .map-heading h2 {
    font-size: 38px;
  }

  .google-map {
    padding: 30px 0 60px;
  }

  .map-heading {
    margin-bottom: 40px;
  }

  .google-map-iframe {
    height: 500px;
  }

  .project-video-gallery {
    padding: 60px 0 20px;
  }

  .project-photo-gallery {
    padding-bottom: 60px;
  }

  .project-video-grid,
  .project-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .our-approach,
  .our-team {
    padding: 60px 0;
  }

  .approach-heading {
    margin-bottom: 40px;
  }

  .approach-heading h2,
  .team-heading h2 {
    font-size: 38px;
  }

  .team-section-header {
    margin-bottom: 40px;
  }

  .hero__content {
    width: 100%;
    max-width: 720px;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__description {
    margin-top: 10px;
  }

  .hero__play {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us__grid {
    grid-template-columns: 1fr;
  }

  .about-us-image-box {
    width: 100%;
    max-width: 615px;
    margin: 0 auto 30px;
  }

  .about-us-heading h2 {
    font-size: 38px;
  }

  .about-us-heading > p:last-child {
    margin-top: 10px;
  }

  .about-us-counter-box h2 {
    font-size: 38px;
  }

  .about-us-item-content h3 {
    font-size: 20px;
  }

  .about-us-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .our-services {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 38px;
  }

  .service-item {
    padding: 10px;
  }

  .service-icon-box {
    top: 20px;
    left: 20px;
  }

  .service-item-body {
    padding: 10px;
  }

  .service-item-content h3 {
    font-size: 20px;
  }

  .services-footer {
    margin-top: 10px;
  }

  .services-reviews {
    margin-top: 10px;
  }

  .services-reviews li {
    margin-right: 5px;
  }

  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-heading {
    margin-bottom: 30px;
  }

  .why-choose-heading h2 {
    font-size: 38px;
  }

  .why-choose-heading > p:last-child {
    margin-top: 10px;
  }

  .why-choose-item-content h3 {
    font-size: 20px;
  }

  .why-choose-counter-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .why-choose-counter-item {
    text-align: center;
  }

  .why-choose-counter-item h3 {
    font-size: 34px;
  }

  .why-choose-info-content h3 {
    font-size: 20px;
  }

  .why-choose-footer {
    margin-top: 40px;
  }

  .why-choose-footer-list {
    gap: 15px;
  }

  .why-choose-footer-list li {
    padding: 6px 14px 6px 30px;
    font-size: 14px;
  }

  .why-choose-footer-list li::before {
    left: 14px;
  }

  .why-choose-footer-contact {
    margin-top: 20px;
  }

  .core-features {
    padding: 60px 0;
  }

  .core-features-header {
    margin-bottom: 40px;
  }

  .core-features-heading h2 {
    font-size: 38px;
  }

  .core-features-image {
    max-width: 400px;
  }

  .core-features-image figure {
    margin-bottom: -60px;
  }

  .core-feature-item {
    gap: 30px;
    padding: 20px;
  }

  .core-feature-number,
  .core-feature-content h3 {
    font-size: 20px;
  }

  .project-core-feature-royal {
    padding: 60px 0;
  }

  .project-core-feature-royal__heading {
    margin-bottom: 40px;
  }

  .project-core-feature-royal__heading h2 {
    font-size: 38px;
  }

  .project-core-feature-royal__item {
    padding: 20px;
  }

  .project-core-feature-royal__item h3,
  .project-core-feature-royal__phone-content h3 {
    font-size: 20px;
  }

  .home-faqs {
    padding: 60px 0;
  }

  .home-faqs-heading {
    margin-bottom: 30px;
  }

  .home-faqs-heading h2 {
    font-size: 38px;
  }

  .home-faqs-heading > p:last-child {
    margin-top: 10px;
  }

  .faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .faq-question {
    padding: 5px 35px 1px 0;
  }

  .faq-question::after {
    width: 28px;
    height: 28px;
  }

  .faq-question::before {
    right: 7px;
  }

  .faq-panel p {
    padding: 15px 35px 0 0;
  }

  .faq-counter-list {
    margin-top: 40px;
    padding-top: 40px;
  }

  .faq-counter-item {
    display: block;
    text-align: center;
  }

  .faq-counter-icon-box {
    margin: 0 auto 15px;
  }

  .faq-counter-content {
    max-width: 100%;
  }

  .faq-counter-content h3 {
    font-size: 38px;
  }

  .home-testimonials {
    padding: 60px 0;
  }

  .testimonials-heading {
    margin-bottom: 30px;
  }

  .testimonials-heading h2 {
    font-size: 38px;
  }

  .testimonial-summary-rating > span {
    font-size: 26px;
  }

  .testimonial-summary-rating i {
    font-size: 18px;
  }

  .testimonial-client-body > p {
    max-width: 100%;
  }

  .testimonial-card {
    min-height: 370px;
    padding: 30px;
  }

  .testimonial-card-rating i {
    font-size: 18px;
  }

  .testimonial-card blockquote {
    font-size: 20px;
  }

  .testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
  }

  .testimonial-author h3 {
    font-size: 20px;
  }

  .testimonial-footer {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .utility-bar {
    padding: 15px 0;
  }

  .contact-details {
    gap: 10px;
  }

  .utility-link {
    gap: 6px;
    font-size: 12px;
  }

  .utility-icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .utility-link--email {
    display: flex;
  }

  .site-logo img {
    height: 55px;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    padding: 90px 0;
  }

  .page-header {
    padding: 90px 0;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .contact-us-content {
    gap: 30px;
  }

  .contact-us-body {
    padding: 0 20px 20px;
  }

  .contact-us-body-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-us-body-title h2,
  .contact-info-item-content h3 {
    font-size: 18px;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .contact-form-heading {
    margin-bottom: 30px;
  }

  .contact-form-heading h2,
  .map-heading h2 {
    font-size: 28px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .form-field input,
  .form-field textarea {
    padding: 15px;
  }

  .google-map-iframe {
    height: 350px;
  }

  .project-video-grid,
  .project-photo-grid {
    grid-template-columns: 1fr;
  }

  .project-core-feature-royal__heading h2 {
    font-size: 28px;
  }

  .project-core-feature-royal__list {
    gap: 20px;
  }

  .project-core-feature-royal__item {
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .project-core-feature-royal__item h3 {
    font-size: 18px;
  }

  .project-core-feature-royal__footer {
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .project-core-feature-royal__phone-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .project-core-feature-royal__phone-icon img {
    width: 24px;
    height: 24px;
  }

  .project-core-feature-royal__image img {
    aspect-ratio: 1 / 0.987;
  }

  .project-core-feature-royal__trust {
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: 180px;
    padding: 15px;
  }

  .project-core-feature-royal__avatars span {
    width: 42px;
    height: 42px;
  }

  .project-core-feature-royal__trust p {
    margin-top: 10px;
  }

  .approach-heading h2,
  .team-heading h2 {
    font-size: 28px;
  }

  .approach-item-list,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    min-height: 260px;
    padding: 20px;
  }

  .approach-item-content h3,
  .team-item-content h3 {
    font-size: 20px;
  }

  .approach-image img {
    aspect-ratio: 1 / 0.85;
  }

  .team-item-body {
    padding: 20px 15px 15px;
  }

  .team-workforce-highlight {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    text-align: left;
  }

  .team-workforce-highlight__icon {
    width: 44px;
    height: 44px;
    margin-inline: 0;
    font-size: 17px;
  }

  .team-workforce-highlight p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero__actions {
    gap: 20px;
    margin-top: 30px;
  }

  .about-us-heading {
    margin-bottom: 30px;
  }

  .section-eyebrow {
    margin-bottom: 10px;
    padding: 7px 12px 7px 27px;
  }

  .section-eyebrow::before {
    left: 12px;
  }

  .about-us-heading h2 {
    font-size: 28px;
  }

  .about-us-image-box-1 .about-us-image figure {
    margin-right: -80px;
  }

  .about-us-counter-box {
    margin: 10px 4px 0 0;
    padding: 15px;
  }

  .about-us-counter-box h2 {
    font-size: 28px;
  }

  .about-us-counter-box p {
    margin-top: 5px;
    font-size: 14px;
  }

  .about-us-image-box-2 .contact-us-circle {
    margin: 0 20px 10px 0;
  }

  .contact-us-circle img {
    max-width: 90px;
  }

  .about-us-item-list {
    width: 100%;
  }

  .about-us-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .about-us-item-content h3 {
    font-size: 18px;
  }

  .about-us-item-content p {
    margin-top: 5px;
  }

  .about-us-body-image {
    width: 100%;
    max-width: 100%;
  }

  .about-us-body-image figure,
  .about-us-body-image img {
    height: auto;
  }

  .about-us-body-image img {
    aspect-ratio: 1 / 0.9;
  }

  .about-us-footer {
    gap: 20px;
  }

  .services-header {
    margin-bottom: 30px;
  }

  .services-heading h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-scope-heading h2 {
    font-size: 28px;
  }
  .service-item-content h3 {
    font-size: 18px;
  }

  .service-item-content p {
    margin-top: 5px;
  }

  .services-reviews li {
    font-size: 18px;
  }

  .why-choose-heading h2 {
    font-size: 28px;
  }

  .why-choose-item {
    padding: 15px;
  }

  .why-choose-item-content {
    width: 100%;
  }

  .why-choose-item-content h3 {
    font-size: 18px;
  }

  .why-choose-item-content p {
    margin-top: 5px;
  }

  .why-choose-counter-list {
    gap: 20px;
  }

  .why-choose-counter-item {
    width: calc(33.333% - 13.333px);
  }

  .why-choose-counter-item::before {
    right: -10px;
  }

  .why-choose-counter-item h3 {
    font-size: 28px;
  }

  .why-choose-counter-item p {
    font-size: 14px;
  }

  .why-choose-image-box,
  .why-choose-image-box-2 {
    gap: 20px;
  }

  .why-choose-scrolling-ticker {
    bottom: 20px;
  }

  .why-choose-ticker-box {
    --ticker-gap: 15px;
  }

  .why-choose-ticker-content span {
    padding: 6px 12px;
  }

  .why-choose-image--lower {
    width: calc(45% - 10px);
  }

  .why-choose-info-box {
    width: calc(55% - 10px);
    gap: 15px;
    padding: 15px;
  }

  .why-choose-info-image {
    max-width: 80px;
  }

  .why-choose-info-content h3 {
    font-size: 16px;
  }

  .why-choose-info-content p {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 14px;
  }

  .why-choose-footer-list {
    gap: 10px;
  }

  .why-choose-footer-list li {
    padding: 5px 10px 5px 22px;
  }

  .why-choose-footer-list li::before {
    left: 10px;
  }

  .intro-video-image img {
    min-height: 572px;
    aspect-ratio: 1 / 0.77;
  }

  .intro-video-image figure::before {
    background: linear-gradient(
      180deg,
      rgba(24, 40, 36, 0.34) 0%,
      rgba(24, 40, 36, 0.66) 44%,
      rgba(24, 40, 36, 0.96) 100%
    );
  }

  .intro-video__overlay-inner {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
  }

  .intro-video__content h2 {
    font-size: clamp(30px, 8vw, 32px);
  }

  .intro-video__description {
    max-width: none;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6em;
  }

  .intro-video__story {
    margin-top: 24px;
  }

  .core-features-header {
    margin-bottom: 30px;
  }

  .core-features-heading h2 {
    font-size: 28px;
  }

  .core-feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .core-feature-number,
  .core-feature-content h3 {
    font-size: 18px;
  }

  .core-feature-content p {
    margin-top: 5px;
  }

  .core-features-image {
    max-width: 280px;
  }

  .home-faqs-heading h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-panel p {
    padding-right: 0;
  }

  .faq-counter-list {
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }

  .faq-counter-item {
    width: calc(50% - 10px);
  }

  .faq-counter-item::before {
    right: -10px;
  }

  .faq-counter-item:nth-child(2n)::before,
  .faq-counter-item:last-child::before {
    display: none;
  }

  .faq-counter-content h3 {
    font-size: 26px;
  }

  .faq-counter-content p {
    font-size: 14px;
  }

  .testimonials-content-header,
  .testimonial-client-box {
    width: 100%;
  }

  .testimonials-heading h2 {
    font-size: 28px;
  }

  .testimonial-summary-rating > span {
    font-size: 22px;
  }

  .testimonial-summary-rating i {
    font-size: 16px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 20px;
  }

  .testimonial-card blockquote,
  .testimonial-author h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (pointer: coarse) {
  .testimonial-track {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .contact-us-circle img {
    animation: none;
  }

  .why-choose-ticker-content {
    animation: none;
  }
}

/* Index 4 Prime testimonials */
.our-testimonials-prime {
  padding: 120px 0;
  background: var(--white);
}

.testimonials-prime-heading {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.testimonials-prime-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.testimonial-slider-prime {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonial-slider-prime .testimonial-track {
  cursor: default;
}

.testimonial-slider-prime:active .testimonial-track {
  cursor: default;
}

.testimonial-item-prime {
  display: flex;
  height: auto;
  min-height: 480px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border-radius: 14px;
  background: #f4f8fa;
  transform: scale(0.95);
  transition: transform 0.6s ease-in-out;
}

.testimonial-slider-prime .swiper-slide-next {
  transform: scale(1);
}

.testimonial-item-prime__rating {
  margin-bottom: 40px;
}

.testimonial-item-prime__rating i {
  color: var(--brand-green);
  font-size: 18px;
}

.testimonial-item-prime__content h3 {
  margin: 0 0 20px;
  color: var(--brand-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.testimonial-item-prime__content blockquote {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}

.testimonial-item-prime__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.testimonial-item-prime__author figure {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(18, 124, 66, 0.12);
  color: var(--brand-green);
}

.testimonial-item-prime__author figure i {
  font-size: 22px;
}

.testimonial-item-prime__author > div {
  width: calc(100% - 65px);
}

.testimonial-item-prime__author h3 {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.testimonial-item-prime__author p {
  margin: 5px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.5em;
}

.testimonial-prime-footer {
  margin-top: 60px;
  text-align: center;
}

/* Index 4 Prime FAQs */
.our-faqs-prime {
  padding: 120px 0;
  background-color: #f4f8fa;
  background-image: url("../images/section-bg-2.png");
  background-repeat: no-repeat;
  background-position: bottom -10px right;
  background-size: auto;
}

.our-faqs-prime__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
}

.faq-prime-heading {
  margin-bottom: 40px;
}

.faq-prime-heading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.faq-prime-heading > p:last-child {
  margin: 20px 0 0;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

.faq-cta-box-prime {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 14px;
  background: var(--primary);
}

.faq-cta-header-prime {
  display: flex;
  max-width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.faq-cta-header-prime__icon {
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-green);
}

.faq-cta-header-prime__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.faq-cta-header-prime h3 {
  width: calc(100% - 65px);
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
}

.faq-cta-box-prime > p {
  max-width: 72%;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6em;
}

.faq-cta-footer-prime {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}

.faq-cta-footer-prime > a {
  position: relative;
  display: inline-block;
  width: calc(100% - 215px);
  margin-top: 30px;
  padding: 35px 36px 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
}

.faq-cta-footer-prime > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--brand-green);
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
  transition: transform 0.4s ease-in-out;
}

.faq-cta-footer-prime > a:hover::before,
.faq-cta-footer-prime > a:focus-visible::before {
  transform: rotate(45deg);
}

.faq-cta-footer-prime figure {
  display: block;
  width: 100%;
  max-width: 195px;
  margin: 0 -55px -55px 0;
  overflow: hidden;
  border-radius: 14px;
}

.faq-cta-footer-prime figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.6236;
  object-fit: cover;
  border-radius: 14px;
}

.faq-accordion-prime {
  margin-left: 15px;
}

.faq-accordion-prime .faq-item,
.faq-accordion-prime .faq-item:last-child {
  overflow: hidden;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--white);
}

.faq-accordion-prime .faq-item:last-child {
  margin-bottom: 0;
}

.faq-accordion-prime .faq-question {
  padding: 20px 50px 20px 20px;
  font-size: 20px;
  line-height: 1.1em;
}

.faq-accordion-prime .faq-question::after {
  right: 20px;
  width: 26px;
  height: 26px;
}

.faq-accordion-prime .faq-question::before {
  right: 25px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-accordion-prime .faq-question[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(135deg);
}

.faq-accordion-prime .faq-panel > div {
  border-top: 1px solid var(--border);
}

.faq-accordion-prime .faq-panel p {
  margin: 0;
  padding: 20px;
}

@media (max-width: 1199px) {
  .testimonial-item-prime {
    transform: scale(1);
  }

  .our-faqs-prime {
    background-position: bottom -10px center;
    background-size: 100% auto;
  }

  .our-faqs-prime__grid {
    grid-template-columns: 1fr;
  }

  .our-faq-content-prime {
    margin-bottom: 0;
  }

  .faq-accordion-prime {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .our-testimonials-prime,
  .our-faqs-prime {
    padding: 60px 0;
  }

  .testimonials-prime-heading {
    margin-bottom: 40px;
  }

  .testimonials-prime-heading h2,
  .faq-prime-heading h2 {
    font-size: 38px;
  }

  .testimonial-item-prime {
    min-height: 0;
    gap: 30px;
    padding: 30px;
  }

  .testimonial-item-prime__rating {
    margin-bottom: 30px;
  }

  .testimonial-item-prime__content h3 {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .testimonial-item-prime__content blockquote {
    font-size: 16px;
  }

  .testimonial-item-prime__author {
    padding-top: 30px;
  }

  .testimonial-prime-footer {
    margin-top: 40px;
  }

  .faq-cta-header-prime h3 {
    font-size: 20px;
  }

  .faq-accordion-prime .faq-item,
  .faq-accordion-prime .faq-item:last-child {
    margin-bottom: 20px;
  }

  .faq-accordion-prime .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-accordion-prime .faq-question {
    padding: 15px 45px 15px 15px;
  }

  .faq-accordion-prime .faq-question::after {
    right: 15px;
  }

  .faq-accordion-prime .faq-question::before {
    right: 20px;
  }

  .faq-accordion-prime .faq-panel p {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .testimonials-prime-heading h2,
  .faq-prime-heading h2 {
    font-size: 28px;
  }

  .testimonial-item-prime {
    gap: 20px;
    padding: 20px;
  }

  .testimonial-item-prime__rating {
    margin-bottom: 20px;
  }

  .testimonial-item-prime__author h3 {
    font-size: 18px;
  }

  .testimonial-item-prime__author {
    padding-top: 20px;
  }

  .our-faqs-prime {
    background-size: 400px auto;
  }

  .faq-cta-box-prime {
    padding: 20px;
  }

  .faq-cta-header-prime {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .faq-cta-header-prime h3 {
    font-size: 18px;
  }

  .faq-cta-box-prime > p {
    max-width: 100%;
  }

  .faq-cta-footer-prime > a {
    width: calc(100% - 150px);
    margin-top: 15px;
    padding-top: 20px;
  }

  .faq-cta-footer-prime figure {
    max-width: 130px;
    margin: 0 -40px -40px 0;
  }

  .faq-accordion-prime .faq-question {
    padding: 12px 45px 12px 15px;
    font-size: 18px;
  }

  .faq-accordion-prime .faq-panel p {
    padding: 12px 15px;
  }
}

.error-page {
  padding: 120px 0;
  background: var(--white);
}

.error-page-image {
  margin-bottom: 30px;
  text-align: center;
}

.error-page-image img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
}

.error-page-content {
  text-align: center;
}

.error-page-content h2 {
  margin: 0 0 15px;
  color: var(--primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.error-page-content p {
  margin: 0 0 25px;
  color: #74787c;
  font-size: 16px;
  line-height: 1.6em;
}

@media (max-width: 1024px) {
  .error-page {
    padding: 60px 0;
  }

  .error-page-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-content h2 {
    font-size: 28px;
  }
}
/* Reference-matched scroll animations for remaining homepage sections */
[data-scroll-section] [data-scroll-title] {
  perspective: 400px;
}

.scroll-title__word,
.scroll-title__char {
  display: inline-block;
}

[data-scroll-section].is-scroll-ready [data-scroll-reveal],
[data-scroll-section].is-scroll-ready[data-scroll-self] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}

[data-scroll-section].is-scroll-ready .scroll-title__char {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
}

[data-scroll-section].is-scroll-animated [data-scroll-reveal],
[data-scroll-section].is-scroll-animated[data-scroll-self] {
  animation: scroll-fade-in-up 1s ease both;
}

[data-scroll-section].is-scroll-animated .scroll-title__char {
  animation: scroll-title-char-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    both;
  animation-delay: calc(var(--scroll-char-index) * 0.01s);
}

[data-scroll-section] [data-scroll-delay="0.2"],
[data-scroll-section][data-scroll-delay="0.2"] {
  animation-delay: 0.2s;
}

[data-scroll-section] [data-scroll-delay="0.4"],
[data-scroll-section][data-scroll-delay="0.4"] {
  animation-delay: 0.4s;
}

[data-scroll-section] [data-scroll-delay="0.6"],
[data-scroll-section][data-scroll-delay="0.6"] {
  animation-delay: 0.6s;
}

[data-scroll-section] [data-scroll-delay="0.8"],
[data-scroll-section][data-scroll-delay="0.8"] {
  animation-delay: 0.8s;
}

@keyframes scroll-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-title-char-in {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-section].is-scroll-ready [data-scroll-reveal],
  [data-scroll-section].is-scroll-ready[data-scroll-self],
  [data-scroll-section].is-scroll-ready .scroll-title__char {
    opacity: 1;
    transform: none;
  }

  [data-scroll-section].is-scroll-animated [data-scroll-reveal],
  [data-scroll-section].is-scroll-animated[data-scroll-self],
  [data-scroll-section].is-scroll-animated .scroll-title__char {
    animation: none;
  }

  [data-image-reveal].is-image-reveal-ready,
  [data-image-reveal].is-image-reveal-ready img {
    visibility: visible;
    transform: none;
  }

  [data-image-reveal].is-image-revealed,
  [data-image-reveal].is-image-revealed img {
    animation: none;
  }
}

/* Per-item WOW-style observers for repeated cards and FAQ rows */
[data-sequence-item].is-sequence-ready {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}

[data-sequence-item].is-sequence-animated {
  animation: scroll-fade-in-up 1s ease both;
}

@media (prefers-reduced-motion: reduce) {
  [data-sequence-item].is-sequence-ready {
    opacity: 1;
    transform: none;
  }

  [data-sequence-item].is-sequence-animated {
    animation: none;
  }
}

[data-sequence-item][data-scroll-delay="0.2"] {
  animation-delay: 0.2s;
}

[data-sequence-item][data-scroll-delay="0.4"] {
  animation-delay: 0.4s;
}

[data-sequence-item][data-scroll-delay="0.6"] {
  animation-delay: 0.6s;
}

[data-sequence-item][data-scroll-delay="0.8"] {
  animation-delay: 0.8s;
}
