@font-face {
  font-family: 'Proxima';
  src: url('../fonts/Proxima-Nova-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima';
  src: url('../fonts/Proxima-Nova-Regular.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: 'Proxima';
  src: url('../fonts/Proxima-Nova-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima';
  src: url('../fonts/Proxima-Nova-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}


@font-face {
  font-family: 'Warbler';
  src: url('../fonts/Warbler-Deck-Regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Warbler';
  src: url('../fonts/Warbler-Deck-Bold.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Warbler';
  src: url('../fonts/Warbler-Deck-Italic.otf') format('truetype');
  font-weight: 500;
  font-style: italic;
}


/* Global CSS starts here */
:root {
  --ink: #171717;
  --muted: #1B1B1B;
  --line: #d9d9d4;
  --paper: #f7f7f4;
  --blue: #072353;
  --soft: #efefec;
  --font-serif: "Warbler",  sans-serif;
  --font-sans: "Proxima",  sans-serif;
  --font-serif: Warbler;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0, transparent 32px, rgba(12, 32, 56, 0.08) 33px, transparent 34px),
    var(--paper);
  font-family: var(--font-sans);
}

button,
input,
textarea,
select {
  font: inherit;
}
/* nav#primary-navigation a:nth-child(3) {
    display: none;
} */

/* Home page CSS starts here */
.page-shell {
  /* width: min(100%, 1360px); */
  margin: 0 auto;
  /* border-top: 1px solid var(--blue);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line); */
  /* background: rgba(247, 247, 244, 0.96); */
  background: #F6F6F4;
  position: relative;
  z-index: 0;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: absolute;
  left: 2%;
  top: 0;
  height: 100%;
  width: 1px;
  z-index: 0;
  background-color: #DAD8D5;
}

.page-shell::after {
  left: auto;
  right: 2%;
}

.grid-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.38fr);
  border-bottom: 1px solid var(--line);
}

.hero-title,
.hero-copy,
.story-media,
.story-content {
  min-height: 276px;
}

.story-media img{object-fit: cover;}

.hero-title {
  display: flex;
  align-items: flex-start;
  padding: 58px 48px 150px 76px;
  border-right: 1px solid var(--line);
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 85px;
  letter-spacing: 0;
  color: var(--muted);
}

em {
  color: var(--blue);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  padding: 70px 70px 42px 82px;
}

.hero-copy p {
  margin: 0;
  max-width: 817px;
  color: #1B1B1B;
  font-size: 30px;
  line-height: 1.48;
  font-weight: var(--font-sans);
  font-weight: 300;
}

.story {
  grid-template-columns: minmax(260px, 37%) minmax(0, 63%);
}

.story-media {
  justify-self: end;
  width: 100%;
  padding-right: 80px;

}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 76px 40px 0;
}

.story-content h2 {
  margin: 0;
  max-width: 1051px;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
  letter-spacing: 0;
}

.rule {
  width: 98px;
  height: 2px;
  margin: 34px 0 26px;
  background: var(--blue);
}

.story-content p {
  margin: 0;
  max-width: 870px;
  font-family: var(--font-sans);
      color: #1B1B1B;
      font-weight: 300;
  font-size: 20px;
  line-height: 1.65;
}

.areas {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 48px 34px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.areas h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0;
}

.areas h2 span{display: block;}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 238px;
  padding: 52px 67px 44px;
  text-align: center;
}

.service-card+.service-card {
  border-left: 1px solid var(--line);
}

.service-card h3 {
  margin: 0 0 40px;
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.52;
  font-weight: 300;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 130px;
  padding: 63px 24px 42px;
  overflow: hidden;
  text-align: center;
}

.cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 16.3%;
    width: 17%;
    height: 100%;
    background: lch(86.43 1.77 79.4 / 0.35);
    z-index: 0;
    border-left: 1px solid #DAD8D5;
}

.cta p,
.cta-button {
  position: relative;
  z-index: 1;
}

.cta p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 300;
}

