/**
 * CONTENTS............You’re reading it!
 * NORMALIZE...........Normalize.css 4.0
 * FONT-FACE...........Font family names
 * MIXINS..............LESS mixins
 * ELEMENTS............Basic tag styles
 * LAYOUT..............Template layout/structure
 * HOMEPAGE............Styles for homepage layout
 * CONTENT.............Styles for shared & inside content
 * RESPONSIVE..........Responsive styles, mobile first
    comment
 */
/*------------------------------------*\
    #NORMALIZE
\*------------------------------------*/
/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
@import "bootstrap-custom.css";
progress,
sub,
sup {
  vertical-align: baseline;
}
button,
hr,
input,
select {
  overflow: visible;
}
[type=checkbox],
[type=radio],
legend {
  box-sizing: border-box;
  padding: 0;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
  font-size: 1em;
}
hr {
  box-sizing: content-box;
  height: 0;
}
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}
optgroup {
  font-weight: 700;
}
button,
select {
  text-transform: none;
}
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}
[disabled] {
  cursor: default;
}
[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring,
input:-moz-focusring {
  outline: ButtonText dotted 1px;
}
fieldset {
  border: none;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
textarea {
  overflow: auto;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
.clearfix:after,
.clearfix:before {
  display: table;
  content: " ";
}
.clearfix:after {
  clear: both;
}
/*------------------------------------*\
    #FONT-FACE

    font-family: 'Oswald', sans-serif;
    regular: 400
    bold: 700
\*------------------------------------*/
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
.breakout {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .breakout {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.no-top-margin {
  margin-top: 0;
}
/*------------------------------------*\
    #ELEMENTS
\*------------------------------------*/
body,
html {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  overflow-x: hidden;
}
dl {
  color: #0c5836;
}
dl dt {
  font-weight: 700;
}
dl dd {
  margin: 0 0 1rem 0;
}
h1 {
  font-size: 1.5rem;
  /* 27px */
  line-height: 1.2;
  font-weight: normal;
  text-transform: uppercase;
}
.law h1 {
  color: #0c5836;
}
.arts h1 {
  color: #000000;
}
.women h1 {
  color: #d31145;
}
h2 {
  font-size: 1.5rem;
  /* 27px */
  line-height: 1.2;
  font-weight: normal;
}
h3 {
  font-size: 1.25rem;
  /* 22.5px */
  line-height: 1.2;
  font-weight: normal;
}
address {
  margin: 1rem 0;
  font-style: normal;
}
.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}
.btn-primary {
  text-transform: uppercase;
  color: #0c5836;
  background: #e0edc3;
  border: none;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-primary:hover {
  background: #6cb33f;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus {
  background: #6cb33f;
}
.arts .btn-primary {
  color: #000000;
  background: #a89d8a;
}
.arts .btn-primary:hover,
.arts .btn-primary:focus,
.arts .btn-primary:active,
.arts .btn-primary:active:hover,
.arts .btn-primary:active:focus {
  color: #a89d8a;
  background: #000000;
}
.women .btn-primary {
  color: #ffffff;
  background: #d31145;
}
.women .btn-primary:hover,
.women .btn-primary:focus,
.women .btn-primary:active,
.women .btn-primary:active:hover,
.women .btn-primary:active:focus {
  color: #d31145;
  background: #fde6ec;
}
.field-validation-error {
  display: block;
  padding: .25rem;
  background: #e0edc3;
}
.unlimited a,
.unlimited ~ footer a,
.law a,
.law ~ footer a {
  color: #6cb33f;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.unlimited a:hover,
.unlimited ~ footer a:hover,
.law a:hover,
.law ~ footer a:hover {
  color: #0c5836;
  text-decoration: none;
}
.arts a,
.arts ~ footer a {
  color: #a89d8a;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.arts a:hover,
.arts ~ footer a:hover {
  color: #000000;
  text-decoration: none;
}
.women a,
.women ~ footer a {
  color: #d31145;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.women a:hover,
.women ~ footer a:hover {
  color: #750926;
  text-decoration: none;
}
.sidebar {
  font-size: .75rem;
  line-height: 1.2;
}
.lead {
  margin: 1rem 0;
  font-size: 1.5rem;
  line-height: 1.2;
}
.text-center {
  text-align: center;
}
/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
header.unlimited {
  padding-top: 2rem;
}
header.unlimited a[href^="tel"] {
  float: right;
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
  cursor: text;
}
header.unlimited .logo {
  max-width: 270px;
  margin-top: 4rem;
}
header.unlimited.error .logo {
  margin-top: 3rem;
}
header.unlimited nav {
  margin-top: -155px;
  padding: 4rem 0 6rem;
  text-align: center;
  background: #0c5836;
}
header.unlimited nav ul {
  margin: 0;
  padding: 0;
}
header.unlimited nav li {
  display: inline;
  padding: 0 1rem;
  list-style: none;
  border-right: 2px solid #ffffff;
}
header.unlimited nav li:last-child {
  border-right: none;
}
header.unlimited nav a {
  position: relative;
  font-size: 1.875em;
  color: #ffffff;
  text-decoration: none;
}
header.unlimited nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
header.unlimited nav a:hover {
  color: #ffffff;
}
header.unlimited nav a:hover::after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
header.unlimited.error nav {
  color: #ffffff;
}
header.unlimited.error nav h1,
header.unlimited.error nav h2,
header.unlimited.error nav p {
  margin: 0;
}
header.unlimited.error nav h1 a,
header.unlimited.error nav h2 a,
header.unlimited.error nav p a {
  font-size: inherit;
  text-decoration: underline;
}
header.unlimited.error nav ul {
  margin-top: 1rem;
}
header.law {
  padding: 3rem 0;
}
header.law.law-sub {
  padding: 3rem 0 6rem;
}
header.law .container {
  position: relative;
}
header.law .nav-toggle {
  display: none;
}
header.law nav {
  position: absolute;
  right: 0;
  top: -1rem;
  z-index: 1000;
  text-align: center;
}
header.law a[href^="tel"] {
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
  cursor: text;
}
header.law ul {
  margin: 1em 0 0 0;
  padding: 0;
  list-style: none;
  font-size: .875rem;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}
header.law ul a {
  padding: 0 .5rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
header.law ul a:hover {
  background: #0c5836;
  color: #ffffff;
}
header.law ul li:first-child a,
header.law ul li.active a {
  font-weight: 700;
}
header.law ul.sub-nav {
  padding-top: 1em;
  border-top: 2px solid #6cb33f;
}
header.law ul.sub-nav a {
  color: #6cb33f;
}
header.law ul.sub-nav a:hover {
  background: #6cb33f;
  color: #ffffff;
}
header.law ul.sub-nav li:first-child a {
  font-weight: 400;
}
header.law ul.sub-nav li.active a {
  font-weight: 700;
}
header.law .logo {
  display: block;
  text-align: center;
}
header.law.law-sub .logo {
  margin-top: 2rem;
}
header.arts {
  padding: 3rem 0;
}
header.arts.arts-sub {
  padding: 3rem 0 6rem;
}
header.arts .container {
  position: relative;
}
header.arts .nav-toggle {
  display: none;
}
header.arts nav {
  position: absolute;
  right: 0;
  top: -1rem;
  z-index: 1000;
  text-align: center;
}
header.arts a[href^="tel"] {
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
  cursor: text;
}
header.arts ul {
  margin: 1rem 0 0 0;
  padding: 0;
  list-style: none;
  font-size: .875rem;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}
header.arts ul a {
  padding: 0 .5rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
header.arts ul a:hover {
  background: #a89d8a;
  color: #ffffff;
}
header.arts ul li:first-child a,
header.arts ul li.active a {
  font-weight: 700;
}
header.arts .logo {
  display: block;
  text-align: center;
}
header.arts.arts-sub .logo {
  margin-top: 2rem;
}
header.women {
  padding: 8rem 0 5rem;
  background: url(/media/oq0hkrul/women-billboard.jpg) 0 0 / cover no-repeat;
  border-bottom: 15px solid #d31145;
}
header.women.women-sub {
  padding: 2rem 0 3rem;
  background: none;
  border: none;
}
header.women .container {
  position: relative;
}
header.women .nav-toggle {
  display: none;
}
header.women nav {
  position: absolute;
  right: 0;
  top: -6rem;
  z-index: 1000;
  text-align: center;
}
header.women.women-sub nav {
  top: -1rem;
}
header.women a[href^="tel"] {
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
  cursor: text;
}
header.women ul {
  margin: 1rem 0 0 0;
  padding: 0;
  list-style: none;
  font-size: .875rem;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}
header.women ul a {
  padding: 0 .5rem;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
header.women ul a:hover {
  background: #d31145;
  color: #ffffff;
}
header.women ul li:first-child a,
header.women ul li.active a {
  font-weight: 700;
}
header.women ul.sub-nav {
  padding-top: 1em;
  border-top: 2px solid #d31145;
}
header.women ul.sub-nav a {
  color: #d31145;
}
header.women ul.sub-nav a:hover {
  background: #d31145;
  color: #ffffff;
}
header.women ul.sub-nav li:first-child a {
  font-weight: 400;
}
header.women ul.sub-nav li.active a {
  font-weight: 700;
}
header.women .logo {
  display: block;
  text-align: center;
}
header.women.arts-sub .logo {
  margin-top: 2rem;
}
.footer-links {
  margin: 1rem 0;
  padding-top: 1rem;
  overflow: auto;
  text-align: center;
  border-top-width: 2px;
  border-top-style: solid;
}
.footer-links h4 {
  margin: 0;
}
.footer-links li {
  font-size: .875rem;
  line-height: normal;
  text-transform: uppercase;
}
.footer-links li:first-child {
  font-weight: 700;
}
.footer-links li:nth-child(2),
.footer-links li:nth-child(3),
.footer-links li:nth-child(4) {
  display: inline-block;
  padding: 0 .675rem 0 .5rem;
}
.footer-links li:nth-child(2),
.footer-links li:nth-child(3) {
  border-right: 1px solid currentColor;
}
.footer-links a {
  text-decoration: none;
}
.footer-links .social {
  margin: 1em 0;
}
.footer-links .social a {
  display: inline-block;
  height: 2rem;
}
.footer-links .social .icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  fill: #6cb33f;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
.footer-links .social .icon:hover {
  fill: #0c5836;
}
.footer-links .legal {
  font-size: .75rem;
}
.unlimited ~ footer .footer-links,
.law ~ footer .footer-links {
  border-top-color: #6cb33f;
}
.arts ~ footer .footer-links {
  border-top-color: #000000;
}
.arts ~ footer .footer-links .social .icon {
  fill: #a89d8a;
}
.arts ~ footer .footer-links .social .icon:hover {
  fill: #000000;
}
.women ~ footer .footer-links {
  border-top-color: #d31145;
}
.women ~ footer .footer-links .social .icon {
  fill: #d31145;
}
.women ~ footer .footer-links .social .icon:hover {
  fill: #750926;
}
/*------------------------------------*\
    #HOMEPAGE
\*------------------------------------*/
main.unlimited {
  margin-top: 4rem;
}
main.unlimited blockquote {
  margin: 2rem 0;
  padding: 0;
  font-weight: 700;
  color: #0c5836;
  text-align: left;
}
footer.unlimited.instagram {
  margin-top: 1rem;
  padding-top: 1rem;
  background: url(/media/4vma3vgs/instagram-background.jpg) 0 0 / cover no-repeat;
  color: #ffffff;
}
footer.unlimited.instagram .feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  text-align: center;
}
footer.unlimited.instagram .feed figure {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 0;
	padding: 0 .5rem;
}
footer.unlimited.instagram .feed.gallery figure {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-right: 2px;
}
footer.unlimited.instagram .feed figure img {
    height: auto;
    max-width: 100%;
}
footer.unlimited.instagram .feed.gallery figure figcaption {
  margin-top: .5rem;
  word-break: break-word;
}
footer.unlimited.instagram .feed figcaption {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .75rem;
  line-height: 1.1;
  word-break: break-word;
}
footer.unlimited.instagram a {
  color: #ffffff;
}
footer.unlimited.instagram a:hover {
  color: #ffffff;
}
footer.unlimited.instagram .social {
  margin: 1em 0;
  text-align: center;
}
footer.unlimited.instagram .social a {
  display: inline-block;
  height: 2rem;
}
footer.unlimited.instagram .social .icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}
footer.unlimited.instagram .legal {
  font-size: .75rem;
  text-align: center;
}
/*------------------------------------*\
    #CONTENT
\*------------------------------------*/
main.law {
  padding-bottom: 3rem;
}
main.law .lead {
  color: #0c5836;
}
main.law .breakout {
  background: #e0edc3;
}
main.law .news-items {
  margin-top: 1rem;
}
main.law .news-item {
  margin-bottom: 1rem;
  border-bottom: 2px solid #6cb33f;
}
main.law .news-item:last-child {
  border: none;
}
main.law .news-item .title + p {
  margin-top: 0;
}
main.law .news-item .news-date {
  text-transform: uppercase;
}
main.law .featured-cases h2 {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
}
main.law .featured-cases h2 + ul {
  margin-top: 0;
}
main.law .section-nav {
  padding: 0;
  list-style: none;
  overflow: auto;
}
main.law .section-nav li {
  float: left;
  margin-right: .5rem;
  padding-right: .5rem;
  font-size: .875rem;
  line-height: normal;
}
main.law .section-nav li:not(:last-child) {
  border-right: 1px solid #6cb33f;
}
main.law .section-nav a {
  text-decoration: none;
  text-transform: uppercase;
}
main.law .section-nav li.active a {
  font-weight: 700;
}
main.law form {
  margin-top: 2rem;
}
main.law form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
main.law form .checkbox label {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: .5rem;
}
main.law form textarea {
  min-height: 6rem;
}
main ul:not(.list-unstyled),
main ul:not(.list-inline) {
  padding-left: 1rem;
  list-style-type: square;
}
main ol:not(.list-unstyled) {
  padding-left: 1rem;
}
main p + ul,
main p + ol {
  margin-top: -1em;
}
.arts .posters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.arts .posters figure {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 0 0 2rem 0;
  text-align: center;
}
.arts .posters figure img {
  display: inline-block;
}
.arts .posters figure figcaption {
  line-height: 1.1;
}
.arts .posters.listing figure {
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.arts .breakout {
  background: url(/media/ytxmb2of/charna-productions-background.jpg) center center / cover no-repeat;
}
.arts .breakout blockquote {
  margin: 1rem 0;
  font-weight: 700;
}
.arts .breakout p {
  font-size: 1.5rem;
  line-height: 1.2;
}
.arts .breakout .sig-logos {
  text-align: center;
}
.arts .breakout .sig-logos > img {
  margin-bottom: 2rem;
}
.arts .breakout .sig-logos a {
  margin: .5rem;
}
.arts .instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  text-align: center;
}
.arts .instagram figure {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 0;
	padding: 0 .5rem;
}
.arts .instagram.gallery figure {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  padding-right: 2px;
}
.arts .instagram figure img,
.arts .instagram.gallery figure img {
    height: auto;
    max-width: 100%;
}
.arts .instagram.gallery figure figcaption {
  margin-top: .5rem;
  word-break: break-word;
}
.arts .instagram figcaption {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .75rem;
  line-height: 1.1;
  word-break: break-word;
}
.arts .production-details {
  padding-bottom: 2rem;
}
.arts .production-details .additional-text p:first-child {
  margin-top: 0;
}
.arts .production-details h2 {
  margin-top: 2em;
}
.arts .other-productions > div {
  border-top: 2px solid #000000;
}
.arts .section-nav {
  padding: 0;
  list-style: none;
  overflow: auto;
}
.arts .section-nav li {
  float: left;
  margin-right: .5rem;
  padding-right: .5rem;
  font-size: .875rem;
  line-height: normal;
}
.arts .section-nav li:not(:last-child) {
  border-right: 1px solid #a89d8a;
}
.arts .section-nav a {
  text-decoration: none;
  text-transform: uppercase;
}
.arts .section-nav li.active a {
  font-weight: 700;
}
.arts .news-items {
  margin-top: 1rem;
}
.arts .news-item {
  margin-bottom: 1rem;
  border-bottom: 2px solid #000000;
}
.arts .news-item:last-child {
  border: none;
}
.arts .news-item .title + p {
  margin-top: 0;
}
.arts .news-item .news-date {
  text-transform: uppercase;
}
.arts form {
  margin-top: 2rem;
}
.arts form legend {
  border-color: #000000;
}
.arts form textarea {
  min-height: 6rem;
}
.arts .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.arts .logos a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: .5rem auto;
  text-align: center;
}
.arts .logos img {
  max-width: 100%;
  height: auto;
}
main.women {
  padding-top: 3rem;
}
main.women blockquote {
  margin: 1rem 0;
  font-weight: 700;
  color: #d31145;
}
main.women .section-nav {
  padding: 0;
  list-style: none;
  overflow: auto;
}
main.women .section-nav li {
  float: left;
  margin-right: .5rem;
  padding-right: .5rem;
  font-size: .875rem;
  line-height: normal;
}
main.women .section-nav li:not(:last-child) {
  border-right: 1px solid #d31145;
}
main.women .section-nav a {
  text-decoration: none;
  text-transform: uppercase;
}
main.women .section-nav li.active a {
  font-weight: 700;
}
main.women .news-items {
  margin-top: 1rem;
}
main.women .news-item {
  margin-bottom: 1rem;
  border-bottom: 2px solid #d31145;
}
main.women .news-item:last-child {
  border: none;
}
main.women .news-item .title + p {
  margin-top: 0;
}
main.women .news-item .news-date {
  text-transform: uppercase;
}
main.women form {
  margin-top: 2rem;
}
main.women form legend {
  border-color: #d31145;
}
main.women form textarea {
  min-height: 6rem;
}
/*------------------------------------*\
    #RESPONSIVE
\*------------------------------------*/
@media screen and (max-width: 599px) {
  header.law .nav-toggle,
  header.arts .nav-toggle,
  header.women .nav-toggle {
    position: absolute;
    right: 1rem;
    top: -2rem;
    z-index: 200;
    display: block;
    padding: 0;
    background: none;
    border: none;
    font-weight: 700;
  }
  header.law .nav-toggle .bar,
  header.arts .nav-toggle .bar,
  header.women .nav-toggle .bar {
    display: block;
    width: 65%;
    height: 2px;
    margin: 0 auto 2px;
    background: #000000;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  header.law nav,
  header.arts nav,
  header.women nav {
    left: 0;
    top: -3rem;
    right: auto;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: #6cb33f;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  header.women .nav-toggle {
    top: -6rem;
  }
  header.women.women-sub .nav-toggle {
    top: -1rem;
  }
  header.women nav {
    top: -8rem;
  }
  header.women.women-sub nav {
    top: -2rem;
  }
  .nav-in header.law nav,
  .nav-in header.arts nav,
  .nav-in header.women nav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .nav-in header.law .nav-toggle .bar:first-child,
  .nav-in header.arts .nav-toggle .bar:first-child,
  .nav-in header.women .nav-toggle .bar:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-in header.law .nav-toggle .bar:nth-child(2),
  .nav-in header.arts .nav-toggle .bar:nth-child(2),
  .nav-in header.women .nav-toggle .bar:nth-child(2) {
    -webkit-transform: translateY(-4px) rotate(-45deg);
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav-in header.law .nav-toggle .bar:last-child,
  .nav-in header.arts .nav-toggle .bar:last-child,
  .nav-in header.women .nav-toggle .bar:last-child {
    opacity: 0;
  }
}
@media screen and (min-width: 480px) {
  footer.unlimited.instagram .feed figure {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .arts .posters figure {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
  }
  .arts .instagram figure {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media screen and (min-width: 600px) {
  header.law .logo img {
    max-width: 424px;
  }
  header.law.law-sub .logo img {
    max-width: 400px;
  }
  .arts .posters.listing figure,
  .arts .instagram.gallery figure {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
  }
  .arts .logos a {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 768px) {
  header.unlimited .logo {
    max-width: 100%;
    margin-top: 7rem;
  }
  header.unlimited.error .logo {
    margin-top: 3rem;
  }
  header.unlimited nav {
    margin-top: -180px;
    padding: 6rem 0 8rem;
  }
  main.unlimited {
    margin-top: 4rem;
  }
  main.unlimited blockquote {
    margin: 0 0 2rem 0;
  }
  footer.unlimited.instagram .feed {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  footer.unlimited.instagram .feed figure {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .arts .instagram {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .arts .instagram.gallery {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .arts .instagram.gallery figure {
    padding-right: 1rem;
  }
  .arts .instagram figure {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .arts .posters.listing figure {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
}
@media screen and (min-width: 992px) {
  header.law-sub .logo img {
    margin: 0 auto;
  }
  .arts .posters.listing figure {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
  .arts .logos {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .arts .logos a {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin: .5rem;
  }
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.arts .lds-ellipsis div {
    background: #000;
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
