@charset "utf-8";
/* CSS Document */
:root {
	--darkblue: rgb(21,34,68);
	--brandblue: rgb(13,38,145);
    --lightblue: rgb(77,104,232);
    --coral: rgb(237,93,65);
    --gold: rgb(255,185,45);
    --bs-link-color: var(--lightblue);
}
.pagination {
    --bs-pagination-active-bg: var(--lightblue);
    --bs-pagination-active-border-color: var(--lightblue);
    --bs-pagination-hover-color: var(--brandblue);
    --bs-pagination-color: var(--lightblue);
}

body {
    font-family: 'Karla', sans-serif;
}

a {
   color: var(--lightblue);
}

.preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--darkblue);
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner-border {
    width: 6rem;
    height: 6rem;
    border-width: 0.75em;
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
}
img.image-responsive {
    max-width: 100%;
    height: auto;
}
.image-right {
    float: right;
    margin: 0 0 15px 15px;
}
.image-left {
    float: left;
    margin: 0 15px 15px 0;
}

body.video .leadImage, body.newsletter .leadImage {
    display: none !important;
}

/*Padding and Margin*/
.pt-8 {
    padding-top: 3rem !important;
}
.pb-8 {
    padding-bottom: 3rem !important;
}
/*Navbar*/
.navbar {
    font-family: 'Raleway', sans-serif;
    padding: 0;
}
.navbar-brand lottie-player {
    height: 82px;
    width: auto;
}
#navbar--container {
    background: var(--darkblue);
}
body.home #navbar--container {
    background: transparent;
    position:absolute;
    z-index: 5;
    width: 100%;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: rgba(255,255,255,0.6);
    border-bottom: 6px solid transparent;
    padding: 28px 0 24px;
    margin: 0 8px;
    text-transform: uppercase;
    font-size: 18px;
}
.navbar-expand-lg .navbar-nav .nav-link.active, .navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-link:focus {
    color: rgba(255,255,255,1);
    border-bottom: 6px solid var(--gold);
}
.navbar-expand-lg .navbar-nav .donate--btn .nav-link {
    background-color: var(--coral);
    border-bottom: 0;
    padding: 12px 22px;
    border-radius: 100px;
    margin-top: 16px;
}
.navbar-expand-lg .navbar-nav .donate--btn .nav-link:hover {
    color: var(--coral);
    border-bottom: 0;
    color: rgba(255,255,255,1);
}
.navbar-toggler {
    border: var(--bs-border-width) solid #fff;
}
.navbar-toggler-icon { 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 
}

/*Home Carousel*/
.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 0;
}
.carousel--item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.carousel--item--inner {
    position: relative;
}
.carousel--item::after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); 
}
.carousel--item--content {
    position: relative;
    z-index: 6
}
.carousel--item--content {
    color: #fff !important;
}
.carousel--item--content h1 {
    font-size:90px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 90px;
    margin-top: 50px;
}
.carousel--video--item h1 span {
    color: var(--gold);
}
.carousel--item--content p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 32px;
}
.carousel--item--content a {
    font-size: 18px;
}
.hero-carousel .owl-nav {
    z-index: 5;
    color: #fff;
    top: calc(50% - 90px);
    position: absolute;
    font-size: 180px;
    width: 100%;
    padding: 0 30px;
    pointer-events: none;
}
.hero-carousel .owl-nav button {
    opacity: 0.5;
    transition: 0.25s opacity;
    pointer-events: initial;
}
.hero-carousel .owl-nav button:hover {
    opacity: 1;
    transition: 0.25s opacity;
}
.hero-carousel .owl-next {
    float: right;
}
.hero-carousel .carousel--item--inner--height {
    min-height: 700px;
    height: 100vh
}

/*Recent Work Carousel*/
#recent-work-carousel {
    padding: 0 40px;
    background: #fff;
    position: relative;
}
.recent-work-item {
    min-height: 350px;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.recent-work-item::after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); 
}
.recent-work-item-content {
    /*position: relative;*/
    z-index: 3
}
.recent-work-item-content a {
    text-decoration: none;
    color: #fff;
}
.recent-work-item .recent-work-date, .recent-work-item .recent-work-author {
    font-size: 14px;
}
#recent-work-carousel .owl-nav {
    z-index: 5;
    color: var(--brandblue);
    top: 0;
    position: absolute;
    font-size: 30px;
    width: calc(100% + 80px);
    pointer-events: none;
    left: -40px;
}
#recent-work-carousel .owl-nav button {
    opacity: 0.5;
    transition: 0.25s opacity;
    pointer-events: initial;
    width: 40px;
    text-align: center;
    min-height: 350px;
}
#recent-work-carousel .owl-nav button:hover {
    opacity: 1;
    transition: 0.25s opacity;
}
#recent-work-carousel .owl-next {
    float: right;
}

