/* practice area detail banner */

.practice-area-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding-top: 40px;
}

.practice-area-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,

         rgba(0, 13, 36, 1) 0%,
        rgba(14, 35, 70, 0.54) 34%,
        rgba(6, 14, 28, 0) 100%
    );
    z-index: 1;
}

.practice-area-banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 49, 89, 1) 0%,
        rgba(26, 49, 89, 1) 10%,
        rgba(26, 49, 89, 1) 27%,
        rgba(26, 49, 89, 0.50) 38%,
        rgba(26, 49, 89, 0) 80%,
        rgba(26, 49, 89, 0) 100%
    );
    z-index: 1;
}

.area-banner-left, .practice-banner-results {
    position: relative;
    z-index: 2;
}

.area-banner-left {
    padding-top: 80px;
}

.global-banner-title {
    margin-bottom: 10px;
}

.global-banner-heading {
    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
}

.global-banner-heading span {
    color: var(--color-5);
}

.global-banner-list ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 30px;
    margin: 40px 0;
}

.global-banner-list ul li {
    flex: 0 0 42%;
    line-height: 1.3;
    padding-left: 42px;
    background-image: url('../img/area_banner_arrow.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 30px;
    font-weight: 500;
    font-size: 20px;
}

.global-banner-list ul li span {
    font-weight: 700;
    display: block;
}

.practice-banner-cta .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}


.banner-results-erapper.practice-banner-results {
    margin-top: -240px;
    padding-bottom: 70px;
}


/* static page */

.static-page h1, .static-page h2, .static-page h3, 
.static-page h4, .static-page h5, .static-page h6 {
    font-weight: 500;
}

.static-page h2, .static-page h3, 
.static-page h4, .static-page h5, .static-page h6 {
    margin-top: 40px;
}

.static-page .content-area ul, .list-style ul {
    list-style: disc;
    padding-left: 20px;
}

.static-page .content-area ol, .list-style ol {
    padding-left: 20px;
}

.static-page .content-area ul li::marker, 
.list-style ul li::marker {
    color: var(--color-5);
    font-size: 22px;
}

blockquote {
    background-color: var(--color-3);
    padding: 50px 30px 40px 30px;
    border-left: 5px solid var(--color-5);
    color: #fff;
    background-image: url(../img/blockquote-icon.svg);
    background-repeat: no-repeat;
    background-size: 45px 40px;
    background-position: 30px 35px;
}



/*inner banner*/

.inner-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.inner-banner-img {
    padding-top: 25px;
    position: absolute;
    top: auto;
    right: 85px;
    bottom: 0;
}

.inner-banner .inner-banner-img img {
    width: 240px;
}
.sub-heading-inner {
    color: #fff;
    position: relative;
    z-index: 99;
    margin-top: 12px;
    font-size: 16px;
}
.hp-slider-link {
	color: #fff;
	text-decoration: underline;
}

.hp-slider-link:hover {
	color: #fff;
}

.inner-banner-heading {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    
    padding-right: 20px;
    
}

.inner-banner-lft {
    padding: 170px 0;
    position: relative;
    z-index: 2;
}

.banner-rotate-card.practice-banner-rotate-card {
    transform: translateY(-140px);
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(4, 12, 44, 1) 0%,
    rgba(4, 12, 44, 0.9) 30%,
    rgba(4, 12, 44, 0.6) 40%,
    rgba(4, 12, 44, 0.2) 60%,
    rgba(4, 12, 44, 0) 70%,
    rgba(4, 12, 44, 0) 100%
);
    z-index: 1;
}

/*inner banner end*/


/*inner banner with content*/

.inner-content-banner {
    background-size: cover;
    background-position: top center;
    padding-bottom: 62px;
}

.inner-content-banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 49, 89, 1) 0%,
        rgba(26, 49, 89, 1) 10%,
        rgba(26, 49, 89, 1) 27%,
        rgba(26, 49, 89, 0.50) 38%,
        rgba(26, 49, 89, 0) 80%,
        rgba(26, 49, 89, 0) 100%
    );
    z-index: 1;
}

.inner-banner-case-results {
    position: relative;
    z-index: 2;
}

.inner-banner-cta {
    margin-top: 40px;
}

.inner-banner-case-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.case-result-item-col .inner-banner-case-results-col{
    position: relative;
}

