@charset "UTF-8";
/** GENERAL **/
:root {
  --bg: #FFFFFF;
  --text: #1a1a1a;
  --text-light: #666;
  --text-lighter: #8a8a8a;
  --text-even-lighter: #cfcfcf;
  --accent: #8ec57c;
  --primary: #1D1D1B;
  --border: rgba(0,0,0,.08);
  --nav-height: 4rem;
  --nav-background: rgba(247, 247, 245, .92);
  --nav-background-opaque: rgb(247, 247, 245);
  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --logo-grey: rgba(118, 119, 124, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 900;
  /*letter-spacing:-0.03em;*/
}

p {
  color: var(--text-light);
}

.selection-black::selection {
  background: #000;
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s var(--ease);
}
.fade-up.show {
  opacity: 1;
  transform: none;
}

.not-found-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.container.container-padding,
.container-fluid.container-padding {
  padding-left: 25px;
  padding-right: 25px;
}

/* CURSOR */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: background 0.3s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border: 4px solid var(--logo-grey);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, background 0.3s, transform 0.1s;
}

body.hover-active .cursor-ring,
body.hover-active .cursor-dot, body.hover-active-input .cursor-ring,
body.hover-active-input .cursor-dot, body.hover-none .cursor-ring,
body.hover-none .cursor-dot {
  display: none;
}
body.hover-active-negative .cursor-dot {
  background: var(--text-lighter);
}
body.hover-active-negative-ring .cursor-ring {
  border-color: white;
}

/* cursor turned off on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-ring,
  .cursor-dot {
    display: none !important;
  }
}
/* NAVIGATION */
.header-solid {
  background: var(--nav-background) !important;
  border-bottom: 1px solid var(--accent) !important;
}

.navbar {
  height: var(--nav-height);
  backdrop-filter: blur(12px);
  background: var(--nav-background);
  border-bottom: 1px solid var(--accent);
}
.navbar.mainHeader {
  position: absolute;
  top: 100vh;
  right: 0;
  left: 0;
  z-index: 1030;
  opacity: 0;
  transition: opacity 2s var(--ease), border-color 2s var(--ease), background-color 2s var(--ease);
}
.navbar.headerInner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  transition: opacity 2s var(--ease), border-color 2s var(--ease), background-color 2s var(--ease);
}

#mainHeader.mainHeader {
  position: absolute;
  top: 100vh;
  right: 0;
  left: 0;
  z-index: 1030;
  opacity: 0;
  transition: opacity 2s var(--ease), border-color 2s var(--ease), background-color 2s var(--ease);
}

#headerInner.headerInner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  transition: opacity 2s var(--ease), border-color 2s var(--ease), background-color 2s var(--ease);
}
#headerInner a {
  transition: opacity 2s var(--ease);
}
#headerInner.nav-negat.headerInner {
  border-bottom: none;
  background: none;
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 1.5rem;
}
.navbar-brand span {
  color: var(--accent);
}
.navbar-brand.logo {
  transition: opacity 2s var(--ease);
}

.nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text) !important;
  opacity: 0.65;
  transition: 0.3s;
  position: relative;
  height: 2rem;
  line-height: 2rem;
}
.nav-link:hover, .nav-link.active {
  opacity: 1;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav-negat {
  transition: all 2s var(--ease);
}
.nav-negat.navbar {
  backdrop-filter: none;
  background: none;
  border-bottom: none;
}
.nav-negat .nav-link {
  color: white !important;
  opacity: 1;
}
.nav-negat .nav-link:hover, .nav-negat .nav-link.active {
  opacity: 0.65;
}
.nav-negat .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.mobile-menu {
  background: transparent;
}

.side-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}
.side-nav a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #777;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.35s var(--ease);
}
.side-nav a:hover, .side-nav a.active {
  color: #111;
  padding-left: 14px;
  border-color: var(--accent);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.logo-image {
  max-width: 247px;
}

/* MENU OVERLAY */
#menuOverlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--accent);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
#menuOverlay button {
  color: white !important;
}

#menuOverlay.active {
  transform: translateX(0);
}

/* PLAIN HAMBURGER MENU */
.menu-item {
  border: 0;
  background: transparent;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  transition: all 0.3s ease;
  text-align: left;
  text-transform: uppercase;
}

.menu-item:hover {
  padding-left: 12px;
  opacity: 0.7;
}

.toggle {
  border: 0;
  background: transparent;
  transition: transform 0.3s ease;
}

.rotate-90 {
  transform: rotate(90deg);
}

.submenu-mobile {
  padding-left: 3rem;
  padding-top: 1rem;
}

