:root {
  --blue: #0e4270;
  --blue-dark: #09233d;
  --gray: #6a7279;
  --text: #151515;
  --muted: #626b76;
  --line: #e1e1e1;
  --soft: #f5f5f5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "proxima-nova", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

select {
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip-link:focus {
  left: 8px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

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

.wrapper {
  width: 1024px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.site-header {
  border-top: 20px solid var(--blue);
  background: #fff;
  position: relative;
}

.header-wrapper {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logoType {
  display: block;
  flex: 0 0 auto;
  width: 358px;
  height: 88px;
  margin: 30px 0;
  background: url("https://www.phillipsnizer.com/siteFiles/D0482438-1685-464C-9232-DB13A3660AC6/logo/100th_annv_logo_web.svg") 0 0 / contain no-repeat;
  text-decoration: none;
}

.logoType span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-right {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 28px;
}

.language-select {
  position: relative;
  min-width: 292px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  border: 1px solid #cdd5de;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(14, 66, 112, .08);
  color: var(--gray);
  font-size: 14px;
  line-height: 1;
}

.language-select > span {
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: 0 13px 0 14px;
  border-right: 1px solid #dfe4e9;
  color: #65707a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.language-trigger {
  flex: 1 1 auto;
  position: relative;
  min-width: 180px;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  padding: 0 46px 0 34px;
  text-align: center;
}

.language-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: translateY(-62%) rotate(45deg);
  transition: transform .18s ease;
}

.language-select.is-open .language-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: calc(100% - 111px);
  min-width: 180px;
  margin: 0;
  padding: 6px;
  border: 1px solid #cdd5de;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(9, 35, 61, .18);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.language-select.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--blue);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.language-option::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  opacity: 0;
  transform: translateY(-60%) rotate(45deg);
}

.language-option.selected::after {
  opacity: 1;
}

.language-option:hover,
.language-option:focus {
  background: #f1f5f9;
  outline: none;
}

.special-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.special-nav li {
  position: relative;
  margin-left: 30px;
  font-family: "proxima-nova-condensed", "proxima-nova", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: .02em;
}

.special-nav a {
  display: inline-block;
  padding: 0 0 5px;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
}

.special-nav a:hover,
.special-nav a:focus {
  color: var(--blue);
}

.special-nav a.active {
  color: var(--blue);
}

.special-nav li:hover > a::after,
.special-nav a:focus::after,
.special-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #858f98;
}

#heroBar {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-wrapper,
.heroContainer {
  min-height: 600px;
}

.heroContainer {
  position: relative;
  display: table;
  width: 100%;
}

.hero-slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-slides li {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity .9s ease-in-out;
  transform: none;
}

.hero-slides li.active {
  opacity: 1;
}

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

  .hero-slides li {
    transition: none;
  }
}

.hero-slides .slide-1 {
  background-image: url("/assets/hero.jpg");
  background-position: center 52%;
}

.hero-slides .slide-2 {
  background-image: url("/assets/hero-slide-1.jpg");
  background-position: center center;
}

.hero-slides .slide-3 {
  background-image: url("/assets/hero-slide-2.jpg");
  background-position: center center;
}

.hero-slides .slide-4 {
  background-image: url("/assets/hero-slide-3.jpg");
  background-position: center center;
}

html.mobile-device .hero-slides .slide-1 {
  background-image: url("/assets/hero-mobile-1.jpg");
  background-position: center center;
}

html.mobile-device .hero-slides .slide-2 {
  background-image: url("/assets/hero-mobile-2.jpg");
  background-position: center center;
}

html.mobile-device .hero-slides .slide-3 {
  background-image: url("/assets/hero-mobile-3.jpg");
  background-position: center center;
}

html.mobile-device .hero-slides .slide-4 {
  background-image: url("/assets/hero-mobile-4.jpg");
  background-position: center center;
}

.hero-slides .hero-slide-managed {
  background-image: var(--desktop-image);
  background-position: var(--desktop-position, center center);
}

html.mobile-device .hero-slides .hero-slide-managed {
  background-image: var(--mobile-image, var(--desktop-image));
  background-position: var(--mobile-position, var(--desktop-position, center center));
}

.backgrounds {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.backgrounds li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  background-image: url("https://www.phillipsnizer.com/siteFiles/D0482438-1685-464C-9232-DB13A3660AC6/homepageImages/video_still.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.backgrounds li.active {
  opacity: 1;
}

.backgrounds .pos-1 {
  background-position: center center;
}

.backgrounds .pos-2 {
  background-position: 58% center;
}

.backgrounds .pos-3 {
  background-position: right center;
}

.backgrounds .pos-4 {
  background-position: 42% center;
}

#heroShadow {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 600px;
  background: rgba(2, 23, 40, .5);
  pointer-events: none;
}

.infoConainer {
  position: relative;
  z-index: 3;
  display: table-cell;
  width: 1024px;
  vertical-align: middle;
  text-align: left;
}

.infoConainer .eyebrow {
  width: 550px;
  margin: 0 0 12px;
  color: #d8e0e8;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.infoConainer h1 {
  width: 550px;
  margin: 0;
  color: #fff;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.infoConainer p {
  width: 550px;
  margin: 20px 0 0;
  color: #fff;
  font-size: 21px;
  line-height: 30px;
  font-weight: 400;
}

.infoConainer p a.more,
.view-all a.more {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.infoConainer p a.more::after,
.view-all a.more::after {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 12px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
}

.lower-section {
  background: #fff;
  padding: 52px 0 44px;
}

.results-section {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 42px 0 38px;
}

.results-wrapper {
  display: flex;
  justify-content: flex-start;
}

.results-copy .subHead {
  margin-bottom: 16px;
}

.results-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 27px;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 760px);
  gap: 18px;
}

