/*
    @Name: common | @Author: Cherry.liu
====================================================================================== */
:root{
    --BrandPrimary: #995F0C;
    --HeaderBg-default: #FFFFFF;
    --FormHeadBg: #523207;

    --BtnBg-primary: var(--BrandPrimary);
    --BtnBg-hover: #A66811;
    --BtnBg-active: #8B5406;

    --LinkColor-default: var(--BtnBg-primary);
    --LinkColor-hover: var(--BtnBg-hover);
    --LinkColor-active: var(--BtnBg-active);

    --BgGrayLight: #F0F0F0;
}
/* Header */
.header {
    position: fixed;
    z-index: 100;
    font-size: 1em;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
}
.header .navbar-header,
.header .navbar-header .logo {
    display: inline-block;
    float: left;
}
.header .navbar-header .logo img {
    height: 2.6em;
    float: left;
}
.header .navbar-header .navbar-toggle {
    display: none;
}
.header .navbar-collapse {
    display: flex;
    width: auto;
    justify-content: space-between;
}
.header .navbar-collapse .navbar-nav {
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}
.header .navbar-nav .item {
    color: #333333;
    padding: 0.8em;
    font-weight: 400;
}
.header .navbar-nav .item:hover,
.header .navbar-nav .item.active {
    color: var(--BrandPrimary);
}
@media (max-width: 959px) {
    .header .container {
        padding: 0;
    }
    .header .navbar-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0 20px;
    }
    .header .navbar-header .navbar-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0.2em 0;
        width: 2.2em;
        height: 2.2em;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        border-radius: 6px;
    }
    .header .navbar-header .navbar-toggle:active {
        background: #f0f0f0;
        border-color: #999;
    }
    .header .navbar-header .navbar-toggle i {
        display: inline-flex;
        width: 1.16em;
        height: 2px;
        background: #999;
        margin: 0.16em 0;
        border-radius: 1px;
    }
    .header .navbar-header .navbar-toggle:active i {
        background: #333;
    }
    .header .navbar-collapse {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .header .navbar-collapse .item {
        width: 100%;
        padding: 0.4em 1em;
    }
    .header .navbar-collapse.collapse.in {
        display: flex;
        height: auto;
    }
    .header .navbar-collapse.collapse.in .navbar-nav {
        margin-top: 1em;
    }
    .header .navbar-collapse,
    .header .navbar-nav {
        flex-direction: column;
    }
}

