/* ROOT */
:root {
  --primary-color: #2a4158;   /* default #2a4158 */
  --text-color: #ffffff;     /* default #ffffff */
  --border-color: #6ec5ff;  /* default #858585 */
  --menu-color: #4b667a;  /* default #4b667a */
}

/* LAYOUT */
html,body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: var(--primary-color);
}

h3 {
  text-align: left;
}

.main {
  margin: auto;
  width: 100%;
  font-size: 13px;
}

figcaption {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 14px 0 0 0;
}

.catalog-card {
  max-width: 420px;
}

.catalog-card-image {
  object-fit: cover;
  max-width: min(76vw, 420px);
}

.catalog-card-caption {
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.25;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-align: center;
}

/* General Structure */
.h1 { grid-area: h1; }
.h2 { grid-area: h2; }
.h3 { grid-area: h3; }
.h4 { grid-area: h4; }
.m1 { grid-area: m1; }
.m2 { grid-area: m2; }
.m3 { grid-area: m3; }
.c4 { grid-area: c4; }
.f1 { grid-area: f1; }
.f2 { grid-area: f2; }
.f3 { grid-area: f3; }

.gc {
  display: grid;
  grid-template-areas:
    'h3 h3 h3 h3'
    'h1 h2 h2 h2'
    'm2 m2 m2 m2'
    'm3 m3 m3 m3'
    'm1 m1 m1 m1'
    'h4 h4 h4 h4'
    'f1 f1 f1 f1'
    'f2 f2 f2 f2';
  grid-gap: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f8ff;
}

.gccontact {
  display: grid;
  grid-template-areas:
    'h3 h3 h3 h3'
    'h1 h2 h2 h2'
    'm2 m2 m2 m2'
    'm3 m3 m3 m3'
    'm1 m1 m1 m1'
    'c4 c4 c4 c4'
    'f1 f1 f1 f1'
    'f2 f2 f2 f2';
  grid-gap: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f8ff;
}

.h1 {
  background-color: var(--primary-color);
  color: white;
  /* border: solid 1px red; */
  display: flex;
  align-items: center;
}

.h2 {
  background-color: var(--primary-color);
  color: white;
  /* border: solid 1px red;*/
}

.h3 {
  background-color: var(--primary-color);
  color: white;
  /* border: solid 1px red; */
  font-size: 12px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.h4 {
  color: black;
  /* border: solid 1px red; */
  display: table;   /* Allow the centering to work */
  margin: 0 auto;
  padding: 26px 0 15px 0;
}

.m1 {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color), var(--primary-color), black);
  color: rgb(255, 255, 255);
  /* border: solid 1px red; */
  display: table;   /* Allow the centering to work */
  padding: 26px 0 15px 0;
}

.c4 {
  background-color: var(--primary-color);
  padding: 0px 0px 0px 0px;
  height: 466px;
  display: inline-block;
  overflow: hidden;
}

#myVideo {
  width: 100%;
}

.m2 {
  padding: 0px 0;
  /* -webkit-animation:zoom 100s infinite; */
  /* animation:zoom 100s infinite; */
  background-repeat: no-repeat;
  /* background-image:url(slide02b.jpg); */
  /* background-attachment: fixed; */
  display: flex;
  /* border: solid 1px red; */
  /* height: 47vw;  */
  width: 100%;
  visibility: inherit;
  background-size: cover;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ACOREN Typographic Language Gallery */
.langnav.header-utility-nav {
  display: flow-root;
  position: relative;
  min-height: 44px;
  overflow: visible;
}

.language-gallery-slot {
  position: relative;
}

.language-gallery-slot .languagetextonright {
  position: relative;
  padding: 0 !important;
}

.language-gallery,
.language-gallery-form {
  position: relative;
  margin: 0;
  color: #ffffff;
  text-align: left;
}

.language-gallery button,
.language-gallery select {
  font: inherit;
}

.language-native-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 44px;
  padding: 4px 0;
}

.language-native-fallback > label {
  font-size: 12px;
  font-weight: 700;
}

.language-native-fallback-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-native-select,
.language-gallery-apply {
  min-height: 44px;
  border: 1px solid #aebfca;
  border-radius: 4px;
}

.language-native-select {
  min-width: 190px;
  padding: 0 34px 0 12px;
  color: #142b3d;
  background: #ffffff;
}

.language-gallery-apply {
  padding: 0 16px;
  color: #142b3d;
  background: #f7fafc;
  cursor: pointer;
}

.language-gallery-enhanced {
  display: none;
}

.language-gallery.is-enhanced .language-native-fallback {
  display: none;
}

.language-gallery.is-enhanced .language-gallery-enhanced {
  display: block;
}

.language-gallery-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.language-gallery-trigger:hover,
.language-gallery.is-open .language-gallery-trigger {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.language-gallery-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-gallery-trigger-name,
.language-gallery-trigger-code {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.language-gallery-trigger-name {
  font-weight: 650;
}

.language-gallery-trigger-code {
  min-width: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.language-gallery-trigger-divider {
  opacity: 0.72;
}

.language-gallery-chevron {
  transition: transform 160ms ease;
}

.language-gallery.is-open .language-gallery-chevron {
  transform: rotate(180deg);
}

.language-gallery-panel {
  position: fixed;
  top: var(--language-gallery-panel-top, 52px);
  right: 16px;
  z-index: 4;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - var(--language-gallery-panel-top, 52px) - 16px - var(--cookie-banner-safe-height, 0px));
  max-height: calc(100dvh - var(--language-gallery-panel-top, 52px) - 16px - var(--cookie-banner-safe-height, 0px));
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(20, 43, 61, 0.2);
  border-radius: 6px;
  color: #142b3d;
  background: #f7fafc;
  box-shadow: 0 18px 42px rgba(7, 27, 43, 0.24);
  text-align: left;
}

.language-gallery-panel[hidden] {
  display: none;
}

.language-gallery-panel-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
  background: #f7fafc;
}

.language-gallery-panel-header h2 {
  margin: 0;
  color: #142b3d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.language-gallery-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(20, 43, 61, 0.22);
  border-radius: 4px;
  color: #142b3d;
  background: transparent;
  cursor: pointer;
}

.language-gallery-close:hover {
  background: #eaf3f8;
}

.language-gallery-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.language-gallery-option {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  min-height: 96px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 43, 61, 0.18);
  border-radius: 5px;
  color: #142b3d;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
}

.language-gallery-option.is-current {
  border-color: #2d96d4;
  background: #eef8fd;
  box-shadow: inset 0 0 0 1px #2d96d4;
}

.language-gallery-option:not(:disabled):hover,
.language-gallery-option:not(:disabled):focus-visible {
  border-color: #78aeca;
  background: #eaf3f8;
}

.language-gallery-option:not(:disabled):active {
  background: #dcecf4;
}

.language-gallery-option:disabled {
  cursor: wait;
}

.language-gallery-option:disabled:not(.is-submitting) {
  opacity: 0.55;
}

