/* SCSS stylesheet build for the Elon Law Header/Footer API. */
/* Required at the beginning of any and ALL individual SCSS
 * stylesheet builds. Contains all necessary variables, functions, 
 * and mixins but does not output any CSS. */
/* ::Transitions */
/* ------------------------------------------------------------ */
/* ::Link Hover/Focus/Active Styles Grouped Together */
/* ------------------------------------------------------------ */
/* ::Opacity with IE support */
/* ------------------------------------------------------------ */
/* ::Align things vertically (http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/) */
/* ------------------------------------------------------------ */
/* ::Retina Images */
/* ------------------------------------------------------------ */
/* ::Hex to RGB */
/* ------------------------------------------------------------ */
/* ::Clearfix */
/* ------------------------------------------------------------ */
/* ::Placeholder Text */
/* ------------------------------------------------------------ */
/* ::List styles */
/* ------------------------------------------------------------ */
/* ::Main Elon Palette */
/* ------------------------------------------------------------ */
/* ::Gray/Black Palette */
/* ------------------------------------------------------------ */
/* ::Utility Colors */
/* ------------------------------------------------------------ */
/* ::Assign colors to variable roles */
/* ------------------------------------------------------------ */
/* ::Basic variables */
/* ------------------------------------------------------------ */
/* ::Assign fonts/weights to variable roles */
/* ------------------------------------------------------------ */
/* ::Spacing */
/* ------------------------------------------------------------ */
/* ::Type sizes/scale */
/* ------------------------------------------------------------ */
/* ::Type defaults for compass' rhythm */
/* ------------------------------------------------------------ */
/* Required font imports.
 *  
 * These fonts are required for the Elon Law Global Header.
 * 
 * This import must be at the beginning of any SCSS file that 
 * renders a CSS file. Imports must be the first thing in a 
 * stylesheet. It can go after the partials/base import since 
 * that does not render any CSS. */
/* ::Font imports */
/* ------------------------------------------------------------ */
@import url("https://use.typekit.net/snx2rfv.css");
/* ::Core Styles */
/* ------------------------------------------------------------ */
#emergency-banner {
  display: none;
  padding: 30px;
  text-align: center;
  background-color: #bf1c13;
  color: white;
}

#emergency-banner p {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: white;
}

#emergency-banner a {
  color: white;
  border-bottom: 1px dotted white;
}

#emergency-banner a:hover {
  color: #eee;
  border-bottom: 1px dotted white;
}

#emergency-banner.bg-gray-dark {
  background-color: #333;
}

#emergency-banner.bg-gold-light, #emergency-banner.bg-yellow {
  color: black;
}

#emergency-banner.bg-gold-light p, #emergency-banner.bg-yellow p {
  color: black;
}

#emergency-banner.bg-gold-light a, #emergency-banner.bg-yellow a {
  color: #73000a;
  border-bottom-color: #73000a;
}

#emergency-banner.bg-gold-light a:hover, #emergency-banner.bg-gold-light a:focus, #emergency-banner.bg-yellow a:hover, #emergency-banner.bg-yellow a:focus {
  color: #510007;
  border-bottom-color: #510007;
}

#emergency-banner.bg-gold-light {
  background-color: #c5af7a;
}

#emergency-banner.bg-yellow {
  background-color: #ebc970;
}

/* ::Variables */
/* ------------------------------------------------------------ */
/* ::HTML and body styles */
/* ------------------------------------------------------------ */
html {
  font-size: 1rem;
}

html, body {
  margin: 0;
  padding: 0;
}

.gh-open-menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.lt-ie9 .gh-open-menu-overlay {
  display: none;
}

@media screen and (min-width: 1080px) {
  .gh-open-menu-overlay {
    display: none;
  }
}

.lt-ie9 html.gh-mobile-menu--open {
  overflow: hidden;
}

.lt-ie9 html.gh-mobile-menu--open .gh-open-menu-overlay {
  opacity: .5;
  visibility: visible;
}

@media screen and (max-width: 1079px) {
  html.gh-mobile-menu--open {
    overflow: hidden;
  }
  html.gh-mobile-menu--open .gh-open-menu-overlay {
    opacity: .5;
    visibility: visible;
  }
}

body {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  align-content: stretch;
  min-height: 100vh;
}

body.admin-bar {
  min-height: calc(100vh - 46px);
}

.lt-ie9 body.admin-bar {
  min-height: calc(100vh - 32px);
}

@media screen and (min-width: 783px) {
  body.admin-bar {
    min-height: calc(100vh - 32px);
  }
}

