/* =========================================================
   TECHVIO CONTACT PAGE
   Screenshot-matched responsive layout
   Headings: Rethink Sans
   Body: Inter
========================================================= */

:root {
  --brown: #35140d;
  --orange: #ff7b3f;
  --orange-strong: #ff6619;
  --ink: #111113;
  --muted: #77736f;
  --line: #e8e6e2;
  --black: #050505;
  --white: #ffffff;
  --container: 950px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rethink Sans", sans-serif;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

/* =========================================================
   HEADER + HERO
========================================================= */

.contact-hero {
  min-height: 444px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    var(--brown);
  background-size: 98px 98px;
}

.site-header {
  height: 73px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header-shell {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-pill,
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 25px;
  padding: 0 11px;
  color: rgba(255,255,255,.9);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  text-decoration: none;
  font-size: 8px;
  font-weight: 500;
}

.menu-pill {
  cursor: pointer;
}

.menu-pill > span {
  width: 10px;
  height: 1px;
  display: block;
  background: currentColor;
  box-shadow: 0 3px 0 currentColor;
}

.site-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  transform: translate(-50%, -50%);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.search-button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.search-button svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-inner {
  position: relative;
  min-height: 371px;
}

.hero-copy {
  width: 610px;
  padding-top: 66px;
}

.eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 600;
}

.hero-copy h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.045em;
}

.hero-copy h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy p {
  width: 600px;
  max-width: 100%;
  margin: 20px 0 0;
  color: rgba(255,255,255,.77);
  font-size: 12px;
  line-height: 1.65;
}

.hero-rays {
  position: absolute;
  top: 64px;
  right: 25px;
  width: 140px;
  height: 190px;
  overflow: hidden;
}

.hero-rays i {
  position: absolute;
  top: -18px;
  width: 1px;
  height: 220px;
  background: var(--orange);
  opacity: .9;
  transform-origin: top center;
}

.hero-rays i:nth-child(1) { left: 12px; transform: rotate(-43deg); }
.hero-rays i:nth-child(2) { left: 30px; transform: rotate(-36deg); }
.hero-rays i:nth-child(3) { left: 48px; transform: rotate(-29deg); }
.hero-rays i:nth-child(4) { left: 66px; transform: rotate(-22deg); }
.hero-rays i:nth-child(5) { left: 84px; transform: rotate(-15deg); }
.hero-rays i:nth-child(6) { left: 102px; transform: rotate(-8deg); }
.hero-rays i:nth-child(7) { left: 120px; transform: rotate(-1deg); }

/* =========================================================
   PARTNER LOGOS
========================================================= */

.partner-strip {
  min-height: 108px;
  display: flex;
  align-items: center;
  background: #fff;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 25px;
}

.partner {
  text-align: center;
  white-space: nowrap;
  color: #c9c9c9;
  font-size: 11px;
  font-weight: 700;
  opacity: .92;
}

.partner.fiverr {
  color: #4a4a4a;
  font-size: 25px;
  letter-spacing: -.07em;
}

.partner.fiverr span {
  color: #31c36b;
}

.partner.upwork {
  color: #66d32e;
  font-size: 20px;
}

.partner.freelancer {
  color: #4c5560;
  font-style: italic;
}

.partner.freelancer i {
  color: #2fa8e4;
}

.partner.monday {
  color: #8d8d8d;
  font-size: 10px;
}

/* =========================================================
   INTRO
========================================================= */

.contact-intro {
  min-height: 305px;
  padding: 72px 0 55px;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 100px;
  align-items: end;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 19px;
  font-size: 8px;
  font-weight: 600;
}

.section-label i {
  width: 5px;
  height: 5px;
  background: #ffb22e;
  border-radius: 50%;
}

.intro-copy h2 {
  margin: 0;
  font-size: 39px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.035em;
}

.contact-mini-card {
  align-self: start;
  padding: 22px 22px 24px;
  color: #fff;
  background: #050505;
  border-radius: 3px;
}

