:root {
  --brand-blue: #224488;
  --brand-navy: #111c31;
  --brand-navy-soft: #192c53;
  --paper: #ffffff;
  --muted-paper: #fbfbfb;
  --grey-panel: #e8e8e9;
  --border: #c2c2c2;
  --footer-bg: #0e192f;
  --footer-bottom: #080f1d;
  --footer-bottom-text: #82acff;
  --section-space: 3rem;
  --page-width: 1240px;
  --page-gutter: 30px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: #fff url("/images/bg-img.jpg");
  color: #11142d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

header,
section,
footer,
article {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#main {
  position: relative;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.container,
.container-fluid {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.container {
  max-width: 1180px;
}

.container-fluid {
  max-width: none;
}

.section-space,
.sc-padding-small {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.sc-padding-large {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.bg-blue {
  background-color: var(--brand-navy);
}

.bg-grey {
  background-color: var(--muted-paper);
}

.bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.text-blue {
  color: var(--brand-blue);
}

.box-round {
  border-radius: 15px;
}

.white-overlay {
  position: relative;
}

.white-overlay::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #fff;
  opacity: 0.9;
}

.triangle-down,
.triangle-up {
  position: relative;
}

.triangle-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 30px);
  z-index: 2;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
}

.triangle-up::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  z-index: 2;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #fff;
}

.main-title {
  margin: 0;
  color: #fff;
  font-size: 2.313rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.7px;
  word-break: break-word;
}

.h1-border {
  position: relative;
  padding-bottom: 10px;
}

.h1-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  border-bottom: 1px solid currentColor;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.siteheader {
  position: relative;
  z-index: 40;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background-color: #fff;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.siteheader.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background-color: #fff;
  box-shadow: 0 14px 32px rgba(17, 28, 49, 0.12);
  animation: slide-down 0.5s;
}

.siteheader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.siteheader--logo {
  flex: 0 0 auto;
}

.siteheader--logo img {
  display: inline-block;
  width: 264px;
  max-width: 100%;
  transition: width 0.2s ease;
}

.siteheader.fixed-top .siteheader--logo img {
  width: 160px;
}

.siteheader-menu,
.header--momenu,
.social-icons,
.practice-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteheader-menu {
  display: flex;
  align-items: center;
}

.siteheader-menu li {
  position: relative;
}

.siteheader-menu li:not(:first-child) {
  margin-left: 3.125rem;
}

.siteheader-menu a,
.header--momenu a {
  display: block;
  color: var(--brand-blue);
  font-size: 15px;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.siteheader-menu a[aria-current="page"],
.header--momenu a[aria-current="page"] {
  font-weight: 900;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons img {
  width: 26px;
  height: 26px;
}

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

.menu-toggle__icon {
  display: grid;
  gap: 5px;
}

.menu-toggle__bar {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.menu-toggle__icon--close {
  position: relative;
  width: 30px;
  height: 30px;
  gap: 0;
}

.menu-toggle__icon--close .menu-toggle__bar {
  position: absolute;
  top: 13px;
  left: 0;
}

.menu-toggle__icon--close .menu-toggle__bar:first-child {
  transform: rotate(45deg);
}

.menu-toggle__icon--close .menu-toggle__bar:last-child {
  transform: rotate(-45deg);
}

.menu--open,
#mobilemenu {
  display: none;
}

#mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.mobilemenu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 15, 29, 0.45);
  cursor: pointer;
}

.mobilemenu__panel {
  position: relative;
  width: min(320px, calc(100vw - 3rem));
  height: 100%;
  background: #fff;
  box-shadow: 18px 0 48px rgba(8, 15, 29, 0.28);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

#mobilemenu[data-open="true"] .mobilemenu__panel {
  transform: translateX(0);
}

.mobilemenu__inner {
  display: grid;
  align-content: start;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mobilemenu__close {
  margin-left: auto;
}

.header--momenu {
  display: grid;
  gap: 0.75rem;
}

.awards-strip {
  position: relative;
  background: #fff;
  padding-top: 1.5rem;
  overflow: visible;
}

.awards-strip .container {
  position: relative;
}

.awards-strip__desktop {
  position: relative;
  display: block;
  padding-bottom: 0;
  overflow: visible;
}

.awards-strip__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.award-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.award-trigger[data-active="true"] {
  opacity: 1;
  transform: translateY(-2px);
}

.award-trigger img {
  max-height: 72px;
  width: auto;
  margin: 0 auto;
}

.awards-strip__text {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0;
  min-height: 0;
  margin-top: 0;
  overflow: visible;
  pointer-events: none;
}

.award-text {
  position: absolute;
  top: 8px;
  left: var(--award-left, 50%);
  z-index: 10;
  width: min(300px, calc(100vw - 2rem));
  padding: 10px;
  background-color: #121c2d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

.award-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 10px);
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
  border-left: 10px solid transparent;
}

.awards-strip__mobile {
  display: none;
  position: relative;
  padding: 1rem 1.5rem 1.5rem;
}

.awards-mobile__viewport {
  overflow: hidden;
}

.award-mobile-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.award-mobile-card__image {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-mobile-card__image img {
  max-height: 72px;
  width: auto;
}

.award-mobile-card__copy {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--brand-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.awards-mobile__nav {
  position: absolute;
  top: calc(50% + 1rem);
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-navy);
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}

.awards-mobile__nav--prev {
  left: 0;
}

.awards-mobile__nav--next {
  right: 0;
}

.hero-slider {
  position: relative;
}

.hero-slider__viewport {
  position: relative;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  transition: transform 0.42s ease;
}

.hero-slide,
.hero-box {
  min-height: 450px;
}

.hero-slide {
  flex: 0 0 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.hero-box {
  display: flex;
  align-items: end;
}

.hero-slider__nav {
  position: absolute;
  top: calc(50% - 40px);
  z-index: 3;
  width: 40px;
  height: 80px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(17, 28, 49, 0.35);
  cursor: pointer;
}

.hero-slider__nav span {
  display: block;
  font-weight: 300;
  line-height: 0.7;
}

.hero-slider__nav--prev {
  left: 15px;
}

.hero-slider__nav--next {
  right: 15px;
}

.home-about {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fff;
}

.home-about__title {
  margin-bottom: 2rem;
}

.home-about__title .main-title {
  color: var(--brand-blue);
}

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-row:last-child {
  margin-bottom: 0;
}

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

.about-row__copy {
  color: var(--brand-blue);
}

.about-row__copy p {
  margin: 0 0 1rem;
}

.about-row__copy p:last-child {
  margin-bottom: 0;
}

.attorneys-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #fff;
  background-color: var(--brand-navy);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.attorneys-section .main-title {
  margin-bottom: 3rem;
}

.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 2.5rem;
}

.lawyer-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.lawyer-card__image {
  width: min(250px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 5px solid #111f3c;
  border-radius: 50%;
  object-fit: cover;
}

.lawyer-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.lawyer-card__meta {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.7;
}

.lawyer-card__meta p {
  margin: 0;
}

.lawyer-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.6em 2.5em;
  border: 1px solid #fff;
  background: #fff;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lawyer-card__link:hover,
.lawyer-card__link:focus-visible {
  background: transparent;
  color: #fff;
}

.practice-section {
  padding-top: 3rem;
  background: #fff;
}

.practice-section__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.practice-section__title .main-title {
  color: var(--brand-blue);
}

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

.practice-tabs li {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.practice-tabs li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -2px;
  width: 1px;
  height: 15px;
  background-color: var(--brand-blue);
}

.practice-tabs li.active .practice-tab,
.practice-tab[data-active="true"] {
  font-weight: 800;
}

.practice-tab {
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.practice-dropdown {
  position: relative;
  display: none;
}

.practice-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0;
  border: 1px solid var(--brand-navy-soft);
  background: #fff;
  color: var(--brand-navy-soft);
  cursor: pointer;
}

.drop-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.drop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.35rem;
}

.practice-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: 100%;
  border: 1px solid var(--brand-navy-soft);
  background: #fff;
}

.practice-dropdown__item {
  width: 100%;
  border: 0;
  border-top: 1px solid #dbe3f5;
  background: #fff;
  color: var(--brand-blue);
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.44px;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.practice-dropdown__item:first-child {
  border-top: 0;
}

.practice-dropdown__item[data-active="true"] {
  background: #eef3ff;
}

.practice-panels {
  margin-top: 1rem;
  background-color: var(--brand-navy-soft);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.practice-panel {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  break-inside: avoid;
}

.practice-panel .main-title {
  margin-bottom: 1rem;
  font-size: 1.688rem;
}

.practice-panel p {
  margin: 0;
}

.sitefooter {
  padding-top: 1.563rem;
  padding-bottom: 1.5rem;
  background: var(--footer-bg);
  color: #fff;
  line-height: 1.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr);
  gap: 2.5rem;
  align-items: start;
}

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

.footer-copy {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.8;
}

.footer-copy p {
  margin: 0;
}

.footer-copy h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form__honeypot,
.contact-form__honeypot[hidden] {
  display: none !important;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

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

.form-grid__group {
  display: grid;
  gap: 1rem;
}

.form-grid__group--message {
  align-content: stretch;
}

.form-control {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 0 1rem;
  background: #fff;
  color: #11142d;
  font-style: italic;
}

.form-control::placeholder {
  color: rgba(17, 20, 45, 0.72);
}

.form-control--invalid {
  outline: 2px solid rgba(255, 216, 216, 0.75);
}

.f_message {
  min-height: 192px;
  padding-top: 1rem;
  resize: vertical;
}

.footer-form .f_message {
  min-height: 196px;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.form-actions--stack {
  grid-template-columns: minmax(0, 1fr);
}

.disclaimer-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #fff;
}

.disclaimer-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #fff;
}

.disclaimer-check span {
  font-size: 14px;
  font-weight: 600;
}

.disclaimer-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  height: 56px;
  padding: 0;
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: #fff;
  color: var(--brand-blue);
}

.submit-btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.form-alerts {
  min-height: 1rem;
  margin-top: 0.75rem;
}

.form-alerts:first-of-type {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.error-msg,
.success-msg {
  min-height: 1rem;
  font-size: 0.9rem;
}

.error-msg:not([hidden]) {
  color: #ffe6e6;
}

.success-msg:not([hidden]) {
  color: #d8ffd8;
}

.footer-bottom-bar {
  padding-top: 2.188rem;
  padding-bottom: 1.688rem;
  background-color: var(--footer-bottom);
  color: var(--footer-bottom-text);
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.about-page__hero,
.about-page__white {
  position: relative;
  background-position: center;
  background-size: cover;
}

.about-page__hero .container,
.about-page__white .container {
  position: relative;
}

.about-page__hero {
  color: #fff;
}

.about-page__hero .main-title {
  margin-bottom: 1.25rem;
}

.about-page__copy {
  max-width: none;
}

.about-page__copy p {
  margin: 0 0 1rem;
}

.about-page__copy p:last-child {
  margin-bottom: 0;
}

.about-page__copy--blue {
  color: var(--brand-blue);
}

.about-page__plane {
  background: #fff;
}

.about-page__plane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-page__plane-copy {
  color: var(--brand-blue);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}

.about-page__plane-copy p {
  margin: 0;
}

.about-page__plane-image img {
  border-radius: 15px;
}

.testimonials-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--muted-paper);
}

.testimonials-page__title {
  margin-bottom: 2rem;
}

.testimonials-page__title .main-title {
  color: var(--brand-blue);
  letter-spacing: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
  align-items: start;
}

.testimonial-item:nth-child(2n) {
  margin-top: 2rem;
}

.testimonial-card {
  position: relative;
  display: block;
  margin: 0;
  padding: 15px;
  border: 0;
  border-radius: 10px;
  break-inside: avoid;
}

.testimonial-card--dark .testimonial-card__body {
  color: #fff;
}

.testimonial-card--light .testimonial-card__body {
  color: var(--brand-blue);
}

.testimonial-card__body {
  line-height: 1.7;
  letter-spacing: 0.16px;
}

.testimonial-card__body p {
  margin: 0 0 1rem;
}

.testimonial-card__body p:last-child {
  margin-bottom: 0;
}

.testimonial-card__author {
  margin-top: 0.65rem;
  padding-right: 0.75rem;
  color: var(--brand-blue);
  font-weight: 800;
  letter-spacing: 0.16px;
  text-align: right;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: calc(100% - 100px);
  border-top: 14px solid var(--grey-panel);
  border-right: 10px solid transparent;
  border-left: 22px solid transparent;
}

.testimonial-card--dark::after {
  border-top-color: var(--brand-blue);
}

.testimonial-card--light::after {
  border-top-color: var(--grey-panel);
}

.links-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--muted-paper);
}

