@charset "UTF-8";
@font-face {
  font-family: "Metal-Variable";
  src: url("../fonts/metal-variable_regular-webfont.woff2") format("woff2"), url("../fonts/metal-variable_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Fira Sans", sans-serif;
  background-color: #242424;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  background-color: #242424;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Metal-Variable", serif;
  font-weight: normal;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video, svg {
  width: 100%;
  height: auto;
}

.desktop-only {
  display: none !important;
}

.desktop-lg-only {
  display: none !important;
}

.desktop-xl-only {
  display: none !important;
}

.mobile-only {
  display: block !important;
}

.stagger-text {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .desktop-only {
    display: block !important;
  }
  .desktop-lg-only {
    display: block !important;
  }
  .desktop-xl-only {
    display: none !important;
  }
  .mobile-only {
    display: none !important;
  }
}
@media (min-width: 1281px) {
  .desktop-lg-only {
    display: none !important;
  }
  .desktop-xl-only {
    display: block !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-family: "Fira Sans", sans-serif;
  font-size: 0.875em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  max-width: 200px;
  width: 100%;
}
.btn span, .btn svg {
  position: relative;
  z-index: 3;
  transition: color 0.3s ease, stroke 0.3s ease;
}
.btn svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  pointer-events: none;
  fill: none !important;
  stroke: #fff;
  width: 10px;
}
.btn svg path {
  stroke-width: 1.5px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: left 0.4s ease;
  z-index: 2;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #242424 !important;
}
.btn:hover svg {
  stroke: #242424 !important;
}
.btn:hover svg path {
  stroke: #242424 !important;
  fill: none !important;
}
.btn:hover::before {
  left: 0;
}

.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-family: "Fira Sans", sans-serif;
  font-size: 0.875em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  max-width: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn2 span, .btn2 svg {
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}
.btn2 svg {
  margin-left: 10px;
  fill: none !important;
  stroke: #fff;
  transition: stroke 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  width: 10px;
}
.btn2 svg path {
  stroke-width: 1.5px;
}
.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
  z-index: 2;
}
.btn2:hover {
  color: #fff;
  border-color: #fff;
}
.btn2:hover svg {
  stroke: #fff;
}
.btn2:hover::before {
  left: 0;
}

.btn-magnetic {
  will-change: transform;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #555;
  background-color: transparent;
  font-family: "Fira Sans", sans-serif;
  font-size: 0.9em;
  color: #fff;
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #fff;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #A7A7A7;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 20px 0;
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(36, 36, 36, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}
.site-header.scrolled .logo-svg {
  fill: #fff;
}
.site-header.scrolled .logo-svg path {
  fill: #fff;
}
.site-header.scrolled .nav-list a {
  color: #fff;
}
.site-header.scrolled .lang-toggle a {
  color: #fff;
}

.logo-svg {
  fill: #fff;
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: block;
}
.logo-link svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-list a {
  font-family: "Fira Sans", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.nav-list a:hover::after {
  width: 100%;
}

.lang-toggle {
  font-family: "Fira Sans", sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  display: flex;
  gap: 5px;
}
.lang-toggle a {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.lang-toggle a.active {
  opacity: 1;
}
.lang-toggle a:hover {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}
.mobile-menu-btn .line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.mobile-menu-btn.open .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.open .line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-header.scrolled .mobile-menu-btn .line {
  background-color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .nav-list a {
    font-size: 1.5em;
    color: #FFFFFF;
  }
  .lang-toggle a {
    color: #FFFFFF;
    font-size: 1.2em;
  }
}
.site-footer {
  background-color: #242424;
  color: #FFFFFF;
  padding: 180px 0 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.footer-logo-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}
.footer-logo-bg svg {
  fill: url(#vantaxGradient);
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-logo-right {
  margin-bottom: 10px;
  width: 120px;
}
.footer-logo-right svg {
  width: 100%;
  height: auto;
}
.footer-logo-right svg path {
  fill: url(#charcoalGradient);
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  font-size: 0.875em;
  font-weight: 300;
  color: #E2E2E2;
  text-align: right;
}
.footer-info .logo-svg-small {
  fill: #FFF;
}
.footer-info p {
  line-height: 1.6;
}
.footer-info .copyright {
  margin-top: 20px;
  font-size: 0.75em;
  opacity: 0.5;
}

.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: #242424;
}

.hero-video-wrapper {
  width: 100%;
  position: relative;
  height: auto;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 5em 20px;
}
.hero-content h1 {
  font-size: 3.5em;
  line-height: 1.1;
  margin-bottom: 40px;
  width: 100%;
}

.hero-text-block {
  width: 100%;
}
.hero-text-block p {
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
  font-size: 1em;
  break-inside: avoid-column;
}

.hero-btn {
  margin-top: 30px;
  display: inline-flex;
}

.about-section {
  position: relative;
  width: 80%;
  margin: 0 auto;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  overflow: hidden;
  border-radius: 40px;
  will-change: border-radius, width;
  background-color: #1a1a1a;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 80%;
  max-width: 1000px;
}
.about-content .subtitle {
  font-family: "Fira Sans", sans-serif;
  font-size: 0.875em;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0.8;
  color: #242424;
}
.about-content .paragraph {
  font-size: 1.2em;
  line-height: 1.8;
  font-weight: 300;
  color: #242424;
}

.business-units-section {
  background-color: #242424;
  padding: 100px 0 0 0;
  position: relative;
}
.business-units-section .intro {
  text-align: center;
  margin-bottom: 80px;
}
.business-units-section .intro h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}
.business-units-section .intro .subtitle {
  max-width: 800px;
  font-weight: 300;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.6;
}

.long-term-section {
  padding: 150px 0;
  background-color: #242424;
  color: #fff;
  text-align: center;
}
.long-term-section h2 {
  font-size: 3em;
  margin-bottom: 30px;
}
.long-term-section p {
  font-size: 1.2em;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 15px;
}
.long-term-section .btn {
  margin-top: 50px;
}

.membership-section {
  background-color: #242424;
}

.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

.tier-card {
  padding: 50px 40px 180px;
  border: none;
  border-radius: 20px;
  background-color: transparent;
  color: #fff;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #2e2e2e;
  color: #fff;
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 1;
}
.tier-card .card-misc-1, .tier-card .card-misc-21, .tier-card .card-misc-22, .tier-card .card-misc-31, .tier-card .card-misc-32, .tier-card .card-misc-33, .tier-card .card-misc-34 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 150px;
}
.tier-card .card-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.tier-card .unit-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.tier-card h2 {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
}
.tier-card p {
  font-size: 1.7em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
  transition: color 0.4s ease;
  flex: 1;
  position: relative;
  z-index: 1;
  font-family: "Metal-Variable", serif;
}
.tier-card .btn {
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.tier-1 {
  color: #0050B6;
  --color-l-dfd2: #0087EC;
}
.tier-1 .unit-logo {
  color: #0050B6;
  --color-l-dfd2: #0087EC;
}

.tier-2 {
  color: #1E365B;
}
.tier-2 .unit-logo {
  color: #1E365B;
}

.tier-3 {
  color: #1D662E;
  --color-l-afry2: #143028;
}
.tier-3 .unit-logo {
  color: #1D662E;
  --color-l-afry2: #143028;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    padding: 10em 20px;
  }
  .hero-content h1 {
    font-size: 4.5em;
  }
  .hero-text-block p {
    font-size: 1.2em;
  }
  .about-content .paragraph {
    font-size: 1.5em;
  }
}
@media (max-width: 768px) {
  .tier-1.active {
    background-color: #0050B6;
  }
  .tier-1.active h2, .tier-1.active p {
    color: #fff;
  }
  .tier-1.active .unit-logo {
    color: #fff;
    --color-l-dfd2: #fff;
  }
  .tier-2.active {
    background-color: #1E365B;
  }
  .tier-2.active h2, .tier-2.active p {
    color: #fff;
  }
  .tier-2.active .unit-logo {
    color: #fff;
  }
  .tier-3.active {
    background-color: #1D662E;
  }
  .tier-3.active h2, .tier-3.active p {
    color: #fff;
  }
  .tier-3.active .unit-logo {
    color: #fff;
    --color-l-afry2: #fff;
  }
}
@media (min-width: 992px) {
  .tier-grid {
    flex-direction: row;
  }
  .tier-card {
    flex: 1;
  }
  .tier-card:hover {
    flex: 1;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  .tier-card:hover h2, .tier-card:hover p {
    color: #fff;
  }
  .tier-1:hover {
    background-color: #0050B6;
  }
  .tier-2:hover {
    background-color: #1E365B;
  }
  .tier-3:hover {
    background-color: #1D662E;
  }
  .tier-card:hover h2, .tier-card:hover p {
    color: #fff;
  }
  .tier-1:hover h2, .tier-1:hover p {
    color: #fff;
  }
  .tier-1:hover .unit-logo {
    color: #fff;
    --color-l-dfd2: #fff;
  }
  .tier-2:hover h2, .tier-2:hover p {
    color: #fff;
  }
  .tier-2:hover .unit-logo {
    color: #fff;
  }
  .tier-3:hover h2, .tier-3:hover p {
    color: #fff;
  }
  .tier-3:hover .unit-logo {
    color: #FFF;
    --color-l-afry2: #fff;
  }
}
@media (min-width: 1024px) {
  .hero-text-block {
    column-count: 2;
    column-gap: 40px;
  }
}
.about-page-wrapper {
  padding: 100px 0 150px;
  background-color: #242424;
  color: #fff;
}

.about-hero {
  text-align: center;
  margin-bottom: 80px;
}
.about-hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-family: "Metal-Variable", serif;
}
.about-hero h2 {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.8em;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Fira Sans", sans-serif;
}
@media (min-width: 768px) {
  .about-hero h2 {
    font-size: 1.5em;
  }
}

.about-features {
  margin-bottom: 120px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  padding: 40px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}
.feature-card:hover {
  background-color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.feature-card h3 {
  font-family: "Metal-Variable", serif;
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}
.feature-card p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #fff;
  font-weight: 300;
}

.about-info-sections {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.about-info-row {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-info-row {
    flex-direction: row;
    gap: 80px;
    justify-content: space-between;
  }
  .about-info-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.info-text-content {
  flex: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .info-text-content {
    max-width: 50%;
  }
}
.info-text-content h3 {
  font-size: 2.2em;
  margin-bottom: 30px;
  color: #fff;
  font-family: "Metal-Variable", serif;
}
.info-text-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.info-text-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #fff;
  font-weight: 300;
}
.info-text-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.info-image-content {
  flex: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .info-image-content {
    max-width: 50%;
  }
}
.info-image-content picture, .info-image-content img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.services-page-wrapper {
  padding: 100px 0 150px;
}

.services-hero {
  text-align: center;
  padding: 120px 0 60px;
}
.services-hero h1 {
  font-family: "Metal-Variable", serif;
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.2;
}
.services-hero h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.services-background-wrapper {
  background-color: #242424;
  color: #fff;
  transition: background-color 0.5s ease;
  padding: 80px 0 120px;
}

.service-section {
  margin-bottom: 150px;
  position: relative;
}
.service-section:last-child {
  margin-bottom: 0;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}
.service-header .service-logo {
  width: 50%;
  height: 60px;
  margin-bottom: 20px;
  display: inline-block;
  color: currentColor;
}
.service-header h3 {
  font-size: 1.2rem;
  margin: 0;
  font-family: "Fira Sans", sans-serif;
}

.service-dfd {
  color: #fff;
}

.service-afry, .service-pontest {
  color: #fff;
}

.cards-stack-container {
  position: relative;
  padding-bottom: 20vh;
}

.stacked-card {
  background-color: #fff;
  color: #242424;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stacked-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.stacked-card h4.dfd-color-text {
  color: #0050B6;
}
.stacked-card h4.afry-color-text {
  color: #1D662E;
}
.stacked-card h4.pontest-color-text {
  color: #1E365B;
}
.stacked-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1em;
  color: #242424;
}
.stacked-card p:last-child {
  margin-bottom: 0;
}
.stacked-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
}
.stacked-card ul li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  color: #242424;
  display: inline-block;
}
.stacked-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: inherit;
}

.card-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 991px) {
  .card-content-grid {
    grid-template-columns: 1fr;
  }
}