.submenu-mobile a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

#submenuDesktop a {
  color: white;
}

.submenu-mobile a:hover,
#submenuDesktop a:hover {
  color: var(--text-light);
}

#closeMenu:hover {
  transform: rotate(90deg);
  transition: transform 0.5s ease;
}

/** HERO SECTION **/
/* HOME PAGE */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
#hero.fs {
  align-items: flex-start;
}
#hero video,
#hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.hero-logo {
  position: absolute;
  padding-left: 1.5rem;
  top: 3vh;
}

#heroTitle {
  opacity: 0;
  transform: translateY(80px);
}

/* OTHER PAGES */
.hero-section {
  padding-top: calc(var(--nav-height) + 120px);
  padding-bottom: 120px;
  text-align: center;
  background: white;
  border-bottom: 1px solid var(--border);
}

.team-hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background: #e7e7e3;
  text-align: center;
}

.hero-title,
.page-title {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.5rem;
}

.hero-sub {
  max-width: 760px;
  margin: auto;
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.9;
}

/** OTHER SECTIONS **/
/* GLOBAL */
.section-padding {
  padding: 80px 0;
}
.section-padding.intro, .section-padding.velocity-view, .section-padding.v-projects {
  padding-top: 120px;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 900;
}
.section-title.negative {
  color: white;
}
.section-title.fixed {
  position: absolute;
  top: 120px;
  padding: 0 0.75rem;
  z-index: 10;
  container-type: inline-size;
}
.section-title h1 {
  display: inline-block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0 0 0 calc((100vw - 100cqi - 39px) / 2);
  line-height: 1;
}

.section-subtitle {
  color: var(--accent);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.03em;
  font-weight: 900;
}
.section-subtitle a {
  text-decoration: none;
  color: var(--accent);
}
.section-subtitle a:hover {
  opacity: 0.9;
}

.copy-text {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-lighter);
  margin-bottom: 30px;
}

.content-section {
  padding: 110px 0;
}

.culture-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 90px;
}

.culture-block {
  margin-bottom: 140px;
  scroll-margin-top: 140px;
}
.culture-block:last-child {
  margin-bottom: 0;
}

.culture-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.culture-text {
  font-size: 1.15rem;
  line-height: 2;
  color: #666;
  max-width: 850px;
}

.culture-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  margin-top: 3rem;
}

.quote-box {
  margin-top: 3rem;
  background: white;
  border-left: 4px solid var(--accent);
  padding: 3rem;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.quote-text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.5s var(--ease);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/** TEAM SECTION **/
/* FILTER TEAM */
.filter-wrap {
  margin-top: 50px;
}

.filter-wrap-reversed {
  margin-bottom: 50px;
}

.filter-label {
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  font-weight: 500;
  font-size: 0.9rem;
}

.filter-btn {
  border: none;
  background: none;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  padding: 12px 24px;
  font-weight: 300;
  font-size: 0.8rem;
  transition: 0.35s var(--ease);
}
.filter-btn:hover {
  opacity: 0.9;
}
.filter-btn.active::after, .filter-btn.active-filter::after {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  background: var(--accent);
  display: block;
}

.team-section {
  padding: 24px 0;
}

.team-card {
  transition: 0.45s var(--ease);
  cursor: none;
}
.team-card:hover {
  transform: translateY(-8px);
}
.team-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ddd;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 1s var(--ease);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.team-role {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-light);
}

.team-details {
  text-align: center;
}

.member-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #ddd;
  border-radius: 0;
}

.member-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.member-img.formal {
  opacity: 1;
  z-index: 1;
}
.member-img.candid {
  opacity: 0;
  z-index: 2;
}

.member-name {
  font-size: 1.35rem;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.member-role {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-lighter);
  font-size: 0.82rem;
  font-weight: 600;
}

/* TEAM MODAL */
.people-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 26, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.people-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.people-modal-overlay.active .people-modal-panel {
  transform: translateX(0);
}

.people-modal-panel {
  width: 100%;
  max-width: 620px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.modal-inner {
  padding: 70px 55px;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text);
  opacity: 0.6;
  transition: 0.25s var(--ease);
  z-index: 10;
}
.close-modal:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 35px;
}

.modal-tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-lighter);
  margin-bottom: 20px;
}

.modal-title {
  /*font-size: clamp(2rem, 4vw, 3rem);
  margin-top: .5rem;*/
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
}

.modal-text {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
}
.modal-text p span {
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
}

.modal-description-col {
  position: relative;
}
.modal-description-col .modal-description {
  position: absolute;
  bottom: 0;
}