.results-stats .results-copy {
  grid-column: 1 / -1;
}

.result-stat {
  border-top: 1px solid var(--line);
  padding: 24px 0 6px;
}

.result-stat strong {
  display: block;
  color: var(--blue);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 44px;
}

.result-stat span {
  display: block;
  margin-top: 8px;
  color: #596572;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lower-section:nth-of-type(odd) {
  background: var(--soft);
}

.subHead {
  position: relative;
  width: 100%;
  margin: 0 auto 30px;
  color: var(--blue);
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: .05em;
  text-align: left;
  text-transform: uppercase;
}

.subHead::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 0 12px 5px 0;
  background: var(--blue);
  vertical-align: middle;
}

.case-list,
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

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

.case-item,
.headline,
.contact-copy,
.contact-details {
  flex: 1 1 0;
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.case-item h2,
.headline h2,
.contact-copy h2,
.contact-details h2 {
  margin: 0 0 10px;
  color: #000;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.case-item p,
.headline p,
.contact-copy p,
.contact-details p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
}

.details-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.details-link::after {
  content: ">";
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
}

.details-link:hover,
.details-link:focus {
  text-decoration: underline;
}

#newsBox {
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

.news-section {
  background: #f7f7f7;
  padding: 58px 0 54px;
}

.news-section .subHead {
  margin-bottom: 32px;
}

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

.news-list .headline {
  flex: none;
  min-height: 280px;
  border-top: 1px solid #ddd;
  padding-top: 28px;
}

.news-list .headline:nth-child(4) {
  grid-column: 1;
}

.news-list .headline:nth-child(5) {
  grid-column: 3;
}

.news-list .headline p {
  display: none;
}

.headline .date {
  display: block;
  margin-bottom: 12px;
  color: #6f7882;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.headline h2 a {
  color: #000;
  text-decoration: none;
}

.headline h2 a:hover,
.headline h2 a:focus {
  color: var(--blue);
  text-decoration: underline;
}

.view-all {
  margin: 46px 0 0;
}

.view-all a.more {
  color: var(--blue);
}

.view-all a.more::after {
  background: var(--blue);
  color: #fff;
}

.contact-section {
  border-top: 1px solid #ececec;
  background: #fff;
}

.contact-copy {
  min-width: 0;
}

.contact-details {
  min-width: 0;
}

.contact-or {
  display: grid;
  min-height: 100%;
  place-items: center;
  position: relative;
}

.contact-or::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #d9dee4;
  transform: translateX(-50%);
}

.contact-or span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d9dee4;
  border-radius: 50%;
  background: #f7f7f7;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-details a:not(.details-link) {
  color: var(--blue);
}

.contact-panel p {
  max-width: 560px;
}

.contact-channel-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 16px;
  min-height: 58px;
  align-items: center;
  gap: 16px;
  border: 1px solid #d8dee6;
  border-left: 0;
  background: #fff;
  padding: 14px 16px;
  color: var(--blue);
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.contact-channel:hover,
.contact-channel:focus {
  border-color: #b6c3d1;
  box-shadow: 0 8px 18px rgba(14, 66, 112, .12);
  outline: none;
  transform: translateY(-1px);
}

.channel-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.channel-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-icon {
  background: #25d366;
}

.telegram-icon {
  background: #229ed9;
}

.email-icon {
  background: var(--blue);
}

.channel-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  align-content: center;
}

.channel-label {
  color: #5e6974;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.channel-value {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.channel-arrow {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  opacity: .72;
  transform: rotate(-45deg);
}

.office-location {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.office-location h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.office-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid #d8dee6;
  background: #f4f6f8;
}

.office-map iframe {
  display: block;
  width: 100%;
  height: 250px;
}

