:root {
  --dark: #0D0C10;
  --accent: #98029D;
  --gray: #EFEFEF;
  --gray-2: #F5F5F5;
  --mid: #888888;
  --border: #DDDDDD;
  --body-f: 'Montserrat', sans-serif;
  --head-f: 'Saira', sans-serif;
  --page-gutter: clamp(24px, 5.2vw, 104px);
  --content-max: 1320px;
  --wide-max: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

p {
  color: var(--dark);
  font-size: 16px;
  line-height: 2;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn-df,
.btn-do,
.btn-ac {
  display: inline-block;
  transition: background .25s, color .25s, opacity .25s;
}

.btn-df {
  padding: 12px 28px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: #fff;
  font-family: var(--body-f);
  font-size: 14px;
}

.btn-df:hover {
  background: transparent;
  color: var(--dark);
}

.btn-df strong,
.btn-do strong {
  font-weight: 800;
}

.btn-do {
  padding: 12px 28px;
  border: 2px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

.btn-do:hover {
  background: var(--dark);
  color: #fff;
}

.btn-ac {
  padding: 16px 42px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--head-f);
  font-size: 22px;
  font-weight: 700;
}

.btn-ac:hover {
  opacity: .85;
  color: #fff;
}

.iph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4d4d4;
  color: #888;
  font-size: 12px;
  text-align: center;
}
.sections-page-title-wrap {
  background: #fff;
}

.sections-page-title {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 120px 0;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 65px;
  font-weight: 800;
  line-height: 1.08;
}

.sections-page-title p {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.sections-page-title strong {
  font-weight: 800;
}

.snav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.snav-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  width: calc(100% - 410px);
  max-width: none;
  margin-inline: auto;
  padding: 14px 0;
}

.snav-menu > li:last-child {
  margin-left: clamp(28px, 4vw, 72px);
}

.snav-menu > li:last-child > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #98029d;
  background: #98029d;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  transition: background .25s, color .25s;
}

.snav-menu > li:last-child > a:hover,
.snav-menu > li:last-child > a:focus-visible {
  background: transparent;
  color: var(--dark);
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mini-logo .nb,
.hero-logo .nb-vert {
  color: var(--mid);
  font-family: var(--body-f);
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.mini-logo .nb {
  font-size: 7px;
}

.hero-logo .nb-vert {
  align-self: center;
  font-size: 9px;
}

.mini-logo .bar,
.hero-logo .vbar {
  width: 1px;
  background: var(--dark);
}

.mini-logo .bar {
  height: 30px;
}

.mini-logo .lg,
.hero-logo .lg {
  color: var(--dark);
  font-family: var(--head-f);
  font-weight: 800;
}

.mini-logo .lg {
  font-size: 26px;
  line-height: .92;
}

.mini-logo .lg .dot,
.hero-logo .lg .dot,
.tagbox p .acc {
  color: var(--accent);
}

/* =========================================================
   MAIN MENU
========================================================= */

.snav-links {
  margin-left: auto;
}

.snav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.snav-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.snav-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.snav-menu > li > a:hover {
  color: var(--accent);
}

.snav-menu > .menu-item-has-children > a::after {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.snav-menu .current-menu-item > a,
.snav-menu .current_page_item > a,
.snav-menu .current-menu-ancestor > a {
  border-bottom: 2px solid var(--dark);
  font-weight: 600;
}

/* Desktop dropdown */

.snav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 240px;
  margin: 0;
  padding: 14px 0;
  background: #fff;
  border: 1px solid var(--border);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity .2s,
    visibility .2s,
    transform .2s;
}

.snav-menu .menu-item-has-children:hover > .sub-menu,
.snav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.snav-menu .sub-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.snav-menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: 0;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.snav-menu .sub-menu a:hover {
  background: var(--gray-2);
  color: var(--accent);
}

/* Hamburger */

.snav-toggle {
  display: none;
  width: 36px;
  height: 28px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.snav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: var(--dark);
  transition: transform .25s, opacity .25s;
}

.snav.is-open .snav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.snav.is-open .snav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.submenu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.hl {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding: 0 50px 40px max(50px, var(--page-gutter));
  background: #fff;
}

.hero-logo {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 28%;
}

.hero-logo .lg {
  font-size: 64px;
  letter-spacing: -.01em;
  line-height: .9;
}

.hero-text {
  position: relative;
  z-index: 3;
  max-width: 450px;
  min-height: 230px;
  margin-top: 80px;
}

.hero-text,
.hero-bad {
  transition: opacity .2s ease;
}

.hero-text.is-changing,
.hero-bad.is-changing {
  opacity: 0;
}

.hero-arrows {
  position: relative;
  right: 60px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  margin-top: 50px;
}

.hero-arrows button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--dark);
  cursor: pointer;
  font-size: 22px;
  transition: opacity .2s;
}