.link-row {
  display: grid;
  grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
}

.link-row__image {
  display: flex;
  justify-content: center;
}

.link-row__copy {
  color: var(--brand-blue);
}

.link-row__copy h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.link-row__copy p {
  margin: 0;
}

.contact-page {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background: var(--brand-navy);
  color: #fff;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr);
  grid-template-areas: "details media";
  gap: 2rem;
  align-items: start;
}

.contact-page__details {
  grid-area: details;
}

.contact-page__media {
  grid-area: media;
  display: grid;
  gap: 1rem;
}

.contact-page__map iframe {
  width: 100%;
  min-height: 27rem;
  border: 0;
  border-radius: 15px;
}

.contact-page__image img {
  width: 100%;
  border-radius: 15px;
}

.contact-page__details .main-title {
  margin-bottom: 1rem;
}

.contact-page__form {
  margin-top: 2rem;
}

.form-actions--stack .submit-btn {
  order: 0;
}

.form-actions--stack .disclaimer-check {
  justify-content: flex-start;
}

.lawyer-profile {
  padding-top: 3rem;
  padding-bottom: 0;
  background: var(--brand-navy);
  color: #fff;
}

.lawyer-profile__title {
  margin-bottom: 2rem;
}

.lawyer-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.lawyer-profile__content {
  line-height: 1.8;
}