.office-location address {
  margin: 18px 0 0;
  color: var(--blue);
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.contact-form h2,
.contact-form .form-intro,
.contact-form .full,
.contact-form .form-submit,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.contact-form .form-intro {
  margin: -2px 0 4px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.contact-form label span {
  color: #596572;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  outline: none;
  padding: 11px 12px;
}

.contact-form select {
  min-height: 46px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 66, 112, .12);
}

.form-submit {
  justify-self: start;
  min-height: 44px;
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 0 26px;
  text-transform: uppercase;
}

.form-submit:hover,
.form-submit:focus {
  background: var(--blue-dark);
  outline: none;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.form-status {
  margin: 0;
  border-left: 4px solid var(--blue);
  background: #f1f5f9;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  padding: 12px 14px;
}

.article-title-band {
  background: #f7f7f7;
  border-top: 1px solid #ececec;
  padding: 58px 0 48px;
}

.section-kicker {
  position: relative;
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 18px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 0 12px 5px 0;
  background: var(--blue);
  vertical-align: middle;
}

.article-title-band h1 {
  max-width: 760px;
  margin: 0;
  color: #111;
  font-size: 42px;
  font-weight: 300;
  line-height: 50px;
}

.article-date {
  margin: 18px 0 0;
  color: #6f7882;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 690px) 280px;
  gap: 54px;
  padding: 56px 0 70px;
}

.article-body {
  min-width: 0;
}

.article-body p {
  margin: 0 0 24px;
  color: #333;
  font-size: 18px;
  line-height: 31px;
}

.article-body .article-summary {
  color: #1d2e42;
  font-size: 21px;
  line-height: 32px;
}

.article-feature {
  display: block;
  width: 100%;
  max-height: 430px;
  margin: 0 0 34px;
  object-fit: cover;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.article-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-aside {
  border-top: 3px solid var(--blue);
  align-self: start;
  padding-top: 22px;
}

.article-aside h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
}

.article-aside p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 25px;
}

.article-aside .text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-aside .text-link span {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-left: 10px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.article-reference {
  background: #fff;
  padding: 58px 0 72px;
}

.article-reference-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.article-reference-head .subHead {
  width: auto;
  margin-bottom: 50px;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: .16em;
}

.article-tools {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
}

.article-tools a,
.article-tools button {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
}

.article-tools svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.article-reference-body {
  max-width: 1024px;
  margin: 0 auto;
}

.article-reference-body h1 {
  margin: 0 0 12px;
  color: #000;
  font-size: 23px;
  font-weight: 700;
  line-height: 30px;
}

.article-reference-body .article-date {
  margin: 0 0 24px;
}

.article-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: var(--line);
}

.article-reference-body p {
  margin: 0 0 28px;
  color: #69717b;
  font-size: 19px;
  line-height: 32px;
}

.article-reference-body .article-summary {
  color: #626b76;
}

.article-main-image {
  display: block;
  width: min(100%, 500px);
  max-height: 560px;
  margin: 28px auto 34px;
  object-fit: contain;
}

.article-reference .article-gallery {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.article-media {
  max-width: 840px;
  margin: 34px auto 42px;
}

.article-media a {
  color: inherit;
  text-decoration: none;
}

.article-media-frame,
.article-media-card {
  display: grid;
  place-items: center;
  border: 1px solid #dfe3e8;
  background: #f5f6f8;
  box-shadow: 0 10px 26px rgba(20, 40, 65, .06);
  overflow: hidden;
}

.article-media-frame {
  width: 100%;
  min-height: 280px;
  padding: 16px;
}

.article-media-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.article-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-media-card {
  aspect-ratio: 4 / 3;
  padding: 10px;
}

.article-media-card img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.article-media a:hover,
.article-media a:focus {
  border-color: #b7c2cf;
  outline: none;
}

.article-media a:hover img,
.article-media a:focus img {
  transform: scale(1.01);
}

.article-media img {
  transition: transform .18s ease;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(5, 15, 25, .86);
  padding: 28px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  display: block;
  max-width: min(1180px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 42px;
}

.article-related {
  margin-top: 40px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 70px;
}

.article-related-section {
  margin: 28px 0 0;
}

.article-related-section h2 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 20px;
  text-transform: uppercase;
}

.article-related-section h2::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 3px;
  margin: 0 12px 5px 0;
  background: var(--blue);
  vertical-align: middle;
}

.article-related-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-related-section li {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ececec;
  color: var(--blue);
  font-size: 18px;
  line-height: 24px;
}

.article-related-section a {
  color: var(--blue);
  text-decoration: none;
}

.article-related-section a:hover,
.article-related-section a:focus {
  text-decoration: underline;
}

.attorneys-main {
  background: #fff;
}

.attorneys-landing,
.attorney-detail {
  padding: 58px 0 76px;
}

.attorneys-landing .pageTitle,
.attorney-detail .pageTitle {
  margin-bottom: 36px;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: .16em;
}

.attorneys-intro {
  max-width: 980px;
  margin: 0 0 32px;
  color: #626b76;
  font-size: 20px;
  line-height: 32px;
}

.attorneys-intro p {
  margin: 0 0 16px;
}

.attorneys-intro a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.attorneys-intro a:hover,
.attorneys-intro a:focus {
  text-decoration: underline;
}

.attorney-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 42px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.attorney-filters span,
.attorney-filters em {
  color: var(--gray);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 20px;
  text-transform: uppercase;
}

.attorney-filters select {
  min-width: 220px;
  height: 44px;
  border: 1px solid #cdd5de;
  background: #fff;
  color: #333;
  font-family: "proxima-nova", Arial, sans-serif;
  padding: 0 14px;
}

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

.attorney-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  max-width: 760px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.attorney-photo-link {
  display: block;
  background: #f2f4f6;
  overflow: hidden;
}

.attorney-photo-link img,
.attorney-headshot img {
  display: block;
  width: 100%;
  height: auto;
}

.attorney-card-copy h2 {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 400;
  line-height: 32px;
}

.attorney-card-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.attorney-card-copy h2 a:hover,
.attorney-card-copy h2 a:focus,
.attorney-card-copy p a:hover,
.attorney-card-copy p a:focus {
  text-decoration: underline;
}

.attorney-title {
  margin: 0 0 14px;
  color: #5f6872;
  font-size: 18px;
  line-height: 26px;
}

.attorney-card-copy p {
  margin: 0 0 6px;
  color: #5f6872;
  font-size: 17px;
  line-height: 24px;
}

.attorney-card-copy a,
.contact-information a {
  color: var(--blue);
}

.vcard-link,
.attorney-profile-link {
  display: inline-block;
  margin-top: 9px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.vcard-link:hover,
.vcard-link:focus,
.attorney-profile-link:hover,
.attorney-profile-link:focus {
  text-decoration: underline;
}

.attorney-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.back-link {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link::before {
  content: "<";
  margin-right: 8px;
}

.back-link:hover,
.back-link:focus {
  text-decoration: underline;
}

.attorney-detail-grid {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.attorney-sidebar {
  min-width: 0;
}

.attorney-headshot {
  margin: 0 0 30px;
  background: #f2f4f6;
}

.attorney-side-section {
  margin: 0 0 28px;
}

.attorney-side-section h2,
.contact-information h2,
.profile-content h2,
.profile-content h3 {
  position: relative;
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 20px;
  text-transform: uppercase;
}

.attorney-side-section h2::before,
.contact-information h2::before,
.profile-content h2::before,
.profile-content h3::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 3px;
  margin: 0 12px 5px 0;
  background: var(--blue);
  vertical-align: middle;
}

.attorney-side-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.attorney-side-section li {
  padding: 9px 0 10px;
  border-bottom: 1px solid #ececec;
  color: var(--blue);
  font-size: 17px;
  line-height: 24px;
}

.attorney-profile-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.attorney-profile-header h1 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
}

.contact-information {
  color: #5f6872;
  font-size: 17px;
  line-height: 24px;
}

.contact-information p {
  margin: 0 0 7px;
}

.profile-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 22px 0 34px;
  border-bottom: 1px solid var(--line);
}

.profile-tabs a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 24px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-tabs a.active {
  background: var(--blue);
  color: #fff;
}

.profile-tabs a:not(.active):hover,
.profile-tabs a:not(.active):focus {
  background: #f1f5f9;
}

.profile-content {
  color: #5f6872;
}

.profile-content p {
  margin: 0 0 24px;
  font-size: 19px;
  line-height: 32px;
}

.profile-content ul {
  margin: 0 0 30px;
  padding-left: 22px;
}

.profile-content li {
  margin: 0 0 10px;
  color: #5f6872;
  font-size: 18px;
  line-height: 29px;
}

.related-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
}