/** PROJECTS **/
.project-card {
  margin-bottom: 10px;
}

.project-image {
  width: 100%;
  display: block;
  object-fit: cover;
}
.project-image.small {
  aspect-ratio: 1/1;
}
.project-image.five-to-four {
  aspect-ratio: 5/4;
}
.project-image.large {
  aspect-ratio: 16/9;
}

.project-title,
.team-name,
.card-title {
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.3;
  transition: 0.3s;
}

.card-title {
  font-size: 1.2rem !important;
}

.project-tags,
.team-role,
.card-text {
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--text-lighter);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.project-tags a,
.team-role a,
.card-text a {
  color: var(--text-lighter);
  text-decoration: none;
}
.project-tags a:hover,
.team-role a:hover,
.card-text a:hover {
  color: var(--text-light);
}

.card-text {
  font-size: 1rem !important;
}

/* CARD HOVER EFFECT */
.project-card,
.news-card,
.services-card {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.project-card .card,
.news-card .card,
.services-card .card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 0;
}
.project-card:hover .card,
.news-card:hover .card,
.services-card:hover .card {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.project-card:hover .card.no-effect,
.news-card:hover .card.no-effect,
.services-card:hover .card.no-effect {
  transform: none;
  box-shadow: none;
}
.project-card:hover .project-img,
.project-card:hover .news-img,
.news-card:hover .project-img,
.news-card:hover .news-img,
.services-card:hover .project-img,
.services-card:hover .news-img {
  transform: scale(1.03);
}
.project-card:hover .project-img.no-effect,
.project-card:hover .news-img.no-effect,
.news-card:hover .project-img.no-effect,
.news-card:hover .news-img.no-effect,
.services-card:hover .project-img.no-effect,
.services-card:hover .news-img.no-effect {
  transform: none;
}

.services-card .row {
  height: 290px;
}
.services-card img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
}

.sd-list {
  list-style: none;
  padding-left: 5px;
}
.sd-list li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.sd-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

/* PROJECT/TEAM GRID ELEMENT INJECTOR */
.project-item.active .project-title,
.project-item.active .team-name,
.team-item.active .project-title,
.team-item.active .team-name {
  color: var(--accent);
}

.project-expander {
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top center;
  max-height: 0;
  transition: opacity 0.75s ease, transform 0.75s ease, max-height 2s ease;
}
.project-expander.open {
  opacity: 1;
  transform: scaleY(1);
  max-height: 2000px;
}

.project-expander-inner {
  background: #fff;
  padding: 60px 0;
  position: relative;
}

.project-expander-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.project-expander-image {
  width: 100%;
  border-radius: 8px;
}

.flip-clone {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  transform-origin: top left;
}

/* PROJECT MODAL */
/* =========================
   OVERLAY
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  /* ACTIVE */
  /* DELAYED CONTENT FADE */
  /* OPTIONAL:
      remove rounding once fully open */
}
.modal-overlay.active .modal-panel {
  transform: translateY(0);
}
.modal-overlay.active .modal-content {
  opacity: 1;
  transform: translateY(0);
}
.modal-overlay.active.finished .modal-panel {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal-overlay .modal-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 35px;
}

/* =========================
   PANEL
========================= */
.modal-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: white;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.5s ease;
  will-change: transform;
  touch-action: none;
}

/* =========================
   CONTENT ANIMATION
========================= */
.modal-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.35s;
}

/* =========================
   CLOSE BUTTON
========================= */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 2rem;
  cursor: none;
  transition: transform 0.35s ease, background 0.35s ease;
  z-index: 20;
  color: var(--text-light);
}
.close-btn:hover {
  transform: rotate(90deg);
  color: var(--text);
}

/* IMAGE TRANSITION */
.project-img,
.news-img {
  transition: transform 0.6s ease;
}

/* TITLE HOVER */
.team-card2:hover .team-name,
.team-card2:active .team-name,
.project-card:hover .project-title,
.project-card:active .project-title,
.news-card:hover .news-title,
.news-card:active .news-title,
.services-card:hover .card-title,
.services-card:active .card-title {
  color: var(--accent);
}

/* OPTIONAL:
smoother rendering */
.project-card,
.news-card,
.team-card2,
.project-card .card,
.news-card .card,
.services-card {
  will-change: transform;
}

/* VIEW TOGGLES */
.grid-toggle,
.map-toggle {
  color: var(--text-lighter);
}
.grid-toggle:hover,
.map-toggle:hover {
  color: var(--text-light);
}
.grid-toggle.active,
.map-toggle.active {
  color: var(--accent);
}