.cta-button {
  min-width: 104px;
  min-height: 31px;
  padding: 10px 15px;
  border: 1px solid var(--blue);
  border-radius: 0;
  color: #fff;
  background: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  text-decoration: none;

}

.cta-button:hover,
.cta-button:focus-visible {
  color: var(--blue);
  background: transparent;
}

.cta-button:active {
  transform: translateY(1px);
}

.network {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  /* min-height: 430px; */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e0dfdc;
  position: relative;
  z-index: 1;
}

.network-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 76px 58px 228px;
}

.network-panel h2 {
  margin: 0 0 34px;
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0;
  color: #1B1B1B;
}

.network-panel p {
  margin: 0;
  max-width: 559px;
  color: #1B1B1B;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

.network-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 40px;
  margin-top: 26px;
  padding: 8px 16px;
  border: 1px solid var(--blue);
  color: #fff;
  background: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.network-button:hover,
.network-button:focus-visible {
  color: var(--blue);
  background: transparent;
}

.network-button:active {
  transform: translateY(1px);
}

/* .network-image {
  min-height: 430px;
} */

.network-image img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.selected-work {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.selected-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  padding: 38px 80px 34px;
  border-bottom: 1px solid var(--line);
  gap: 32px;
  background: #dad8d526;
}

.selected-work-header h2,
.clients h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0;
}

.contact-band .brainstrom-b{
    margin: 0;
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.selected-work-action {
  display: flex;
  align-items: center;
  gap: 34px;
}

.selected-work-action p {
  margin: 0;
  color: #1B1B1B;
  font-size: 1.3rem;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: 300;
}

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--blue);
  color: #F6F6F4;
  background: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.small-button:hover,
.small-button:focus-visible {
  color: var(--blue);
  background: transparent;
}

