/*========== Resets and Normalizations ==========*/

html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,input,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height:  100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

address {
  font-style: normal;
}

/*========== Global Variables and General Styles ==========*/

@font-face {
  font-family: 'fira-sans';
  font-style:normal;
  font-weight: 400;
  font-stretch:normal;
  src:
    url(https://use.typekit.net/af/e8c22b/00000000000000007735a3a4/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3)
    format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'fira-sans';
  font-style:normal;
  font-weight: 500;
  font-stretch:normal;
  src:
    url("https://use.typekit.net/af/3f4c3a/00000000000000007735a3a9/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2");
  font-display: swap;
}

/*@font-face {
  font-family: 'fira-sans';
  font-style:normal;
  font-weight: 600;
  font-stretch:normal;
  src:
    url("https://use.typekit.net/af/fbf053/00000000000000007735a3bf/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2");
  font-display: swap;
}*/

@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/f7d2b8/00000000000000007735a1d6/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2");
  font-display: swap;
}

/*
@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/a96fc4/00000000000000007735a1de/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/853f4c/00000000000000007735a1e1/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/aa897e/00000000000000007735a1c8/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/42ad97/00000000000000007735a1c7/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "adelle-sans";
  font-style: normal;
  font-weight: 900;
  font-stretch: normal;
  src:
    url("https://use.typekit.net/af/3d90c7/00000000000000007735a1cb/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2");
  font-display: swap;
}*/

:root {
  --default-background-color: #000;
  --default-text-color: #000;
  --blue-print-back: #F0F9FF;
  --blue-background: #E6F6FF;
  --top-nav-background: #BCD8E6;
  --menu-icon-gray: #6D6E71;
  --h1-gray: #414042;
  --warning-text-red: #F00;
  --link-text-blue: #002db3;
  --form-input-hightlight: #63AFEB;
  --box-shadow-gray: #58595B;
  --list-style-gray: #58595B;
  --list-text-color: #000;
  --faqs-gray: #414042;
  --sitemap-gray: #414042;
  --trebuchet-stack: 'Trebuchet MS', 'fira-sans', sans-serif;
  --arial-stack: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --refresh-stack: 'adelle-sans', sans-serif;
}

.clearfix::after {
  content: '';
  clear: both;
  display: table;
}

body {
  background-color: var(--default-background-color);
  font-family: var(--trebuchet-stack);
  color: var(--default-text-color);
  font-weight: 400;
}

body .blue-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--blue-print-back);
}

body .blue-wrapper-has-cards {
  background: var(--blue-background);
  max-width: 1440px;
  margin: 0 auto;
}

nav {
  user-select: none;
}

.text-bold {
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.text-underline {
  text-decoration: underline 2px;
}

/*========== Homepage General Styles ==========*/

#homepage {
  background-color: var(--default-background-color);
  background-position: center;
  background-size: 1440px auto;
  background-repeat: repeat-y;
}

#homepage a:link,
#homepage a:visited,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

#homepage h1 {
  font-family: var(--arial-stack);
  letter-spacing: 0.1ch;
  font-size: clamp(24px, 2.533vw + 15.8933px, 33.12px);
  color: var(--h1-gray);
  text-align: center;
}

/*========== Containers ==========*/

#grid-container {
  margin: 0 auto;
  max-width: 1440px;
  display: grid;
  justify-content: stretch;
  align-content: stretch;
  grid-template-areas:
    '.    topm topm topm .    .    .    tele tele tele tele .   '
    '.    wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci .   '
    'sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd'   
    '.    ftr1 ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 ftr2 .   '
    '.    ftr3 ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 ftr4 .   '
    '.    .    subf subf subf subf subf subf subf subf .    .   '
    '.    .    copr copr copr copr copr copr copr copr .    .   ';
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  align-items: center;
}

#homepage #grid-container {
  margin: 0 auto;
  max-width: 1440px;
  background-color: var(--blue-background);
  display: grid;
  justify-content: stretch;
  align-content: stretch;
  grid-template-areas:
    '.    topm topm topm .    .    .    tele tele tele tele .   '
    '.    wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci .   '
    '.    main main main main main main main main main main .   '
    'sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd'
    '.    ftr1 ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 ftr2 .   '
    '.    ftr3 ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 ftr4 .   '
    '.    .    subf subf subf subf subf subf subf subf .    .   '
    '.    .    copr copr copr copr copr copr copr copr .    .   ';
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  align-items: center;
}