.case-result-item-col:not(:last-child) 
.inner-banner-case-results-col::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.6);
}

.inner-content-banner .inner-content-banner-heading, .inner-content-banner-lft {
    position: relative;
    z-index: 2;
    font-size: 64px;
}

.inner-content-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
         rgba(0, 13, 36, 1) 0%,
        rgba(14, 35, 70, 0.54) 34%,
        rgba(6, 14, 28, 0) 100%
    );
    z-index: 1;
}



.banner-rotate-card {
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-60px);
    z-index: 2;
}

.banner-rotate-card .play-icon {
    width: 150px;
    height: 150px;
    background: #234a93;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
}


.banner-rotate-card .play-icon:hover {
    background: var(--color-2);
}

.banner-rotate-card .rotate-text-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: rotate-circle 12s linear infinite;
}

.banner-rotate-card .rotate-text-svg text {
    fill: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.banner-rotate-card .play-icon .play_img {
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 2;
}

@keyframes rotate-circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.inner-content-banner-wrapper {
    padding-top: 30px;
}

.breadcrumb-sec {
    padding: 15px 0;
    background-color: #f3f3f3;
}


/*contact us page*/
    .case-starts-description {
        max-width: 980px;
        margin-inline: auto;
    }

    .contact-address-row {
        margin-top: 60px;
    }

    .contact-address-row-inner svg,
    .contact-address-row-inner img {
        height: 50px;
        width: 50px;
        margin-bottom: 30px;
    }

    .contact-address-row-title {
        color: var(--color-3);
        font-weight: 400;
        font-size: 22px;
        line-height: 1.2;
        letter-spacing: 2%;
    }

    .contact-address-row-desc {
        margin-top: 10px;
        font-weight: 600;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: 2%;
        color: var(--color-3);
    }

    .contact-address-row .col-center {
        border-left: 2px solid #FCBA0066;
        border-right: 2px solid #FCBA0066;
    }

    .contact-address-row-desc p {
        margin-bottom: 5px;
    }

    .contact-address-row .col-center a {
        text-decoration: underline;
        &:hover {
            text-decoration: none;
        }
    }

    .contact-form-section {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .contact-form-section::before{
        content: "";
        position: absolute;
        inset: 0;
        background: #081F48CC;
        z-index: 1;
    }

    .contact-form-section .container {
        position: relative;
        z-index: 2;
    }

    .contact-form-section form {
        margin-top: 40px;
    }

    .contact-form-section .form-disclaimer a {
        color: #fff;
        text-decoration: underline;
    }

    .contact-form-section .form-disclaimer a:hover {
        text-decoration: none;
    }

    .contact-form-section button {
        margin-top: 35px;
    }

    .contact-form-section .btn:hover {
        border-color: #fff;
        background-color: transparent;
    }

/*contact us page end*/


/*about us page*/

.about-team-col {
    background-color: #fff;
    padding: 30px;
}

.about-our-team {
    background-color: #eeeeee;
}

.about-member-name {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-3);
}

.about-member-designation {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-3);
}

.about-member-cta {
    margin-top: 20px;
}

.about-member-cta .btn {
    background-color: #fff;
    border-color: var(--color-2);
    color: var(--color-2);
}

.about-member-cta .btn:hover, .about-team-col:hover .btn {
    border-color: var(--color-3);
    background-color: var(--color-3);
    color: #fff;
}

.about-team-row.row {
    margin-top: 50px;
}

.jeremy_rosenthal_section {
    background-color: var(--color-3);
}

.jeremy_rosenthal_cta {
    margin-top: 50px;
}

.jeremy_rosenthal_rgt .h2 {
    margin-bottom: 5px;
}

.jeremy_rosenthal_designation {
    margin-bottom: 15px;
}

.jeremy_rosenthal_cta .btn:hover {
    border-color: #fff;
}

.jeremy_rosenthal_rgt p a {
    text-decoration: underline;
    &:hover {
        color: #fff;
        text-decoration: none;
    }
}

.jeremy_rosenthal_rgt .section-heading span::before {
    width: 133px;
    margin-inline: auto;
    left: 0;
    right: 0;
}

.about-our-team .section-heading span::before {
    width: 127px;
    right: 30px;
}

/*about us page end*/

/*practice areas page*/

.practice-areas-tpl-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.practice-area-content-wrapper {
    position: absolute;
    padding: 0px 20px;
    z-index: 2;
    bottom: 0;
}