footer#footer {
  position: relative;
  background: var(--blue);
  color: #fff;
  padding: 48px 0 44px;
  font-size: 14px;
}

.footer-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: start;
}

footer#footer .content {
  max-width: 680px;
  line-height: 20px;
}

footer#footer .copyright {
  display: block;
  margin: 0 0 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
}

footer#footer .smallTxt {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}

#footerNavSocial {
  display: flex;
  min-width: 360px;
  flex-direction: column;
  align-items: flex-end;
}

#footerNavSocial .socialLink {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 42px;
}

#footerNavSocial .socialLink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "proxima-nova", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

#footerNavSocial .socialLink a.linkedIn::before {
  content: "in";
  font-size: 24px;
  letter-spacing: -.03em;
}

#footerNavSocial .socialLink a.twitter::before {
  content: "X";
  font-size: 28px;
  font-weight: 400;
}

#footerNavSocial .socialLink a:hover,
#footerNavSocial .socialLink a:focus,
#footerNav a:hover,
#footerNav a:focus {
  text-decoration: underline;
}

#footerNav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

#footerNav li {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

#footerNav li.sep {
  margin: 0 11px;
}

#footerNav li.sep::after {
  content: "|";
}

#footerNav a {
  color: #fff;
  text-decoration: none;
}