.small-button:active {
  transform: translateY(1px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.work-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 275px;
  padding: 50px 64px 38px;
  text-align: center;
}

.work-card+.work-card {
  border-left: 1px solid var(--line);
}

.work-card h3 {
  margin: 0 0 42px;
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.work-card p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(0.76rem, 0.84vw, 0.9rem);
  line-height: 1.55;
  font-weight: 300;
}

.work-card a {
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.work-card a:hover,
.work-card a:focus-visible {
  text-decoration: underline;
}

.clients {
  padding: 48px 56px 52px;
  /* border-bottom: 1px solid var(--line); */
  text-align: center;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 34px;
  margin-top: 30px;
  justify-items: center;
}

.client-logos img {

  /* reduce all logos equally */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.client-logo {
  min-width: 0;
  color: #334047;
}

.logo-norland {
  color: #765946;
  font-family: var(--font-serif);
}

.logo-norland span {
  display: block;
  font-size: clamp(3.7rem, 5vw, 5.4rem);
  line-height: 0.72;
}

.logo-norland small {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.logo-cornerstones {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 12px;
  text-align: left;
}

.logo-cornerstones span {
  width: 46px;
  height: 46px;
  background:
    linear-gradient(90deg, #f4a028 0 34%, transparent 34% 66%, #d35472 66%),
    linear-gradient(#7bc6c7 0 50%, #d3dd3f 50%);
  background-blend-mode: multiply;
}

.logo-cornerstones strong,
.logo-cornerstones small {
  display: block;
  color: #6d7074;
  font-size: clamp(1.2rem, 1.55vw, 1.8rem);
  font-weight: 400;
  line-height: 1;
}

.logo-cornerstones small {
  grid-column: 2;
}

.logo-noble strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 0.9;
  text-align: left;
}

.logo-plus {
  color: #ff563f;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 1;
}

.logo-wycliffe {
  color: #7f55ac;
  font-family: var(--font-serif);
}

.logo-wycliffe span {
  display: block;
  font-size: clamp(2.3rem, 3vw, 3.6rem);
  line-height: 0.75;
}

.logo-wycliffe strong {
  font-size: clamp(1.4rem, 1.85vw, 2.2rem);
  font-weight: 400;
}

.logo-london {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  column-gap: 12px;
  color: #54764a;
  text-align: left;
}

.logo-london span {
  width: 54px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 48% 48%;
  opacity: 0.9;
}

.logo-london strong {
  color: #556f50;
  font-size: clamp(0.96rem, 1.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.logo-london small {
  color: #80917a;
  font-size: clamp(0.8rem, 0.95vw, 1rem);
}

.logo-xxi {
  color: #9b5c2f;
  font-family: var(--font-serif);
}

.logo-xxi span {
  display: block;
  width: 82px;
  height: 34px;
  margin: 0 auto 4px;
  border-top: 2px solid currentColor;
  border-radius: 50% 50% 0 0;
}

.logo-xxi strong {
  display: block;
  font-size: clamp(1.1rem, 1.45vw, 1.6rem);
  font-weight: 400;
  line-height: 1;
}

.logo-xxi small {
  font-size: 0.58rem;
  font-weight: 700;
}

.contact-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 300px;
  padding: 70px 28px 72px;
  background: #ececea;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-band p {
  margin: 34px 0 38px;
  font-weight: 300;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 1291px;
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: ease-out;
}

[data-aos="fade-down"] {
  opacity: 0;
  transform: translate3d(0, -40px, 0);
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* About page CSS starts here */
.about-body {
  background:
    linear-gradient(90deg, transparent 0, transparent 32px, rgba(12, 32, 56, 0.08) 33px, transparent 34px),
    #f7f7f4;
}

.about-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  min-height: 88px;
  /* padding: 12px clamp(24px, 5vw, 64px); */
  padding: 0px 10% 0 2%;
  background: #0b315d;
  color: #fff;
}

.about-logo {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-sans);
  text-decoration: none;
  text-transform: uppercase;
}

.about-logo:focus {
  outline: none;
}

.about-logo span {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.about-logo i {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-logo i::after {
  content: "";
  position: absolute;
  left: -0.12em;
  right: -0.18em;
  top: 0.18em;
  height: 0.7em;
  border-top: 2px solid #fff;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.about-logo small {
  margin-top: 6px;
  font-size: clamp(0.86rem, 1.25vw, 1.36rem);
  letter-spacing: 0.46em;
}

.about-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  padding-bottom: 20px;
}

.menu-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 0;
  background: #0b315d;
  color: #fff;
  cursor: pointer;
  border: navajowhite;
  box-shadow: none;
  outline: navajowhite;
}

.menu-toggle span:not(.menu-toggle-text) {
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-13px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(13px);
}

.menu-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.about-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.about-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.about-nav a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.about-nav a:hover,
.about-nav a:focus-visible {
  text-decoration: underline;
}

.about-nav a.about-linkedin {
  margin-left: 10px;
  font-size: 1.85rem !important;
  line-height: 1;
  font-weight: 800;
}

.about-nav a.about-linkedin p{font-size: 12px;line-height: 14px;display: none;}

.about-shell,
.about-footer {
  /* width: min(100%, 1500px); */
  margin: 0 auto;
  /* border-left: 1px solid var(--line);
  border-right: 1px solid var(--line); */
  /* background: rgba(247, 247, 244, 0.97); */
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 335px;
  border-bottom: 1px solid var(--line);
}

.about-hero>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(28px, 5.5vw, 88px);
}

.about-hero>span {
  background: #dfddda;
}

.about-hero h1,
.about-built h2,
.about-today h2,
.about-founder h2,
.about-work h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 100%;
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  line-height: 1.04;
}

.about-hero p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.9rem);
  line-height: 1.45;
  font-family: var(--font-sans);
  font-weight: 300;
}

.about-built {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.about-built-image,
.about-founder-image {
  margin: 0;
}

.about-built-image {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  /* border-right: 1px solid var(--line); */
  padding-left: 10%;
}

.about-built-image img {
  width: 100%;
  object-fit: cover;
}

/* .about-built-image img {
  width: 274px;
  min-height: 392px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
} */

.about-built-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 392px;
  padding: 54px clamp(36px, 5vw, 76px) 52px 64px;
}

.about-built h2,
.about-today h2,
.about-founder h2,
.about-work h2 {
  font-size: 60px;
  line-height: 73px;
}

.about-built p,
.about-today p,
.about-founder p,
.about-work p {
  color: var(--muted);
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

.about-built p {
  margin: 25px 0 0;
}

.about-built .about-strong {
  color: var(--blue);
  font-weight: 800;
}

.about-today {
  min-height: 350px;
  padding: 60px clamp(28px, 5.5vw, 88px) 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(218, 216, 213, 0.2)
  
}

.about-today h2 {
  text-align: center;
}

.about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 8vw, 80px);
  margin-top: 62px;
}