.hero-arrows button:hover {
  opacity: .45;
}

.hero-bad {
  position: absolute;
  top: 50%;
  left: 85%;
  z-index: 2;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 105px;
  font-weight: 800;
  letter-spacing: .06em;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
  user-select: none;
  white-space: nowrap;
}

.hr {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hr .hphoto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.tagbox {
  position: absolute;
  bottom: 80px;
  left: -20px;
  z-index: 3;
  padding: 32px 56px 32px 40px;
  background: #fff;
}

.tagbox p {
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 50px;
  font-weight: 800;
  line-height: .7;
}

.svc-wrap {
  width: 80vw;
  margin: 5vh auto;
  padding: 60px 0 90px;
  border-top: 1px solid transparent;
}

.svc-row {
  display: grid;
  grid-template-columns: 100px 240px 1fr 230px;
  align-items: center;
  gap: 110px;
  padding: 36px 20px;
  border-top: 1px solid var(--border);
}

.svc-row:last-child {
  border-bottom: 1px solid var(--border);
}

.svc-n {
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .04em;
}

.svc-t {
  font-family: var(--head-f);
  font-size: 28px;
  line-height: 1.15;
}

.svc-t strong {
  display: block;
  font-weight: 800;
}

.svc-t span {
  font-weight: 400;
}

.svc-b {
  text-align: right;
}

.svc-b .btn-df {
  width: 230px;
  text-align: center;
}

.exp-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  box-shadow: none;
}

.exp-img {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.exp-img > .iph,
.exp-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 140px 80px;
  background: #fff;
}

.exp-txt .ht,
.exp-txt .hb,
.dow-l .ht,
.dow-l .hb {
  font-family: var(--head-f);
  line-height: 1.2;
}

.exp-txt .ht,
.dow-l .ht {
  font-weight: 400;
}

.exp-txt .hb,
.dow-l .hb {
  font-weight: 800;
}

.exp-txt .ht,
.exp-txt .hb {
  color: var(--dark);
  font-size: 40px;
}

.exp-txt .ht {
  margin-bottom: 4px;
}

.exp-txt .hb {
  margin-bottom: 28px;
}

.exp-txt p {
  margin-bottom: 20px;
}

.exp-bottom {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 760px;
  z-index: 5;
  pointer-events: none;
}

.exp-bottom > div {
  pointer-events: auto;
}

.exp-bottom .left-btn {
  padding-right: 30px;
}

.exp-bottom .right-btn {
  display: flex;
  justify-content: flex-end;
  padding-right: 140px;
}

.dow-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: none;
}

.dow-l {
  padding: 120px 140px 90px;
  background: var(--gray-2);
}

.dow-l .ht,
.dow-l .hb {
  font-size: 38px;
}

.dow-l .hb {
  margin-bottom: 32px;
}

.dow-l p {
  margin-bottom: 18px;
}

.dow-l .cl,
.dow-l ul {
  margin: 6px 0 22px;
  padding: 0;
  list-style: none;
}

.dow-l .cl li,
.dow-l ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  line-height: 1.6;
}

.dow-l .cl li::before,
.dow-l ul li::before {
  content: '✓';
  position: absolute;
  top: 6px;
  left: 0;
  color: var(--dark);
  font-weight: 600;
}

.dow-r {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #d8d8d8;
}

.dow-r > .iph,
.dow-r > img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.about-square .exp-img,
.about-square .dow-r {
  aspect-ratio: 1 / 1;
  min-height: 0;
  align-self: start;
}

.about-square .exp-img > img,
.about-square .dow-r > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.nau-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 110px 100px;
}

.nau-l h2,
.nau-heading {
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

.nau-heading p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 28px;
}

.nau-heading p:last-child {
  margin-bottom: 0;
}

.nau-l h2 strong,
.nau-heading strong {
  font-weight: 800;
}