.practice-area-col:hover .practice-area-content-wrapper {
    bottom: 20px;
}

.practice-area-col::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.5s;
    border-radius: 16px;
    background: linear-gradient(
        to top,
        rgba(24, 56, 109, 0.9) 0%,
        rgba(24, 56, 109, 0) 30%,
        rgba(24, 56, 109, 0) 60%,
        rgba(24, 56, 109, 0) 100%
    );
}

.practice-area-name {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-transform: capitalize;
    color: #fff;
}

.practice-area-col {
    border-radius: 16px;
    overflow: hidden;
}

.practice-area-col img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.practice-areas-tpl-row {
    margin-top: 20px;
}

.practice-area-description {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
}

.practice-area-col .btn {
    padding: 7px 30px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-2);
    display: inline-block;
    margin-top: 20px;
}

.practice-area-col .btn:hover {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.practice-areas-tpl-desc {
    max-width: 980px;
    margin-inline: auto;
    margin-top: 25px;
}

.practice-area-content {
    height: 0;
    opacity: 0;
    width: 100%;
    transition: 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.practice-area-col:hover .practice-area-name {
    animation: fadeIn 1.7s;
}

.practice-area-col:hover .practice-area-content {
    opacity: 1;
    height: auto;
    animation: fadeIn 1.7s;
}

.practice-area-col:hover::after {
    background: linear-gradient(
        to top,
        var(--color-3) 0%,
        rgba(26, 49, 89, 0.6) 30%,
        rgba(26, 49, 89, 0.6) 50%,
        rgba(26, 49, 89, 0.6) 70%,
        rgba(26, 49, 89, 0.6) 100%
    );
}

.practice-area-parent-child {
    background-color: #eee;
}

.practice-area-parent-child .widget.practice-side {
    border-radius: 0;
    margin-top: 0;
    padding: 0;
}

.practice-area-parent-child ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.practice-area-parent-child .widget-menu li {
    padding: 0;
}

.practice-area-parent-child .widget-menu li:hover {
    background-color: transparent;
}

.practice-area-parent-child .widget-title {
    text-align: center;
}

.practice-area-parent-child .widget-menu li a{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-outfit);
    line-height: 120%;
    color: var(--color-3);
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
    border-radius: 10px;
    background: var(--color-4);
    padding: 15px 30px;
    border: 1px solid var(--color-4);
    transition: 0.5s;
    background-image: unset;
}

.practice-area-parent-child .widget-menu li a:hover {
    border-color: var(--color-3);
    background-color: var(--color-3);
    color: #fff;
}

.types_of_compensation_inner_content {
    max-width: 980px;
    margin-inline: auto;
}

.detail-content-attorney-name {
    margin-bottom: 10px;
}

.detail-content-attorney-designation {
    color: var(--color-3);
    margin-bottom: 15px;
    font-size: 22px;
}

/*clients reviews page*/

.review-video-section {
    background-color: var(--color-3);
}

.review-video-wrapper {
    max-width: 1000px;
    margin-inline: auto;
}

.client-video-desc {
    margin-bottom: 60px;
}

.client-video-desc a {
    color: #fff;
    text-decoration: underline;
}

.client-video-desc a:hover {
    text-decoration: none;
}

.review-video-wrapper .play-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-video-wrapper .play-icon svg,
.review-video-wrapper .play-icon img {
    width: 75px;
    height: 75px;
}

.review-video-wrapper .play-icon svg rect {
    transition: all .5s ease;
}

.review-video-card:hover .play-icon svg rect {
    fill: var(--color-3);
}

.review-video-title {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    bottom: 37px;
    padding: 10px 25px;
    background-color: #fff;
    border-radius: 60px;
    font-size: 22px;
    letter-spacing: 2%;
    max-width: max-content;
    font-weight: 600;
}

.review-video-wrapper .client-thumbnail {
    border-radius: 20px;
}

.review-video-wrapper .client-thumbnail {
    height: 505px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}




/*video center page*/

.video_center_row .play-icon {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.video_center_row .play-icon svg,
.video_center_row .play-icon img {
    width: 70px;
    height: 70px;
}

.video_center_row .play-icon svg circle,
.video_center_row .play-icon svg path {
    transition: all .5s ease;
}

.video-center-card:hover .play-icon svg circle {
    fill: var(--color-5);
    stroke: var(--color-3);
}

.video-center-card:hover .play-icon svg path {
    fill: var(--color-3);
}

.video_center_row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 60px;
}

.video-center-title {
    padding-right: 5px;
    margin-top: 20px;
    color: #000;
    font-size: 18px;
    line-height: 1.3;
}

.video-center-card .video-thumbnail {
    border-radius: 16px;
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.video_center_section .section-heading {
    margin-bottom: 50px;
}

.video_center_row .video_center_col_inner {
    display: none;
}

.video_center_section .video-load-btn {
    margin-top: 40px;
}

/*e-book page*/

.e-book-lft-img.left-img-right-content {
    background-color: transparent;
}

.ebook-section .h2 {
    margin-bottom: 50px;
}

.ebook-section-img img {
    border-radius: 20px;
}

.e-book-cta {
    margin-top: 40px;
}


/*case results page*/

.case-results-desc {
    max-width: 980px;
    margin-inline: auto;
}

.case-results-left-img.left-img-right-content {
    background-color: transparent;
}

.case-results-col {
    background-color: #EEEEEE;
    border-radius: 20px;
    padding: 50px 25px;
}

.case-results-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;

    margin-top: 5px;
}

.case-result-title {
    font-size: 50px;
    font-weight: 500;
    color: var(--color-3);
    line-height: 1.2;
}

.case-result-heading {
    font-size: 32px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
    margin-top: 5px;
}

.case-result-subheading {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 10px;
    letter-spacing: 2%;
    color: var(--color-2);
}

.case-result-content {
    font-size: 18px;
    font-weight: 300;
    margin-top: 5px;
    line-height: 1.4;
}

.caseresults-load-btn {
    margin-top: 40px;
}

.case_results_section .case-results-col-inner {
    display: flex;
}

.serving-denver-footer.left-img-right-content,
.injury-settlements-section.left-img-right-content {
    background-color: transparent;
}

.page-template-practice-area-detail .serving-denver-footer {
    padding-top: 100px !important;
}


.injury-settlements-col {
    background-color: #EEEEEE;
    padding: 27px 30px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.injury-settlements-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.injury-settlements-col-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-3);
}