.language-gallery-option-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding-right: 32px;
}

.language-gallery-option-name {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.language-gallery-option-code {
  color: #48677d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.language-gallery-option-tagline {
  max-width: 100%;
  color: #496278;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.language-gallery-option-state {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #176f9e;
}

.language-gallery-check {
  width: 20px;
  height: 20px;
}

.language-gallery-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: language-gallery-spin 700ms linear infinite;
}

.language-gallery-option.is-submitting .language-gallery-check {
  display: none;
}

.language-gallery-option.is-submitting .language-gallery-spinner {
  display: block;
}

.language-gallery-status {
  margin: 14px 0 0;
  color: #274f68;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.language-gallery-status:empty {
  display: none;
}

.language-gallery-trigger:focus-visible,
.language-gallery-close:focus-visible,
.language-gallery-option:focus-visible,
.language-native-select:focus-visible,
.language-gallery-apply:focus-visible {
  outline: 3px solid #f4bc54;
  outline-offset: 2px;
}

.language-gallery-trigger.is-pointer-focus-return:focus-visible {
  outline: none;
}

body.language-gallery-open .h3 {
  z-index: 1100;
}

@keyframes language-gallery-spin {
  to { transform: rotate(360deg); }
}

@media screen and (max-width: 959px) {
  .language-gallery-option {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media screen and (max-width: 850px) {
  .language-gallery-trigger-name,
  .language-gallery-trigger-divider {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .language-gallery-panel {
    right: 12px;
    width: calc(100vw - 24px);
    padding: 14px;
  }

  .language-gallery-option {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-gallery-chevron {
    transition: none;
  }

  .language-gallery-spinner {
    animation: none;
  }
}

/* @-webkit-keyframes zoom {
  0%{background-size:120%;}
  50%{background-size:100%;}
  100%{background-size:120%;}
}

@keyframes zoom {
  0%{background-size:120%;}
  50%{background-size:100%;}
  100%{background-size:120%;}
}
*/

.m3 {
  grid-area: m3;
  background-color: var(--primary-color);
  padding: 0;
  display: block;     /* <-- table yerine */
  width: 100%;        /* <-- tam genişlik */
  margin: 0;          /* <-- auto kaldır */
}

.f1 {
  background-color: var(--primary-color);
  font-size: 12px;
  list-style-type: none;
  list-style: none;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  padding: 18px 0 0px 0;
}

.f2 {
  background-color: var(--primary-color);
  padding: 18px 0;
  position: sticky;
  bottom: 0;
  color: white; 
}

.f3 {
  background-color: var(--primary-color);
  color: white;
  /* border: solid 1px red; */
  font-size: 11px;
}

.gc > div {
  text-align: center;
}

.gccontact > div {
  text-align: center;
}

/* Shared public video hero surface */
.public-video-banner {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  text-align: left;
  isolation: isolate;
}

.public-video-banner-media {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.public-video-banner-content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 6.25vw, 120px);
  z-index: 2;
  width: min(760px, calc(100% - 64px));
  margin: 0;
  text-align: left;
  transform: translateY(-50%);
}

.public-hero-content,
.public-hero-content * {
  text-align: left;
}

.public-hero-eyebrow,
.public-hero-title,
.public-hero-copy {
  text-shadow:
    0 2px 7px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(0, 0, 0, 0.24);
}

.public-eyebrow {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-hero-eyebrow {
  color: #e2f2fb;
}

.public-eyebrow-on-light {
  color: #2b739f;
}

.public-eyebrow-on-dark {
  color: #a9d9f6;
}

.public-hero-title {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.02;
}

.public-hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.public-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.public-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 260px;
  max-width: 100%;
  min-height: 60px;
  padding: 0 28px;
  border: 2px solid #6ec5ff;
  border-radius: 7px;
  background: #6ec5ff;
  color: #071624;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.public-hero-action-secondary {
  background: rgba(0, 0, 0, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.public-hero-action:hover {
  border-color: #9ad9ff;
  background: #9ad9ff;
  color: #071624;
  box-shadow: 0 0 0 3px rgba(110, 197, 255, 0.18);
}

.public-hero-action:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(45, 150, 212, 0.32);
}

.public-hero-action:active {
  border-color: #4bafe8;
  background: #4bafe8;
  color: #071624;
  box-shadow: inset 0 0 0 1px rgba(7, 22, 36, 0.22);
}

.public-hero-action-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.public-hero-action-secondary:active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.catalog-showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.catalog-showcase-section {
  display: block;
  width: 100%;
  padding: 84px 28px 74px;
  background: #f0f8ff;
  color: #142b3d;
  text-align: left;
}

.catalog-showcase-inner {
  width: min(1540px, calc(100% - 40px));
  margin: 0 auto;
}

.catalog-showcase-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 42px;
  align-items: end;
  margin: 0 0 38px;
  text-align: left;
}

.catalog-showcase-section-header .catalog-showcase-eyebrow,
.catalog-showcase-section-header h2 {
  text-align: left;
}

.catalog-showcase-section-header .catalog-showcase-eyebrow {
  margin: 0 0 8px;
  color: #2d96d4;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-showcase-section-header h2 {
  margin: 0;
  color: #142b3d;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.catalog-showcase-section-header > p {
  justify-self: end;
  max-width: 560px;
  margin: 0;
  color: #496278;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.4;
  text-align: right;
}

.catalog-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 640px) {
  .catalog-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 960px) {
  .catalog-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1320px) {
  .catalog-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.catalog-showcase-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 43, 61, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 43, 61, 0.08);
}

.catalog-showcase-image-wrap {
  overflow: hidden;
  background: #d7e8f3;
  aspect-ratio: 16 / 10;
}

.catalog-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-showcase-card-body {
  min-width: 0;
  min-height: 138px;
  padding: 20px 20px 22px;
  text-align: left;
}

.catalog-showcase-card-body span {
  display: block;
  margin-bottom: 10px;
  color: #2d96d4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.catalog-showcase-card-body h3 {
  margin: 0;
  color: #142b3d;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-align: left;
}

@media screen and (min-width: 960px) and (max-width: 1319px) {
  .catalog-showcase-card-body h3 {
    font-size: 19px;
  }
}

.catalog-showcase-empty {
  margin: 0;
  padding: 38px;
  border: 1px solid rgba(20, 43, 61, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #496278;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
}

.catalog-showcase-client-band {
  display: block;
  width: 100%;
  margin: 0;
  padding: 58px 28px 42px;
  background: #f0f8ff;
}

.catalog-showcase-client-band h2 {
  margin: 0 0 24px;
  color: #142b3d;
  font-size: 34px;
  font-weight: 900;
  text-align: left;
}

.catalog-showcase-clients {
  box-sizing: border-box;
  display: block;
  width: min(1540px, calc(100% - 96px));
  margin: 8px auto 0;
  padding: 48px 0 20px;
  border-top: 1px solid rgba(20, 43, 61, 0.14);
}

/* LOGO */
.logo {
  height: 18px;
  padding-left: 14px;
  /* border:green solid 1px; */
}

.logosocial {
  height: 15px;
  /* border:green solid 1px; */
}

.logosocial2 {
  height: 14px;
  /* border:green solid 1px; */
}

.logosocialtop {
  height: 14px;
  padding-top: 1px;
  /* border:green solid 1px; */
}

.logosocial2top {
  height: 13px;
  padding-top: 1px;
  /* border:green solid 1px; */
}

.logofooter {
  height: 12px;
  /* border:green solid 1px; */
}

/* --- Legal pages (compliance) --- */
.legal-container {
  margin: 48px auto;
  padding: 0 18px;
  line-height: 1.65;
  font-size: 16px;
  background-color: var(--primary-color);
  text-align: left;
}

.legal-title {
  font-size: 28px;
  margin: 0 0 14px 0;
  color: white;
  margin-top: 24px;
  text-transform: uppercase;
}

.legal-meta {
  margin: 0 0 18px 0;
  opacity: 0.75;
}

.legal-section-title {
  font-size: 20px;
  margin: 22px 0 10px 0;
  color: white;
  text-transform: capitalize;
}

.legal-content p {
  margin: 0 0 12px 0;
}

.legal-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  margin-top: 48px;
}

.logout-form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.legal-scroll {
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ddd;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  /* Okunaklı resmi metin ayarları */
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  text-align: left;
  text-justify: inter-word;
}

.legal-scroll,
.legal-scroll p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-check {
  margin-top: 20px !important;
  display: flex;                 /* inline-flex yerine */
  align-items: center;
  gap: 8px;
  width: 100%;                   /* aynı genişlik */
  max-width: 402px;              /* legal-form ile aynı sınır */
  box-sizing: border-box;
  margin: 10px auto 6px auto;    /* ortala, hepsi aynı genişlik */
  padding: 6px 10px;
  color: white;
  font-size: 16px !important;
  border-radius: 10px;
  border: 3px solid #ff3030;
  justify-content: flex-start;   /* checkbox solda */
  text-align: left;
}


.legal-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}