.contact-mini-card img {
  width: 78px;
  margin-bottom: 28px;
}

.contact-mini-card h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
}

.contact-mini-card a,
.contact-mini-card p {
  display: block;
  margin: 0 0 9px;
  color: #fff;
  text-decoration: none;
  font-size: 8px;
  line-height: 1.6;
}

/* =========================================================
   MAP
========================================================= */

.map-section {
  background: #fff;
}

.map-image {
  position: relative;
  height: 565px;
  overflow: hidden;
  background: #08091c;
}

.map-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-contact-card {
  position: absolute;
  right: 15.5%;
  top: 0;
  width: 245px;
  padding: 25px 25px 27px;
  color: #fff;
  background: #050505;
  border-radius: 0 0 3px 3px;
}

.map-contact-card img {
  width: 76px;
  margin-bottom: 28px;
}

.map-contact-card h3 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 500;
}

.map-contact-card a,
.map-contact-card p {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  text-decoration: none;
  font-size: 8px;
  line-height: 1.6;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.form-section {
  position: relative;
  padding: 104px 0 140px;
  overflow: hidden;
  background: #fff;
}

.form-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: start;
}

.form-heading h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.03em;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
}

.field {
  display: block;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  background: #fff;
  outline: none;
  padding: 10px 12px;
}

.field input {
  height: 42px;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.send-button {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
}
.send-button {
    font-size: 13px !important;
}

.send-button::before {
  content: "SEND MESSAGE";
  min-height: 34px;
  padding: 0 19px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--orange);
  border-radius: 999px;
}

.send-button {
  font-size: 0;
}

.send-button b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #111;
  background: #ff9958;
  border-radius: 50%;
  font-size: 12px;
}

.form-lines {
  position: absolute;
  right: -90px;
  bottom: 0;
  width: 280px;
  height: 270px;
  background:
    repeating-linear-gradient(
      -40deg,
      transparent 0 12px,
      rgba(47,133,255,.13) 12px 13px
    );
  transform: skewX(-12deg);
}

.form-gem,
.cta-gem,
.footer-gem {
  position: absolute;
  background:
    conic-gradient(
      from 15deg,
      #531406,
      #f7681c,
      #ffb15c,
      #84270a,
      #ff6e1b,
      #4d1105
    );
  clip-path: polygon(49% 0, 88% 17%, 100% 57%, 70% 94%, 28% 100%, 0 65%, 14% 18%);
  filter: drop-shadow(0 9px 8px rgba(80,25,5,.2));
}

.form-gem {
  right: -22px;
  bottom: 45px;
  width: 95px;
  height: 95px;
  transform: rotate(15deg);
}

/* =========================================================
   BRANCH OFFICES
========================================================= */

.branches-section {
  padding: 20px 0 155px;
  background: #fff;
}

.branches-title {
  width: 760px;
  max-width: 100%;
  margin: 0 auto 65px;
  text-align: center;
  font-size: 31px;
  font-weight: 600;
}

.branch-list {
  width: 900px;
  max-width: 100%;
  margin-inline: auto;
}

.branch-row {
  min-height: 205px;
  padding: 35px 0;
  display: grid;
  grid-template-columns: 175px 225px 1fr 170px;
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid #ddd;
}

.branch-row h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.branch-row figure {
  width: 225px;
  height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
}

.branch-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-address strong {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
}

.branch-address p,
.branch-address a,
.branch-contact a {
  color: #777;
  font-size: 8px;
  line-height: 1.6;
}

.branch-address p {
  margin: 0 0 36px;
}

.branch-address a,
.branch-contact a {
  display: block;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.branch-contact {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  position: relative;
  padding: 25px 0 0;
  background: #fff;
}

.cta-card {
  position: relative;
  display: block;
  height: 385px;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  background: var(--orange-strong);
}

.cta-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-copy {
  position: absolute;
  left: 56px;
  top: 68px;
  width: 520px;
}

.cta-copy h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.045em;
}

.cta-copy p {
  margin: 22px 0 0;
  font-size: 9px;
}

