/*
Theme Name: ASA Modern
Theme URI: https://asalawyers.com/
Author: ASA Lawyers
Description: A bespoke editorial WordPress theme for ASA Lawyers.
Version: 1.1.0
Text Domain: asa-modern
*/

:root {
  --asa-blue: #2863aa;
  --asa-blue-deep: #0d2e55;
  --asa-red: #fc0204;
  --asa-black: #101820;
  --asa-black-deep: #080d12;
  --asa-ink: #17212b;
  --asa-muted: #64707b;
  --asa-paper: #f4f4f1;
  --asa-line: #d7dadd;
  --asa-white: #fff;
  --asa-serif: "Cormorant Garamond", Georgia, serif;
  --asa-sans: "Inter", Arial, sans-serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--asa-white);
  color: var(--asa-ink);
  font-family: var(--asa-sans);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.asa-menu-open {
  overflow: hidden;
}

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

a {
  color: var(--asa-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--asa-blue-deep);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(40, 99, 170, 0.42);
  outline-offset: 3px;
}

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

.asa-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  clip: auto;
  background: #fff;
  color: #000;
}

/* Header */
.asa-site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 112px;
  color: #fff;
}

.asa-site-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
  content: "";
  pointer-events: none;
}

.asa-header-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 clamp(24px, 4vw, 68px);
  align-items: center;
  justify-content: flex-end;
}

.asa-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
  transform: translate(-50%, -50%);
  align-items: center;
}

.asa-brand-mark {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
}

.asa-brand-asa,
.asa-brand-lawyers {
  font-family: var(--asa-sans);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
}

.asa-brand-asa {
  padding-right: 9px;
  color: #71a9eb;
}

.asa-brand-lawyers {
  padding-left: 10px;
  border-left: 3px solid var(--asa-red);
  color: #fff;
  text-shadow: 0 1px 4px #000, 0 0 10px rgba(0, 0, 0, 0.82);
}

.asa-brand-rule {
  height: 3px;
  margin-top: 7px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.92);
  grid-column: 1 / -1;
}

.asa-brand-subtitle {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--asa-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px #000;
  text-align: right;
  grid-column: 1 / -1;
}

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

.asa-search-trigger,
.asa-menu-trigger,
.asa-menu-close {
  display: inline-flex;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.asa-search-trigger {
  width: 38px;
  height: 38px;
}

.asa-search-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.asa-search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 9px;
  border-top: 1.5px solid currentColor;
  content: "";
  transform: rotate(48deg);
}

.asa-menu-trigger {
  width: 58px;
  height: 58px;
  flex-direction: column;
  gap: 8px;
}

.asa-menu-trigger span {
  display: block;
  width: 34px;
  border-top: 3px solid var(--asa-blue);
}

.asa-menu-trigger span:last-child {
  border-color: var(--asa-red);
}

.asa-menu-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Full-screen menu */
.asa-menu-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  visibility: hidden;
  overflow-y: auto;
  background: var(--asa-blue-deep);
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 360ms;
}