.legal-check:has(input:checked) {
  border-radius: 10px;
  border-color: var(--border-color);
  
}

.legal-hr {
  margin: 18px 0;
  border: 0;
}

.legal-error {
  color: #b00020;
  margin: 10px 0;
}

.legal-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #222;
  cursor: pointer;
  margin-bottom: 24px;
}

.co-submit-button{
  width: 302px;
  margin-top: 8px;
  margin-bottom: 4px;
  padding: 8px;
  border-radius: 4px;
  background-color: #5e5e5e;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: letter-spacing 0.3s ease, background-color 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.co-submit-button:hover{
  background-color: #529b62;
}

/* NAVIGATION */
/* LANGUAGE */
.langnav {
  list-style-type: none;
  overflow: hidden;
  margin: 0 10px 0 12px;
  padding: 0;
}

.langnav li {
  float: left;
  /* border:yellow 1px solid; */
}

.langnav li.right {
  float: right;
}

.langnav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 6px 8px 0px;
}

.header-utility-nav > li {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.header-utility-nav > li > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
}

.header-utility-nav .header-account-link {
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.header-account-label {
  line-height: 1.15;
}

.header-utility-account-icon {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .langnav.header-utility-nav {
    margin-right: 8px;
    margin-left: 8px;
  }

  .language-gallery-trigger {
    gap: 5px;
    padding-right: 7px;
    padding-left: 7px;
  }

  .language-gallery-trigger-code {
    min-width: 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .header-utility-nav .header-account-link {
    gap: 3px;
    font-size: 12px;
  }

  .header-utility-account-icon {
    font-size: 12px;
  }

  .header-account-label-login {
    white-space: nowrap;
  }

  .header-account-label-username {
    max-width: min(30vw, 16ch);
    overflow-wrap: anywhere;
    text-align: center;
  }
}

/* MAIN MENU */
#mnav {
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#mnav li {
  float: left;
  /* border:yellow 1px solid; */
}

#mnav li.right {
  float: right;
}

#mnav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 14px 18px 14px 12px;
  font-weight: 600;
}

.mnavmini {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
}

.navbar {
}

.dropdown {
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font: inherit;
  margin: 0;
  padding: 14px 16px 14px 16px;
  font-weight: 600;
  /* width: 100%; */
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: var(--menu-color);
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  /*
  border: 1px solid;
  border-bottom:none;
  */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
  margin-top: 0;
  z-index: 1;
}