.cta-copy > span {
  display: inline-block;
  margin-top: 23px;
  padding: 10px 18px;
  color: #fff;
  background: #090909;
  border-radius: 2px;
  font-size: 8px;
}

.cta-gem {
  z-index: 3;
  right: 7%;
  top: -24px;
  width: 100px;
  height: 100px;
  transform: rotate(13deg);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  margin-top: -1px;
  padding: 80px 0 30px;
  color: #fff;
  background: #050505;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr .65fr .65fr 1fr;
  gap: 50px;
  align-items: start;
}

.newsletter h2 {
  margin: 0 0 30px;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.03em;
}

.newsletter form {
  width: 300px;
  display: flex;
  overflow: hidden;
  background: #fff;
  border-radius: 3px;
}

.newsletter input {
  width: 100%;
  padding: 11px 13px;
  color: #111;
  background: #fff;
  border: 0;
  outline: 0;
  font-size: 9px;
}

.newsletter button {
  width: 42px;
  color: #ac4aff;
  background: #fff;
  border: 0;
  cursor: pointer;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact p {
  margin: 0;
  color: #d2d2d2;
  text-decoration: none;
  font-size: 8px;
  line-height: 1.5;
}

.footer-contact strong {
  display: block;
  margin-top: 18px;
  font-size: 11px;
}

.socials {
  margin-top: 21px;
  display: flex;
  gap: 8px;
}

.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #232323;
  border-radius: 50%;
  text-decoration: none;
  font-size: 9px;
}

.socials a:first-child {
  background: var(--orange-strong);
}

.footer-bottom {
  margin-top: 77px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #272727;
  color: #bcbcbc;
  font-size: 8px;
}