@media screen and (max-width: 320px) {
  
  body {
    min-width: 185px;
    overflow-x: scroll;
  }

  #grid-container {
     grid-template-areas:
      '.    topm topm topm .    .    .    .    .    .    .    .   '
      'wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci'
      '.    tele tele tele tele tele tele tele tele tele tele .   '
      'sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd'   
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 .    .   '
      '.    .    ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 .    .   '
      '.    .    ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    subf subf subf subf subf subf subf subf subf subf .   '
      'copr copr copr copr copr copr copr copr copr copr copr copr';
  }

  #homepage #grid-container {
     grid-template-areas:
      '.    topm topm topm .    .    .    .    .    .    .    .   '
      'wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci wjci'
      '.    tele tele tele tele tele tele tele tele tele tele .   '
      '.    .    main main main main main main main main .    .   '
      'sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd'
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 ftr1 .    .   '
      '.    .    ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 ftr3 .    .   '
      '.    .    ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    subf subf subf subf subf subf subf subf subf subf .   '
      'copr copr copr copr copr copr copr copr copr copr copr copr';
  }

}

@media screen and (min-width: 550px) {

  #grid-container {
    grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci wjci .    .    tele tele tele .   '
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '   
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    .    .    subf subf subf subf subf subf .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
    }

  #homepage #grid-container {
    grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci wjci .    .    tele tele tele .   '
      '.    .    main main main main main main main main .    .   '
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    .    .    subf subf subf subf subf subf .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
  }

}

@media screen and (min-width: 680px) {

  #grid-container {
    grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci .    .    .    tele tele tele .   '
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    .    .    subf subf subf subf subf subf .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
  }

  #homepage #grid-container {
    grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci .    .    .    tele tele tele .   '
      'main main main main main main main main main main main main'
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '
      '.    .    ftr1 ftr1 ftr1 ftr1 ftr2 ftr2 ftr2 ftr2 .    .   '
      '.    .    ftr3 ftr3 ftr3 ftr3 ftr4 ftr4 ftr4 ftr4 .    .   '
      '.    .    .    subf subf subf subf subf subf .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
  }

}

@media screen and (min-width: 800px) {

  #grid-container {
   grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci .    .    .    tele tele tele .   '
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '   
      '.    .    ftr1 ftr1 ftr2 ftr2 ftr3 ftr3 ftr4 ftr4 .    .   '
      '.    .    .    .    subf subf subf subf .    .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
  }

  #homepage #grid-container {
    grid-template-areas:
      '.    .    .    .    .    .    .    .    topm topm topm .   '
      '.    wjci wjci wjci wjci .    .    .    tele tele tele .   '
      'main main main main main main main main main main main main'
      '.    sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd sgrd .   '
      '.    .    ftr1 ftr1 ftr2 ftr2 ftr3 ftr3 ftr4 ftr4 .    .   '
      '.    .    .    .    subf subf subf subf .    .    .    .   '
      '.    .    copr copr copr copr copr copr copr copr .    .   ';
  }

}

/*========== Top Navigation Menu ==========*/

.top-nav {
  grid-area: topm;
  font-size: 16.8px;
  justify-self: start;
  position: relative;
  z-index: 3;
}

.top-nav {
  margin-top: 16px;
  margin-bottom:  8px;
}

.top-nav .menu {
  position: absolute;
  display: block;
  width: 250px;
  background-color: var(--blue-print-back);
  box-shadow: 2px 2px 4px var(--box-shadow-gray);
  top: 50px;
  max-height: 0;
  transition: max-height 0.285s ease-out;
}

#homepage .top-nav .menu {
  background-color: var(--top-nav-background);
}

.top-nav ul {
  overflow: hidden;
}

.top-nav li p,
.top-nav li a {
  display: block;
  padding: 15px 10px 15px 20px;
  text-decoration: none;
  font-size: 16.8px;
  font-weight: 600;
}