.about-two-column p {
  margin: 0;
}

.about-founder-image.desktop-none {
  display: none;
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.9fr);
  gap: 44px;
  min-height: 590px;
  padding: 64px 0 0 clamp(28px, 5.5vw, 88px);
  /* padding: 64px clamp(28px, 5.5vw, 88px) 0; */
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  align-items: center;
}

.about-founder-copy {
  padding-top: 8px;
  padding-bottom: 70px;
}

.about-founder p {
  max-width: 100%;
  margin: 28px 0 0;
}

.about-founder p+p {
  margin-top: 28px;
}

.about-founder-image {
  align-self: end;
  display: flex;
  justify-content: center;
      padding-right: 4%;
}

.about-founder-image img {
  /* width: min(100%, 585px); */
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(1) contrast(1.06);
}

.about-work {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 56px 24px;
  background: #ededeb;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-work p {
  margin: 34px 0 38px;
}

/* .about-work a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 34px;
  padding: 9px 20px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.about-work a:hover,
.about-work a:focus-visible {
  background: transparent;
  color: var(--blue);
}

.about-work a:active {
  transform: translateY(1px);
} */

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 24px clamp(24px, 4vw, 64px);
  border-top: 1px solid #ededeb;
  background: #F6F6F4;
}

.about-footer p,
.about-footer a {
  color: #1B1B1B;
  font-size: 0.72rem;
  font-weight: 500;
}

.about-footer p {
  margin: 0;
}

.about-footer nav {
  display: flex;
  gap: 24px;
}

.about-footer a {
  text-decoration: none;
}

.about-footer a:hover,
.about-footer a:focus-visible {
  text-decoration: underline;
}


/* Contact page CSS starts here */
.contact-shell {
  width: min(100%, 1820px);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(247, 247, 244, 0.97);
}

.contact-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 85px 101px 92px 79px;
}