main {
  -moz-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

footer.global-footer,
footer.law-global-footer {
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* ::Screen Reader Only Class - in case it's not included in other styles */
/* ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ::Screen Reader Jump Links - for easy tabbing through site */
/* ------------------------------------------------------------ */
.global-sr-jump-link {
  position: absolute;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: #eee;
  color: #73000a !important;
  padding: 8px 15px;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  transition: transform 0.2s;
}

.global-sr-jump-link:focus {
  color: #73000a !important;
}

.global-header--sr-jump-links {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  z-index: 100000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.global-header--sr-jump-links a {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.global-header--sr-jump-links a:focus {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.gh-resources--sr-jump-link {
  top: -4.875rem;
  right: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.gh-resources--sr-jump-link:focus {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.lt-ie9 .gh-resources--sr-jump-link {
  display: none !important;
}

@media screen and (max-width: 1079px) {
  .gh-resources--sr-jump-link {
    display: none !important;
  }
}

/* ::General Header Styles */
/* ------------------------------------------------------------ */
header.law-global-header {
  background-color: #630009;
  background-image: -owg-linear-gradient(#510007, #630009) !important;
  background-image: -webkit-linear-gradient(#510007, #630009) !important;
  background-image: -moz-linear-gradient(#510007, #630009) !important;
  background-image: -o-linear-gradient(#510007, #630009) !important;
  background-image: linear-gradient(#510007, #630009) !important;
  position: relative;
  -webkit-transition: margin-top 0.3s;
  -moz-transition: margin-top 0.3s;
  -o-transition: margin-top 0.3s;
  transition: margin-top 0.3s;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #191919;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header.law-global-header * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

header.law-global-header a {
  color: white;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

header.law-global-header .global-header--inner {
  padding: 0 20px;
  margin: 0 auto;
}

.lt-ie9 header.law-global-header {
  background-image: -owg-linear-gradient(#510007 2.625rem, #630009) !important;
  background-image: -webkit-linear-gradient(#510007 2.625rem, #630009) !important;
  background-image: -moz-linear-gradient(#510007 2.625rem, #630009) !important;
  background-image: -o-linear-gradient(#510007 2.625rem, #630009) !important;
  background-image: linear-gradient(#510007 2.625rem, #630009) !important;
}

.lt-ie9 header.law-global-header.gh-resources--open {
  margin-top: 4.875rem;
}

.lt-ie9 header.law-global-header.gh-resources--closed {
  margin-top: 0;
}

.lt-ie9 header.law-global-header .global-header--inner {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 1320px;
}

.lt-ie9 header.law-global-header .global-header--inner .gh-inner--cell {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (min-width: 1080px) {
  header.law-global-header {
    background-image: -owg-linear-gradient(#510007 2.625rem, #630009) !important;
    background-image: -webkit-linear-gradient(#510007 2.625rem, #630009) !important;
    background-image: -moz-linear-gradient(#510007 2.625rem, #630009) !important;
    background-image: -o-linear-gradient(#510007 2.625rem, #630009) !important;
    background-image: linear-gradient(#510007 2.625rem, #630009) !important;
  }
  header.law-global-header.gh-resources--open {
    margin-top: 4.875rem;
  }
  header.law-global-header.gh-resources--closed {
    margin-top: 0;
  }
  header.law-global-header .global-header--inner {
    display: table;
    table-layout: fixed;
    width: 100%;
    max-width: 1320px;
  }
  header.law-global-header .global-header--inner .gh-inner--cell {
    display: table-cell;
    vertical-align: middle;
  }
}

/* ::Brand Area Styles */
/* ------------------------------------------------------------ */
header.law-global-header .global-header--brand {
  width: 100%;
  padding: 0.75rem 40px 0.75rem 0;
}

header.law-global-header .global-header--brand h1 {
  position: relative;
  width: 100%;
  max-width: 197px;
  height: 30px;
  margin: 0;
  z-index: 1;
  background: url(../../img/elon-law-secondary-reverse.svg) center center no-repeat;
  background-size: 100% auto;
}

header.law-global-header .global-header--brand h1 a {
  display: block;
  position: relative;
  height: 100%;
  color: white;
  outline-offset: 4px;
  text-decoration: none;
  border-bottom: none;
}

header.law-global-header .global-header--brand h1 a:hover, header.law-global-header .global-header--brand h1 a:focus {
  color: white;
}

.lt-ie9 header.law-global-header .global-header--brand {
  position: relative;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .global-header--brand {
    position: relative;
  }
}

.lt-ie9 header.law-global-header .global-header--brand {
  padding-right: 0;
}

.lt-ie9 header.law-global-header .global-header--brand h1 {
  margin: 0 auto;
}

@media screen and (min-width: 421px) {
  header.law-global-header .global-header--brand {
    padding-right: 0;
  }
  header.law-global-header .global-header--brand h1 {
    margin: 0 auto;
  }
}

.lt-ie9 header.law-global-header .global-header--brand {
  width: 340px;
  padding: 0 0 1.5rem 0;
}

.lt-ie9 header.law-global-header .global-header--brand.gh-inner--cell {
  vertical-align: bottom;
}

.lt-ie9 header.law-global-header .global-header--brand h1 {
  width: 340px;
  max-width: none;
  height: 50px;
}

.lt-ie9 header.law-global-header .global-header--brand .gh-brand--desktop-logo {
  display: block;
}

.lt-ie9 header.law-global-header .global-header--brand .gh-brand--mobile-logo {
  display: none;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .global-header--brand {
    width: 340px;
    padding: 0 0 1.5rem 0;
  }
  header.law-global-header .global-header--brand.gh-inner--cell {
    vertical-align: bottom;
  }
  header.law-global-header .global-header--brand h1 {
    width: 340px;
    max-width: none;
    height: 50px;
  }
  header.law-global-header .global-header--brand .gh-brand--desktop-logo {
    display: block;
  }
  header.law-global-header .global-header--brand .gh-brand--mobile-logo {
    display: none;
  }
}

/* ::Mobile Menu Toggle Styles */
/* ------------------------------------------------------------ */
header.law-global-header .gh-mobile-menu--toggle-open,
header.law-global-header .gh-mobile-menu--toggle-close {
  color: white;
  border-bottom: 0 !important;
  font-size: 22px;
  outline-offset: 4px;
}

header.law-global-header .gh-mobile-menu--toggle-open:hover, header.law-global-header .gh-mobile-menu--toggle-open:focus,
header.law-global-header .gh-mobile-menu--toggle-close:hover,
header.law-global-header .gh-mobile-menu--toggle-close:focus {
  color: white;
}

.lt-ie9 header.law-global-header .gh-mobile-menu--toggle-open, .lt-ie9
header.law-global-header .gh-mobile-menu--toggle-close {
  display: none;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .gh-mobile-menu--toggle-open,
  header.law-global-header .gh-mobile-menu--toggle-close {
    display: none;
  }
}

header.law-global-header .gh-mobile-menu--toggle-open {
  position: absolute;
  right: 0;
  top: 50%;
  height: 30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 30px;
}

header.law-global-header .gh-mobile-menu--toggle-open i {
  vertical-align: top;
  line-height: 30px;
}

header.law-global-header .gh-mobile-menu--toggle-close {
  position: absolute;
  right: 15px;
  top: 0.75rem;
}

/* ::Link Area/Common Navigation Styles */
/* ------------------------------------------------------------ */
.lt-ie9 header.law-global-header .global-header--links {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 95%;
  max-width: 400px;
  background-color: #630009;
  padding: 170px 30px 0 30px;
  z-index: 1000;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

@media screen and (max-width: 1079px) {
  header.law-global-header .global-header--links {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 95%;
    max-width: 400px;
    background-color: #630009;
    padding: 170px 30px 0 30px;
    z-index: 1000;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.lt-ie9 header.law-global-header .global-header--links {
  padding-left: 40px;
  padding-top: 2.625rem;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .global-header--links {
    padding-left: 40px;
    padding-top: 2.625rem;
  }
}

header.law-global-header .global-header--nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

header.law-global-header .global-header--nav > ul > li {
  color: #d9ccaa;
}

header.law-global-header .global-header--nav > ul > li > a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #d9ccaa;
  text-decoration: none;
  outline-offset: 4px;
  border-bottom: 1px dotted transparent;
}

header.law-global-header .global-header--nav > ul > li > a:focus {
  color: white;
  border-bottom-color: white;
}

.lt-ie9 header.law-global-header .global-header--nav > ul > li > a {
  border-bottom: none;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .global-header--nav > ul > li > a {
    border-bottom: none;
  }
}

@media (max-width: 1079px) {
  header.law-global-header .global-header--links {
    display: block;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -moz-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    align-content: stretch;
  }
  header.law-global-header .gh-nav--primary {
    -moz-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  header.law-global-header .gh-nav--secondary li:last-child {
    margin-bottom: 0;
  }
  header.law-global-header .gh-links--top-bar {
    -moz-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  header.law-global-header .gh-top-bar--outer {
    height: 100%;
  }
  header.law-global-header .gh-top-bar--inner {
    display: block;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -moz-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    align-content: stretch;
    height: 100%;
  }
  header.law-global-header .gh-top-bar--item {
    -moz-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  header.law-global-header .gh-top-bar--item.global-header--resources-wrap {
    -moz-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

html:not(.touch) header.law-global-header .global-header--nav > ul > li > a:hover {
  color: white;
  border-bottom-color: white;
}

.lt-ie9 .admin-bar header.law-global-header .global-header--links {
  top: 46px;
}

@media screen and (max-width: 782px) {
  .admin-bar header.law-global-header .global-header--links {
    top: 46px;
  }
}

.lt-ie9 .admin-bar header.law-global-header .global-header--links {
  top: 32px;
}

@media screen and (min-width: 783px) and (max-width: 1079px) {
  .admin-bar header.law-global-header .global-header--links {
    top: 32px;
  }
}

.lt-ie9 html.gh-mobile-menu--open header.law-global-header .global-header--links {
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -o-transition: -o-transform 0.4s;
  transition: transform 0.4s;
  visibility: visible;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.lt-ie9 html.gh-mobile-menu--closing header.law-global-header .global-header--links {
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -o-transition: -o-transform 0.4s;
  transition: transform 0.4s;
  visibility: visible;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.lt-ie9 html.gh-mobile-menu--closed header.law-global-header .global-header--links {
  visibility: hidden;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

@media screen and (max-width: 1079px) {
  html.gh-mobile-menu--open header.law-global-header .global-header--links {
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    transition: transform 0.4s;
    visibility: visible;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.65);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
  html.gh-mobile-menu--closing header.law-global-header .global-header--links {
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    transition: transform 0.4s;
    visibility: visible;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  html.gh-mobile-menu--closed header.law-global-header .global-header--links {
    visibility: hidden;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/* ::Primary Navigation Styles */
/* ------------------------------------------------------------ */
header.law-global-header .gh-nav--primary > ul > li {
  padding: 0;
  margin: 0 0 0.75rem 0;
}

header.law-global-header .gh-nav--primary > ul > li > a {
  font-family: trade-gothic-next-condensed, Helvetica, Verdana, sans-serif;
  font-size: 1.25rem;
  color: white;
  padding: 0.25rem 0;
}

header.law-global-header .gh-nav--primary > ul > li > a:focus {
  color: #d9ccaa;
}

.lt-ie9 header.law-global-header .gh-nav--primary {
  padding: 0.75rem 0 1.5rem 0;
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul {
  display: table;
  margin-left: auto;
  margin-right: 0;
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul > li {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul > li:not(:first-child) {
  padding-left: 30px;
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul > li > a {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul > li > a:focus {
  border-bottom-color: #d9ccaa;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .gh-nav--primary {
    padding: 0.75rem 0 1.5rem 0;
  }
  header.law-global-header .gh-nav--primary > ul {
    display: table;
    margin-left: auto;
    margin-right: 0;
  }
  header.law-global-header .gh-nav--primary > ul > li {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
  }
  header.law-global-header .gh-nav--primary > ul > li:not(:first-child) {
    padding-left: 30px;
  }
  header.law-global-header .gh-nav--primary > ul > li > a {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
  }
  header.law-global-header .gh-nav--primary > ul > li > a:focus {
    border-bottom-color: #d9ccaa;
  }
}

.lt-ie9 header.law-global-header .gh-nav--primary > ul > li:not(:first-child) {
  padding-left: 40px;
}

@media screen and (min-width: 1200px) {
  header.law-global-header .gh-nav--primary > ul > li:not(:first-child) {
    padding-left: 40px;
  }
}

html:not(.touch) header.law-global-header .gh-nav--primary > ul > li > a:hover {
  color: #d9ccaa;
}

.lt-ie9 html:not(.touch) header.law-global-header .gh-nav--primary > ul > li > a:hover {
  border-bottom-color: #d9ccaa;
}

@media screen and (min-width: 1080px) {
  html:not(.touch) header.law-global-header .gh-nav--primary > ul > li > a:hover {
    border-bottom-color: #d9ccaa;
  }
}

/* ::Top Bar Styles */
/* ------------------------------------------------------------ */
.lt-ie9 header.law-global-header .gh-links--top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.625rem;
  background-color: #510007;
}

.lt-ie9 header.law-global-header .gh-top-bar--outer {
  width: 100%;
  height: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

.lt-ie9 header.law-global-header .gh-top-bar--inner {
  display: table;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}

.lt-ie9 header.law-global-header .gh-top-bar--item {
  display: table-cell;
  vertical-align: middle;
  padding-top: 0.375rem !important;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .gh-links--top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.625rem;
    background-color: #510007;
  }
  header.law-global-header .gh-top-bar--outer {
    width: 100%;
    height: 100%;
    max-width: 1320px;
    padding: 0 20px;
    margin: 0 auto;
  }
  header.law-global-header .gh-top-bar--inner {
    display: table;
    height: 100%;
    margin-left: auto;
    margin-right: 0;
  }
  header.law-global-header .gh-top-bar--item {
    display: table-cell;
    vertical-align: middle;
    padding-top: 0.375rem !important;
  }
}

/* ::Secondary Navigation Styles */
/* ------------------------------------------------------------ */
header.law-global-header .gh-nav--secondary > ul > li {
  padding: 0;
  margin: 0 0 0.75rem 0;
}

header.law-global-header .gh-nav--secondary > ul > li > a {
  padding: 0.25rem 0;
}

.lt-ie9 header.law-global-header .gh-nav--secondary > ul > li > a {
  font-family: trade-gothic-next-condensed, Helvetica, Verdana, sans-serif;
  font-size: 1.25rem;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .gh-nav--secondary > ul > li > a {
    font-family: trade-gothic-next-condensed, Helvetica, Verdana, sans-serif;
    font-size: 1.25rem;
  }
}

.lt-ie9 header.law-global-header .gh-nav--secondary {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 5px;
}

.lt-ie9 header.law-global-header .gh-nav--secondary > ul {
  display: table;
  height: 100%;
}

.lt-ie9 header.law-global-header .gh-nav--secondary > ul > li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 6px;
  margin: 0;
}

.lt-ie9 header.law-global-header .gh-nav--secondary > ul > li > a {
  padding: 0 2px;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .gh-nav--secondary {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 5px;
  }
  header.law-global-header .gh-nav--secondary > ul {
    display: table;
    height: 100%;
  }
  header.law-global-header .gh-nav--secondary > ul > li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 6px;
    margin: 0;
  }
  header.law-global-header .gh-nav--secondary > ul > li > a {
    padding: 0 2px;
  }
}

.lt-ie9 header.law-global-header .gh-nav--secondary {
  padding-right: 14px;
}

@media screen and (min-width: 1200px) {
  header.law-global-header .gh-nav--secondary {
    padding-right: 14px;
  }
}

/* ::Resources Navigation Styles */
/* ------------------------------------------------------------ */
header.law-global-header .global-header--resources-wrap {
  padding: 40px 30px 10px 30px;
  margin: 30px -30px 0 -30px;
  background-color: #510007;
}

.lt-ie9 header.law-global-header .global-header--resources-wrap {
  padding: 0px 0px 0px 10px;
  margin: 0;
  background-color: transparent;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .global-header--resources-wrap {
    padding: 0px 0px 0px 10px;
    margin: 0;
    background-color: transparent;
  }
}

.lt-ie9 header.law-global-header .global-header--resources-wrap {
  padding-left: 20px;
}

@media screen and (min-width: 1200px) {
  header.law-global-header .global-header--resources-wrap {
    padding-left: 20px;
  }
}

header.law-global-header .gh-resources--toggle {
  display: block;
  padding: 0px 2px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #d9ccaa !important;
  outline-offset: 4px;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}

header.law-global-header .gh-resources--toggle i {
  margin-right: 4px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

header.law-global-header .gh-resources--toggle:focus {
  color: white !important;
  border-bottom-color: white;
}

.lt-ie9 header.law-global-header .gh-resources--toggle {
  display: none;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .gh-resources--toggle {
    display: none;
  }
}

header.law-global-header .gh-nav--resources > ul:before, header.law-global-header .gh-nav--resources > ul:after {
  display: table;
  content: " ";
}

header.law-global-header .gh-nav--resources > ul:after {
  clear: both;
}

header.law-global-header .gh-nav--resources > ul > li {
  float: left;
  text-align: center;
  margin: 0 0 30px 0;
  width: 50%;
}

header.law-global-header .gh-nav--resources > ul > li > a {
  color: #f3efe4;
  font-size: 0.875rem;
  border-bottom: none;
}

header.law-global-header .gh-nav--resources > ul > li > a i {
  display: block;
  font-size: 20px;
}

header.law-global-header .gh-nav--resources > ul > li > a:focus {
  color: white;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul > li {
  width: 25%;
}

@media screen and (min-width: 421px) {
  header.law-global-header .gh-nav--resources > ul > li {
    width: 25%;
  }
}

.lt-ie9 header.law-global-header .gh-nav--resources {
  position: absolute;
  top: -4.875rem;
  left: 0;
  width: 100%;
  height: 4.875rem;
  background-color: #191919;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul {
  display: table;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  table-layout: fixed;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul:before, .lt-ie9 header.law-global-header .gh-nav--resources > ul:after {
  content: none;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul > li {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px;
  margin: 0;
  width: auto;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul > li > a {
  color: white;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul > li > a i {
  font-size: 30px;
}

.lt-ie9 header.law-global-header .gh-nav--resources > ul > li > a:focus {
  color: #d9ccaa;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .gh-nav--resources {
    position: absolute;
    top: -4.875rem;
    left: 0;
    width: 100%;
    height: 4.875rem;
    background-color: #191919;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  header.law-global-header .gh-nav--resources > ul {
    display: table;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
    table-layout: fixed;
  }
  header.law-global-header .gh-nav--resources > ul:before, header.law-global-header .gh-nav--resources > ul:after {
    content: none;
  }
  header.law-global-header .gh-nav--resources > ul > li {
    float: none;
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    margin: 0;
    width: auto;
  }
  header.law-global-header .gh-nav--resources > ul > li > a {
    color: white;
  }
  header.law-global-header .gh-nav--resources > ul > li > a i {
    font-size: 30px;
  }
  header.law-global-header .gh-nav--resources > ul > li > a:focus {
    color: #d9ccaa;
  }
}

html:not(.touch) header.law-global-header .gh-resources--toggle:hover {
  color: white !important;
  border-bottom-color: white;
}

html:not(.touch) header.law-global-header .gh-nav--resources > ul > li > a:hover {
  color: white;
}

.lt-ie9 html:not(.touch) header.law-global-header .gh-nav--resources > ul > li > a:hover {
  color: #d9ccaa;
}

@media screen and (min-width: 1080px) {
  html:not(.touch) header.law-global-header .gh-nav--resources > ul > li > a:hover {
    color: #d9ccaa;
  }
}

header.law-global-header.gh-resources--open .gh-resources--toggle {
  color: white;
  border-bottom-color: transparent;
}

header.law-global-header.gh-resources--open .gh-resources--toggle i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

header.law-global-header.gh-resources--open .gh-resources--sr-jump-link {
  display: block;
}

.lt-ie9 header.law-global-header.gh-resources--open .gh-nav--resources {
  visibility: visible;
}

@media screen and (min-width: 1080px) {
  header.law-global-header.gh-resources--open .gh-nav--resources {
    visibility: visible;
  }
}

header.law-global-header.gh-resources--closed .gh-resources--toggle i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

header.law-global-header.gh-resources--closed .gh-resources--sr-jump-link {
  display: none;
}

.lt-ie9 header.law-global-header.gh-resources--closed .gh-nav--resources {
  visibility: hidden;
}

@media screen and (min-width: 1080px) {
  header.law-global-header.gh-resources--closed .gh-nav--resources {
    visibility: hidden;
  }
}

/* ::Global Header Search Styles */
/* ------------------------------------------------------------ */
header.law-global-header .global-header--search-wrap {
  padding: 0 10px;
}

header.law-global-header .global-header--search-wrap form {
  position: relative;
}

header.law-global-header .global-header--search-wrap .gh-search--input {
  width: 180px;
  height: 30px;
  border: 0;
  margin: 0;
  background-color: #510007;
  border-radius: 15px;
  padding: 0 40px 0 18px;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
  font-size: 0.875rem;
  color: white;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

header.law-global-header .global-header--search-wrap .gh-search--input::-moz-placeholder {
  color: #d9ccaa;
  opacity: 1;
}

header.law-global-header .global-header--search-wrap .gh-search--input:-ms-input-placeholder {
  color: #d9ccaa;
}

header.law-global-header .global-header--search-wrap .gh-search--input::-webkit-input-placeholder {
  color: #d9ccaa;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus {
  background-color: #f3efe4 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #191919;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus::-moz-placeholder {
  color: #999;
  opacity: 1;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus:-ms-input-placeholder {
  color: #999;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus::-webkit-input-placeholder {
  color: #999;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus + .gh-search--submit {
  color: #b59a57;
}

header.law-global-header .global-header--search-wrap .gh-search--input:focus + .gh-search--submit:hover, header.law-global-header .global-header--search-wrap .gh-search--input:focus + .gh-search--submit:focus {
  color: #7f6b38;
}

header.law-global-header .global-header--search-wrap .gh-search--submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0 !important;
  text-align: center;
  color: #d9ccaa;
  cursor: pointer;
  font-size: 1em;
  line-height: 30px;
  text-shadow: none;
  box-shadow: none;
}

header.law-global-header .global-header--search-wrap .gh-search--submit i {
  margin: 0;
  line-height: 28px;
  border: 0;
  vertical-align: top;
}

header.law-global-header .global-header--search-wrap .gh-search--submit i::before {
  margin-bottom: 3px;
}

header.law-global-header .global-header--search-wrap .gh-search--submit:hover, header.law-global-header .global-header--search-wrap .gh-search--submit:focus {
  background-color: transparent;
  color: white;
}

header.law-global-header .global-header--search-wrap .gh-search--submit:focus {
  outline: 1px dotted;
}

.lt-ie9 header.law-global-header .global-header--search-wrap {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  padding: 0 20px;
}

.lt-ie9 header.law-global-header .global-header--search-wrap .gh-search--input {
  width: 100%;
  height: 40px;
  border-radius: 20px;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .global-header--search-wrap {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 0 20px;
  }
  header.law-global-header .global-header--search-wrap .gh-search--input {
    width: 100%;
    height: 40px;
    border-radius: 20px;
  }
}

.lt-ie9 header.law-global-header .global-header--search-wrap:last-child {
  padding-right: 0;
}

.lt-ie9 header.law-global-header .global-header--search-wrap .gh-search--input {
  background-color: #630009;
}

@media screen and (min-width: 1080px) {
  header.law-global-header .global-header--search-wrap:last-child {
    padding-right: 0;
  }
  header.law-global-header .global-header--search-wrap .gh-search--input {
    background-color: #630009;
  }
}

.lt-ie9 header.law-global-header .global-header--search-wrap {
  padding: 0 20px;
}

.lt-ie9 header.law-global-header .global-header--search-wrap .gh-search--input {
  width: 200px;
}

@media screen and (min-width: 1200px) {
  header.law-global-header .global-header--search-wrap {
    padding: 0 20px;
  }
  header.law-global-header .global-header--search-wrap .gh-search--input {
    width: 200px;
  }
}

/* ::Calls to Action Navigation Styles */
/* ------------------------------------------------------------ */
header.law-global-header .gh-nav--cta > ul > li {
  display: inline-block;
  margin: 0;
}

header.law-global-header .gh-nav--cta > ul > li + li {
  margin-left: 4px;
}

header.law-global-header .gh-nav--cta > ul > li > a {
  height: 30px;
  border: 1px solid #d9ccaa;
  padding: 0 10px;
  font-family: trade-gothic-next-condensed, Helvetica, Verdana, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 28px;
  text-transform: uppercase;
  background-color: #d9ccaa;
  color: #3e341b;
  border-radius: 5px;
  outline: 0;
}

header.law-global-header .gh-nav--cta > ul > li > a:focus {
  background-color: transparent;
  color: #d9ccaa;
}

.lt-ie9 header.law-global-header .gh-nav--cta {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.lt-ie9 header.law-global-header .gh-nav--cta > ul {
  display: table;
  table-layout: fixed;
  border-spacing: 10px;
  width: 100%;
}

.lt-ie9 header.law-global-header .gh-nav--cta > ul > li {
  display: table-cell;
  margin: 0;
}

@media screen and (max-width: 1079px) {
  header.law-global-header .gh-nav--cta {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  header.law-global-header .gh-nav--cta > ul {
    display: table;
    table-layout: fixed;
    border-spacing: 10px;
    width: 100%;
  }
  header.law-global-header .gh-nav--cta > ul > li {
    display: table-cell;
    margin: 0;
  }
}

html:not(.touch) header.law-global-header .gh-nav--cta > ul > li > a:hover {
  background-color: transparent;
  color: #d9ccaa;
}

/* ::Print styles */
/* ------------------------------------------------------------ */
@media print {
  header.law-global-header {
    display: none !important;
  }
}

/* ::Variables */
/* ------------------------------------------------------------ */
/* ::Base styles */
/* ------------------------------------------------------------ */
.law-global-footer {
  position: relative;
  background-color: #191919;
  color: white;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.law-global-footer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.law-global-footer a {
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
  font-size: 1em;
  line-height: 1;
  border-bottom: 1px dotted transparent;
  text-decoration: none;
  color: #ccc;
  outline-offset: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.law-global-footer a:not([href^=tel]):focus {
  border-bottom: 1px dotted #d9ccaa;
  color: #d9ccaa;
  text-decoration: none;
}

.law-global-footer .gf-to-top--sr-jump-link {
  top: 0;
  right: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.2s;
  -moz-transition: -moz-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  transition: transform 0.2s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.law-global-footer .gf-to-top--sr-jump-link:focus {
  height: auto;
  opacity: 1;
  padding: 8px 15px;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.law-global-footer .global-footer--row {
  padding: 2.5005rem 0;
}

.law-global-footer .global-footer--row .gf-row--inner {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  align-content: stretch;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

html:not(.touch) .law-global-footer a:hover:not([href^=tel]) {
  border-bottom: 1px dotted #d9ccaa;
  color: #d9ccaa;
  text-decoration: none;
}

/* ::Social Media styles */
/* ------------------------------------------------------------ */
.law-global-footer .global-footer--social {
  text-align: center;
  background-color: #212121;
  padding: 0.75rem 0;
}

.law-global-footer .global-footer--social ul {
  list-style-type: none;
  margin: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  align-content: center;
}

.law-global-footer .global-footer--social ul li {
  margin: 0;
}

.law-global-footer .global-footer--social ul li {
  width: 40px;
  height: 40px;
}

.law-global-footer .global-footer--social ul li:before {
  content: none;
}

.law-global-footer .global-footer--social a {
  display: block;
  height: 100%;
  color: #ccc !important;
  border-bottom: none !important;
  outline-offset: -1px;
  text-decoration: none;
}

.law-global-footer .global-footer--social a:focus {
  color: #d9ccaa !important;
  text-decoration: none;
}

.law-global-footer .global-footer--social a i {
  line-height: 40px;
  font-size: 26px;
}

.lt-ie9 .law-global-footer .global-footer--social ul li {
  width: 50px;
  height: 50px;
}

.lt-ie9 .law-global-footer .global-footer--social a i {
  line-height: 50px;
  font-size: 32px;
}

@media screen and (min-width: 801px) {
  .law-global-footer .global-footer--social ul li {
    width: 50px;
    height: 50px;
  }
  .law-global-footer .global-footer--social a i {
    line-height: 50px;
    font-size: 32px;
  }
}

html:not(.touch) .law-global-footer .global-footer--social a:hover {
  color: #d9ccaa !important;
  text-decoration: none;
}

/* ::Resources links styles */
/* ------------------------------------------------------------ */
.law-global-footer .gf-resources--links {
  position: relative;
  -moz-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

.law-global-footer .gf-resources--links ul {
  list-style-type: none;
  margin: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  align-content: stretch;
  height: 100%;
  padding: 0;
}

.law-global-footer .gf-resources--links ul li {
  margin: 0;
}

.law-global-footer .gf-resources--links ul li {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 0.1875rem;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
}

.law-global-footer .gf-resources--links ul li:before {
  content: none;
}

.lt-ie9 .law-global-footer .gf-resources--links {
  -moz-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.lt-ie9 .law-global-footer .gf-resources--links.gf-resources--links-left {
  text-align: right;
  padding-right: 40px;
  border-right: 1px solid #2b2b2b;
}

.lt-ie9 .law-global-footer .gf-resources--links.gf-resources--links-right {
  text-align: left;
  padding-left: 40px;
}

@media screen and (min-width: 421px) {
  .law-global-footer .gf-resources--links {
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .law-global-footer .gf-resources--links.gf-resources--links-left {
    text-align: right;
    padding-right: 40px;
    border-right: 1px solid #2b2b2b;
  }
  .law-global-footer .gf-resources--links.gf-resources--links-right {
    text-align: left;
    padding-left: 40px;
  }
}

.lt-ie9 .law-global-footer .gf-resources--links {
  -moz-box-flex: 0 0 30%;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}

.lt-ie9 .law-global-footer .gf-resources--links.gf-resources--links-left {
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.lt-ie9 .law-global-footer .gf-resources--links.gf-resources--links-right {
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
  border-left: 1px solid #2b2b2b;
}

@media screen and (min-width: 801px) {
  .law-global-footer .gf-resources--links {
    -moz-box-flex: 0 0 30%;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
  }
  .law-global-footer .gf-resources--links.gf-resources--links-left {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .law-global-footer .gf-resources--links.gf-resources--links-right {
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    border-left: 1px solid #2b2b2b;
  }
}

/* ::Resources location styles */
/* ------------------------------------------------------------ */
.law-global-footer .gf-resources--location {
  position: relative;
  -moz-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  padding-top: 1.875rem;
}

.law-global-footer .gf-resources--location img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 0.75rem auto;
}

.law-global-footer .gf-resources--location address {
  margin: 0;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  color: white;
}

.law-global-footer .gf-resources--location a[href^=tel] {
  color: white !important;
  text-decoration: none;
}

.law-global-footer .gf-resources--location a[href^=tel]:hover {
  cursor: default;
}

.lt-ie9 .law-global-footer .gf-resources--location {
  -moz-box-flex: 0 0 40%;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 20px;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

@media screen and (min-width: 801px) {
  .law-global-footer .gf-resources--location {
    -moz-box-flex: 0 0 40%;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 20px;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

html.touch .law-global-footer .gf-resources--location a[href^=tel] {
  color: #d9ccaa !important;
  border-bottom-color: #d9ccaa;
}

/* ::Copyright styles */
/* ------------------------------------------------------------ */
.law-global-footer .global-footer--copyright {
  color: #b2b2b2;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  padding: 0 0 20px 0;
}

.law-global-footer .global-footer--copyright p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #b2b2b2;
  font-family: trade-gothic-next, Helvetica, Verdana, sans-serif;
}

/* ::Print styles */
/* ------------------------------------------------------------ */
@media print {
  footer.law-global-footer {
    display: none !important;
  }
}