.card-left-col {
  padding-right: 20px;
}
@media (max-width: 991px) {
  .card-left-col {
    padding-right: 0;
  }
}

.card-right-col {
  background-color: #333;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card-right-col {
    aspect-ratio: 1200/950;
  }
}
.card-right-col img {
  width: 100%;
  height: auto;
  display: block;
}

.card-full-img {
  margin: -50px;
  padding: 50px 2em;
  width: calc(100% + 100px);
}
.card-full-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .card-full-img img {
    aspect-ratio: 1200/470;
  }
}
@media (max-width: 767px) {
  .card-full-img img {
    aspect-ratio: 780/1483;
  }
}

.three-col-grid {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .three-col-grid {
    flex-direction: column;
  }
}
.three-col-grid .col {
  flex: 1;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .three-col-grid .col {
    padding: 10px 0;
  }
}
.three-col-grid .separator-col {
  width: 1px;
  background-color: #555;
  height: auto;
  margin: 0 10px;
}
@media (max-width: 991px) {
  .three-col-grid .separator-col {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
}

.bg-white .logo-dfd-svg {
  color: #0050B6;
  --color-l-dfd2: #0087EC;
}
.bg-white .dfd-title {
  color: #fff;
}

.bg-dfd {
  background-color: #0050B6 !important;
  color: #fff !important;
}
.bg-dfd .service-dfd {
  color: #fff;
}
.bg-dfd .dfd-title, .bg-dfd .logo-dfd-svg {
  color: #fff !important;
  --color-l-dfd2: #ffffff !important;
}

.bg-afry {
  background-color: #1D662E !important;
}
.bg-afry .service-afry {
  color: #fff;
}
.bg-afry .afry-header .service-title, .bg-afry .logo-afry-svg {
  color: #fff !important;
  --color-l-afry2: #ffffff !important;
}

.bg-pontest {
  background-color: #1E365B !important;
  color: #fff !important;
}
.bg-pontest .service-pontest {
  color: #fff;
}
.bg-pontest .pontest-header .service-title, .bg-pontest .logo-pontest-svg {
  color: #fff !important;
}

@media (min-width: 768px) {
  .service-header h3 {
    font-size: 1.5rem;
  }
  .stacked-card p {
    font-size: 1rem;
  }
  .stacked-card ul li {
    font-size: 1rem;
    display: block;
  }
  .stacked-card h4 {
    font-size: 1.5rem;
  }
}
.global-reach-section {
  padding: 100px 0;
  min-height: 80vh;
  background-color: #242424;
}

.global-title {
  font-family: "Metal-Variable", serif;
  font-size: 3.5em;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .global-title {
    font-size: 2.5rem;
  }
}

.map-container {
  position: relative;
  width: 100%;
  background: url("../../assets/img/map.svg") no-repeat center center;
  background-size: contain;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .map-container {
    aspect-ratio: 4/3;
  }
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #0050B6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.1);
  transition: transform 0.3s ease;
}

.pin-inner {
  width: 10px;
  height: 10px;
  background-color: #0050B6;
  border: 2px solid #fff;
  border-radius: 50%;
}

.pin-label {
  position: absolute;
  right: 100%;
  margin-right: 5px;
  margin-bottom: 0;
  white-space: nowrap;
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .pin-label {
    font-size: 0.8rem;
  }
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
  position: relative;
}
@media (max-width: 1100px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.office-card {
  background-color: #2e2e2e;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 28px;
  color: #fff;
}
.office-card h3 {
  font-family: "Metal-Variable", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.office-card p {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
.office-card p:last-child {
  margin-bottom: 0;
}
.office-card a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .map-pin {
    width: 20px;
    height: 20px;
  }
  .pin-inner {
    width: 12px;
    height: 12px;
  }
}
.map-pin--wh {
  background-color: #0050B6;
  border-radius: 3px;
}
.map-pin--wh .pin-inner {
  background-color: #0050B6;
  border-radius: 2px;
}

.map-pin-group {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-pin-group .pin-label {
  position: static;
  right: auto;
  margin-right: 5px;
  margin-bottom: 0;
}
.map-pin-group .map-pin {
  position: static;
  transform: none;
  flex-shrink: 0;
}
.map-pin-group .map-pin:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.pin-label--right {
  right: auto;
  left: 100%;
  margin-right: 0;
  margin-left: 5px;
}

.map-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: -60px 0 25px;
}
.map-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
}
.map-legend .legend-dot {
  width: 14px;
  height: 14px;
  background-color: #0050B6;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.map-legend .legend-square {
  width: 14px;
  height: 14px;
  background-color: #0050B6;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  flex-shrink: 0;
}

.contact-section {
  padding: 120px 0 80px;
  min-height: 80vh;
  color: #242424;
}
.contact-section .contact-subtitle {
  font-size: 1.2em;
  line-height: 1.8em;
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 3em;
  text-align: center;
  font-family: "Fira Sans", sans-serif;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 992px) {
  .contact-section .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
  }
}
.contact-section .contact-form-wrapper {
  padding: 40px;
}
.contact-section .contact-form-wrapper form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .contact-section .contact-form-wrapper form {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-section .hidden-honeypot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.contact-section .input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-section .input-group.full-width {
  grid-column: 1/-1;
}
.contact-section .input-group input, .contact-section .input-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #A7A7A7;
  padding: 15px 0;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s ease;
  resize: vertical;
}
.contact-section .input-group input:focus, .contact-section .input-group textarea:focus {
  outline: none;
  border-bottom-color: #0050B6;
}
.contact-section .input-group input:focus ~ label, .contact-section .input-group input.has-val ~ label, .contact-section .input-group textarea:focus ~ label, .contact-section .input-group textarea.has-val ~ label {
  transform: translateY(-25px);
  font-size: 0.8rem;
  color: #0050B6;
}
.contact-section .input-group label {
  position: absolute;
  left: 0;
  top: 15px;
  pointer-events: none;
  color: #888;
  transition: 0.3s ease all;
  font-size: 1rem;
}
.contact-section .submit-btn {
  grid-column: 1/-1;
  justify-self: start;
  margin-top: 20px;
  color: #fff;
}
.contact-section .form-messages {
  grid-column: 1/-1;
  margin-top: 10px;
  font-size: 0.9rem;
}
.contact-section .form-messages.success {
  color: #02814a;
}
.contact-section .form-messages.error {
  color: #D80027;
}
.contact-section .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}
.contact-section .contact-info-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 0;
  color: #fff;
}
.contact-section .contact-info-wrapper .info-block h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.contact-section .contact-info-wrapper .info-block p {
  color: #fff;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 5px;
  font-weight: 300;
}
.contact-section .contact-info-wrapper .info-block a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.contact-section .contact-info-wrapper .info-block a:hover {
  color: #0050B6;
}

@media (min-width: 768px) {
  .contact-section .contact-subtitle {
    font-size: 1.5em;
  }
}

/*# sourceMappingURL=main.css.map */