.nau-r p {
  margin-bottom: 18px;
}

.pf-img {
  --pf-arrow-w: 90px;
  --pf-arrow-h: 42px;

  position: relative;
  width: 100%;
  height: 816px;
  overflow: hidden;
  background: #e8e9ec;

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--pf-arrow-h)),
    calc(50% + (var(--pf-arrow-w) / 2)) calc(100% - var(--pf-arrow-h)),
    50% 100%,
    calc(50% - (var(--pf-arrow-w) / 2)) calc(100% - var(--pf-arrow-h)),
    0 calc(100% - var(--pf-arrow-h))
  );
}

.pf-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: var(--pf-arrow-w);
  height: var(--pf-arrow-h);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.pf-img img,
.pf-img .iph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-sec {
  padding: 150px 0 0;
}

.pf-img--subpage {
  height: 520px;
}

.team-top,
.team-grid {
  padding-left: 140px;
  padding-right: 0;
}

.team-top {
  margin-bottom: 30px;
  text-align: right;
}

.team-top a {
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}

.team-top a:hover {
  color: var(--accent);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: start;
  gap: 0;
}

.team-txt h2 {
  margin-bottom: 22px;
  font-family: var(--head-f);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.team-txt h2 strong {
  font-weight: 800;
}

.team-txt p {
  margin-bottom: 16px;
}

.team-tag {
  position: relative;
  top: 20px;
  right: -100px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
  padding: 10px 30px;
  background: var(--accent);
  color: #fff;
  font-family: var(--head-f);
  font-size: 24px;
  font-weight: 700;
}

.team-photos {
  display: flex;
  gap: 10px;
}

.team-photos > div,
.team-photos > img {
  width: 450px;
  object-fit: contain;
  object-position: top;
}

.team-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 50px 140px 60px;
}

.team-tabs .tab-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.team-tabs .tab-item a {
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  transition: color .2s;
  white-space: nowrap;
}

.team-tabs .tab-item a:hover {
  color: var(--accent);
}

.team-tabs .tab-item .div {
  flex: 0 0 4px;
  width: 4px;
  height: 22px;
  background: var(--accent);
}

.ls-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 140px 100px;
}

.ls-l {
  margin-right: 150px;
}

.ls-l h2 {
  margin-bottom: 2px;
  font-family: var(--head-f);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.ls-l h2.b {
  margin-bottom: 30px;
  font-weight: 800;
}

.ls-l p {
  margin-bottom: 18px;
}

.ls-l .sc {
  margin-top: 16px;
}

.proc-list {
  padding-top: 0;
}

.proc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.proc-item:first-child {
  padding-top: 0;
}

.proc-n {
  padding-top: 2px;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 24px;
  font-weight: 400;
}

.proc-name {
  margin-bottom: 8px;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 26px;
  font-weight: 700;
}

.proc-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.qb {
  padding: 30px 140px 90px;
}

.qb-text {
  max-width: 1200px;
  margin-bottom: 32px;
  font-family: var(--head-f);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
}

.qb-text p {
  margin-bottom: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.qb-text strong {
  font-weight: 800;
}

.co-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: visible;
  box-shadow: none;
  margin-bottom: 10vh;
}

.co-wrap::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: calc(50% + 250px);
  background: var(--gray);
}
.co-wrap--large {
  min-height: 620px;
}

.co-wrap--large::after {
  width: calc(50% + 320px);
}

.co-wrap--large .co-l {
  padding-top: 140px;
  padding-bottom: 140px;
}

.co-wrap--large .co-r {
  padding-top: 130px;
  padding-bottom: 130px;
}

.co-list-content p {
  margin-bottom: 24px;
}

.co-list-content ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.co-list-content li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
}