.banner {
    padding-top: 8.6em;
    padding-bottom: 4em;
    background: url(../images/bg-banner.webp) center center no-repeat;
    background-size: cover;
}
.banner-home {
    padding-top: 7em;
    padding-bottom: 2em;
}
.banner .slogan-box,
.banner .page-title {
    color: #FFFFFF;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}
.slogan-box .content {
    font-size: 1.8em;
    margin-bottom: 0.8em;
}
.slogan-box .item {
    display: flex;
    align-items: center;
    font-weight: 700;
}
.slogan-box .item .icon {
    margin-right: 0.4em;
}


/* Footer */
.footer {
    padding: 2em 0;
    color: rgba(255, 255, 255, 0.8);
    background: #332A1E;
}
.footer .link {
    color: rgba(255, 255, 255, 0.8);
}
.footer .link:hover {
    color: rgba(255, 255, 255, 1);
}
.footer .link:active {
    color: rgba(255, 255, 255, 0.7);
}

.modular-title {
    font-size: 2.2em;
}

/* Slide Box */
.slide-box {
    position: relative;
    overflow: hidden;
    min-height: 405px;
}
.slide-box .lawsuit-list {
    position: absolute;
}
.lawsuit-list .list-item,
.lawsuit-list .owl-item {
    background: #FFFFFF;
    border: 2px solid #EEEEEE;
    border-radius: 16px;
    box-sizing: border-box;
}

.lawsuit-list .owl-item .list-item {
    opacity: 0.4;
    border: none;
    min-height: 420px;
}
.lawsuit-list .owl-item.active.center .list-item {
    opacity: 1;
}
.lawsuit-list:after {
    content: " ";
    display: table;
    clear: both;
}
.lawsuit-list .img {
    display: block;
    width: 100%;
    height: 280px;
    border-radius: 16px 16px 0 0;
}
.lawsuit-list .content {
    padding: 16px;
}
.lawsuit-list .list-dot .item {
    font-size: 14px;
    padding-left: 1.4em;
}
.slide-box .lawsuit-list .img {
    height: 280px;
}
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-dots .owl-dot {
    display: inline-flex;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cccccc !important;
    margin: 0 4px;
}
.owl-dots .owl-dot.active {
    background: var(--BrandPrimary) !important;
}



/* Mass Tort List */
.mass-tort-list .list-item {
    padding: 16px;
    color: #FFFFFF;
    font-size: 16px;
    background: #85663C;
    border-radius: 12px;
    min-height: 240px;
    margin-bottom: 16px;
}
.mass-tort-list .list-item.bg-dark{
    background: #523207
}
.mass-tort-list .row {
    margin-left: -10px;
    margin-right: -10px;
}
.mass-tort-list .row > * {
    padding-left: 10px;
    padding-right: 10px;
}


/* Case Updates List */
.case-updates-list .list-item {
    position: relative;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    min-height: 118px;
}
.case-updates-list .list-item + .list-item {
    margin-top: 1.4em;
}
.case-updates-list .cell-date {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 70px;
    padding-right: 20px;
    color: var(--BrandPrimary);
    border-right: 1px solid #e0e0e0;
    text-align: center;
}
.case-updates-list .day {
    color: var(--BrandPrimary);
    font-size: 2.2em;
    font-weight: 800;
    line-height: 1em;
}
.case-updates-list .year {
    font-size: 12px;
}
.case-updates-list .title {
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-updates-list .cell-content {
    padding-left: 90px;
}
.case-updates-list .content {
    margin-bottom: 4px;
    font-size: 14px;
    color: #666666;
    line-height: 20px;
}
.case-updates-list .link {
    font-size: 14px;
    color: var(--LinkColor-default);
}
@media (max-width: 541px) {
    .case-updates-list .cell-date {
        display: none;
    }
    .case-updates-list .cell-content {
        padding: 0;
    }
}

/* About Us */ 
.about-title {
    margin-bottom: 1em;
}
.about-title .main {
    font-size: 1.8em;
    font-weight: 700;
}
.about-title .sub {
    margin-top: 4px;
    color: #888888;
}
.list-expect .item {
    margin-bottom: 0.8em;
}
.list-expect img {
    float: left;
    margin-right: 4px;
    line-height: 1;
    vertical-align: middle;
}
.list-expect .font-bold + div {
    margin-top: 0.2em;
}


/* Article */
.article-list .list-item {
    display: inline-block;
    color: #333;
    font-size: 14px;
    margin-bottom: 2em;
}
.article-img {
    max-width: 100%;
    border-radius: 1em;
}
.article-list .article-img {
    margin-bottom: 0.8em;
}
.article-list .article-title {
    font-size: 1.25em;
    margin-bottom: 0.8em;
    font-weight: 700;
}
.article-list .list-item:hover .article-title {
    color: var(--LinkColor-hover);
}
.article-list .list-item:active .article-title {
    color: var(--LinkColor-active);
}
.article-list .article-date {
    color: #aaa;
    margin-top: 1em;
}
.page-title {
    font-size: 2.6em;
}
.paragraph-title {
    margin-bottom: 0.4em;
    font-size: 1.3em;
    font-weight: 600;
}
.main-content.detail {
    padding: 1.6em 0 6em 0;
}
.detail .modular-title {
    font-size: 1.8em;
}
.detail .article-list .article-content {
    max-height: 4em;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-form {
    background: #fcf4e8;
    padding: 1.8em;
    border-radius: 1.2em;
}
.article-form .col-sm-4,
.article-form .col-sm-8 {
    padding-left: 0.6em;
    padding-right: 0.6em;
}
.article-form .radio-btn {
    border-radius: 0.4em;
    background: #fff;
}
.article-form .form-head,
.article-form .form-content {
    padding: 0;
    background: none;
}
.article-form .form-head .title {
    color: #333;
    margin-bottom: 16px;
}