.injury-settlements-col-content {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 15px;
    margin-bottom: 5px;
}

.injury-settlements-col-cta a {
    text-decoration: underline;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-2);
}

.injury-settlements-col-cta a:hover {
    text-decoration: none;
}

.injury-settlements-section.left-img-right-content .section-heading span::before {
    width: 130px;
    left: -35px;
    height: 17px;
}

/*single team page*/

.team-single-designation {
    color: var(--color-3);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.team-single-row {
    margin-top: 40px;
}

.team-single-left-col {
    padding-right: 35px;
}

.team-single-bottom-content {
    margin-top: 35px;
}

.team-single-details-content.list-style ul li {
    background-image: url('../img/category-arrow.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px 20px;
    padding-left: 37px;
}

.team-single-details-content.list-style ul {
    list-style: none;
    padding-left: 0;
}

.list-style ul li:last-of-type {
    margin-bottom: 0;
}

.team-single-details-col {
    background-color: #EEEEEE;
    border-radius: 20px;
    padding: 50px;
}

.team-single-details-section .row {
    --bs-gutter-y: 40px;
}

.team-single-details-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-3);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.team-single-details-title::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 1px;
    width: 55%;
    background-color: #00000033;
}

.team-single-details-content li {
    margin-bottom: 10px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    grid-auto-rows: minmax(10px, auto);
}

.small-card {
    grid-row: span 5;
}

.tall-card {
    grid-row: span 7;
}

.team-single-section .section-heading {
    max-width: max-content;
    margin-inline: auto;
    margin-bottom: 12px;
}

.team-single-section .section-heading::before {
    position: absolute;
    content: '';
    width: 95px;
    height: 15px;
    right: 60px;
    background-image: url(../img/value.svg);
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    bottom: -8px;
}

.team-single-image img {
    border-radius: 20px;
}








/*translation page css*/

html[lang="es"] .inner-banner-case-title {
    font-size: 28px;
}

html[lang="es"] .area-banner-left-wrapper {
    width: 60%;
}

html[lang="es"] .area-banner-right-wrapper {
    width: 40%;
}

html[lang="es"] .banner-results-erapper.practice-banner-results {
    margin-top: -160px;
}

.ebook-section-img .play-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