footer#footer a.logo.icxlegal {
  display: block;
  width: 131px;
  height: 25px;
  margin-left: auto;
  background: url("https://www.phillipsnizer.com/siteFiles/467e4f23-a78e-46ba-be20-3f4a7f3eb79f/custom/images/icx_logo_white.png") 0 0 / contain no-repeat;
}

@media (max-width: 980px) {
  .header-wrapper {
    min-height: 142px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }

  .logoType {
    width: min(358px, 78vw);
    height: 88px;
    margin: 0;
  }

  .header-right {
    width: 100%;
    align-items: flex-start;
    gap: 18px;
  }

  .language-select {
    width: min(292px, 100%);
  }

  .special-nav li {
    margin: 0 30px 0 0;
  }

  .case-item,
  .headline,
  .contact-copy,
  .contact-details {
    flex-basis: 100%;
  }

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

  .results-wrapper {
    justify-content: flex-start;
  }

  .news-list .headline {
    min-height: 230px;
  }

  .news-list .headline:nth-child(4),
  .news-list .headline:nth-child(5) {
    grid-column: auto;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-aside {
    max-width: 620px;
  }

  #footerNavSocial {
    min-width: 0;
    align-items: flex-start;
  }

  #footerNavSocial .socialLink,
  #footerNav ul {
    justify-content: flex-start;
  }

  footer#footer a.logo.icxlegal {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-top-width: 12px;
  }

  .header-wrapper {
    min-height: auto;
    align-items: center;
    gap: 16px;
    padding: 20px 0 18px;
    text-align: center;
  }

  .logoType {
    width: min(320px, 90vw);
    height: 80px;
    background-position: center center;
  }

  .header-right {
    min-height: 0;
    align-items: center;
    gap: 14px;
  }

  .language-select {
    width: min(316px, 100%);
    min-width: 0;
    font-size: 16px;
  }

  .language-trigger {
    min-width: 104px;
  }

  .special-nav {
    width: 100%;
  }

  .special-nav ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  .special-nav li {
    margin: 0;
    font-size: 15px;
    line-height: 18px;
  }

  .special-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 4px;
  }

  #heroBar,
  .hero-wrapper,
  .heroContainer,
  #heroShadow {
    min-height: 540px;
  }

  .heroContainer {
    display: flex;
    align-items: center;
  }

  .hero-slides .slide-1 {
    background-position: center center;
  }

  #heroShadow {
    background: linear-gradient(90deg, rgba(2, 23, 40, .74) 0%, rgba(2, 23, 40, .58) 54%, rgba(2, 23, 40, .44) 100%);
  }

  .infoConainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 0 42px;
  }

  .infoConainer .eyebrow,
  .infoConainer h1,
  .infoConainer p {
    width: min(100%, 430px);
  }

  .infoConainer .eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: .075em;
  }

  .infoConainer h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .infoConainer p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 27px;
  }

  .infoConainer p a.more,
  .view-all a.more {
    min-height: 38px;
    font-size: 14px;
    line-height: 18px;
  }

  .lower-section {
    padding: 42px 0 36px;
  }

  .results-section {
    padding: 38px 0 34px;
  }

  .results-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .result-stat strong {
    font-size: 32px;
    line-height: 38px;
  }

  .subHead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 18px;
  }

  .subHead::before {
    width: 42px;
    height: 2px;
    margin: 0 10px 4px 0;
  }

  .case-list {
    gap: 24px;
  }

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

  .contact-or {
    min-height: 46px;
  }

  .contact-or::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
  }

  .case-item,
  .contact-copy,
  .contact-details {
    padding-top: 20px;
  }

  .case-item h2,
  .contact-copy h2,
  .contact-details h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .case-item p,
  .contact-copy p,
  .contact-details p {
    font-size: 15px;
    line-height: 24px;
  }

  .contact-channel {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
  }

  .channel-icon {
    width: 42px;
    height: 42px;
  }

  .channel-icon svg {
    width: 22px;
    height: 22px;
  }

  .channel-value {
    font-size: 17px;
    white-space: normal;
  }

  .channel-arrow {
    display: none;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .form-submit {
    width: 100%;
  }

  .article-title-band {
    padding: 44px 0 38px;
  }

  .article-reference {
    padding: 42px 0 54px;
  }

  .article-reference-head {
    display: block;
  }

  .article-reference-head .subHead {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: .1em;
  }

  .article-tools {
    margin: 0 0 28px;
  }

  .article-reference-body h1 {
    font-size: 22px;
    line-height: 29px;
  }

  .article-reference-body p {
    font-size: 17px;
    line-height: 29px;
  }

  .article-media {
    margin: 28px auto 34px;
  }

  .article-media-frame {
    min-height: 180px;
    padding: 10px;
  }

  .article-media-frame img {
    max-height: 68vh;
  }

  .article-media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-media-card {
    aspect-ratio: auto;
    min-height: 180px;
  }

  .image-lightbox {
    padding: 14px;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-title-band h1 {
    font-size: 34px;
    line-height: 41px;
  }

  .article-layout {
    padding: 42px 0 54px;
  }

  .article-body p {
    font-size: 17px;
    line-height: 29px;
  }

  .article-body .article-summary {
    font-size: 19px;
    line-height: 30px;
  }

  .details-link {
    min-height: 38px;
    padding: 8px 0;
  }

  .news-section {
    padding: 46px 0 40px;
  }

  .news-list {
    gap: 26px;
  }

  .news-list .headline {
    padding-top: 20px;
  }

  .headline .date {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .headline h2 {
    font-size: 22px;
    line-height: 29px;
  }

  .view-all {
    margin-top: 32px;
  }

  footer#footer {
    padding: 40px 0 36px;
  }

  footer#footer .copyright {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 22px;
  }

  footer#footer .smallTxt {
    font-size: 13px;
    line-height: 22px;
  }

  #footerNavSocial .socialLink {
    gap: 20px;
    margin-bottom: 26px;
  }

  #footerNav ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  #footerNav li.sep {
    display: none;
  }

  #footerNav a {
    display: inline-block;
    min-height: 32px;
  }
}