.contact-hero h1,
.contact-methods h2,
.contact-enquiry h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.contact-hero h1 {
  max-width: 1000px;
  text-align: left;
  font: normal 70px/85px 'Warbler';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.contact-hero h1 em {
  text-align: left;
  font: italic 70px/85px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.contact-hero p {
  text-align: left;
  font: 300 30px/40px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
  margin: 28px 0 0 0;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 66.5px;
  background: rgba(218, 216, 213, 0.35);
  text-align: center;
}

.methods-title {
  text-align: center;
  font: normal 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.methods-title em {
  text-align: center;
  font: italic 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.contact-methods h2,
.contact-enquiry h2 {
  font-size: clamp(2.55rem, 4vw, 4.35rem);
  line-height: 1.05;
}

.contact-method-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px clamp(46px, 6vw, 96px);
  margin-top: 40px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  letter-spacing: 0px;
  text-decoration: none;
}

.contact-method:hover span:last-child,
.contact-method:focus-visible span:last-child {
  text-decoration: underline;
}

.contact-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}


.contact-method span {
  text-align: left;
  font: 600 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #072353;
}

.contact-enquiry {
  padding: 63px 0 111px 0;
}

.contact-enquiry .container {
  max-width: 84.2%;
  margin: 0 auto;
}

.contact-enquiry-heading {
  max-width: 900px;
}

.contact-enquiry-heading p {
  margin: 77px 0 0;
  text-align: left;
  font: 300 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 54px;
  max-width: 92.8%;
  margin-top: 50px;
  padding: 60px 52px 66px 60px;
  background: #fff;
}

.enquiry-title {
  text-align: left;
  font: normal 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.enquiry-title em {
  text-align: left;
  font: italic 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-title {}

.contact-field label {
  text-align: left;
  font: 300 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #f2f2f0;
  color: var(--ink);
  font: inherit;
  outline: 1px solid transparent;
  transition: outline-color 160ms ease, background 160ms ease;
}

.contact-field input {
  min-height: 52px;
  padding: 12px 14px;
}

.contact-field textarea {
  min-height: 88px;
  padding: 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: #f7f7f4;
  outline-color: var(--blue);
}

.contact-form button {
  justify-self: end;
  grid-column: 2;
  min-width: 107px;
  min-height: 41px;
  margin-top: -1px;
  padding: 10px 22px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: #072353;
  font: 600 15px/18px 'Proxima';
  letter-spacing: 0px;
  color: #F6F6F4;
  cursor: pointer;
}
.hs-form-frame {
    width: 87.9%;
}

.hsfc-Step__Content {
  padding: 60px 52px 66px 52px !important;
}



/* Network page CSS starts here */
.network-shell {
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(247, 247, 244, 0.97);
}

.network-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 106px 160px 112px 427px;
  border-bottom: 2px solid #DAD8D5;
  overflow: hidden;
}

.network-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 320px;
  background: #dfddda;
}



/* .network-partners{background: #dad8d5;} */

.network-works h2,
.network-partners>h2,
.network-black-book h2,
.network-conversation h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.network-hero h1 {
  text-align: left;
  /* font: normal 70px/85px 'Warbler'; */
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0px;
  color: #1B1B1B;
  margin: 0;
}

.network-hero h1 em {
  text-align: left;
  /* font: italic 70px/85px 'Warbler'; */
  font-style: italic;
  letter-spacing: 0px;
  color: #072353;
}

.network-hero p {
  position: relative;
  z-index: 1;
  margin: 27px 0 0;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.9vw, 1.9rem);
  line-height: 1.07;
  letter-spacing: 0px;
  color: #1B1B1B;

}

.network-works {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.network-works-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 37px 69px 52px 113px;
}

.network-works h2,
.network-partners>h2,
.network-black-book h2,
.network-conversation h2 {
  text-align: left;
  /* font: normal 60px/73px 'Warbler'; */
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0px;
  color: #1B1B1B;
}

.network-works-copy>div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 61px;
}

.network-works-copy p,
.network-partner-grid p,
.network-black-book p,
.network-conversation p {
  text-align: left;
  font: 300 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.network-works-copy p {
  margin: 0;
}

.network-works-copy p:nth-child(3) {
  grid-column: 2;
}

.network-works figure,
.network-black-book figure {
  margin: 0;
}

.network-works img {
  display: block;
  width: 100%;
  object-fit: cover;
  padding-right: 4%;
}

.network-partners>h2 {
  /* display: flex; */
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-align: center;
  justify-content: center;
  padding: 30px 0;
}

.network-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.network-partner-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  padding: 50px clamp(28px, 5vw, 90px) 42px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.network-partner-grid article:nth-child(even) {
  border-left: 1px solid var(--line);
}

.network-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 800;
  text-align: center;
}

/* .network-logo-nofluff {
  width: 118px;
  color: #171717;
  border-top: 3px solid currentColor;
  font-size: 0.82rem;
  text-transform: uppercase;
} */

/* .network-logo-duncan {
  min-width: 185px;
  min-height: 70px;
  background: #24435c;
  color: #b8c2bd;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
} */

.network-logo-september {
  color: #6a7c85;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.network-logo-ink {
  color: #4c8b3f;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.network-logo-zeffer {
  color: #33383d;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
}

.network-logo-nick {
  width: 86px;
  min-height: 86px;
  color: #fff;
  font-size: 0.72rem;
}

.network-logo-fuse {
  color: #007e95;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.network-logo-pic {
  color: #087f87;
  font-size: 3rem;
  letter-spacing: 0.03em;
}

.network-logo-affixius {
  color: #42688d;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.network-logo-ubiq {
  color: #111;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-style: italic;
}

.network-partner-grid h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
}

.network-partner-grid p {
  max-width: 100%;
  margin: 14px 0 0;
  text-align: center;
}