.toggle-text {
  font-size: 0.6rem;
  font-weight: 100;
  color: var(--text-lighter);
}
.toggle-text:hover {
  color: var(--text-light);
}
.toggle-text.active {
  color: var(--accent);
}

/* PROJECTS MAP */
#map {
  width: 100%;
  height: 70vh;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.2);
}

.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: none !important;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E") !important;
}
.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E") !important;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  margin-right: 20px;
  font-family: Arial, sans-serif;
  overflow: auto;
  border-radius: 0;
  z-index: 999;
  text-align: start;
  color: #fff;
  cursor: default;
}
.map-overlay h4 {
  font-weight: 500;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

legend + * {
  clear: left;
}

#legend {
  padding: 1rem 2rem !important;
  box-shadow: 0 1px 2px rgb(0, 0, 0);
  line-height: 18px;
  margin-bottom: 40px;
  border-radius: 0;
}
#legend h4 {
  font-size: 1rem;
}

.legend-key {
  display: inline-block;
  border-radius: 20%;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.leg-circle {
  width: 15px;
  display: inline-block;
  height: 15px;
  border-radius: 100%;
  margin-right: 15px;
}

/** VELOCITY VIEW **/
.velocity-view {
  background: var(--accent);
  color: white;
}
.velocity-view .card {
  color: white;
}
.velocity-view .section-subtitle {
  color: white;
  margin-bottom: 10px;
}

.velocity-desc {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 35px;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

.news-card {
  margin-bottom: 25px;
}

.news-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 10px;
}

.news-title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.25rem;
}

.news-date {
  font-size: 0.65rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/** CONTACT **/
.contact-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--text-even-lighter);
  color: white;
}
.contact-input::placeholder {
  color: var(--text-light);
}
.contact-input:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-button {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
  margin-bottom: 20px;
}
.contact-button:hover {
  background-color: var(--accent);
  opacity: 0.9 !important;
  color: white;
}

/* SEARCH */
#searchBox {
  display: none;
}

#searchBox.active {
  display: block;
}

/** WHAT WE DO **/
/* SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease;
}

.slide {
  width: 100%;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #6aa84f, #8ec57c);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #1c3556, #457b9d);
}

.slide-content {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(60px, 8vh, 120px);
  z-index: 2;
  width: 100%;
  max-width: none;
  text-align: right;
  color: white;
  container-type: inline-size;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-right: calc((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px));
  line-height: 0.95;
}
.slide-content p {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  opacity: 0.95;
  margin: 0 calc((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) 0 0;
}

@media (min-width: 768px) {
  .slide-content {
    max-width: calc(768px - clamp(20px, 5vw, 80px) * 2);
    left: clamp(20px, 5vw, 80px);
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(768px - clamp(20px, 5vw, 80px) * 2 - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 797px) {
  .slide-content {
    max-width: 720px;
    left: auto;
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(720px - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 992px) {
  .slide-content {
    max-width: calc(992px - clamp(20px, 5vw, 80px) * 2);
    left: clamp(20px, 5vw, 80px);
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(992px - clamp(20px, 5vw, 80px) * 2 - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 1060px) {
  .slide-content {
    max-width: 960px;
    left: auto;
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(960px - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 1200px) {
  .slide-content {
    max-width: calc(1200px - clamp(20px, 5vw, 80px) * 2);
    left: clamp(20px, 5vw, 80px);
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(1200px - clamp(20px, 5vw, 80px) * 2 - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 1260px) {
  .slide-content {
    max-width: 1140px;
    left: auto;
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(1140px - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
@media (min-width: 1400px) {
  .slide-content {
    max-width: 1320px;
    left: auto;
  }
  .slide-content h1, .slide-content p {
    margin-left: calc(1320px - ((100vw - 100cqi) / 2 - clamp(20px, 5vw, 80px)) - 700px);
  }
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.dot {
  width: 36px;
  height: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.3s;
}
.dot.active {
  background: white;
}
.dot:hover {
  background: white;
}

/* DOUBLE ARROW */
.scroll-indicator {
  position: relative;
  display: inline-block;
  top: -15px;
  left: 30px;
  transform: translateX(-50%);
}
.scroll-indicator span {
  display: block;
  width: 32px;
  height: 32px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(45deg);
  margin: -10px;
  animation: arrowPulse 2s infinite;
}
.scroll-indicator span:nth-child(2) {
  animation-delay: 0.25s;
}
.scroll-indicator.home {
  position: absolute;
  left: calc(50% - 6px);
  height: 50px;
  top: calc(100% - 100px);
}