.co-l,
.co-r {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.co-l {
  padding: 100px 80px 100px 100px;
}

.co-r {
  padding: 100px 100px 100px 80px;
}

.co-l h2,
.co-heading {
  margin-left: 300px;
  font-family: var(--head-f);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.5;
}

.co-heading p {
  margin-bottom: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.co-l h2 strong,
.co-heading strong {
  font-weight: 800;
}
.co-r p {
  margin-bottom: 22px;
}

.co-r .btn-wrap {
  margin-top: 8px;
}

.blog-sec {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-inline: auto;
  padding: 90px 0;
}

.blog-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-ov {
  display: block;
  margin-bottom: 10px;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-ov u {
  text-decoration: underline;
}

.blog-hd h2 {
	margin-bottom: 2px;
    font-family: var(--head-f);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}

.blog-hd h2 .gold-mark {
  padding: 0 4px;
}

.blog-va {
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.blog-va:hover {
  color: var(--accent);
}

.blog-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bc {
  display: block;
}

.bc-iw {
  overflow: hidden;
  border-radius: 8px;
}

.bc-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s;
}

.bc:hover .bc-img {
  transform: scale(1.04);
}

.bc-body {
  padding: 20px 4px 0;
}

.bc-title {
  margin-bottom: 10px;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.bc-exc {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.75;
}

.bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bc-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ccc;
}

.cta-band {
  padding: 80px var(--page-gutter);
  background: var(--dark);
  text-align: center;
}

.cta-band h2 {
  max-width: var(--content-max);
  margin-inline: auto;
  color: #fff;
  font-family: var(--head-f);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}

.cta-band h2 .arr {
  margin-left: 14px;
  color: var(--accent);
}

.sfooter {
  padding: 70px var(--page-gutter) 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--dark);
}

.sfooter .footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--content-max);
  margin-inline: auto;
}

.f-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #fff;
}

.f-brand:hover {
  color: #fff;
}

.f-nb {
  color: rgba(255, 255, 255, .6);
  font-family: var(--body-f);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.f-bar {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .7);
}

.f-lg {
  color: #fff;
  font-family: var(--head-f);
  font-size: 34px;
  font-weight: 800;
  line-height: .9;
}

.f-lg .dot {
  color: var(--accent);
}

.f-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.f-contact a i {
  color: var(--accent);
  font-size: 16px;
}

.f-contact a:hover,
.fc a:hover,
.soc-row a:hover {
  color: #fff;
}

.fc h5 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--body-f);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fc a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}

.footer-menu a:hover {
  color: #fff;
}

.fc address {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  font-style: normal;
  line-height: 1.85;
}

.fc address em {
  color: rgba(255, 255, 255, .55);
  font-style: italic;
}

.f-bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: var(--content-max);
  margin: 60px auto 0;
}

.soc-row {
  display: flex;
  gap: 18px;
}

.soc-row a {
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
}

.f-bot p {
  color: rgba(255, 255, 255, .4);
  font-size: 11px;
  letter-spacing: .04em;
}



@media (max-width: 1399px) {
  .hero {
    min-height: 640px;
  }

  .hl {
    padding-left: 56px;
    padding-right: 48px;
  }

  .hero-logo .lg {
    font-size: 54px;
  }

  .hero-bad {
    font-size: 104px;
  }

  .tagbox {
    bottom: 64px;
    padding: 28px 48px 28px 36px;
  }

  .tagbox p {
    font-size: 42px;
  }

  .svc-row {
    grid-template-columns: 80px 220px 1fr 190px;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-left: 72px;
    padding-right: 72px;
  }

  .team-photos > div,
  .team-photos > img {
    width: 230px;
    height: 380px;
  }
}