.network-partner-grid a {
  margin-top: auto;
  padding-top: 46px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
}

.network-partner-grid a:hover,
.network-partner-grid a:focus-visible {
  text-decoration: underline;
}

.network-black-book {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.45fr);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.network-black-book img {
  display: block;
  width: 100%;
  /* height: 398px; */
  object-fit: cover;

}

.network-black-book>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 398px;
  padding: 56px clamp(34px, 5vw, 90px);
}

.network-black-book p {
  max-width: 950px;
  margin: 42px 0 0;
}

.network-conversation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 345px;
  padding: 58px 24px;
  background: #ededeb;
  text-align: center;
}

.network-conversation p {
  max-width: 820px;
  margin: 38px 0 30px;
}

.network-conversation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 9px 20px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.network-conversation a:hover,
.network-conversation a:focus-visible {
  background: transparent;
  color: var(--blue);
}

.network-conversation a:active {
  transform: translateY(1px);
}


/* Work page CSS starts here */
.work-shell {
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #F6F6F4;
}

.work-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 106px 0 111px 108px;
  border-bottom: 2px solid rgba(218, 216, 213, 1);
  overflow: hidden;
}

.work-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: rgba(218, 216, 213, 0.35);
}

.work-title {
  text-align: left;
  font: normal 70px/85px 'Warbler';
  letter-spacing: 0px;
  color: #1B1B1B;
}

.work-hero h1,
.work-sector h2,
.work-clients>h2,
.work-contact h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.work-hero h1 {
  position: relative;
  z-index: 1;
}

.work-hero p {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 20px 0 0;
  color: #55575b;
  font-size: clamp(1.08rem, 1.6vw, 1.9rem);
  line-height: 1.42;
  font-weight: 300;
}

.work-sector {
  display: grid;
  grid-template-columns: 322px minmax(0, 1fr);
  border-bottom: 2px solid rgba(218, 216, 213, 1);
  background: rgba(218, 216, 213, 0.2);
  position: relative;
  z-index: 1;
}

.work-sector figure {
  margin: 0;
  border-right: 1px solid var(--line);
}

.work-sector picture {
  display: block;
  width: 100%;
  height: 100%;
}

.work-sector img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-sector div {
  display: flex;
  flex-wrap: wrap;
  padding: 47px 118px 73px 88px;
}

.work-sector h2,
.work-clients>h2,
.work-contact h2 {
  text-align: left;
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
  /* font: normal 60px/73px 'Warbler'; */
  line-height: 1.05;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0px;
  color: #1B1B1B;
}

.work-sector h2 em {
  text-align: left;
  font: italic 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.work-sector h2 em {
  text-align: left;
  font: italic 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.work-contact h2 em {
  text-align: left;
  font: italic 60px/73px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
}

.work-client-grid p,
.work-contact p {
  text-align: center;
  font: 300 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
}

p {
  margin: 0;
}

.work-sector p {
  text-align: left;
  font: 300 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #1B1B1B;
  margin: 32px 0 0;
}

.work-clients>h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(218, 216, 213, 1);
  text-align: center;
  padding: 27px 0 37px 0;
}

.work-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: 100px;
}

.work-client-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 50px;
  text-align: center;
  border-bottom: 2px solid #DAD8D5;
}

.work-client-grid article:first-child {
  padding: 64px 50px 64px 0;
  border-right: 2px solid #DAD8D5;
}

.work-client-grid article:nth-child(3) {
  padding: 64px 0 64px 50px;
  border-left: 2px solid #DAD8D5;
}

.work-client-grid article:nth-child(4) {
  padding: 64px 50px 64px 0;
  border-right: 2px solid #DAD8D5;
}

.work-client-grid article:nth-child(6) {
  padding: 64px 0 64px 50px;
  border-left: 2px solid #DAD8D5;
}


.work-client-grid h3,
.work-client-grid h4 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.work-client-grid h3 {
  text-align: center;
  font: normal 40px/49px 'Warbler';
  letter-spacing: 0px;
  color: #072353;
      max-width: 466px;
}