.dropdown-content .header {
  background: var(--menu-color);
  padding: 16px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.columncorporate {
  float: left;
  width: 100%;
  padding: 14px 0px 0px 30px;
  background-color: var(--primary-color);
  height: 300px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-image: url('corporate.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.column {
  float: left;
  width: 100%;
  padding: 14px 0px 0px 30px;
  background-color: var(--primary-color);
  height: 300px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-image: url('engineeringservices.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.columnclient {
  float: left;
  width: 100%;
  padding: 14px 0px 0px 30px;
  background-color: #000000;
  height: 300px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-image: url('engineeringclient.jpg'), linear-gradient(to right, var(--primary-color),#000000,#000000,#000000);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.columnpic {
  float: left;
  width: 100%;
  /* padding: 10px; */
  background-color: var(--primary-color);
  height: 330px;
}

.columncorporate a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-left: 3px solid #6ec5ff00;
  line-height: 14px;
}

.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-left: 3px solid #6ec5ff00;
  line-height: 14px;
}

.columnclient a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-left: 3px solid #6ec5ff00;
  line-height: 14px;
}

.columncorporate a:hover {
  /* background-color: #0040be; */
  border-left: 3px solid #6ec5ff;
  color: #6ec5ff !important;
}

.column a:hover {
  /* background-color: #0040be; */
  border-left: 3px solid #6ec5ff;
  color: #6ec5ff !important;
}

.columnclient a:hover {
  /* background-color: #0040be; */
  border-left: 3px solid #6ec5ff;
  color: #6ec5ff !important;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* PRODUCT */
.productlogo {
  width: 120px;
  height: 120px;
  /* border: solid grey 1px; */
}

/* CLIENTS */
.clients {
  width: 100%;
  margin: auto;
  /* border: solid grey 1px; */
}

.public-client-surface {
  box-sizing: border-box;
  display: block;
  width: min(1540px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.public-client-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.public-client-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px 2vw 10px 2vw;
  outline: none;
}

.public-client-item:focus-visible {
  outline: 3px solid #2b739f;
  outline-offset: 3px;
}

.public-client-logo {
  display: block;
  width: auto;
  height: clamp(36px, 5.5vw, 81px);
  filter: grayscale(100%) brightness(0.8) contrast(1.2);
  transform: scale(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.public-client-item:hover .public-client-logo,
.public-client-item:focus .public-client-logo,
.public-client-item:focus-visible .public-client-logo {
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* FEATURED*/
.featured {
  width: 100%;
  margin: auto;
  /* border: solid grey 1px; */
}

.featurednav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.featurednav li {
  /* border:rgb(0, 17, 255) 1px solid; */
  padding: 28px 2vw 28px 2vw;
  border: 1px solid transparent;
}

.featurednav li:hover {
}

.featuredlogo {
  height: clamp(184px, 18vw, 360px);
  border-radius: 18px;
  border: 2px solid transparent;
  filter: grayscale(100%);
  transition: .2s ease-in-out;
}

.featuredlogo:hover {
  filter: none;
  transform: scale(1.05);
  border-bottom: 2px solid var(--border-color);
}

.featuredlogo2 {
  height: clamp(360px, 18vw, 300px);
  border-radius: 18px;
  border: 2px solid transparent;
  transition: .2s ease-in-out;
}

.featuredlogo2:hover {
  transform: scale(1.05);
  border-bottom: 2px solid var(--border-color);
}

.featurednav a  {
  text-decoration: none;
  color: white ;
}

.featurednav a:hover {
  /* color: #92d3ff; blue title when hovering items */
}

.hover-name {
  letter-spacing: 1px;
}

li:hover .hover-name {
}

.hover-name2 {
  letter-spacing: 1px;
  font-weight: bolder;
}

li:hover .hover-name2 {
  color: var(--border-color);
}

.hover-name3 {
  font-weight: bolder;
}

/* border: solid grey 1px; */
.productnav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.productnav li {
  /* border:rgb(0, 17, 255) 1px solid; */
  padding: 10px 2vw 10px 2vw;
}

.h4 ul a {
  text-decoration: none;
  color: black;
}

.m2 ul a {
  text-decoration: none;
  color: black;
}

.cardpic {
  width: 70%;
  margin-top: 24px;
  border: 2px solid black;
}

/* MAIN PAGE */
.title {
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 900;
  line-height: min(9vw, 160px);
  color: rgb(255, 255, 255) !important;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  /* text-shadow: 2px 2px #000000; */
}

.titleclient {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 900;
  line-height: min(16vw, 70px);
  color: #3d5d7e !important;
}

.titlefeatured {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 900;
  line-height: min(16vw, 70px);
  color: var(--text-color) !important;
}

.getaquote {
  font-size: 18px;
  font-weight: 400;
  width: 200px;
  height: 50px;
  background: white;
  border-radius: 20px;
  border: 2px rgb(0, 173, 23) solid;
  margin: 3vw 0;
}

.getaquote:hover {
  color: white;
  background: rgb(0, 173, 23);
}

.description {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 200;
  text-decoration: none;
  color: black;
}

.paragraph {
  margin-left: clamp(50px, 5vw, 1200px);
  margin-right: clamp(50px, 5vw, 1200px);
  text-align: justify !important;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 200;
  letter-spacing: 0.06vw;
  line-height: 24px;
}

.paragraphcenter {
  margin-left: clamp(50px, 22vw, 1200px);
  margin-right: clamp(50px, 22vw, 1200px);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 200;
  letter-spacing: 0.06vw;
  line-height: 24px;
}

.productbanner {
  width: 70vw;
  max-width: 1200px;
  min-width: 160px;
  /*  border: solid 1px green; */
  transition: transform 1s;
  Margin: 0vw 0 3vw 0;
}

.productbanner:hover {
  transform: rotate3d(-12, 30.0, 15.0, -4deg);
}

.productmedia {
  width: 40vw;
  max-width: 500px;
  min-width: 220px;
  border: solid 2px rgb(63, 63, 63);
  border-radius: 1vw;
  Margin: 3vw 0 3vw 0;
}

.video {
  width: 40vw;
  max-width: 500px;
  min-width: 220px;
  border: solid 2px rgb(63, 63, 63);
  border-radius: 1vw;
  Margin: 3vw 0 3vw 0;
}

/* PRODUCTS */
.subproductnav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.subproductnav li {
  /* border:rgb(0, 17, 255) 1px solid; */
  padding: 10px 10px 10px 10px;
}

.card {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
  max-width: 286px;
  margin: auto;
  text-align: center;
  background: white;
}

.price {
  color: grey;
  font-size: 22px;
}

.card button {
  border: none;
  outline: 0;
  padding: 12px;
  color: white;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.card button:hover {
}

.buttoninstock {
  background-color: rgb(0, 173, 23);
}

.buttoninstock:hover {
  background-color: rgb(0, 173, 23);
}

.buttonoutofstock {
  background-color: rgb(190, 190, 190);
}

.buttonoutofstock:hover {
  background-color: rgb(175, 0, 0);
}

/* Footer */
.footernav {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.footernav li {
  /* border:rgb(0, 17, 255) 1px solid; */
  padding: 4px 4px 0px 4px;
}

.footernav a {
  text-decoration: none;
  color: white;
}

/* CONTACT */
.contactcard {
  border: 2px dashed rgb(160, 160, 160);
}

.contactcenter {
  margin-left: clamp(50px, 8vw, 1200px);
  margin-right: clamp(50px, 8vw, 1200px);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 200;
  letter-spacing: 0.06vw;
  line-height: 24px;
}

/* CLIENT LOGIN BUTTON */
.clientlogin {
  color: #6ec5ff !important;
}

/* Butonları saran ve dikeyde ortalayan kapsayıcı */
.button-container {
  position: fixed; /* Ekran kaydırılsa bile sabit kalır */
  top: 80%; /* Kapsayıcının üst kenarını ekranın ortasına getirir */
  right: 0;
  transform: translateY(-50%); /* Kapsayıcıyı kendi yüksekliğinin %50'si kadar yukarı kaydırır */
  display: flex;
  flex-direction: column; /* Butonları alt alta sıralar */
  gap: 16px; /* Butonlar arasına boşluk ekler */
  z-index: 1000;
}

/* Gizli checkbox */
#toggle-button {
  display: none;
}

/* Butonun normal durumu */
.client-login-button {
  width: 180px;
  text-align: center; /* Metin ortalanır */
  background-color: black;
  color: white;
  padding: 20px 0px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #6ec5ff;
  border-right: none;
  opacity: 0.3;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Butonun içindeki logo */
.client-login-button img {
  width: 130px;
  height: auto;
  display: block;
}

/* Butonun içindeki slogan */
.client-login-button span {
  font-size: 10px;
  color: white;
  margin-top: 4px;
  text-align: center;
}

/* Hover efekti */
.client-login-button:hover {
  background-color: black;
  color: white;
  opacity: 1;
}

/* Checkbox işaretli ise buton daha belirgin */
#toggle-button:checked + label.client-login-button {
  opacity: 1;
  background-color: black;
  border-color: #6ec5ff;
}

/* İlk butonun içindeki uyarı metni gizli */
.click-indicator {
  display: none;
  font-size: 9px;
  color: #ffd700; /* Altın sarısı dikkat çekici renk */
  margin-top: 4px;
}

/* Checkbox işaretlenince uyarı metni görünür */
#toggle-button:checked + label.client-login-button .click-indicator {
  display: block;
}

/* İkinci link başlangıçta gizli */
.open-link {
  display: none;
}

/* Checkbox işaretliyken ikinci link görünür */
#toggle-button:checked ~ .open-link {
  display: flex;
  flex-direction: column;
  width: 180px;
  text-align: center;
  background-color: black;
  color: white;
  padding: 20px 0px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #6ec5ff;
  border-right: none;
  cursor: pointer;
  align-items: center;
  gap: 4px;
  opacity: 1;
  letter-spacing: 1px;
}

/* uyarı metni hover */
#toggle-button:checked ~ .open-link:hover {
  color: #6ec5ff;
}

/* İkinci link içindeki logo */
.open-link img {
  width: 130px;
}

/* İkinci link içindeki slogan */
.open-link span {
  font-size: 10px;
  margin-top: 4px;
}

/* İkinci link hover efekti */
.open-link:hover {
  background-color: black;
  color: white;
  opacity: 1;
}

/* CLIENT LOGIN LINKI */
.client-login {
  position: relative !important;
  z-index: 1 !important;
}

.client-login a {
  display: inline-flex !important;
  align-items: center;
  transition: transform 0.2s ease !important;
  box-shadow: none !important;
  z-index: 2 !important;
}

/* USER LOGIN */
@media screen and (max-width: 850px) {
  .public-client-surface {
    width: calc(100% - 36px);
  }

  .public-video-banner {
    align-items: flex-end;
    display: flex;
    height: min(118vw, 560px);
  }

  .public-video-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .public-video-banner-content {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 40px);
    margin: 0 auto 42px;
    transform: none;
  }

  .public-hero-title {
    font-size: 42px;
    line-height: 1.05;
  }

  .public-hero-copy {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.45;
  }

  .public-hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .public-hero-action {
    width: 100%;
    max-width: 300px;
    min-height: 54px;
    padding: 0 20px;
    font-size: 15px;
  }

  .catalog-showcase-section {
    padding: 56px 18px 50px;
  }

  .catalog-showcase-inner {
    width: 100%;
  }

  .catalog-showcase-section-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .catalog-showcase-section-header h2 {
    font-size: 36px;
  }

  .catalog-showcase-section-header > p {
    justify-self: start;
    max-width: 100%;
    font-size: 18px;
    text-align: left;
  }

  .catalog-showcase-grid {
    gap: 26px;
  }

  .catalog-showcase-card-body {
    min-height: auto;
    padding: 20px;
  }

  .catalog-showcase-card-body h3 {
    font-size: 20px;
  }

  .catalog-showcase-client-band {
    padding: 46px 18px 34px;
  }

  .catalog-showcase-clients {
    width: calc(100% - 36px);
    margin-top: 0;
    padding-top: 38px;
  }

  .gc,
  .gccontact {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .gc > div,
  .gccontact > div {
    min-width: 0;
    max-width: 100%;
  }

  #mnav li.right, #mnav li {}
  .gc {
    grid-template-areas:
      'h3'
      'h1'
      'h2'
      'm2'
      'm3'
      'm1'
      'h4'
      'f1'
      'f2'
      'f3';
  }

  .gccontact {
    grid-template-areas:
      'h3'
      'h1'
      'h2'
      'm2'
      'm3'
      'm1'
      'c4'
      'f1'
      'f2'
      'f3';
  }

  .button-container {
    display: none;
  }

  .logo {
    margin: auto;
    text-align: center;
    padding: 0;
  }

  .mnavbig {
    display: none;
  }

  .mnavmini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #mnav.mnavmini li,
  #mnav.mnavmini li.right {
    float: none;
  }

  #mnav li a {
    padding: 8px 10px;
  }

  .dropdown .dropbtn {
    padding: 8px 10px 8px 10px;
  }

  .h1 {
    padding: 14px;
  }

  .h2 {
    padding-bottom: 14px;
    font-size: 12px;
  }

  .m1 {
  }

  .m2 {
    animation: none !important;
  }

  .description {
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 200;
    text-decoration: none;
    color: black;
  }

  .paragraph {
    margin-left: clamp(10px, 8vw, 1200px);
    margin-right: clamp(10px, 8vw, 1200px);
    text-align: justify;
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 200;
    letter-spacing: 0.06vw;
    line-height: 24px;
  }

  .paragraphcenter {
    margin-left: clamp(10px, 8vw, 1200px);
    margin-right: clamp(10px, 8vw, 1200px);
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 200;
    letter-spacing: 0.06vw;
    line-height: 24px;
  }

  .productbanner {
    width: 82vw;
    max-width: 1200px;
    min-width: 160px;
    /*  border: solid 1px green; */
    transition: transform 1s;
    Margin: 3vw 0 6vw 0;
  }

  .productbanner:hover {
    transform: rotate3d(-12, 30.0, 15.0, -4deg);
  }

  .productmedia {
    width: 82vw;
    max-width: 500px;
    min-width: 220px;
    border: solid 2px rgb(63, 63, 63);
    border-radius: 1vw;
    Margin: 3vw 0 3vw 0;
  }

  .video {
    width: 82vw;
    max-width: 500px;
    min-width: 220px;
    border: solid 2px rgb(63, 63, 63);
    border-radius: 1vw;
    Margin: 3vw 0 3vw 0;
  }

  .card {
    max-width: 222px;
  }

  /* Responsive layout - Megamenu */
  .column {
    height: 270px;
    background-image: linear-gradient(to right, var(--primary-color), #000000);
  }

  .columnclient {
    height: 270px;
    background-image: linear-gradient(to right, var(--primary-color), #000000);
  }

  .columncorporate {
    height: 270px;
    background-image: linear-gradient(to right, var(--primary-color), #000000);
  }

  .column a {
    /*     text-align: center; */
    line-height: 20px;
  }

  .columnclient a {
    /*     text-align: center; */
    line-height: 20px;
  }

  .columncorporate a {
    /*     text-align: center; */
    line-height: 20px;
  }

  h3 {
    /*     text-align: center; */
  }

  .public-client-logo {
    height: 50px;
  }

  .languagetextonright {
    padding: 0px 0px 8px 0px !important;
  }

}

@media screen and (max-width: 760px) {
  .public-video-banner-content {
    left: auto;
    width: calc(100% - 40px);
  }

  .public-eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.15;
  }

  .public-hero-title {
    max-width: 560px;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.02;
  }

  .public-hero-copy {
    max-width: 560px;
    margin-top: 10px;
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1.34;
  }

  .public-hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .public-hero-action {
    width: min(170px, calc((100% - 10px) / 2));
    max-width: none;
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }
}

@media screen and (max-width: 520px) {
  .public-eyebrow {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .public-hero-title {
    font-size: clamp(25px, 7vw, 32px);
  }

  .public-hero-copy {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.3;
  }

  .public-hero-actions {
    gap: 8px;
    margin-top: 10px;
  }

  .public-hero-action {
    width: min(160px, calc((100% - 8px) / 2));
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 360px) {
  .public-video-banner {
    background: #11283c;
  }

  .public-video-banner-content {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 0;
    padding: 22px 18px 30px;
    transform: none;
  }

  .public-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-hero-action {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  #mnav li a {
    padding: 8px 6px;
  }

  .dropdown .dropbtn {
    padding: 8px 6px 8px 6px;
  }

  /* Açılan ikinci buton için responsive */
  .client-login-button {
    width: 120px;
    padding: 10px 5px;
  }

  .client-login-button img {
    width: 80px;
  }

  .client-login-button span {
    font-size: 8px;
    margin-top: 2px;
  }

  /* Açılan ikinci buton için responsive */
  .open-link {
    width: 100px;
    padding: 10px 0;
  }

  .open-link img {
    width: 80px;
  }

  .open-link span {
    font-size: 10px;
    margin-top: 2px;
  }

  #toggle-button:checked ~ .open-link {
    font-size: 10px;
    margin-top: 2px;
    width: 120px;
    padding: 10px 5px;
  }
}

/* HOME */
.home-page {
  --home-ink: #102538;
  --home-muted: #52687a;
  --home-line: #cbd6df;
  --home-paper: #f4f7f9;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home-page > .h1,
.home-page > .h2,
.home-page > .h3 {
  background-color: #000;
}

.home-page .home-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-action:not(.public-hero-action) {
  min-width: 176px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: #07131d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-action-primary:not(.public-hero-action) {
  border-color: #6ec5ff;
  background: #6ec5ff;
}

.home-action-primary:not(.public-hero-action):hover,
.home-action-primary:not(.public-hero-action):focus-visible {
  border-color: #fff;
  background: #fff;
  color: #07131d;
}

.home-action-secondary:not(.public-hero-action) {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
}

.home-action-secondary:not(.public-hero-action):hover,
.home-action-secondary:not(.public-hero-action):focus-visible {
  border-color: #fff;
  background: #fff;
  color: #07131d;
}

.home-action:not(.public-hero-action):focus-visible,
.home-text-link:focus-visible,
.home-utility-link:focus-visible {
  outline: 3px solid #f4bc54;
  outline-offset: 4px;
}

.home-explore {
  scroll-margin-top: 80px;
  padding: 104px 0 96px;
  background: var(--home-paper);
  color: var(--home-ink);
  text-align: left;
}

.home-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
  margin-bottom: 58px;
}

.home-section-header h2,
.home-utility-header h2,
.home-projects h2,
.home-clients h2,
.home-invitation h2 {
  margin: 0;
  color: inherit;
  font-size: 54px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-section-header > p {
  max-width: 52ch;
  margin: 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.6;
}

.home-service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--home-line);
}

.home-service-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(190px, 260px);
  gap: 28px;
  align-items: center;
  min-height: 176px;
  padding: 28px 0;
  border-top: 1px solid var(--home-line);
  scroll-margin-top: 92px;
}

.home-service-index {
  align-self: start;
  padding-top: 6px;
  color: #2b739f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.home-service-copy h3 {
  margin: 0 0 12px;
  color: var(--home-ink);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
  text-transform: uppercase;
}

.home-service-copy p {
  max-width: 66ch;
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.55;
}

.home-text-link,
.home-utility-link {
  position: relative;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.home-text-link {
  justify-self: end;
  padding: 12px 34px 12px 0;
  text-align: right;
}

.home-text-link::after,
.home-utility-link::after {
  content: "\2192";
  position: absolute;
  right: 0;
  transition: transform 160ms ease;
}

.home-text-link:hover,
.home-text-link:focus-visible {
  color: #1b73a7;
}

.home-text-link:hover::after,
.home-text-link:focus-visible::after,
.home-utility-link:hover::after,
.home-utility-link:focus-visible::after {
  transform: translateX(4px);
}

.home-main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--home-ink);
  text-align: left;
}

.home-utility {
  padding: 78px 0;
  background: #173149;
  color: #fff;
}

.home-utility-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.6fr);
  gap: clamp(46px, 8vw, 116px);
  align-items: start;
}