.top-nav li ul li a {
  padding: 15px 10px 15px 50px;
  font-size: 15px;
  font-weight: 400;
}

.top-nav a.first-menu-item {
  padding-top: 30px;
}

.top-nav a.last-menu-item {
  padding-bottom: 30px;
}

.top-nav .menu-icon {
  cursor: pointer;
  user-select: none;
  padding: 28px 20px;
  position: relative;
  float: left;
}

.top-nav .menu-icon .nav-icon {
  background: var(--menu-icon-gray);
  display: block;
  height: 3px;
  width: 24px;
  position: relative;
  transition: background 0.2s ease-out;
}

.top-nav .menu-icon .nav-icon:before,
.top-nav .menu-icon .nav-icon:after {
  background: var(--menu-icon-gray);
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
}

.top-nav .menu-icon .nav-icon:before {
  top: 7px;
}

.top-nav .menu-icon .nav-icon:after {
  top: -7px;
}

.top-nav .menu-btn {
  display: none;
}

.top-nav .menu-btn:checked ~ .menu {
  max-height: 1000px;
}

.top-nav .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.top-nav .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.top-nav .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

@media screen and (min-width: 550px) {

  .top-nav {
    justify-self: end;
  }
  
  .top-nav .menu {
    right: 0;
  }
  
  .top-nav .menu-icon {
    float: right;
  }

}

/*========== Headers and Footers ==========*/

.wjci {
  grid-area: wjci;
  justify-self: stretch;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-variant: small-caps;
  margin-top: clamp(0, 2.632vw - 8.447px, 6px);
  margin-bottom: 8px;
  text-align: center;
}

#homepage .wjci {
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
}

.wjc {
  font-size: clamp(24px, 1.778vw + 18.31px, 30.4px);
}

.inc {
  font-size: clamp(16px, 0.44vw + 14.58px, 17.6px);
  letter-spacing: 0.2ch;
}

.tele {
  grid-area: tele;
  font-size: clamp(16px, 0.44vw + 14.58px, 17.6px);
  justify-self: end;
  margin-top: 16px;
  margin-bottom: 8px;
}

.foot-1 {
  grid-area: ftr1;
}

.foot-2 {
  grid-area: ftr2;
}

.foot-3 {
  grid-area: ftr3;
}

.foot-4 {
  grid-area: ftr4;
}

.subf {
  grid-area: subf;
  justify-self: stretch;
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  margin-top: 8px;
  margin-bottom: 8px;
}

.copr {
  grid-area: copr;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 24px;
}

.normal-nav {
  font-size: 16.8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.fine-print {
  font-size: 13.6px;
}

@media screen and (max-width: 320px) {

  .wjci {
    margin-top: 0;
    white-space: nowrap;
  }
  
  #homepage .wjci {
    margin-top: 8px;
  }

  .tele {
    justify-self: center;
    margin-top: 8px;
    margin-bottom: 0;
  }
  
  .subf {
    justify-content: space-between;
  }
  
  .copr {
    white-space: nowrap;
  }

}

@media screen and (min-width: 550px) {

  .wjci {
  margin-top: 0;
  }

  .tele {
    justify-self: center;
    margin-top: 8px;
  }

  #homepage .tele {
    margin-top: clamp(40px, 18.605vw - 62.328px, 64px);
  }

  .subf {
    justify-content: space-evenly;
  }

}

@media screen and (min-width: 680px) {

  .wjc {
    font-size: clamp(30.4px, 1.362vw + 21.138px, 36.8px);
  }

  .inc {
    font-size: clamp(17.6px, 0.34vw + 15.285px, 19.2px);
    letter-spacing: 0.3ch;
  }

  .tele {
    font-size: clamp(17.6px, 0.34vw + 15.285px, 19.2px);
  }
  
  #homepage .tele {
    margin-top: 24px;
  }

  .normal-nav {
    font-size: clamp(16.8px, 0.17vw + 15.643px, 17.6px);
  }

}