.work-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 42px 0 39px;
}

.work-logo-norland {
  color: #765946;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.8;
}

.work-logo-cornerstones {
  gap: 10px;
  color: #74777b;
  font-size: 0.95rem;
  line-height: 1;
  text-align: left;
}

.work-logo-cornerstones span {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, #f4a028 0 34%, transparent 34% 66%, #d35472 66%),
    linear-gradient(#7bc6c7 0 50%, #d3dd3f 50%);
  background-blend-mode: multiply;
}

.work-logo-noble {
  position: relative;
  align-items: center;
  color: #344047;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 600;
  line-height: 0.95;
}

.work-logo-noble span {
  position: absolute;
  right: -28px;
  bottom: 12px;
  color: #ff563f;
  font-size: 2rem;
  font-weight: 300;
}

.work-logo-wycliffe {
  color: #7f55ac;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.9rem);
}

.work-logo-london {
  color: #58784f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-logo-xxi {
  color: #9b5c2f;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.55vw, 1.7rem);
}

.work-client-grid h4 {
  text-align: center;
  font: bold 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #072353;
  font-weight: 600;
}


.work-client-grid a {
  margin-top: auto;
  padding-top: 35px;
  text-align: center;
  font: 600 20px/30px 'Proxima';
  letter-spacing: 0px;
  color: #072353;
  text-decoration: none;
}

.work-client-grid a:hover,
.work-client-grid a:focus-visible {
  text-decoration: none;
}

.secondary-banner-img picture,
.secondary-banner-img img {
  display: block;
  width: 100%;
}

.secondary-banner-img img {
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

.work-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 81px 0 99px 0;
  text-align: center;
  background: #ececea;
  position: relative;
  z-index: 0;
}

.work-contact p {
  margin: 40px 0 58px;
}

.work-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 45px;
  background: var(--blue);
  text-align: center;
  font: 400 15px/18px 'Proxima';
  letter-spacing: 0px;
  color: #F6F6F4;
  text-transform: capitalize;
  text-decoration: none;
}


/* Services page CSS starts here */
.services-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: rgba(247, 247, 244, 0.97);
}

.services-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 80px 28px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
  z-index: -1;
}

.services-hero::before,
.services-hero::after {
  content: "";
  position: absolute;
  top: 0;
      width: 9.5%;
  height: 100%;
  background: #DAD8D5;
  z-index: 0;
  opacity: 0.35;
}

.services-hero::before {
  left: 0;
}

.services-hero::after {
  right: 0;
}

.services-hero h1,
.services-execution-intro h2,
.services-start h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 4.4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.services-hero p {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.9rem);
  line-height: 1.45;
  font-family: var(--font-sans);
  font-weight: 300;
}

.services-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 45px clamp(28px, 8vw, 160px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.services-intro p {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.3vw, 1.3rem);
  line-height: 1.58;
  font-family: var(--font-sans);
  font-weight: 300;
}

.services-advisory {
  position: relative;
  z-index: 1;
}

.services-advisory,
.services-confidential {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) repeat(2, minmax(0, 1.08fr));
  border-bottom: 1px solid var(--line);
}

.services-advisory .services-lead-card h2 em{display: block;}

.services-advisory article,
.services-confidential article,
.services-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  min-height: 295px;
  padding: 80px clamp(28px, 4.2vw, 74px);
  text-align: center;
}

.services-advisory article+article,
.services-confidential article+article,
.services-grid article+article {
  border-left: 1px solid var(--line);
}

.services-lead-card {
  align-items: flex-start !important;
  background: #DAD8D5;
  text-align: left !important;
}

.services-confidential .services-lead-card {
  background: #f7f7f4;
}

.services-lead-card h2,
.services-advisory h3,
.services-grid h3,
.services-confidential h3 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.services-grid h3{min-height: 88px;}

.services-lead-card h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 3.5vw, 3.8rem);
  line-height: 1.05;
}

.services-advisory h3,
.services-grid h3,
.services-confidential h3 {
  max-width: 520px;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  line-height: 1.1;
}