.asa-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.asa-menu-top {
  display: flex;
  min-height: 112px;
  padding: 0 clamp(24px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  align-items: center;
  justify-content: space-between;
}

.asa-menu-wordmark {
  color: #fff;
  font-family: var(--asa-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.asa-menu-close {
  position: relative;
  width: 54px;
  height: 54px;
}

.asa-menu-close::before,
.asa-menu-close::after {
  position: absolute;
  width: 36px;
  border-top: 2px solid #fff;
  content: "";
}

.asa-menu-close::before {
  transform: rotate(45deg);
}

.asa-menu-close::after {
  transform: rotate(-45deg);
}

.asa-menu-layout {
  display: grid;
  min-height: calc(100vh - 112px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.asa-primary-nav {
  padding: clamp(50px, 7vw, 104px) clamp(32px, 8vw, 140px);
}

.asa-primary-nav ul,
.asa-language-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.asa-primary-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.asa-primary-nav a {
  display: flex;
  padding: 20px 0;
  color: #fff;
  font-family: var(--asa-serif);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 1.05;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
  align-items: center;
  justify-content: space-between;
}

.asa-primary-nav a::after {
  color: var(--asa-red);
  font-family: var(--asa-sans);
  font-size: 25px;
  content: "→";
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  transform: translateX(-12px);
}

.asa-primary-nav a:hover,
.asa-primary-nav a:focus {
  padding-left: 14px;
  color: #8dbdf3;
}

.asa-primary-nav a:hover::after,
.asa-primary-nav a:focus::after {
  opacity: 1;
  transform: translateX(0);
}

.asa-menu-aside {
  padding: clamp(54px, 7vw, 104px) clamp(30px, 5vw, 78px);
  background: rgba(0, 0, 0, 0.18);
}

.asa-menu-heading {
  margin: 0 0 24px;
  color: #8dbdf3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asa-language-list {
  margin-bottom: 64px;
}

.asa-language-list a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-family: var(--asa-serif);
  font-size: 27px;
  text-decoration: none;
}

.asa-overlay-search {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.asa-overlay-search input {
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 17px;
}

.asa-overlay-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.asa-overlay-search button {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

/* Homepage */
.asa-home-main {
  background: var(--asa-black);
}

.asa-home-rendered {
  display: grid;
  background: var(--asa-black);
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
}

.asa-home-rendered::before {
  min-height: max(860px, 100vh);
  background: url("https://asalawyers.com/wp-content/uploads/2016/08/slide1.jpg") center / cover no-repeat;
  content: "";
  grid-column: 1;
  grid-row: 1;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
  animation: asa-home-images 27s ease-in-out infinite;
}

@keyframes asa-home-images {
  0%,
  29% {
    background-image: url("https://asalawyers.com/wp-content/uploads/2016/08/slide1.jpg");
  }

  34%,
  62% {
    background-image: url("https://asalawyers.com/wp-content/uploads/2016/08/slide3.jpg");
  }

  67%,
  95% {
    background-image: url("https://asalawyers.com/wp-content/uploads/2016/08/slide2.jpg");
  }
}

.asa-home-rendered > .vc_row {
  width: 100% !important;
  margin: 0 !important;
}

.asa-home-rendered > .vc_row:first-child {
  display: none !important;
}

.asa-home-rendered > .vc_row:nth-child(2) {
  display: flex;
  min-height: max(860px, 100vh);
  padding: 156px clamp(42px, 6vw, 96px) 80px !important;
  background: var(--asa-black) !important;
  color: #fff;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
}

.asa-home-rendered > .vc_row:nth-child(2) > .inner-flex {
  width: 100%;
}

.asa-home-rendered .vc_column-inner,
.asa-home-rendered .wpb_column {
  width: 100%;
  padding: 0 !important;
}

.asa-home-rendered > .vc_row:nth-child(2) h1 {
  max-width: 680px;
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--asa-serif);
  font-size: clamp(56px, 5vw, 82px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.asa-home-rendered > .vc_row:nth-child(2) h1::after {
  display: block;
  width: 76px;
  margin-top: 30px;
  border-top: 5px solid var(--asa-red);
  content: "";
}

.asa-home-rendered > .vc_row:nth-child(2) p {
  max-width: 690px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.asa-home-rendered > .vc_row:nth-child(3) {
  display: grid;
  padding: 104px max(28px, calc((100vw - 1180px) / 2)) !important;
  background: var(--asa-paper) !important;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.asa-home-rendered > .vc_row:nth-child(3)::before,
.asa-home-rendered > .vc_row:nth-child(3)::after {
  display: none !important;
  content: none !important;
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column {
  position: relative;
  padding: 52px 42px !important;
  border-top: 5px solid var(--asa-blue);
  border-right: 1px solid var(--asa-line);
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column:nth-child(2) {
  border-top-color: var(--asa-red);
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column:nth-child(3) {
  border-top-color: var(--asa-blue-deep);
  border-right: 0;
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column::before {
  display: block;
  margin-bottom: 30px;
  color: var(--asa-blue);
  font-family: var(--asa-serif);
  font-size: 64px;
  line-height: 1;
  content: "01";
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column:nth-child(2)::before {
  color: var(--asa-red);
  content: "02";
}

.asa-home-rendered > .vc_row:nth-child(3) .wpb_column:nth-child(3)::before {
  color: var(--asa-blue-deep);
  content: "03";
}

.asa-home-rendered > .vc_row:nth-child(3) img,
.asa-home-rendered > .vc_row:nth-child(3) hr {
  display: none;
}

.asa-home-rendered > .vc_row:nth-child(3) p {
  margin: 0;
  color: #25313c;
  font-size: 18px;
  line-height: 1.7;
  text-align: left !important;
}

/* Interior pages */
.asa-page-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 160px max(28px, calc((100vw - 1180px) / 2)) 80px;
  overflow: hidden;
  background: url("https://asalawyers.com/wp-content/uploads/2016/08/1780771-bw-banner.jpg") center / cover no-repeat;
  color: #fff;
  align-items: flex-end;
}

.page-id-2 .asa-page-hero {
  background-image: url("https://asalawyers.com/wp-content/uploads/2014/09/business-louge-1024x764.jpg");
}

.page-id-12 .asa-page-hero {
  background-image: url("https://asalawyers.com/wp-content/uploads/2016/08/slide3.jpg");
}

.page-id-10 .asa-page-hero,
.page-id-14 .asa-page-hero {
  background-image: url("https://asalawyers.com/wp-content/uploads/2016/08/slide2.jpg");
}

.page-id-16 .asa-page-hero {
  background-image: url("https://asalawyers.com/wp-content/uploads/2014/09/EYbuilding2-1024x764.jpg");
}

.asa-page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 18, 0.93), rgba(8, 13, 18, 0.25));
  content: "";
}

.asa-page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.asa-page-title {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: var(--asa-serif);
  font-size: clamp(60px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.asa-page-kicker {
  display: block;
  margin-bottom: 15px;
  color: #9bc5f4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asa-content-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 98px 0 112px;
}

.asa-content-shell .vc_row {
  width: 100% !important;
  margin: 0 0 52px !important;
}

.asa-content-shell .inner-flex {
  display: flex;
  margin: 0 -18px;
}

.asa-content-shell .wpb_column {
  padding: 0 18px;
}

.asa-content-shell .vc_column-inner {
  padding: 0 !important;
}

.asa-content-shell h1,
.asa-content-shell h2,
.asa-content-shell h3,
.asa-content-shell h4 {
  color: var(--asa-black);
  font-family: var(--asa-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.asa-content-shell h3 {
  margin: 42px 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--asa-line);
  font-size: 40px;
}

.asa-content-shell h3::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 13px;
  background: var(--asa-blue);
  border-radius: 50%;
  content: "";
  vertical-align: 6px;
}

.asa-content-shell p,
.asa-content-shell li,
.asa-content-shell address {
  color: #38434d;
  font-size: 18px;
  line-height: 1.78;
}

.asa-content-shell p {
  max-width: 78ch;
  margin: 0 0 25px;
}

.asa-content-shell img {
  width: 100%;
}

.asa-content-shell table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
  table-layout: fixed;
}

.asa-content-shell th,
.asa-content-shell td {
  width: auto !important;
  min-width: 0 !important;
  padding: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-id-14 .asa-content-shell h4 {
  max-width: 850px;
  margin: 0 0 48px;
  padding: 28px 30px;
  background: var(--asa-paper);
  border-left: 5px solid var(--asa-blue);
  color: var(--asa-ink);
  font-family: var(--asa-sans);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.asa-contact-map {
  position: relative;
  width: 100%;
  margin: 40px 0 54px;
  overflow: hidden;
  background: var(--asa-paper);
  border-top: 5px solid var(--asa-blue);
  aspect-ratio: 16 / 8;
}

.asa-contact-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.page-id-19 .asa-content-shell > .vc_row:nth-child(2) {
  display: none;
}

.asa-links-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
}

.asa-links-list li {
  display: flex;
  min-height: 170px;
  padding: 30px 0;
  border-top: 3px solid var(--asa-blue);
  flex-direction: column;
  justify-content: space-between;
}

.asa-links-list li:nth-child(2n) {
  border-top-color: var(--asa-red);
}

.asa-links-title {
  display: block;
  margin-bottom: 24px;
  color: var(--asa-black);
  font-family: var(--asa-serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.asa-links-list a {
  width: fit-content;
  color: var(--asa-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.asa-links-list a::after {
  display: inline-block;
  margin-left: 9px;
  color: var(--asa-red);
  content: "→";
  transition: transform 160ms ease;
}

.asa-links-list a:hover::after,
.asa-links-list a:focus::after {
  transform: translateX(5px);
}

.page-id-2 .asa-content-shell .vc_col-sm-3 {
  padding: 0 0 32px;
  overflow: hidden;
  background: var(--asa-paper);
  border-top: 5px solid var(--asa-blue);
}

.page-id-2 .asa-content-shell .vc_col-sm-3 .wp-image-29 {
  content: url("https://asalawyers.com/wp-content/uploads/2014/09/amarjit-1024x764.jpg");
}

.page-id-2 .asa-content-shell .vc_col-sm-3 address,
.page-id-2 .asa-content-shell .vc_col-sm-3 .wpb_text_column:not(:first-child) {
  padding-right: 28px;
  padding-left: 28px;
}

.page-id-2 .asa-content-shell .vc_col-sm-9 {
  padding-left: 58px;
}

.page-id-12 .asa-content-shell .vc_custom_detheme2 {
  padding: 34px !important;
  background: var(--asa-paper);
}

.page-id-16 .asa-content-shell {
  text-align: left;
}

.page-id-16 .asa-content-shell img {
  margin-top: 20px;
}

/* Footer */
.asa-site-footer {
  padding: 38px 28px;
  background: var(--asa-black-deep);
  border-top: 5px solid var(--asa-blue);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  text-align: center;
}

.asa-site-footer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

  .asa-site-header {
    height: 82px;
  }

  .asa-header-inner {
    padding: 0 18px;
    justify-content: space-between;
  }

  .asa-brand {
    position: static;
    transform: none;
  }

  .asa-brand-asa,
  .asa-brand-lawyers {
    font-size: 19px;
  }

  .asa-brand-subtitle {
    font-size: 10px;
  }

  .asa-search-trigger {
    display: none;
  }

  .asa-menu-trigger {
    width: 48px;
    height: 48px;
  }

  .asa-menu-label {
    display: none;
  }

  .asa-menu-top {
    min-height: 82px;
    padding: 0 20px;
  }

  .asa-menu-layout {
    display: block;
    min-height: calc(100vh - 82px);
  }

  .asa-primary-nav {
    padding: 34px 28px 10px;
  }

  .asa-primary-nav a {
    padding: 17px 0;
    font-size: 38px;
  }

  .asa-menu-aside {
    padding: 34px 28px 54px;
  }

  .asa-language-list {
    margin-bottom: 36px;
  }

  .asa-home-rendered {
    display: block;
  }

  .asa-home-rendered::before {
    display: block;
    min-height: 54vh;
    padding-top: 82px;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  }

  .asa-home-rendered > .vc_row:nth-child(2) {
    display: block;
    min-height: 0;
    padding: 58px 28px 76px !important;
  }

  .asa-home-rendered > .vc_row:nth-child(2) h1 {
    font-size: 52px;
  }

  .asa-home-rendered > .vc_row:nth-child(2) p {
    font-size: 17px;
  }

  .asa-home-rendered > .vc_row:nth-child(3) {
    display: block;
    padding: 64px 22px !important;
  }

  .asa-home-rendered > .vc_row:nth-child(3) .wpb_column {
    margin-bottom: 28px;
    padding: 38px 28px !important;
    background: #fff;
    border-right: 0;
  }

  .asa-page-hero {
    min-height: 390px;
    padding: 132px 24px 58px;
  }

  .asa-page-title {
    font-size: 55px;
  }

  .asa-content-shell {
    width: calc(100% - 44px);
    padding: 64px 0 78px;
  }

  .asa-content-shell .inner-flex {
    display: block;
    margin: 0;
  }

  .asa-content-shell .wpb_column {
    width: 100% !important;
    padding: 0;
  }

  .asa-content-shell h3 {
    font-size: 34px;
  }

  .asa-content-shell table {
    font-size: 15px;
    line-height: 1.55;
  }

  .asa-content-shell th,
  .asa-content-shell td {
    padding: 9px 7px;
  }

  .page-id-14 .asa-content-shell h4 {
    margin-bottom: 38px;
    padding: 22px 20px;
    font-size: 21px;
  }

  .asa-contact-map {
    margin: 30px 0 42px;
    aspect-ratio: 1 / 1;
  }

  .asa-links-list {
    display: block;
  }

  .asa-links-list li {
    min-height: 0;
    padding: 27px 0 31px;
  }

  .asa-links-title {
    margin-bottom: 18px;
    font-size: 27px;
  }

  .page-id-2 .asa-content-shell .vc_col-sm-3 {
    margin-bottom: 38px;
  }

  .page-id-2 .asa-content-shell .vc_col-sm-9 {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .asa-brand-asa,
  .asa-brand-lawyers {
    font-size: 16px;
  }

  .asa-brand-asa {
    padding-right: 6px;
  }

  .asa-brand-lawyers {
    padding-left: 7px;
    border-left-width: 2px;
  }

  .asa-brand-subtitle {
    font-size: 8px;
  }

  .asa-home-rendered::before {
    min-height: 48vh;
  }

  .asa-home-rendered > .vc_row:nth-child(2) h1 {
    font-size: 46px;
  }

  .asa-primary-nav a {
    font-size: 34px;
  }

  .asa-page-title {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