.lawyer-profile__meta {
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.lawyer-profile__meta p {
  margin: 0 0 0.25rem;
}

.lawyer-profile__bio p {
  margin: 0 0 1rem;
}

.lawyer-profile__image img {
  width: 100%;
  border-radius: 15px;
}

.lawyer-profile__back {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.75rem;
}

.lawyer-related {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--brand-navy);
  color: #fff;
}

.lawyer-related__grid {
  margin-top: 0;
}

.disclaimer-container {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 15, 29, 0.52);
  backdrop-filter: blur(5px);
}

.disclaimer-modal {
  width: min(50rem, 100%);
  max-height: min(44rem, 100%);
  overflow: auto;
  padding: 2rem;
  background: #fff;
  color: #11142d;
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.disclaimer-modal h2 {
  margin: 0 0 1.25rem;
  font-size: 2rem;
}

.disclaimer-modal p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.disclaimer-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.disclaimer-modal__actions button {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--brand-blue);
  background: transparent;
  color: var(--brand-blue);
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.disclaimer-modal__actions .accept {
  background: var(--brand-blue);
  color: #fff;
}

@media (min-width: 768px) {
  #main {
    width: 90%;
  }

  .about-row__copy {
    order: 0;
  }

  .about-row__image {
    order: 1;
  }
}