@media screen and (min-width: 800px) {

  #homepage .wjci {
    margin-top: clamp(24px, 6.877vw - 31.017px, 48px);
  }

  #homepage .tele {
    margin-top: clamp(24px, 6.877vw - 31.017px, 48px);
  }

}

@media screen and (min-width: 1150px) {

  #homepage .wjci {
    margin-top: 48px;
  }

  .inc {
    letter-spacing: 0.4ch;
  }

  #homepage .tele {
    margin-top: 48px;
  }

}

/*========== Page: Homepage ==========*/

.home-main {
  grid-area: main;
  margin-top: 24px;
  margin-bottom: 0;
  line-height: 1.25;
}


@media screen and (max-width: 320px) {
  
  .home-main-first-dot {
    display: none;
  }
  
  .home-main {
    margin-top: 18px;
  }

}

@media screen and (min-width: 550px) {
  
  .home-main {
    margin-top: clamp(36px, 14.4vw - 43.2px, 72px);
  }

}

@media screen and (max-width: 679.9px) {
  
  .home-main-second-dot {
    display: none;
  }
  
}

@media screen and (min-width: 680px) {
  
  #homepage h1 {
    font-size: clamp(33.12px, 3.166vw + 11.591px, 48px);
  }

}

@media screen and (min-width: 800px) {
    
  .home-main {
    margin-top: clamp(72px, 6.877vw + 16.984px, 96px);
  }
  
  #homepage h1 {
    letter-spacing: 0.2ch;
  }

}

@media screen and (min-width: 1150px) {
  
  .home-main {
    margin-top: clamp(100px, 13.793vw - 58.62px, 140px);  
  }
  
}

/*========== Page: Practice Areas ==========*/

.sgrd-wrapper-practice {
  grid-area: sgrd;
  justify-self: stretch;
  /*font-family: var(--arial-stack);*/
  /*font-weight: normal;*/
  font-family: var(--refresh-stack);
  font-weight: 300;
}

.sgrd-wrapper-practice h2 {
  color: var(--h1-gray);
  /*font-family: var(--trebuchet-stack);*/
  font-family: 'fira-sans', sans-serif;
  font-weight: 500;
}

.sgrd-wrapper-practice > div {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 30px;
}

.sgrd-wrapper-practice > div.card {
  background-color: var(--blue-print-back);
  border-radius: 5px;
  box-shadow: 2px 2px 4px var(--box-shadow-gray);
}

.sgrd-wrapper-practice h1,
.sgrd-wrapper-practice h2 {
  text-align: center;
}

.sgrd-wrapper-practice h1 {
  font-family: var(--trebuchet-stack);
  padding: 40px 0;
  color: var(--h1-gray);
  font-size: 24px;
  letter-spacing: 0.05ch;
}

.sgrd-wrapper-practice h2 {
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 0.1ch;
}

.sgrd-wrapper-practice ul {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--list-style-gray);
}

.sgrd-wrapper-practice li span {
  position: relative;
  left: 5px;
  color: var(--list-text-color);
}

.sgrd-wrapper-practice li {
  font-size: 16px;
  text-indent: -15px;
  margin-left: 25px;
  margin-right: 15px;
  margin-bottom: 25px;
  line-height: 150%;
}

.sgrd-wrapper-practice p {
  font-size: 16px;
  font-style: italic;
  text-align: center;
  margin: 30px 0 30px 0;
}

#homepage .sgrd-wrapper-practice p a.more {
  color: var(--link-text-blue);
}

@media screen and (min-width: 550px) {
  
  .sgrd-wrapper-practice > div.left {
    margin-left: 0;
  }
  
  .sgrd-wrapper-practice > div.right {
    margin-right: 0;
  }
  
  .sgrd-wrapper-practice > div {
    width: clamp(458px, 36.18vw + 259px, 780px);
    margin-bottom: clamp(30px, 5.056vw + 2.19px, 75px);
  }
  
  .sgrd-wrapper-practice h1 {
    font-size: clamp(24px, 2.7vw + 9.135px, 48px);
    padding-top: clamp(40px, 2.25vw + 27.58px, 60px);
    padding-bottom: clamp(40px, 6.74vw + 2.925px, 100px);
  }
  
  .sgrd-wrapper-practice h2 {
    font-size: clamp(18px, 1.573vw + 9.35px, 32px);
  }
  
  .sgrd-wrapper-practice li {
    font-size: clamp(16px, 0.899vw + 11.055px, 24px);
    text-indent: clamp(-35px, -2.25vw - 2.6px, -15px);
    margin-left: clamp(35px, 2.809vw + 19.55px, 60px);
  }
  
  .sgrd-wrapper-practice p {
    font-size: clamp(16px, 0.899vw + 11.055px, 24px);
  }
    
}