@keyframes arrowPulse {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-12px, -12px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(12px, 12px);
  }
}
/** FOOTER **/
.footer-section {
  padding-top: 32px;
  background: var(--accent);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 375px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
}
.footer-menu a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  transition: opacity 0.3s;
}
.footer-menu a:hover {
  opacity: 0.7;
}

.footer-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px; /* distance from absolute bottom */
  height: 4px; /* thickness */
  background: white;
  z-index: 1;
}

.footer-vehicle {
  position: absolute;
  right: 40px;
  bottom: 48px;
  width: 350px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28142, 197, 124, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/** HOW WE DO IT SECTION **/
.custom-gallery {
  display: grid;
}
.custom-gallery.row1 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: minmax(450px, 45vh);
}
.custom-gallery.row2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(350px, 45vh);
}
.custom-gallery .gallery-item {
  overflow: hidden;
}
.custom-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-fluid-values {
  max-width: 250px;
  height: auto;
  min-width: 200px;
}

/** RESPONSIVE **/
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
@media (max-width: 1199px) {
  .logo-image {
    max-width: 212px;
  }
  .container.container-padding,
  .container-fluid.container-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-padding {
    padding: 40px 0;
  }
  .section-padding.intro, .section-padding.velocity-view, .section-padding.v-projects {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .mobile-menu {
    background: var(--nav-background-opaque);
    border-radius: 18px;
    margin-top: 14px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }
  .culture-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .side-nav {
    position: relative;
    top: 0;
    display: flex;
    gap: 1rem;
    overflow: auto;
    padding-bottom: 1rem;
  }
  .side-nav a {
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    background: white;
  }
  .navbar-collapse {
    position: absolute;
    right: 1rem;
    top: 78px;
    width: 320px;
    z-index: 1000;
  }
  .section-padding {
    padding: 0 0 40px 0;
  }
  .project-title {
    font-size: 1rem;
  }
  .footer-menu a {
    font-size: 2rem;
  }
  .transport-placeholder {
    width: 150px;
  }
  .nav-negat .nav-link {
    color: var(--text) !important;
    opacity: 0.65;
  }
  .nav-negat .nav-link:hover, .nav-negat .nav-link.active {
    opacity: 1;
  }
  .services-card .row {
    height: 290px;
  }
  .logo-image {
    max-width: 141px;
  }
  .container.container-padding,
  .container-fluid.container-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  .toggle-text {
    font-size: 0.5rem;
  }
  .modal-description-col .modal-description {
    position: initial;
    bottom: initial;
  }
  .project-image.small {
    aspect-ratio: 16/9;
  }
  .section-subtitle {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .navbar-collapse {
    width: calc(100% - 2rem);
  }
  .hero-section {
    padding-top: 170px;
  }
  .culture-image {
    height: 340px;
  }
  .quote-box {
    padding: 2rem;
  }
  .quote-text {
    font-size: 1.1rem;
  }
  .modal-inner {
    padding: 60px 24px 40px;
  }
  .people-modal-panel {
    max-width: 100%;
  }
  .menu-item {
    font-size: 2rem;
  }
  #heroTitle {
    font-size: 3rem !important;
  }
  .project-card:hover .card,
  .news-card:hover .card {
    transform: translateY(-3px);
  }
  .section-title {
    font-size: 3rem;
  }
  .section-title h1 {
    font-size: 3rem;
  }
  .section-title.fixed {
    top: 80px;
  }
  .copy-text {
    font-size: 1rem;
  }
  .footer-section {
    min-height: 350px;
  }
  .footer-line {
    bottom: 36px;
    height: 3px;
  }
  .footer-menu {
    max-width: 300px;
  }
  .footer-vehicle {
    width: 250px;
    right: 25px;
    bottom: 35px;
  }
  .custom-gallery {
    display: block;
  }
  .custom-gallery .gallery-item img {
    width: 100%;
    height: auto;
  }
  .slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }
  .slide-content {
    right: 25px;
    left: 25px;
    text-align: center;
    max-width: calc(100% - 50px);
  }
  .slide-content h1 {
    margin-right: 0;
  }
  .slide-content p {
    margin: 0;
  }
  .services-card.card {
    height: auto;
  }
  .services-card .row {
    height: auto;
  }
}
@media (max-width: 576px) {
  .foot-pad-left {
    padding-left: 1.5rem;
  }
  .img-fluid-values {
    max-width: 200px;
    height: auto;
    min-width: 150px;
  }
  .container.container-padding,
  .container-fluid.container-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*# sourceMappingURL=style_page.css.map */