.home-utility-header h2 {
  font-size: 48px;
}

.home-utility-header > p {
  margin: 20px 0 0;
  color: #cfdae4;
  font-size: 17px;
  line-height: 1.55;
}

.home-utility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.home-utility-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 32px 30px 0;
}

.home-utility-item + .home-utility-item {
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.home-utility-item h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.home-utility-item p {
  margin: 14px 0 24px;
  color: #cfdae4;
  font-size: 16px;
  line-height: 1.55;
}

.home-utility-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 34px 10px 0;
  color: #9edbff;
}

.home-projects {
  padding: 88px 0 86px;
  background: #fff;
}

.home-page .home-inner.home-projects-inner {
  width: min(1180px, calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.home-projects-header,
.home-clients-header {
  margin: 0 auto 40px;
  text-align: center;
}

.home-projects-header {
  max-width: 760px;
}

.home-project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: center;
  width: min(1104px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.home-project-item {
  flex: 0 1 340px;
  width: min(100%, 340px);
  max-width: 340px;
}

.home-project-item,
.home-project-item figure {
  min-width: 0;
  margin: 0;
}

.home-project-image {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: 8px;
  object-fit: cover;
}

.home-project-caption {
  padding: 16px 2px 0;
  text-align: center;
}

.home-project-title {
  margin: 0;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.home-project-title-line {
  display: block;
  white-space: nowrap;
}

.home-client-and-contact {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eef3f6;
  color: var(--home-ink);
}

.home-clients {
  padding: 66px 0 68px;
  border-top: 1px solid #d6e0e7;
  text-align: center;
}

.home-page .home-clients-inner.public-client-surface {
  width: min(1540px, calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.home-invitation {
  padding: 86px 0 90px;
  background: #0e2234;
  color: #fff;
  text-align: left;
}

.home-invitation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: end;
}

.home-invitation h2 {
  max-width: 17ch;
}

.home-invitation-copy p {
  margin: 0 0 28px;
  color: #cfdae4;
  font-size: 18px;
  line-height: 1.6;
}

body.cookie-banner-visible .home-page {
  padding-bottom: var(--cookie-banner-safe-height, 0px);
}

@media screen and (min-width: 851px) and (max-width: 1500px) {
  .home-page .home-inner {
    width: min(1180px, calc(100% - 236px));
    margin-right: auto;
    margin-left: clamp(32px, 5vw, 76px);
  }
}

@media screen and (max-width: 1000px) {
  .home-section-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-section-header h2,
  .home-utility-header h2,
  .home-projects h2,
  .home-clients h2,
  .home-invitation h2 {
    font-size: 44px;
  }

  .home-service-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
  }

  .home-text-link {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .home-utility-inner,
  .home-invitation-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media screen and (max-width: 850px) {
  .home-page .home-inner {
    width: min(700px, calc(100% - 36px));
    margin-right: auto;
    margin-left: auto;
  }

  .home-explore {
    padding: 74px 0 70px;
  }

  .home-service-row {
    min-height: 0;
    padding: 26px 0;
  }

  .home-utility {
    padding: 64px 0;
  }

  .home-projects {
    padding: 70px 0 72px;
  }

  .home-clients {
    padding: 58px 0 60px;
  }

  .home-page .home-clients-inner.public-client-surface {
    width: calc(100% - 36px);
  }

  .home-invitation {
    padding: 70px 0 74px;
  }
}

@media screen and (max-width: 640px) {
  .home-section-header h2,
  .home-projects h2,
  .home-clients h2,
  .home-invitation h2 {
    font-size: 36px;
  }

  .home-section-header > p {
    font-size: 17px;
  }

  .home-service-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .home-service-copy h3 {
    font-size: 26px;
  }

  .home-service-copy p {
    font-size: 16px;
  }

  .home-utility-list {
    grid-template-columns: 1fr;
  }

  .home-utility-item,
  .home-utility-item + .home-utility-item {
    padding: 26px 0;
    border-left: 0;
  }

  .home-utility-item + .home-utility-item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

}

/* About, People, and Contact public story pages */
.public-page-shell {
  overflow-x: clip;
  background: #eef4f7;
  color: #10283b;
}

.public-page-shell .public-page-main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eef4f7;
  background-image: none;
  color: #10283b;
  text-align: left;
}

.public-page-inner {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.public-story-hero {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #0d2234;
  color: #fff;
  text-align: left;
  isolation: isolate;
}

.public-story-hero-media-wrap {
  position: relative;
  width: 100%;
}

.public-story-hero-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 30, 0.82) 0%, rgba(4, 18, 30, 0.48) 48%, rgba(4, 18, 30, 0.08) 76%);
  pointer-events: none;
}

.public-story-hero-media {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.public-story-hero-motion-poster {
  display: none;
}

.public-story-hero-content {
  position: absolute;
  top: 50%;
  left: clamp(28px, 6.25vw, 120px);
  z-index: 1;
  width: min(700px, calc(100% - 64px));
  transform: translateY(-50%);
}

.public-story-hero .public-hero-title {
  max-width: 660px;
}

.public-story-hero .public-hero-copy {
  max-width: 650px;
}

.public-section-intro {
  max-width: 820px;
  margin: 0 0 46px;
}

.public-section-intro-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.public-section-intro h2,
.about-editorial-content h2,
.people-multidisciplinary h2,
.public-invitation-band h2 {
  margin: 0;
  color: inherit;
  font-size: 44px;
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: 0;
}

.public-section-intro > p:last-child,
.people-multidisciplinary-inner > p:last-child,
.public-invitation-band-copy > p {
  margin: 20px 0 0;
  color: #455e70;
  font-size: 19px;
  line-height: 1.65;
}

.about-editorial-story {
  padding: 94px 0 96px;
  background: #fff;
}

.about-editorial-content {
  max-width: 980px;
  margin: 0 auto;
}

.about-editorial-content > section {
  padding: 62px 0;
  border-top: 1px solid #cad7df;
}

.about-editorial-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-editorial-content > section:last-child {
  padding-bottom: 0;
}

.about-editorial-content h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.about-editorial-content p {
  max-width: 820px;
  margin: 0;
  color: #344e60;
  font-size: 19px;
  line-height: 1.72;
}

.about-editorial-content p + p {
  margin-top: 20px;
}

.about-editorial-list {
  margin: 36px 0 0;
}

.about-editorial-list > div {
  min-width: 0;
}

.about-editorial-list dt {
  color: #10283b;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.about-editorial-list dd {
  margin: 0;
  color: #455e70;
  font-size: 17px;
  line-height: 1.6;
}

.about-service-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid #cad7df;
}

.about-service-list > div:last-child {
  border-bottom: 1px solid #cad7df;
}

.about-principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cad7df;
  border-bottom: 1px solid #cad7df;
}

.about-principle-list > div {
  padding: 26px 28px;
}

.about-principle-list > div + div {
  border-left: 1px solid #cad7df;
}

.about-principle-list dt {
  margin-bottom: 12px;
}

.people-section {
  padding: 92px 0 96px;
}

.people-remembering {
  background: #fff;
}

.people-active {
  background: #e8f0f4;
}

.people-profile-grid {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.people-profile-grid-remembering {
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 28px;
  max-width: 628px;
  margin: 0 auto;
  justify-content: center;
}

.people-profile-grid-active {
  grid-template-columns: repeat(4, minmax(0, 270px));
  column-gap: 28px;
  row-gap: 56px;
  justify-content: center;
}

.people-profile-item {
  min-width: 0;
}

.people-profile {
  position: relative;
  isolation: isolate;
  height: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #10283b;
  box-shadow: 0 18px 42px rgba(12, 40, 59, 0.14);
  transition: box-shadow 180ms ease;
}

.people-profile::before {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #55b5e8;
  content: "";
  pointer-events: none;
}

.people-profile::after {
  position: absolute;
  z-index: 1;
  inset: 44% 0 0;
  background: linear-gradient(
    180deg,
    rgba(7, 25, 38, 0) 0%,
    rgba(7, 25, 38, 0.48) 54%,
    rgba(7, 25, 38, 0.92) 100%
  );
  content: "";
  pointer-events: none;
}

.people-profile-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 180ms ease;
}

.people-profile:hover {
  box-shadow: 0 22px 50px rgba(12, 40, 59, 0.22);
}

.people-profile:hover .people-profile-image,
.people-profile:focus-within .people-profile-image {
  filter: grayscale(0);
}

.people-profile-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: 40px 18px 18px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(4, 18, 28, 0.52);
}

.people-profile-body h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.people-profile-meta {
  margin-top: 10px;
}

.people-profile-role {
  margin: 0;
  color: #8fd4f5;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.people-profile-context {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.people-multidisciplinary {
  padding: 88px 0 92px;
  background: #173249;
  color: #fff;
}

.people-multidisciplinary-inner {
  max-width: 980px;
}

.people-multidisciplinary h2 {
  max-width: 760px;
}

.people-multidisciplinary-inner > p:last-child {
  max-width: 800px;
  color: #d0dce5;
}

.public-page-clients {
  padding: 76px 0 72px;
  background: #f5f9fb;
}

.public-page-clients .public-section-intro {
  margin-bottom: 38px;
}

.public-page-inner.public-client-surface {
  width: min(1540px, calc(100% - 96px));
}

.public-invitation-band {
  padding: 86px 0 90px;
  background: #0e2234;
  color: #fff;
}

.public-invitation-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: end;
}