@media (max-width: 1199px) {
  :root {
    --page-gutter: clamp(28px, 4.4vw, 56px);
  }

  .svc-wrap,
  .nau-wrap,
  .ls-wrap,
  .qb,
  .blog-sec,
  .exp-wrap,
  .dow-wrap,
  .pf-img,
  .team-sec,
  .co-wrap {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .snav-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .snav-links {
    gap: 20px;
  }

  .snav-links a {
    font-size: 13px;
  }

  .hero {
    min-height: 600px;
  }

  .hl {
    padding: 48px 40px;
  }

  .hero-logo {
    margin-top: 80px;
  }

  .hero-logo .lg {
    font-size: 48px;
  }

  .hero-text {
    max-width: 330px;
    font-size: 13px;
  }

  .hero-bad {
    font-size: 82px;
  }

  .tagbox {
    bottom: 50px;
    left: -10px;
  }

  .tagbox p {
    font-size: 36px;
  }

  .svc-wrap {
    padding: 56px 48px 72px;
  }

  .svc-row {
    grid-template-columns: 64px 190px 1fr;
    grid-template-areas:
      "num title button"
      "num desc desc";
    align-items: start;
    gap: 18px 24px;
  }

  .svc-n {
    grid-area: num;
  }

  .svc-t {
    grid-area: title;
    font-size: 24px;
  }

  .svc-d {
    grid-area: desc;
  }

.svc-b {
  grid-area: button;
  justify-self: end;
  width: 230px;
  max-width: 100%;
  text-align: right;
}

  .exp-wrap {
    min-height: 620px;
  }

  .exp-txt {
    padding: 64px 48px;
  }

  .exp-txt .ht,
  .exp-txt .hb,
  .dow-l .ht,
  .dow-l .hb {
    font-size: 34px;
  }

  .dow-l {
    padding: 72px 48px;
  }

  .nau-wrap,
  .ls-wrap {
    gap: 56px;
    padding: 80px 56px;
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
  }

  .team-tag {
    order: 2;
	  display: none;
  }

  .team-photos {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .team-photos > div,
  .team-photos > img {
    width: 100%;
   }

.team-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 32px;
  padding: 50px 56px 60px;
}

  .blog-sec {
    padding: 80px 56px;
  }

  .bc-img {
    height: 200px;
  }

  .co-l,
  .co-r {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .hero,
  .exp-wrap,
  .dow-wrap,
  .nau-wrap,
  .ls-wrap,
  .co-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hl {
    min-height: 520px;
    padding: 56px 48px 80px;
  }

  .hero-logo {
    margin-top: 0;
  }

  .hero-text {
    max-width: 520px;
  }

  .hero-arrows {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-bad {
    top: 56px;
    right: 24px;
    left: auto;
    transform: none;
    writing-mode: vertical-rl;
    font-size: 68px;
    line-height: 1;
  }

  .hr {
    height: 620px;
    min-height: 0;
  }

  .hr .hphoto {
    object-position: center top;
  }

  .tagbox {
    bottom: 48px;
    left: 48px;
  }

  .svc-wrap {
    padding: 56px 40px;
  }

  .svc-row {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "num title"
      "num desc"
      ". button";
    padding: 32px 0;
  }

 .svc-b {
  justify-self: start;
  width: 230px;
  max-width: 100%;
  text-align: left;
}

  .exp-wrap {
    min-height: auto;
  }

  .exp-img {
    min-height: 480px;
  }

  .exp-txt {
    padding: 64px 48px 110px;
  }

  .exp-bottom {
    position: absolute;
    right: 48px;
    bottom: 40px;
    left: 48px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
  }

  .exp-bottom .left-btn,
  .exp-bottom .right-btn {
    padding: 0;
  }

  .dow-r > img,
  .dow-r > .iph {
    min-height: 480px;
  }

  .nau-wrap,
  .ls-wrap {
    padding: 72px 48px;
  }

  .nau-l h2,
  .nau-heading {
  font-size: 28px;
}

  .team-sec {
    padding-top: 56px;
  }

  .team-top,
  .team-grid,
  .team-tabs {
    padding-left: 48px;
    padding-right: 48px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-tag {
    width: max-content;
    margin: 24px 0;
  }

  .team-photos {
    margin-top: 0;
  }

	.ls-l {
  margin-right: 0;
}
	
  .qb {
    padding: 48px 48px 80px;
  }
.qb-text {
  font-size: 28px;
}

  .co-wrap::after {
    display: none;
  }

  .co-l {
    padding: 72px 48px 32px;
  }

	.co-l h2,
	.co-heading {
	  margin-left: 0;
	  font-size: 34px;
	}

  .co-r {
    padding: 56px 48px 72px;
    background: var(--gray);
  }

  .blog-sec {
    padding: 72px 48px;
  }

  .blog-g {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sfooter {
    padding: 64px 48px 32px;
  }

  .sfooter .footer-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 24px;
  }

  body {
    font-size: 15px;
  }

  .snav-inner {
    gap: 12px;
    padding: 14px 24px;
  }


  /* Mobile main menu */
  .snav-toggle {
    display: block;
  }

  .snav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 998;
    display: none;
    margin-left: 0;
    padding: 20px 24px;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .snav.is-open .snav-links {
    display: block;
  }

  .snav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .snav-menu > li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .snav-menu > li:last-child {
    border-bottom: 0;
	margin-left: 0;
  }
	
.snav-menu > li:last-child > a {
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
}

  .snav-menu > li > a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    white-space: normal;
  }

  .snav-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 1px solid var(--dark);
    border-bottom: 1px solid var(--dark);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
  }

  .menu-item-has-children.is-submenu-open > .submenu-toggle span {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .snav-menu .sub-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 12px 16px;
    border: 0;
    border-left: 1px solid var(--border);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .snav-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    display: block;
  }

  .snav-menu .sub-menu li {
    width: 100%;
  }

  .snav-menu .sub-menu a {
    padding: 9px 12px;
    font-size: 16px;
    white-space: normal;
  }

  .hero,
  .exp-wrap,
  .dow-wrap,
  .pf-img,
  .team-sec,
  .co-wrap {
    width: 100%;
  }

  .hero {
    overflow: hidden;
  }

  .hl {
    min-height: auto;
    padding: 40px 24px 56px;
  }

	.sections-page-title {
  padding: 72px 0;
  font-size: 38px;
}
	
  .hero-logo .lg {
    font-size: 42px;
	order: 1;
  }

  .hero-logo .nb-vert {
    font-size: 8px;
  }

.hero-text {
  order: 3;
  max-width: none;
  min-height: auto;
  margin-top: 24px;
  font-size: 16px;
}

  .hero-arrows {
	order: 4;
    margin-top: 24px;
  }

	
  .hero-bad {
	order: 2;
    position: static;
    margin-top: 32px;
    font-size: clamp(42px, 15vw, 72px);
    letter-spacing: .03em;
    transform: none;
    writing-mode: initial;
  }

  .hr {
    height: 520px;
  }

  .tagbox {
    right: 24px;
    bottom: 32px;
    left: 24px;
    padding: 24px 28px;
  }

  .tagbox p {
    font-size: 34px;
  }

  .svc-wrap,
  .nau-wrap,
  .ls-wrap,
  .qb,
  .blog-sec {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .svc-wrap {
    padding: 40px 24px 56px;
  }

  .svc-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "desc"
      "button";
    gap: 12px;
    padding: 32px 0;
  }

  .svc-n {
    font-size: 22px;
  }

  .svc-t {
    font-size: 26px;
  }

	.svc-b,
	.svc-b .btn-df {
	  width: 100%;
	}
	
  .btn-df,
  .btn-do {
    width: auto;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .exp-img {
    min-height: 360px;
  }

  .exp-txt {
    padding: 48px 24px 130px;
  }

  .exp-txt .ht,
  .exp-txt .hb,
  .dow-l .ht,
  .dow-l .hb {
    font-size: 30px;
  }

  .exp-bottom {
    right: 24px;
    bottom: 36px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-ac {
    display: none;
    padding: 14px 30px;
    font-size: 20px;
  }

  .dow-l,
  .nau-wrap,
  .ls-wrap,
  .co-l,
  .co-r,
  .team-top,
  .team-grid,
  .team-tabs {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .dow-l {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .dow-r > img,
  .dow-r > .iph {
    min-height: 360px;
  }

	.about-square .exp-img,
	.about-square .dow-r,
	.about-square .exp-img > img,
	.about-square .dow-r > img {
	  min-height: 0;
}
	
  .nau-wrap,
  .ls-wrap {
    gap: 36px;
    padding-top: 56px;
    padding-bottom: 56px;
	  width: 100%;
  }

    .nau-l h2,
	.nau-heading,
	.ls-l h2,
	.ls-l h2.b {
	  font-size: 28px;
	}


  .team-txt {
    padding-right: 0;
  }

  .team-txt h2 {
    font-size: 28px;
  }

  .team-photos {
    grid-template-columns: 1fr;
  }

  .team-photos > div,
  .team-photos > img {
     height: auto;
     margin: auto;
  }

	.team-tabs {
	  display: grid;
	  grid-template-columns: 1fr;
	  gap: 16px;
	  padding: 36px 24px 48px;
	}
	
	.team-tabs .tab-item {
  justify-content: flex-start;
}

.team-tabs .tab-item .div {
  order: -1;
}

  .proc-item {
    grid-template-columns: 56px 1fr;
  }

  .qb {
    padding: 40px 24px 64px;
	  width: 100%;
  }

  .qb-text {
    font-size: 26px;
  }

  .co-l {
    padding-top: 56px;
    padding-bottom: 24px;
  }

  .co-r {
    padding-top: 48px;
    padding-bottom: 56px;
  }

   .co-l h2,
  .co-heading {
    font-size: 30px;
  }

  .blog-sec {
    padding: 64px 24px;
  }

  .blog-hd {
    display: block;
    margin-bottom: 36px;
  }

  .blog-va {
    display: inline-block;
    margin-top: 20px;
  }

  .blog-g {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bc-img {
    height: 240px;
  }

  .cta-band {
    padding: 64px 24px;
  }

  .cta-band h2 {
    font-size: 42px;
  }

  .sfooter {
    padding: 56px 24px 32px;
  }

  .sfooter .footer-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .f-lg {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  .hero-logo .lg {
    font-size: 36px;
  }

  .tagbox p {
    font-size: 30px;
  }

  .exp-txt .ht,
  .exp-txt .hb,
  .dow-l .ht,
  .dow-l .hb,
  .co-l h2,
  .co-heading {
    font-size: 27px;
  }

  .qb-text {
    font-size: 23px;
  }

  .cta-band h2 {
    font-size: 36px;
  }

  .bc-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
	}

.page-main,
.single-main {
  background: #fff;
}

.page-container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-inline: auto;
  padding: 90px 0;
}

.single-container {
  width: min(calc(100% - (var(--page-gutter) * 2)), 920px);
  margin-inline: auto;
  padding: 90px 0;
}

.single-header {
  margin-bottom: 48px;
}

.single-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--mid);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.single-title {
  color: var(--dark);
  font-family: var(--head-f);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
}

.single-thumb {
  margin-bottom: 56px;
}

.single-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-content,
.single-content {
  color: var(--dark);
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.single-content h2,
.single-content h3,
.single-content h4 {
  color: var(--dark);
  font-family: var(--head-f);
  line-height: 1.2;
}

.page-content h1 {
  margin-bottom: 32px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
}

.page-content h2,
.single-content h2 {
  margin: 56px 0 24px;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;
}

.page-content h3,
.single-content h3 {
  margin: 40px 0 18px;
  font-size: 28px;
  font-weight: 700;
}

.page-content p,
.page-content li,
.single-content p,
.single-content li {
  font-size: 18px;
  line-height: 1.75;
}

.page-content p,
.single-content p {
  margin-bottom: 24px;
}

.page-content ul,
.page-content ol,
.single-content ul,
.single-content ol {
  margin: 0 0 28px 1.4em;
  padding: 0;
}

.page-content a,
.single-content a {
  color: var(--accent);
}

.page-content img,
.single-content img {
  height: auto;
  margin: 40px 0;
}

@media (max-width: 767px) {
  .page-container,
  .single-container {
    padding: 56px 0;
  }

  .single-meta {
    flex-direction: column;
    gap: 6px;
  }

  .page-content p,
  .page-content li,
  .single-content p,
  .single-content li {
    font-size: 16px;
  }
}

.blog-archive-main {
  background: #fff;
}

.blog-archive-container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-inline: auto;
}

.blog-archive-hero {
  padding: 90px 0 40px;
}

.blog-archive-title {
  margin-bottom: 2px;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.blog-archive-sec {
  padding: 40px 0 100px;
}

.blog-archive-grid {
  margin-bottom: 70px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

.blog-pagination .page-numbers.current {
  background: var(--dark);
  color: #fff;
}

.blog-pagination .page-numbers:hover {
  background: var(--dark);
  color: #fff;
}

@media (max-width: 767px) {
  .blog-archive-hero {
    padding: 64px 0 24px;
  }

  .blog-archive-sec {
    padding: 32px 0 72px;
  }

  .blog-pagination .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.bc-readmore {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 24px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  transition: background .25s, color .25s;
}

.bc:hover .bc-readmore {
  background: transparent;
  color: var(--dark);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.contact-page {
  background: #fff;
}

/* HERO */
.contact-hero-wrap {
  background: #fff;
}

.contact-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-inline: auto;
  padding: 110px 0 70px;
}

.contact-hero-copy {
  max-width: 980px;
}

.contact-hero-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-hero-title {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-hero-title p {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
}

.contact-hero-line {
  display: block;
  width: 64px;
  height: 3px;
  margin: 32px 0 32px;
  background: var(--accent);
}

.contact-intro {
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-intro p {
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.75;
}

/* MAIN LAYOUT */
.contact-layout-wrap {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-inline: auto;
  padding: 0 0 100px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 28px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 28px;
}

/* CARDS */
.contact-card {
  padding: 42px;
  border: 1px solid var(--border);
  background: #fff;
}

.contact-card--calendar,
.contact-card--accent {
  background: var(--gray-2);
}

.contact-card--email {
  background: #fff;
}

.contact-card-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card h2,
.contact-form-wrap h2 {
  margin-bottom: 24px;
  color: var(--dark);
  font-family: var(--head-f);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-card p {
  margin-bottom: 28px;
}

/* CALENDAR */
.contact-calendar-embed {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.contact-calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

/* SOCIAL + ADDRESS */
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  transition: background .25s, color .25s;
}

.contact-social-links a:hover {
  background: var(--dark);
  color: #fff;
}

.contact-address-note {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-address-note p {
  margin-bottom: 16px;
}

.contact-address {
  margin: 8px 0 0;
}

.contact-address p {
  margin-bottom: 0;
  font-weight: 700;
}

/* STEPS */
.contact-steps {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 36px;
  margin-top: 36px;
  padding: 42px;
  background: var(--gray-2);
}

.contact-steps-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-steps-head i {
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
}

.contact-steps-head h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--head-f);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.contact-step h3 {
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-step p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.contact-step a {
  color: var(--accent);
  font-weight: 800;
}

/* FORM */
.contact-form-sec {
  background: #fff;
  padding: 100px var(--page-gutter);
}

.contact-form-wrap {
  width: min(100%, 860px);
  margin-inline: auto;
}

.contact-form-wrap h2 {
  margin-bottom: 36px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--dark);
  font-family: var(--body-f);
  font-size: 16px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  width: auto;
  padding: 12px 28px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  transition: background .25s, color .25s;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: transparent;
  color: var(--dark);
}

@media (max-width: 991px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-hero-mark {
    display: none;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-steps {
    grid-template-columns: 1fr;
  }

  .contact-steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-calendar-embed iframe {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .contact-hero-inner {
    padding: 72px 0 48px;
  }

  .contact-hero-line {
    margin: 24px 0;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-layout-wrap {
    padding-bottom: 72px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-card h2,
  .contact-form-wrap h2 {
    font-size: 30px;
  }

  .contact-calendar-embed iframe {
    min-height: 680px;
  }

  .contact-steps {
    margin-top: 28px;
    padding: 32px 24px;
  }

  .contact-form-sec {
    padding: 72px 24px;
  }
}

@media (max-width: 991px) {
  .contact-grid--two {
    grid-template-columns: 1fr;
  }

.contact-grid--two .contact-card:first-child {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

  .contact-card {
    min-height: auto;
  }

  .contact-calendar-embed iframe {
    min-height: 680px;
  }
}

@media (max-width: 767px) {
  .contact-hero-inner {
    padding: 72px 0 48px;
  }

  .contact-hero-title {
    margin-bottom: 40px;
  }

  .contact-intro p,
  .contact-calendar-head p {
    font-size: 16px;
  }

  .contact-card {
    padding: 56px 24px;
  }

  .contact-card h2,
  .contact-calendar-head h2,
  .contact-form-wrap h2 {
    font-size: 30px;
  }

  .contact-calendar-sec {
    padding: 64px 24px 80px;
  }

  .contact-calendar-wrap {
    padding: 32px 24px;
  }

  .contact-calendar-embed iframe {
    min-height: 680px;
  }

  .contact-form-sec {
    padding: 72px 24px;
  }
}

@media (max-width: 991px) {
  .contact-grid--two {
    grid-template-columns: 1fr;
  }

	.contact-grid--two .contact-card:first-child {
  border-right: 0;
  border-bottom: 1px solid var(--border);
}
	
  .contact-card {
    min-height: 0;
  }

  .contact-calendar-embed iframe {
    min-height: 680px;
  }
}

@media (max-width: 767px) {
  .contact-wrap {
    padding-bottom: 56px;
  }

  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-intro p,
  .contact-calendar-head p {
    font-size: 16px;
  }

	.contact-card {
	  min-height: auto;
	  padding: 56px 24px;
	}

  .contact-card h2,
  .contact-calendar-head h2,
  .contact-form-wrap h2 {
    font-size: 30px;
  }

 .contact-calendar-sec {
  padding: 64px 24px 80px;
}

.contact-calendar-wrap {
  padding: 32px 24px;
}

.contact-calendar-embed iframe {
  min-height: 680px;
}

  .contact-form-sec {
    padding: 72px 24px;
  }
}