.footer-gem {
  left: -47px;
  top: 0;
  width: 95px;
  height: 95px;
  transform: rotate(9deg);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  :root {
    --container: 760px;
  }

  .hero-copy {
    width: 75%;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-rays {
    right: -10px;
  }

  .partner-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }

  .partner-strip {
    padding: 30px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-mini-card {
    width: 270px;
  }

  .map-image {
    height: 470px;
  }

  .map-contact-card {
    right: 8%;
  }

  .form-layout {
    grid-template-columns: 260px 1fr;
    gap: 45px;
  }

  .branch-row {
    grid-template-columns: 130px 190px 1fr 135px;
    gap: 18px;
  }

  .branch-row figure {
    width: 190px;
    height: 128px;
  }

  .cta-card {
    height: 320px;
  }

  .cta-copy {
    left: 38px;
    top: 55px;
    width: 420px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr .7fr .7fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .container {
    width: calc(100% - 34px);
  }

  .site-header {
    height: 64px;
  }

  .header-shell {
    width: calc(100% - 26px);
  }

  .site-logo {
    width: 72px;
  }

  .search-button {
    display: none;
  }

  .menu-pill {
    width: 36px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .contact-hero {
    min-height: 455px;
  }

  .hero-inner {
    min-height: 390px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 60px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-copy p {
    width: min(100%, 390px);
    font-size: 10px;
  }

  .hero-rays {
    top: 220px;
    right: -58px;
    transform: scale(.78);
  }

  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-intro {
    padding: 62px 0 55px;
  }

  .intro-copy h2 {
    font-size: 32px;
  }

  .contact-mini-card {
    display: none;
  }

  .map-image {
    height: 340px;
  }

  .map-contact-card {
    top: 18px;
    right: 18px;
    width: 200px;
    padding: 18px;
    background: rgba(5,5,5,.94);
    border-radius: 3px;
  }

  .map-contact-card img {
    width: 60px;
    margin-bottom: 18px;
  }

  .form-section {
    padding: 70px 0 95px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-heading h2 {
    font-size: 30px;
  }

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

  .field,
  .field.full,
  .send-button {
    grid-column: 1;
  }

  .form-lines {
    width: 170px;
    height: 180px;
  }

  .form-gem {
    width: 72px;
    height: 72px;
    right: -24px;
  }

  .branches-section {
    padding-bottom: 90px;
  }

  .branches-title {
    margin-bottom: 35px;
    text-align: left;
    font-size: 28px;
  }

  .branch-row {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch-row h3 {
    font-size: 26px;
  }

  .branch-row figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
  }

  .branch-address p {
    margin-bottom: 15px;
  }

  .branch-contact {
    gap: 10px;
  }

  .cta-section {
    padding-top: 0;
  }

  .cta-card {
    height: 340px;
  }

  .cta-card > img {
    object-position: 67% center;
  }

  .cta-copy {
    left: 24px;
    top: 43px;
    width: 61%;
  }

  .cta-copy h2 {
    font-size: 30px;
  }

  .cta-copy p {
    width: 180px;
    font-size: 7px;
  }

  .cta-gem {
    width: 70px;
    height: 70px;
    right: -12px;
    top: -30px;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }

  .newsletter {
    grid-column: 1 / -1;
  }

  .newsletter form {
    width: 100%;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 45px;
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================
   SHARED RESPONSIVE HEADER
   Added so the home-page header works on contact.html too.
========================================================= */

.contact-hero {
  padding-top: 76px;
}

.contact-hero .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  background: rgba(44, 15, 8, 0.98);
  color: #f5eee9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.contact-hero .header-inner {
  position: relative;
  height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-hero .header-inner::before,
.contact-hero .header-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.contact-hero .header-inner::before {
  left: 31%;
}

.contact-hero .header-inner::after {
  right: 25%;
}

.contact-hero .header-menu-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: transparent;
  color: #f5eee9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-hero .menu-icon {
  width: 15px;
  height: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-hero .menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.contact-hero .site-header.is-open .menu-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.contact-hero .site-header.is-open .menu-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.contact-hero .header-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  text-decoration: none;
}

.contact-hero .header-logo img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.contact-hero .header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-hero .header-search {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5eee9;
  cursor: pointer;
}

.contact-hero .header-search svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}

.contact-hero .contact-pill {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  color: #f5eee9;
  background: transparent;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.contact-hero .header-navigation {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  background: #2c0f08;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    max-height 0.5s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.contact-hero .site-header.is-open .header-navigation {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

.contact-hero .nav-inner {
  padding: 28px 5vw 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-hero .nav-inner a {
  min-height: 115px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f5eee9;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Rethink Sans", sans-serif;
  font-size: clamp(22px, 2.5vw, 42px);
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-hero .nav-inner a:last-child {
  border-right: 0;
}

.contact-hero .nav-inner a span {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.45;
}

.contact-hero .nav-inner a:hover {
  background: #e96620;
  color: #25100a;
}

@media (max-width: 900px) {
  .contact-hero {
    padding-top: 68px;
  }

  .contact-hero .header-inner {
    height: 68px;
    padding: 0 24px;
  }

  .contact-hero .header-inner::before,
  .contact-hero .header-inner::after {
    display: none;
  }

  .contact-hero .nav-inner {
    padding-left: 24px;
    padding-right: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero .nav-inner a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-hero .nav-inner a:nth-child(2) {
    border-right: 0;
  }

  .contact-hero .nav-inner a:nth-child(3),
  .contact-hero .nav-inner a:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding-top: 64px;
  }

  .contact-hero .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .contact-hero .header-menu-btn {
    width: 40px;
    height: 34px;
    padding: 0;
    justify-content: center;
  }

  .contact-hero .menu-label {
    display: none;
  }

  .contact-hero .header-logo img {
    height: 32px;
  }

  .contact-hero .header-search {
    display: none;
  }

  .contact-hero .contact-pill {
    padding: 8px 10px;
    font-size: 8px;
  }

  .contact-hero .nav-inner {
    padding: 10px 16px 18px;
    grid-template-columns: 1fr;
  }

  .contact-hero .nav-inner a {
    min-height: auto;
    padding: 18px 6px;
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 28px;
  }

  .contact-hero .nav-inner a:last-child {
    border-bottom: 0 !important;
  }
}