@media (max-width: 620px) {
  .wrapper {
    max-width: calc(100% - 32px);
  }

  .site-header {
    border-top-width: 10px;
  }

  .logoType {
    width: min(300px, 90vw);
    height: 74px;
  }

  .special-nav ul {
    gap: 2px 12px;
  }

  .special-nav li {
    margin: 0;
    font-size: 15px;
  }

  #heroBar,
  .hero-wrapper,
  .heroContainer,
  #heroShadow {
    min-height: 520px;
  }

  .infoConainer {
    padding: 38px 0 36px;
  }

  .infoConainer h1 {
    font-size: 34px;
    line-height: 39px;
  }

  .infoConainer p {
    font-size: 17px;
    line-height: 26px;
  }

  .lower-section {
    padding: 44px 0 38px;
  }

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

  .results-stats {
    grid-template-columns: 1fr;
  }

  .news-list .headline {
    min-height: auto;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 390px) {
  .logoType {
    width: min(280px, 90vw);
    height: 70px;
  }

  .language-select {
    width: min(296px, 100%);
  }

  .special-nav li {
    font-size: 14px;
  }

  #heroBar,
  .hero-wrapper,
  .heroContainer,
  #heroShadow {
    min-height: 500px;
  }

  .infoConainer .eyebrow {
    font-size: 12px;
    line-height: 17px;
  }

  .infoConainer h1 {
    font-size: 31px;
    line-height: 36px;
  }

  .infoConainer p {
    font-size: 16px;
    line-height: 24px;
  }

  .case-item h2,
  .contact-copy h2,
  .contact-details h2,
  .headline h2 {
    font-size: 21px;
    line-height: 28px;
  }
}

.mobile-nav-toggle {
  display: none;
}

html.mobile-device body {
  min-width: 0;
}

html.mobile-device body.nav-open {
  overflow: hidden;
}

html.mobile-device .wrapper {
  width: auto;
  max-width: none;
  margin: 0;
  padding-right: 14px;
  padding-left: 14px;
}

html.mobile-device .site-header {
  z-index: 1200;
  border-top: 0;
  background: #fff;
}

html.mobile-device .header-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px 46px;
  column-gap: 7px;
  min-height: 84px;
  align-items: center;
  justify-content: stretch;
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
}

html.mobile-device .logoType {
  grid-column: 1;
  width: 100%;
  max-width: 158px;
  height: 48px;
  margin: 0;
  background-position: left center;
}

html.mobile-device .header-right {
  grid-column: 2;
  position: static;
  display: flex;
  min-height: 0;
  width: 112px;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  transform: none;
}

html.mobile-device .language-select {
  z-index: 1203;
  display: inline-flex;
  width: 112px;
  min-width: 0;
  height: 38px;
  border-color: #cfd7df;
  box-shadow: none;
  font-size: 14px;
}