@media screen and (min-width: 800px) {
  
  .sgrd-wrapper-practice h1 {
    letter-spacing: 0.1ch;
  }
  
}

/*========== Pages: Practice Area Top Pages ==========*/

.sgrd-wrapper-practice-top {
  grid-area: sgrd;
  justify-self: stretch;
  /*font-family: var(--arial-stack);
  font-weight: normal;*/
  font-family: var(--refresh-stack);
  font-weight: 300;
}

.sgrd-wrapper-practice-top h2 {
  /*color: var(--h1-gray);*/
  font-family: 'fira-sans', sans-serif;
  font-weight: 400;
}

.sgrd-wrapper-practice-top #slogan > p,
.sgrd-wrapper-practice-top h1,
.sgrd-wrapper-practice-top h2,
.sgrd-wrapper-practice-top h5 {
  text-align: center;
}

.sgrd-wrapper-practice-top #slogan > p,
.sgrd-wrapper-practice-top h1,
.sgrd-wrapper-practice-top h5 {
  max-width: 85%;
  margin: 0 auto;
  font-family: var(--trebuchet-stack);
  color: var(--h1-gray);
  font-size: 24px;
  letter-spacing: 0.05ch;
}

.sgrd-wrapper-practice-top h1 {
  padding: 40px 0;
}

.sgrd-wrapper-practice-top h1.first-title-line {
  padding-bottom: 15px;
}

.sgrd-wrapper-practice-top #slogan > p,
.sgrd-wrapper-practice-top h5 {
  padding-bottom: 40px;
}

.sgrd-wrapper-practice-top h2 {
  margin: 20px auto 10px auto;
  letter-spacing: 0.05ch;
}

.sgrd-wrapper-practice-top #slogan > p,
.sgrd-wrapper-practice-top h1#slogan,
.sgrd-wrapper-practice-top h5 {
  font-style: italic;
}

.sgrd-wrapper-practice-top .text-container {
  display: block;
  width: 85%;
  margin: 0 auto;
}

/*.sgrd-wrapper-practice-top h3,
.sgrd-wrapper-practice-top p {
  font-size: 16px;
  line-height: 160%;
  text-align: start;
  margin: 15px auto 10px auto;
}*/

.sgrd-wrapper-practice-top h3 {
  font-size: 16px;
  line-height: 175%;
  text-align: start;
  margin: 15px auto 10px auto;
}

.sgrd-wrapper-practice-top p {
  font-size: 16px;
  line-height: 175%;
  text-align: start;
  margin: 15px auto 10px auto;
}

.sgrd-wrapper-practice-top a {
  display: inline;
}

.sgrd-wrapper-practice-top a {
  text-decoration: underline dotted 10%;
  color: var(--link-text-blue);
}

.sgrd-wrapper-practice-top img.early-af,
.sgrd-wrapper-practice-top img.later-practice {
  display: block;
  width: 75%;
  height: auto;
  margin: 15px auto 10px auto;
  border-radius: 5px;
  box-shadow: 2px 2px 4px var(--box-shadow-gray);
}

.sgrd-wrapper-practice-top img.early-af-550,
.sgrd-wrapper-practice-top img.later-practice-550 {
  display: none;
}