/*Homepage Themes*/
#themes-carousel {
    color: var(--darkblue);
    background: var(--gold);
    position: relative;
}
#themes-carousel img {
    display: block;
    width: 60%;
    margin: auto;
    border-radius: 100%;
}
#themes-carousel a {
    text-decoration: none;
    color: var(--darkblue);
}
#themes-carousel .owl-nav {
    z-index: 5;
    color: #fff;
    top: 34%;
    position: absolute;
    font-size: 30px;
    width: 100%;
    pointer-events: none;
}
#themes-carousel .owl-nav button {
    opacity: 0.5;
    transition: 0.25s opacity;
    pointer-events: initial;
    width: 40px;
    text-align: center;
}
#themes-carousel .owl-nav button:hover {
    opacity: 1;
    transition: 0.25s opacity;
}
#themes-carousel .owl-next {
    float: right;
}

/*Buttons*/
.white-outline-btn {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px 18px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
    transition: 0.25s all;
}
.white-outline-btn:hover {
    border: 1px solid transparent;
    background: #fff;
    color: var(--lightblue);
    transition: 0.25s all;
}
.donate-btn, .coral-btn {
    border: 1px solid transparent;
    background: var(--coral);
    color: rgba(255,255,255,0.6);
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px 18px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
    transition: 0.25s all;
}
.donate-btn:hover, .coral-btn:hover {
    background: var(--coral);
    border: 1px solid transparent;
    color: rgba(255,255,255,1);
    transition: 0.25s all;
}
.darkblue-btn {
    border: 1px solid transparent;
    background: var(--darkblue);
    color: rgba(255,255,255,0.6);
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px 18px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
    transition: 0.25s all;
}
.darkblue-btn:hover {
    border: 1px solid transparent;
    color: rgba(255,255,255,1);
    transition: 0.25s all;
}
.lightblue-btn {
    border: 1px solid transparent;
    background: var(--lightblue);
    color: rgba(255,255,255,0.6);
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px 18px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
    transition: 0.25s all;
}
.lightblue-btn:hover {
    border: 1px solid transparent;
    color: rgba(255,255,255,1);
    transition: 0.25s all;
}
.gold-btn {
    border: 1px solid transparent;
    background: var(--gold);
    color: rgba(255,255,255,0.6);
    border-radius: 100px;
    text-transform: uppercase;
    padding: 12px 18px;
    text-decoration: none;
    margin: 0 5px;
    display: inline-block;
    transition: 0.25s all;
}
.gold-btn:hover {
    border: 1px solid transparent;
    color: rgba(255,255,255,1);
    transition: 0.25s all;
}
/*Home*/
.video-space a {
    color: #fff;
}
#video-space-1 {
    background: var(--darkblue);
    color: #fff;
}
#video-space-2 {
    background: var(--lightblue);
    color: #fff;
}
.empty-hidden:empty {
    display: none;
}
#quote {
    color: var(--brandblue);
}
#parent-fieldname-text::after {
    content: "";
    clear: both;
}

/*Generic*/
.video-container iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}
.stretched-link::after {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
    content: "";
}
.generic--hero {
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 20px;
}
.generic--hero::after {
    position: absolute;
    content: "";
    z-index: 2;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); 
}
.generic--hero-content {
    position: relative;
    z-index: 3
}
.generic .documentDescription {
    font-size: 22px;
    font-family: 'Raleway', sans-serif;
}
.pagination {
    margin: 0 auto 40px;
}
.mime-icon {
    display: none;
}

/*Breadcrumbs*/
.breadcrumb * {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
.breadcrumb-item.active {
    display: none;
}

/*Resource listing*/
.juizi-resources-view .entry, .template-listing_view .entry {
    background: #efefef;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 7px;
}
.juizi-resources-view .item-description::after, .template-listing_view .entry::after, .clr {
    content: "";
    clear: both;
    display: block;
}
.juizi-resources-view .item-author, .juizi-resources-view .item-author-label, .juizi-resources-view .item-published-label {
    display: none;
}
.section-publications .juizi-resources-view .item-author, .section-publications .juizi-resources-view .item-author-title, .section-publications .juizi-resources-view .item-published {
    display: inline-block;
}
.section-publications .juizi-resources-view .item-author::after {
    content: " | ";
}
.juizi-resources-view .url, .template-listing_view .url {
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}
.juizi-resources-view .entry img {
    max-width: 220px;
}
.template-listing_view img {
    float: right;
    margin: 0 0 10px 10px;
}
.chapters.template-listing_view img {
    float: none;
    margin: 0;
    max-width: 100%;
}
.item-keywords {
    display: none;
}

/*Events*/
.hiddenStructure {
    display: none;
}
.event.summary.details {
    float: right;
    width: 550px;
    background: #fff;
    border-radius: 7px;
    padding: 20px 25px;
    margin: 0 0 10px 10px;
}
.event.summary.details li {
    margin: 0 0 5px;
    padding: 0;
    list-style: none;
}

/*footer*/
#footer {
    color: #fff;
    background: var(--darkblue);
}
#footer section {
    margin-right: 40px;
}
#footer .links {
    border-top: 4px solid #fff;
    padding-top: 6px;
    max-width: 140px;
}
#footer .links a {
    color: #fff;
    display: block;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 5px;
    opacity: 0.5;
}
#footer .links a:hover {
    opacity: 1;
}
#footer .links .footer-social a {
    display: inline-block;
    font-size: 18px;
    margin: 0 2px;
}
#footer h5 {
    font-family: 'Karla', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