@media (max-width: 991px) {
  .siteheader-menu,
  .social-icons {
    display: none;
  }

  .menu--open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #mobilemenu {
    display: block;
  }

  .awards-strip__desktop {
    display: none;
  }

  .awards-strip__mobile {
    display: block;
  }

  .about-row,
  .about-page__plane-grid,
  .contact-page__grid,
  .lawyer-profile__layout,
  .link-row,
  .footer-grid,
  .form-grid,
  .lawyer-card__inner {
    grid-template-columns: 1fr;
  }

  .contact-page__grid {
    grid-template-areas:
      "media"
      "details";
  }

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

  .lawyer-card__title,
  .lawyer-card__meta,
  .lawyer-card__link {
    text-align: center;
  }

  .lawyer-card__link {
    margin-left: auto;
    margin-right: auto;
  }

  .lawyer-profile__back {
    justify-content: flex-start;
  }

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

  .testimonial-item:nth-child(2n) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .practice-tabs {
    display: none;
  }

  .practice-dropdown {
    display: block;
  }

  .practice-panel {
    text-align: center;
  }

  .siteheader.fixed-top {
    left: 0 !important;
    width: 100% !important;
  }

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

  .footer-grid__heading {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  #main {
    padding-left: 0;
    padding-right: 0;
  }

  .container,
  .container-fluid {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .main-title {
    font-size: 1.7rem;
  }

  .hero-slide,
  .hero-box {
    min-height: 400px;
  }

  .hero-slider__nav {
    width: 34px;
    height: 68px;
    font-size: 3.6rem;
  }

  .lawyer-card__image {
    width: min(175px, 100%);
  }

  .contact-page {
    padding-top: 0;
  }

  .contact-page__map iframe,
  .contact-page__image img {
    border-radius: 0;
  }

  .contact-page__details {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .form-control {
    height: 50px;
    font-size: 14px;
  }

  .f_message {
    min-height: 160px;
  }

  .submit-btn {
    font-size: 1.35rem;
  }

  .disclaimer-modal {
    padding: 1.5rem;
  }

  .disclaimer-modal__actions {
    flex-direction: column;
  }
}