.public-invitation-band h2 {
  max-width: 17ch;
}

.public-invitation-band-copy > p {
  margin: 0 0 28px;
  color: #cfdae4;
  font-size: 18px;
  line-height: 1.6;
}

.contact-locations {
  padding: 92px 0 100px;
  background: #edf4f7;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  gap: 34px;
  justify-content: center;
  align-items: start;
}

.contact-location-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #c5d4dc;
  border-radius: 8px;
  background: #fbfcfc;
  box-shadow: 0 12px 30px rgba(12, 40, 59, 0.08);
}

.contact-location-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-location-body {
  padding: 28px;
}

.contact-location-body h3 {
  margin: 0;
  color: #10283b;
  font-size: 28px;
  font-weight: 820;
  line-height: 1.15;
}

.contact-location-body address {
  min-height: 72px;
  margin: 18px 0 0;
  color: #455e70;
  font-size: 17px;
  font-style: normal;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-location-body address span {
  display: block;
}

.contact-location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-location-action,
.contact-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
  min-height: 48px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.contact-location-action {
  border: 2px solid #2b83b6;
  background: #2b83b6;
  color: #fff;
}

.contact-location-action:hover {
  border-color: #17658f;
  background: #17658f;
  color: #fff;
}

.contact-location-map {
  width: 100%;
  min-width: 0;
  margin-top: 14px;
}

.contact-map-button {
  width: 100%;
  padding: 0 18px;
  border: 2px solid #7892a3;
  background: transparent;
  color: #25465c;
  cursor: pointer;
}

.contact-map-button:hover {
  border-color: #2b83b6;
  background: #e5f3fa;
  color: #16384f;
}

.contact-map-button[hidden] {
  display: none;
}

.contact-location-map-frame {
  display: none;
  width: 100%;
  height: 0;
  border: 0;
}

.contact-location-map.is-loaded .contact-location-map-frame {
  display: block;
  height: 340px;
}

.contact-location-action:focus-visible,
.contact-map-button:focus-visible,
.contact-location-map-frame:focus-visible {
  outline: 3px solid #e39a30;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .people-profile-image {
    transition: none;
  }

  .contact-story-hero .public-story-hero-video {
    display: none;
  }

  .contact-story-hero .public-story-hero-motion-poster {
    display: block;
  }
}