#copyright {
    color: #fff;
    background: var(--darkblue);
    font-size: 14px;
}
.belowfooter {
    background: var(--darkblue);
    font-size: 14px;
    color: #fff;
}
.juizi-web {
    opacity: 0.4;
    transition: 0.25s all;
    margin-top: 6px;
    display: inline-block;
}
.juizi-web:hover {
    opacity: 0.8;
    transition: 0.25s all;
}

/*Faceted results*/
.template-facetednavigation_view .entry .thumb-thumb {
    float: right;
    margin: 0 0 10px 10px;
}
.template-facetednavigation_view .entry::after {
    content: "";
    clear: both;
    display: block;
    border-top: 1px dashed var(--medgrey);
    margin: 20px 0;
} 
.template-facetednavigation_view .entry .discreet {
    text-transform: initial;
    font-size: 14px;
}
#faceted-center-column .section-search .widget-fieldset {
    padding: 0;
    border: none;
}
.faceted-right-column div.faceted-text-widget input[type="text"] {
    width: 0;
}
.faceted-text-widget.section-search input.btn--red {
    padding: 10px;
}
.faceted-checkbox-help {
    font-size: 14px;
    color: #cecece;
}

/*Litigation*/
.accordion-button {
    font-size: 24px;
    text-transform: uppercase;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--lightblue);
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button::after {
    display: none;
}
.accordion-icon {
    width: 50px;
    height: auto;
    border-radius: 100%;
    background: #fff;
    transition: 0.25s all;
}
.accordion-button:not(.collapsed) .accordion-icon {
    width: 100px;
    transition: 0.25s all;
    padding: 8px;
}
.case-date {
    border: 1px solid var(--darkblue);
    color: var(--darkblue);
    padding: 15px;
}
.case-name {
    background: var(--lightblue);
    padding: 15px;
    height: calc(100% - 56px);
}
.case-name a {
    color: #fff;
    text-decoration: none;
}

/*Donations*/
#formEpilogue {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
}
.donate-hero--content {
    background: #eee;
    padding: 30px;
    margin-bottom: 40px;
    margin-top: 30px;
    border-radius: 14px;
}

/*Newsletter*/
.newsletter em img {
    border-radius: 50%;
    width: 80px;
    height: auto;
}
.newsletter hr {
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.newsletter #content-core {
    margin-top: 0;
}
.newsletter #content-core p:first-child img {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-bottom: 40px;
}
.newsletter .thisAuthor {
    display: none;
}
.newsletter #headWrapper {
    background: #303030;
}
.newsletter .headerImage, .newsletter .headImageCover {
    display: none;
}

p.callout {
  background: #eee;
  padding: 1em;
  border-left: 1em solid var(--darkblue);
  clear: both;
  color: var(--darkblue);
}

.newsImage {
    max-width: 100%;
}

@media (max-width: 991.98px) {
	
    .navbar-brand {
        margin-bottom: 10px;
    }
    .navbar-brand lottie-player {
        height: auto;
        width: 240px;
    }
    #navbar--container {
        background: var(--darkblue) !important;
        position: relative !important;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 10px 0;
        margin: 0;
    }
    .carousel--item--content h1 {
        font-size: 36px;
        line-height: 36px;
        margin-top: 0;
    }
    .carousel--item--content p {
        font-size: 22px;
    }
    .hero-carousel .owl-nav {
        top: calc(50% - 25px);
        font-size: 50px;
        padding: 0;
    }
    .hero-carousel .carousel--item--inner--height {
        min-height: 550px;
        height: auto;
    }
    .juizi-resources-view .entry img {
        max-width: 100%;
    }
    .event.summary.details {
        float: none;
        margin: 0 0 20px;
        width: auto;
    }
    .image-right, .image-left {
        float: none;
        margin: 0 auto 15px;
        display: block;
    }
	
}n