.services-lead-card p,
.services-advisory p,
.services-grid p,
.services-confidential p,
.services-execution-intro p,
.services-start p {
  color: var(--muted);
  font-size: clamp(0.86rem, 1.3vw, 1.25rem);
  line-height: 1.58;
  font-weight: 300;
  font-family: var(--font-sans);
}

.services-lead-card p {
  max-width: 330px;
  margin: 26px 0 0;
}

.services-advisory article:not(.services-lead-card) p,
.services-confidential article:not(.services-lead-card) p,
.services-grid p {
  max-width: 100%;
  margin: 42px 0 0;
}

.services-image-band {
  margin: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}



.services-confidential .services-lead-card p {
  max-width: 309px;
}

.services-confidential article {
  justify-content: start;
  text-align: left;
  align-items: flex-start;
}

.services-confidential article+article {
  border-left: 1px solid #fff;
}

.services-confidential article h3 {}


.services-image-band img {
  display: block;
  width: 100%;
  /* height: clamp(245px, 20vw, 370px); */
  object-fit: cover;
  object-position: center;
  /* filter: grayscale(1) contrast(1.08); */
}

.services-execution-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 54px 28px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.services-execution-intro h2,
.services-start h2 {
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
}

.services-execution-intro p {
  /* max-width: 900px; */
  margin: 30px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.services-grid article {
  min-height: 395px;
}

.services-grid article:nth-child(1),
.services-grid article:nth-child(2),
.services-grid article:nth-child(3) {
  grid-column: span 2;
}

.services-grid article:nth-child(4),
.services-grid article:nth-child(5) {
  grid-column: span 3;
  border-top: 1px solid var(--line);
}

.services-grid article:nth-child(4) {
  border-left: 0;
}

.services-grid p+p {
  margin-top: 26px;
}

.services-confidential {
  background: #dfddda;
}

.services-start {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 335px;
  padding: 58px 24px;
  background: #ededeb;
  text-align: center;
}

.services-start p {
  margin: 32px 0 38px;
}

.services-start a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 32px;
  padding: 8px 18px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.services-start a:hover,
.services-start a:focus-visible {
  background: transparent;
  color: var(--blue);
}

.services-start a:active {
  transform: translateY(1px);
}

.thank-you-band {
  min-height: calc(100vh - 194px);
  justify-content: center;
}

.thank-you-band h2 {
  margin-bottom: 30px;
}

.thank-you-band p {
  margin: 5px 0;
}

.thank-you-band .small-button {
  margin-top: 30px;
}

.mobile-img{display: none;}

.terms-use {
    display: block;
}

.services-intro.terms-use p {
    margin-bottom: 20px;
    text-align: left;
}

/* Privacy Policy Css Start */
.privacy-shell {
  background: rgba(247, 247, 244, 0.97);
}

.privacy-hero {
  display: flex;
  align-items: center;
  min-height: 252px;
  padding: 56px clamp(28px, 6vw, 112px);
  border-bottom: 1px solid var(--line);
}

.services-execution-intro.policy-heading{padding: 50px clamp(28px, 5.8vw, 105px) 96px;align-items: flex-start;}

.policy-page h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.8vw, 5.3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.policy-page{
  padding: 50px clamp(28px, 5.8vw, 105px) 96px;
  color: #68696e;
  font-size: clamp(0.98rem, 1.04vw, 1.14rem);
  line-height: 1.58;
}

.policy-page section + section {
  margin-top: 28px;
}


.policy-page h2{margin-top: 30px;}

.policy-page h2 {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 30px;
}

.policy-page p {
  margin: 0;
  max-width: 1660px;
   font-size: 1.3rem;
   font-weight: 300;
}

.policy-page p a{    color: #1B1B1B;font-weight: 800;text-decoration: none;}

.policy-page p + p {
  margin-top: 8px;
}

.policy-page ul {
  margin: 2px 0 0;
  padding-left: 18px;
}

.policy-page li {
  margin: 2px 0;
  font-size: 1.3rem;
  font-weight: 300;
}

.policy-page strong {
  color: #303236;
  font-weight: 800;
}