@media screen and (max-width: 1499px) {
  .people-profile-grid-active {
    grid-template-columns: repeat(3, minmax(0, 320px));
  }
}

@media screen and (max-width: 1000px) {
  .public-section-intro h2,
  .about-editorial-content h2,
  .people-multidisciplinary h2,
  .public-invitation-band h2 {
    font-size: 38px;
  }

  .public-invitation-band-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media screen and (min-width: 851px) and (max-width: 1023px) {
  .about-story-hero .public-eyebrow {
    margin-bottom: clamp(12px, 1.56vw, 16px);
  }

  .about-story-hero .public-hero-title {
    font-size: clamp(48px, 6.25vw, 64px);
    line-height: 1.04;
  }

  .about-story-hero .public-hero-copy {
    margin-top: clamp(18px, 2.74vw, 28px);
    font-size: clamp(19px, 2.35vw, 24px);
    line-height: 1.4;
  }

  .about-story-hero .public-hero-actions {
    margin-top: clamp(22px, 3.33vw, 34px);
  }

  .about-story-hero .public-hero-action {
    min-height: clamp(52px, 5.86vw, 60px);
  }
}

@media screen and (max-width: 850px) {
  .public-page-inner {
    width: min(700px, calc(100% - 36px));
  }

  .public-story-hero-media-wrap::after {
    display: none;
  }

  .public-story-hero-media {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 62% 52%;
  }

  .contact-story-hero .public-story-hero-media {
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .public-story-hero-content {
    position: relative;
    top: auto;
    left: auto;
    box-sizing: border-box;
    width: 100%;
    padding: 38px 24px 42px;
    background: #10283c;
    transform: none;
  }

  .public-story-hero .public-hero-title {
    max-width: 680px;
    font-size: 42px;
  }

  .public-story-hero .public-hero-copy {
    max-width: 680px;
    margin-top: 18px;
    font-size: 18px;
  }

  .public-story-hero .public-hero-actions {
    margin-top: 24px;
  }

  .public-story-hero .public-hero-action {
    min-height: 48px;
  }

  .about-editorial-story,
  .people-section,
  .contact-locations {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .about-editorial-content > section {
    padding: 48px 0;
  }

  .about-principle-list {
    grid-template-columns: 1fr;
  }

  .about-principle-list > div {
    padding: 22px 0;
  }

  .about-principle-list > div + div {
    border-top: 1px solid #cad7df;
    border-left: 0;
  }

  .people-multidisciplinary,
  .public-invitation-band {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .public-page-clients {
    padding: 58px 0 60px;
  }

  .public-page-inner.public-client-surface {
    width: calc(100% - 36px);
  }

}

@media screen and (max-width: 700px) {
  .public-section-intro {
    margin-bottom: 34px;
  }

  .public-section-intro h2,
  .about-editorial-content h2,
  .people-multidisciplinary h2,
  .public-invitation-band h2 {
    font-size: 34px;
  }

  .public-section-intro > p:last-child,
  .people-multidisciplinary-inner > p:last-child,
  .about-editorial-content p {
    font-size: 17px;
  }

  .about-service-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-location-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .people-profile-grid-remembering,
  .people-profile-grid-active {
    column-gap: 16px;
    row-gap: 40px;
  }

  .people-profile-body {
    min-height: 0;
    padding: 38px 15px 15px;
  }

  .people-profile-body h3 {
    font-size: 20px;
  }

  .people-profile-role {
    font-size: 14px;
  }

  .people-profile-context {
    font-size: 12px;
  }

  .contact-location-grid {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 520px) {
  .public-story-hero-content {
    padding: 30px 18px 36px;
  }

  .public-story-hero .public-hero-title {
    font-size: 32px;
  }

  .public-story-hero .public-hero-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .public-story-hero .public-hero-action,
  .public-invitation-band .public-hero-action {
    width: 100%;
    max-width: 280px;
    min-height: 48px;
  }

  .people-profile-grid-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 32px;
    justify-content: center;
  }

  .people-profile-grid-remembering {
    grid-template-columns: minmax(0, 290px);
    column-gap: 0;
    row-gap: 32px;
  }

  .people-profile-body {
    min-height: 0;
    padding: 38px 15px 15px;
  }

  .people-profile-body h3 {
    font-size: 20px;
  }

  .people-profile-role {
    font-size: 14px;
  }

  .people-profile-context {
    font-size: 12px;
  }

  .people-profile-grid-active .people-profile-body {
    padding: 30px 10px 11px;
  }

  .people-profile-grid-active .people-profile-body h3 {
    font-size: 15px;
  }

  .people-profile-grid-active .people-profile-role {
    font-size: 12px;
  }

  .people-profile-grid-active .people-profile-context {
    font-size: 11px;
  }

  .people-profile-grid-active .people-profile-meta {
    margin-top: 5px;
  }

  .people-profile-meta {
    margin-top: 7px;
  }

  .contact-location-body {
    padding: 22px;
  }

  .contact-location-body address {
    min-height: 0;
  }
}