@media screen and (min-width: 550px) {
  
  .sgrd-wrapper-practice-top #slogan > p,
  .sgrd-wrapper-practice-top .text-container,
  .sgrd-wrapper-practice-top h1,
  .sgrd-wrapper-practice-top h5 {
    max-width: clamp(500px, 39.33vw + 283.67px, 850px);
    margin-right: auto;
    margin-left: auto;
  }
  
  .sgrd-wrapper-practice-top h1 {
    font-size: clamp(24px, 2.7vw + 9.135px, 48px);
    padding-top: clamp(40px, 2.25vw + 27.58px, 60px);
    padding-bottom: clamp(40px, 2.25vw + 27.58px, 60px);
  }
  
  .sgrd-wrapper-practice-top h2 {
    font-size: clamp(18px, 1.573vw + 9.35px, 32px);
  }
  
  .sgrd-wrapper-practice-top h3,
  .sgrd-wrapper-practice-top p {
    font-size: clamp(16px, 0.562vw + 12.91px, 21px);
  }
  
  .sgrd-wrapper-practice-top #slogan > p,
  .sgrd-wrapper-practice-top h5 {
    font-size: clamp(24px, 2.7vw + 9.135px, 48px);
    padding-top: clamp(0px, 3.93vw - 21.64px, 35px);
    padding-bottom: clamp(40px, 2.25vw + 27.58px, 60px);
    margin-bottom: 0px;
  }
  
  .sgrd-wrapper-practice-top div.text-container {
    margin-bottom: clamp(30px, 5.618vw - 0.9px, 80px);
  }
  
  .sgrd-wrapper-practice-top img.early-af,
  .sgrd-wrapper-practice-top img.later-practice {
    display:none;
  }  
  
  .sgrd-wrapper-practice-top img.early-af-550,
  .sgrd-wrapper-practice-top img.later-practice-550 {
    display: block;
    width: clamp(225px, 8.43vw + 178.65px, 300px);
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px var(--box-shadow-gray);
  }
  
  .sgrd-wrapper-practice-top img.early-af-550 {
    float: right;
    margin-left: clamp(20px, 2.247vw + 7.642px, 40px);
  }
  
  .sgrd-wrapper-practice-top img.later-practice-550 {
    float: left;
    margin-right: clamp(20px, 2.247vw + 7.642px, 40px);
  }
  
}

@media screen and (min-width: 800px) {
  
  .sgrd-wrapper-practice-top h1 {
    letter-spacing: 0.1ch;
  }
  
}

/*========== Page: Contact Page ==========*/

.contact-location h2 {
  text-align: left;
  margin-left: 15%;
  margin-top: 2em;
  margin-bottom: 1em;
}

.contact-location > div {
  text-align: center;
  font-size: 16px;
  line-height: 125%;
}

.contact-location picture {
  display: block;
  width: 90%;
  margin: 0px auto 20px auto;
  background-color: var(--box-shadow-gray);
  border-radius: 5px;
  box-shadow: 2px 2px 4px var(--box-shadow-gray);
}

.contact-form div.contact-instruction {
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

label[for='notConfidential'] {
  display: inline;
}

.contact-form div {
  margin: 0 2.5% 10px 2.5%;
}

.contact-form textarea,
.contact-form input[type='text'] {
  width: 100%;
  font-family: var(--trebuchet-stack);
  color: #000;
  font-size: 16px;
  padding: 5px;
  border: 1px inset var(--blue-background);
  border-radius: 5px;
  box-shadow: 1px 1px 2px var(--box-shadow-gray);
}

.contact-form textarea:focus,
.contact-form input[type='text']:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px var(--form-input-hightlight);
}

.contact-form input[type='checkbox'] {
  transform: scale(1.2);
  margin-top: 10px;
}

.contact-form textarea {
  height: 250px;
  line-height: 150%;
}

.contact-form input[type='text'] {
  height: 35px;
}

.contact-form button,
.contact-form input[type='submit'] {
  font-family: var(--arial-stack);
  font-size: 16px;
  padding: 5px;
  background-color: var(--blue-print-back);
  border: none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px var(--box-shadow-gray);
  cursor: pointer;
}

div.submit-message {
  text-align: right;
}

.sgrd-wrapper-practice p.contact-form-warning {
  font-weight: 600;
  color: var(--warning-text-red);
  margin-bottom: 24px;
}
  
.sgrd-wrapper-practice span.contact-form-warning {
  font-weight: 600;
  color: var(--warning-text-red);
}