html.mobile-device .language-select > span {
  display: none;
}

html.mobile-device .language-trigger {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 30px 0 12px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

html.mobile-device .language-trigger::after {
  right: 12px;
  width: 7px;
  height: 7px;
  border-width: 2px;
}

html.mobile-device .language-menu {
  top: calc(100% + 6px);
  right: 0;
  width: 100%;
  min-width: 112px;
  padding: 5px;
}

html.mobile-device .language-option {
  min-height: 38px;
  font-size: 14px;
}

html.mobile-device .mobile-nav-toggle {
  grid-column: 3;
  position: relative;
  top: auto;
  right: auto;
  z-index: 1202;
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transform: none;
}

html.mobile-device .mobile-nav-toggle span {
  position: absolute;
  width: 37px;
  height: 4px;
  background: #101010;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

html.mobile-device .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(-12px);
}

html.mobile-device .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(12px);
}

html.mobile-device .mobile-nav-toggle.is-open {
  position: fixed;
  top: 19px;
  right: 14px;
  transform: none;
}

html.mobile-device .mobile-nav-toggle.is-open span {
  background: #fff;
}

html.mobile-device .mobile-nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

html.mobile-device .mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

html.mobile-device .mobile-nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

html.mobile-device .special-nav {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--blue);
  opacity: 0;
  padding: 92px 24px 48px;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

html.mobile-device body.nav-open .special-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

html.mobile-device .special-nav ul {
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

html.mobile-device .special-nav li {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: .02em;
  text-align: center;
}

html.mobile-device .special-nav a {
  min-height: 42px;
  color: #fff;
  padding: 0;
}

html.mobile-device .special-nav li:hover > a::after,
html.mobile-device .special-nav a:focus::after {
  display: none;
}

html.mobile-device #heroBar,
html.mobile-device .hero-wrapper,
html.mobile-device .heroContainer,
html.mobile-device #heroShadow {
  min-height: 520px;
}

html.mobile-device .heroContainer {
  display: flex;
  align-items: center;
}

html.mobile-device #heroShadow {
  background: linear-gradient(90deg, rgba(2, 23, 40, .74) 0%, rgba(2, 23, 40, .58) 56%, rgba(2, 23, 40, .38) 100%);
}

html.mobile-device .hero-slides .slide-1 {
  background-position: center center;
}

html.mobile-device .infoConainer {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: 38px;
  padding-bottom: 38px;
}

html.mobile-device .infoConainer .eyebrow,
html.mobile-device .infoConainer h1,
html.mobile-device .infoConainer p {
  width: min(100%, 440px);
}

html.mobile-device .infoConainer .eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 18px;
}

html.mobile-device .infoConainer h1 {
  font-size: 38px;
  line-height: 44px;
}

html.mobile-device .infoConainer p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 27px;
}

html.mobile-device .results-section {
  padding: 38px 0 34px;
}

html.mobile-device .results-stats,
html.mobile-device .news-list,
html.mobile-device .contact-grid,
html.mobile-device .footer-wrapper,
html.mobile-device .article-related-grid {
  grid-template-columns: 1fr;
}

html.mobile-device .attorneys-landing,
html.mobile-device .attorney-detail {
  padding: 42px 0 54px;
}

html.mobile-device .attorneys-landing .pageTitle,
html.mobile-device .attorney-detail .pageTitle {
  margin-bottom: 22px;
  font-size: 22px;
  line-height: 28px;
}

html.mobile-device .attorneys-intro {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 28px;
}

html.mobile-device .attorney-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 30px;
  padding: 18px 0;
}

html.mobile-device .attorney-filters select {
  width: 100%;
  min-width: 0;
}

html.mobile-device .attorney-card {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  max-width: none;
}

html.mobile-device .attorney-card-copy h2 {
  font-size: 22px;
  line-height: 28px;
}

html.mobile-device .attorney-card-copy p,
html.mobile-device .attorney-title {
  font-size: 16px;
  line-height: 23px;
}

html.mobile-device .attorney-detail-head {
  display: block;
}

html.mobile-device .attorney-detail-head .article-tools {
  margin: 0 0 24px;
}

html.mobile-device .attorney-detail-grid,
html.mobile-device .attorney-profile-header {
  grid-template-columns: 1fr;
  gap: 26px;
}

html.mobile-device .attorney-profile {
  order: -1;
}

html.mobile-device .attorney-headshot {
  width: min(220px, 72vw);
  margin-bottom: 24px;
}

html.mobile-device .attorney-side-section li {
  font-size: 16px;
  line-height: 23px;
}

html.mobile-device .attorney-profile-header {
  padding-bottom: 22px;
}

html.mobile-device .attorney-profile-header h1 {
  font-size: 32px;
  line-height: 38px;
}