#google-recaptcha p {
  font-size: 16px;
  font-style: normal;
  margin: 20px 35px 0px 35px;
}

#google-recaptcha a {
  text-decoration: underline dotted 10%;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 550px) {
  
  #google-recaptcha p {
    font-size: clamp(16px, 0.44vw + 14.58px, 17.6px);
  }
  
  .contact-form button,
  .contact-location > div,
  .contact-form label,
  .contact-form input[type='text'],
  .contact-form input[type='submit'],
  .contact-form textarea {
    font-size: clamp(16px, 0.562vw + 12.91px, 21px);
  }
  
}

/*========== Bullet Points ==========*/

#bullet-points ul {
  margin-left: 5%;
  margin-bottom: 20px;
  list-style-type: disc;
  list-style-position: inside;
  color: var(--list-style-gray);
}

#bullet-points ul li ul {
  margin-left: 5%;
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: "\27A3";
  list-style-position: inside;
  color: var(--list-style-gray);
}

#bullet-points ul li ul li ul {
  margin-left: 5%;
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: "\2713";
  list-style-position: inside;
  color: var(--list-style-gray);
}

#bullet-points li > span {
  position: relative;
  left: 5px;
  color: var(--list-text-color);
}

#bullet-points li {
  font-size: 16px;
  text-indent: -15px;
  margin-left: 25px;
  margin-right: 15px;
  /*margin-bottom: 5px;
  line-height: 150%;*/
  margin-bottom: 15px;
  line-height: 175%;
}

#bullet-points li > span + span {
  display: block;
  text-indent: 0px;
  margin-top: 10px;
}

p.tldr {
  font-weight: 600;
  color: var(--faqs-gray);
}

div.rule {
  margin-top: 15px;
  margin-bottom: 25px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 550px)  {

  #bullet-points li {
    font-size: clamp(16px, 0.562vw + 12.91px, 21px);
    text-indent: clamp(-35px, -2.25vw - 2.6px, -15px);
    margin-left: clamp(35px, 2.809vw + 19.55px, 60px);
  }

}

/*========== Services Links ==========*/

.services-link {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-variant: small-caps;
  color: var(--link-text-blue);
}

.services-link-right {
  align-items: end;
}

.sgrd-wrapper-practice-top .services-link-right a {
  text-decoration: none;
}

.services-link a {
  text-align: center;
  font-size: 16px;
}

.services-link a > div {
  border: 1px solid var(--link-text-blue);
  box-shadow: 1px 1px 2px var(--link-text-blue);
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*h2.services-detail {
  text-align: left;
  margin-top: 35px;
}*/

h2.services-detail {
  text-align: left;
  margin-top: 35px;
  margin-bottom: 25px;
}

@media screen and (min-width: 550px) {
  
  .services-link a {
    font-size: clamp(16px, 0.562vw + 12.91px, 21px);
  }
  
}

/*========== Resources, FAQs ==========*/

#resources h2,
#faqs h2 {
  text-align: left;
  line-height: 150%;
}

#resources p,
#faqs p {
  margin-top: 15px;
  margin-bottom: 10px;
}

#resources p:first-of-type,
#faqs p:first-of-type {
  margin-top: 25px;
}

#resources p.resource-link,
#faqs p.faq-q {
  margin-left: 3%;
  font-weight: 400;
  color: var(--faqs-gray);
}

#resources p.resource-link {
  font-weight: 400;
}

#faqs p.faq-q {
  font-weight: 600;
}

#resources p.resource-desc,
#faqs p.faq-a {
  margin-left: 8%;
}

@media screen and (min-width: 550px) {

  #resources .text-container,
  #faqs .text-container {
    margin-bottom: clamp(30px, 5.618vw - 0.9px, 80px);
  }

}

/*========== Sitemap ==========*/

#sitemap .text-container {
  width: 65%;
}

#sitemap ul ul {
  margin-left: 7.5%;
}

#sitemap li p {
  margin: 0;
}

#sitemap li p:last-of-type {
  margin-bottom: 15px;
}

#sitemap li a {
  font-weight: 400;
  color: var(--link-text-blue);
}

/*
.subf {
  visibility: hidden;
}
*/