html.mobile-device .profile-tabs {
  flex-direction: column;
  align-items: stretch;
  margin: 20px 0 28px;
}

html.mobile-device .profile-tabs a {
  justify-content: center;
  padding: 0 14px;
}

html.mobile-device .profile-content p,
html.mobile-device .profile-content li {
  font-size: 17px;
  line-height: 29px;
}

html.mobile-device .results-stats {
  width: 100%;
  gap: 16px;
}

html.mobile-device .result-stat {
  padding-top: 20px;
}

html.mobile-device .result-stat strong {
  font-size: 33px;
  line-height: 39px;
}

html.mobile-device .lower-section,
html.mobile-device .news-section {
  padding: 42px 0 38px;
}

html.mobile-device .subHead {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 18px;
}

html.mobile-device .subHead::before {
  width: 42px;
  height: 2px;
  margin: 0 10px 4px 0;
}

html.mobile-device .news-list {
  gap: 26px;
}

html.mobile-device .news-list .headline {
  min-height: auto;
  padding-top: 22px;
}

html.mobile-device .news-list .headline:nth-child(4),
html.mobile-device .news-list .headline:nth-child(5) {
  grid-column: auto;
}

html.mobile-device .headline h2,
html.mobile-device .case-item h2,
html.mobile-device .contact-copy h2,
html.mobile-device .contact-details h2 {
  font-size: 22px;
  line-height: 29px;
}

html.mobile-device .contact-grid {
  gap: 22px;
}

html.mobile-device .contact-or {
  min-height: 46px;
}

html.mobile-device .contact-or::before {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

html.mobile-device .contact-channel {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 14px;
}

html.mobile-device .channel-icon {
  width: 42px;
  height: 42px;
}

html.mobile-device .channel-arrow {
  display: none;
}

html.mobile-device .office-location {
  margin-top: 24px;
  padding-top: 22px;
}

html.mobile-device .office-location h3 {
  font-size: 22px;
  line-height: 28px;
}

html.mobile-device .office-map iframe {
  height: 230px;
}

html.mobile-device .office-location address {
  font-size: 18px;
  line-height: 27px;
}

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

html.mobile-device .form-submit {
  width: 100%;
}

html.mobile-device .article-reference {
  padding: 42px 0 54px;
}

html.mobile-device .article-reference-head {
  display: block;
}

html.mobile-device .article-reference-head .subHead {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 28px;
}

html.mobile-device .article-tools {
  margin: 0 0 28px;
}

html.mobile-device .article-reference-body h1 {
  font-size: 22px;
  line-height: 29px;
}

html.mobile-device .article-reference-body p {
  font-size: 17px;
  line-height: 29px;
}

html.mobile-device .article-media-frame {
  min-height: 180px;
  padding: 10px;
}

html.mobile-device .article-media-grid,
html.mobile-device .article-gallery {
  grid-template-columns: 1fr;
}

html.mobile-device footer#footer {
  padding: 40px 0 36px;
}

html.mobile-device #footerNavSocial {
  min-width: 0;
  align-items: flex-start;
}

html.mobile-device #footerNavSocial .socialLink,
html.mobile-device #footerNav ul {
  justify-content: flex-start;
}

html.mobile-device #footerNav ul {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

html.mobile-device #footerNav li.sep {
  display: none;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .logoType {
  background-position: right center;
}

html[dir="rtl"] .header-right,
html[dir="rtl"] .special-nav ul,
html[dir="rtl"] #footerNavSocial,
html[dir="rtl"] #footerNav ul {
  direction: rtl;
}

html[dir="rtl"] .infoConainer,
html[dir="rtl"] .results-stats,
html[dir="rtl"] .news-section,
html[dir="rtl"] .contact-section,
html[dir="rtl"] .attorneys-main,
html[dir="rtl"] .article-reference {
  text-align: right;
}

html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-channel,
html[dir="rtl"] .attorney-card,
html[dir="rtl"] .attorney-detail-grid,
html[dir="rtl"] .attorney-profile-header {
  direction: rtl;
}

html[dir="rtl"] .article-tools,
html[dir="rtl"] .socialLink {
  direction: ltr;
}

/* fit-fill hero sizing */
#heroBar,
.hero-wrapper,
.heroContainer,
#heroShadow {
  height: clamp(560px, 31.25vw, 700px);
  min-height: 0;
}

html.mobile-device #heroBar,
html.mobile-device .hero-wrapper,
html.mobile-device .heroContainer,
html.mobile-device #heroShadow {
  height: clamp(500px, 133.333vw, 640px);
  min-height: 0;
}

@media (max-width: 760px) {
  #heroBar,
  .hero-wrapper,
  .heroContainer,
  #heroShadow {
    height: clamp(500px, 133.333vw, 640px);
    min-height: 0;
  }
}

