/* Home Banner Section CSS */
.home-banner {
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size:cover;
    background-position:bottom;
    height: 100vh;
}
.home-banner .banner-title {
    font-weight: 700;
    font-size: 75px;
    line-height: 1.1;
    margin-bottom: 15px;
}
.banner-subtitle {
    font-size: 35px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
}
.banner-description {
    font-size: 30px;
}
.banner-cta{
    gap: 20px;
}
@media (max-width: 1400px){
    .banner-subtitle {
        font-size: 28px;
    }
    .home-banner .banner-title {
        font-size: 55px;
    }
    .banner-description {
        font-size: 22px;
    }
}
@media (max-width: 1199px){
    .home-banner {
        height: 580px !important;
    }
    .banner-subtitle {
        font-size: 24px;
    }
    .home-banner .banner-title {
        font-size: 55px;
    }
    .banner-description {
        font-size: 22px;
    }
}
@media (max-width: 767px){
    .home-banner {
        height: 500px !important;
    }
    .banner-subtitle{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .home-banner .banner-title{
        font-size: 40px;
        margin-bottom: 15px;
    }
    .banner-description{
        font-size: 16px;
    }
}

/* Services Card Section CSS */
.service-cards {
    position: relative;
    margin-top: -70px;
}
.service-heading{
    font-family: var(--font-oswald);
    font-size: 35px;
    font-weight: 400;
    line-height: 1.2;
}
.service-inner{
    background-color: var(--color-primary);
}
.service-inner:nth-child(2){
    background-color: var(--color-secondary);
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.25);
}
.service-single svg, .service-single img {
    width: 50px;
    height: 50px;
}
.service-single {
    padding: 50px 30px;
    height: 100%;
}
.service-description{
    position:relative;
    margin-top:15px;
    padding-left: 70px;
    line-height: 1.6;
    font-size: var(--fontSize-md);
}
.service-description::before {
    content: '';
    position: absolute;
    background-color: var(--color-secondary);
    left: 25px;
    top: 10px;
    width: 2px;
    height: 80%;
}
.service-inner:nth-child(2) .service-description::before{
    background-color:#fff;
}
@media (max-width: 1400px){
    .service-cards {
        margin-top: -100px;
    }
}
@media (max-width: 1199px){
    .service-cards {
        margin-top: -80px;
    }
    .service-single {
        padding: 30px 25px;
    }
    .service-heading {
        font-size: 26px;
    }
    .service-single svg, .service-single img {
        width: 40px;
        height: 40px;
    }
    .service-description {
        margin-top: 10px;
        padding-left: 57px;
    }
    .service-description::before {
        left: 20px;
    }
}
@media (max-width: 991px){
    .service-cards {
        margin-top: 60px;
    }
}
@media (max-width: 767px){
    .service-description {
        padding-left: 50px;
    }
}

/* Right Image Left Content CSS */
.right-image-left-content {
    overflow: hidden;
}
.right-image-left-content .inner-content {
    padding: 60px 0;
}
.right-image-left-content .subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-secondary);
}
.right-image-left-content img {
    object-fit: cover;
    object-position: center;
}
@media (min-width: 1199px){
    .right-image-left-content .container:before{
        position:absolute;
        content:'';
        left:-225px;
        top:0;
        background-image: url(../images/law-img.webp);
        height:643px;
        width:292px;
        z-index:-1;
    }
    .right-image-left-content img {
        object-fit: cover;
        object-position: center;
    }
    .right-image-left-content .subtitle {
        margin-bottom: 15px;
    }
}
@media (max-width: 991px){
    .right-image-left-content .inner-content {
        padding: 0 0 40px;
    }
}

/* Video Section CSS */
.video-section {
    padding-bottom: 200px !important;
    background-position: center;
    background-size: cover;
    background-color: var(--color-primary);
}
.video-section:after {
    position: absolute;
    content: '';
    inset: 0;
    background-color: rgba(39, 43, 46, 1);
    opacity: 0.8;
}
.video-section .container{
    z-index:1;
    position: relative;
}
.video-header-wrapper {
    border-right: 2px solid var(--color-secondary);
    padding-right: 15px;
    margin-bottom: 25px;
}
.video-section .html5lightbox {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    margin-left: 80px;
    align-items: center;
}
.video-section .html5lightbox .play-icon {
    display: flex;
    height: 122px;
    width: 122px;
    border-radius: 122px;
    background: rgba(255, 255, 255, 0.3);
    justify-content: center;
    align-items: center;
    border: none;
    position: relative;
    transform: none;
    left: auto;
    top: auto;
}
.video-section .html5lightbox .play-icon::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 80px;
    transition: all ease-in-out .5s;
}
.video-section .html5lightbox .play-icon svg, .video-section .html5lightbox .play-icon img {
    position: relative;
    width: 22px;
    height: 22px;
    margin-left: 3px;
    margin-top: 3px;
}
.video-section .html5lightbox .play-text {
    font-size: 30px;
    font-weight: 400;
    margin-top: 10px;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0;
}
.video-section .html5lightbox:hover .play-icon {
    background: rgba(242, 149, 0, 0.3);
}
.video-section .html5lightbox:hover .play-icon::before {
    background: var(--color-secondary);
}
.video-section .html5lightbox:hover .play-icon svg {
    fill: var(--bs-white);
}
@media (max-width: 991px) {
    .video-section {
        text-align: center;
        padding-bottom: 60px !important;
    }
    .video-section .video-header-wrapper {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .video-section .html5lightbox {
        margin-bottom: 30px;
        margin-left: 0;
    }
    .video-section .html5lightbox .play-icon {
        height: 100px;
        width: 100px;
        border-radius: 100px;
    }
    .video-section .html5lightbox .play-icon::before {
        width: 70px;
        height: 70px;
        border-radius: 70px;
    }
    .video-section .html5lightbox .play-icon svg, .video-section .html5lightbox .play-icon img {
        position: relative;
        width: 20px;
        height: 23px;
    }
    .video-section .text-end {
        text-align: center !important;
    }
    .video-section .html5lightbox .play-text {
        font-size: 16px;
    }
}

/* Practice Areas Section CSS */
.pa-outer-box {
    background: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
    padding: 100px 40px;
    margin-top: -100px;
}
.pa-lists-sec .pa-card {
    background: var(--color-primary);
    padding: 40px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out .5s;
}
.pa-lists-sec .pa-card::before{
    position: absolute;
    content: "";
    left: -100%;
    width: 100%;
    bottom: 0;
    height: 100%;
    transition: all ease-in-out .5s;
    background: var(--color-secondary);
}
.pa-lists-sec .pa-card .pa-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
}
.pa-lists-sec .pa-card svg path {
    stroke: var(--color-secondary);
}
.pa-lists-sec .pa-card .pa-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.pa-lists-sec .pa-card .pa-des {
    font-size: var(--fontSize-md);
}
.pa-lists-sec .pa-card * {
    position: relative;
    z-index: 9;
    color: #fff;
}
.pa-lists-sec .pa-card:hover::before {
    left: 0;
}
.pa-lists-sec .pa-card:hover {
    background: var(--color-secondary);
}
.pa-lists-sec .pa-card:hover .pa-icon path {
    stroke: #fff;
}
.pa-lists-sec .pa-card .read-more-btn {
    display: inline-block;
    color: #fff;
    position: relative;
    left: -100%;
    margin-top: 12px;
}
.pa-lists-sec .pa-card:hover .read-more-btn {
    left: 0;
}
.pa-lists-sec .pa-card .read-more-btn::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    transition: all ease-in-out .7s;
    width: 0;
    height: 1px;
    background: #fff;
}
.pa-lists-sec .pa-card .read-more-btn:hover::after {
    width: 100%;
}
@media (max-width: 1400px) {
    .pa-lists-sec .pa-card {
        padding: 30px 15px;
    }
    .pa-lists-sec .pa-card .pa-icon {
        width: 45px;
        height: 45px;
    }
    .pa-lists-sec .pa-card .pa-title {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .pa-outer-box {
        padding: 60px 30px;
    }
}
@media (max-width: 991px) {
    .pa-outer-box {
        background: no-repeat;
        box-shadow: none;
        padding: 0;
        margin-top: 60px;
    }
    .pa-lists-sec .pa-card:hover {
        background: var(--color-secondary);
    }
    .pa-lists-sec .pa-card::before {
        display: none;
    }
    .pa-lists-sec .pa-card .read-more-btn {
        left: 0;
        opacity: 1;
    }
    .pa-lists-sec .pa-card:hover .read-more-btn {
        opacity: 1;
    }
}

/* Why Choose Us Section CSS */
.why-choose-sec {
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
}
.why-choose-sec .img-block {
    padding-left: 90px;
    padding-bottom: 50px;
}
.why-choose-sec .img-block > img {
    border: 1px solid #F29500;
    padding: 20px 20px;
}
.experience-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 240px;
}
.experience-wrapper .experience-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
}
.experience_years {
    font-family: var(--font-oswald);
    font-weight: 600;
    font-size: 50px;
    line-height: normal;
}
.features-wrapper {
    margin-top: 30px;
}
.features-wrapper svg, .features-wrapper img {
    width: 51px;
    height: 51px;
}
.features-wrapper .feature-heading {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
}
@media (max-width:1199px) {
    .experience-wrapper {
        max-width: 200px;
    }
    .experience_years {
        font-size: 40px;
    }
    .experience-wrapper .experience-text {
        font-size: 18px;
    }
    .why-choose-sec .img-block {
        padding-left: 40px;
        padding-bottom: 40px;
    }
    .features-wrapper {
        margin-top: 20px;
    }
    .features-wrapper svg, .features-wrapper img {
        width: 40px;
        height: 40px;
    }
    .features-wrapper .feature-heading {
        font-size: 18px;
    }
}
@media (max-width:991px) {
    .why-choose-sec .img-block {
        padding-left: 30px;
        margin-bottom: 40px;
    }
    .features-wrapper {
        margin-top: 20px;
    }
    .features-wrapper svg, .features-wrapper img {
        width: 40px;
        height: 40px;
    }
    .why-choose-sec .img-block > img {
        padding: 10px 10px;
    }
}

/* Our Team Section CSS */
.team-sec {
    position: relative;
}
.outside-slider {
    position: relative;
    margin-top: 10px;
}
.team-slider-nav-wraper {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: 99;
}
.team-slider-nav .slick-track {
    display: flex;
    gap: 30px;
}
.team-slider-nav .slick-list {
    padding-right: 25% !important;
    padding-left: 0 !important;
}
.team-slider-nav .thumb-item {
    background: #272B2E;
    display: flex;
    cursor: pointer;
    transition: all ease-in-out .5s;
}
.team-slider-nav .thumb-item-img {
    width: 95px;
}
.team-slider-nav .thumb-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-slider-nav .thumb-item-desc {
    width: calc(100% - 95px);
    align-self: center;
    padding: 10px 15px;
}
.team-slider-nav .thumb-item-desc .thumb-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 0;
}
.team-slider-nav .thumb-item-desc .thumb-designation {
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #F29500;
}
.team-slider-nav .slick-current .thumb-item, .team-slider-nav .thumb-item:hover {
    background: var(--color-secondary);
}
.team-slider-nav .slick-current .thumb-item-desc .thumb-designation, .team-slider-nav .thumb-item:hover .thumb-item-desc .thumb-designation  {
    color: #fff;
}
.team-slider-nav .slick-current + .slick-slide + .slick-slide {
    opacity: 0.3;
    pointer-events: none;
}
.team-sec .btn {
    margin-right: 20px;
}
.slick-btn-custom {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-right: 20px;
}
.slick-arrow {
    width: 50px;
    height: 50px;
    background: rgba(39, 43, 46, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slick-arrow:hover {
    background: var(--color-secondary);
}
.excerpt-content {
    font-size: 16px;
    line-height: 2;
}
.attorney-img {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}
.attorney-img img {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 240px;
    background-repeat: no-repeat;
    background-color: var(--color-primary);
    background-position: center;
}
.attorney-img::before {
    position: absolute;
    content: "";
    left: 0;
    border: 1px solid var(--color-secondary);
    width: 95%;
    height: 80%;
    bottom: 0;
    z-index: -1;
}
.attorney-title {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
}
.attorney-role {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 10px;
    color: var(--color-secondary);
}
@media (min-width:1200px) {
    .team-sec::before {
        position: absolute;
        content: "";
        left: 0;
        width: 20%;
        height: 70%;
        background: var(--color-secondary);
        top: 0;
    }
}
@media (max-width:1400px) {
    .team-sec::before {
        width: 15%;
    }
    .attorney-title {
        font-size: 30px;
        line-height: 1;
    }
    .excerpt-content {
        font-size: 14px;
        line-height: 1.6;
    }
    .attorney-role {
        font-size: 16px;
        margin-top: 6px;
    }
    .team-slider-nav .slick-track {
        gap: 12px;
    }
    .team-slider-nav .thumb-item-img {
        width: 60px;
    }
    .team-slider-nav .thumb-item-desc {
        width: calc(100% - 66px);
        padding: 10px 10px;
    }
    .team-slider-nav .thumb-item-desc .thumb-title {
        font-size: 18px;
        line-height: 1;
    }
    .team-slider-nav .thumb-item-desc .thumb-designation {
        font-size: 11px;
        line-height: 1;
        margin-top: 5px;
    }
}
@media (max-width:1199px) {
    .team-slider-nav-wraper {
        position: static;
        width: 100%;
        display: none;
    }
    .team-slider-nav .slick-track {
        gap: 15px;
    }
    .team-slider-nav .slick-list {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .attorney-img {
        padding-left: 15px;
        padding-bottom: 15px;
    }
    .attorney-title {
        font-size: 30px;
    }
    .attorney-role {
        font-size: 18px;
    }
    .heading-wrapper {
        margin-bottom: 15px;
    }
    .excerpt-content {
        line-height: 1.6;
    }
    .main-slider .align-items-end {
        align-items: center !important;
    }
    .team-sec .btn {
        margin-right: 0;
    }
    .slick-btn-custom {
        margin-right: 0;
    }
}
@media (max-width:991px) {
    .attorney-img {
        margin-bottom: 25px;
    }
    .team-slider-for {
        margin-top: 20px;
    }
}
.team-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.team-cta-mobile .slick-btn-custom {
    margin-top: 0;
}

/* Testimonials Section CSS*/
.testimonials-sec {
    background-size: cover;
    background-position: center;
    background-color: #272B2E;
    background-blend-mode: overlay;
}
.testimonial-inner-slider {
    margin-top: 70px;
}
.testimonial-inner-slider .slick-track {
    display: flex !important;
    gap: 100px;
}
.testimonial-inner-slider .slick-slide{
    height: auto;
}
.testimonial-inner-slider .slick-slide > div {
    height:100%;
}
.testimonial-inner-slider .testimonial-card {
    height: 100%;
    padding: 40px 50px 40px 0;
    display: flex;
    gap: 15px;
}
.testimonial-inner-slider .testimonial-card::before,
.testimonial-inner-slider .testimonial-card::after {
    position: absolute;
    content: "";
    height: 50%;
    left: 0;
    right: 0px;
}
.testimonial-inner-slider .testimonial-card::before {
    top: 0;
    border-top: 1px solid var(--color-secondary);
    border-right: 1px solid var(--color-secondary);
    border-radius: 0 200px 0 0;
}
.testimonial-inner-slider .testimonial-card::after {
    bottom: 0;
    border-bottom: 1px solid var(--color-secondary);
    border-left: 1px solid var(--color-secondary);
    border-radius: 0 0 0 200px;
    border-right: 1px solid transparent;
}
.author-img-col {
    width: 65px;
    height: 65px;
    border-radius: 65px;
    overflow: hidden;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: #fff;
    font-size: 25px;
    font-family: var(--font-oswald);
    font-weight: 700;
}
.author-img-col img {
    width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover;
}
.author-info-col {
    width: calc(100% - 73px);
    position: relative;
}
.author-head {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 10px;
}
.testimonial-card .testimonial-qoute {
    position: absolute;
    right: -50px;
    bottom: -10px;
    width: 50px;
    height: 50px;
}
.testimonial-card:hover .testimonial-qoute {
    fill: var(--color-secondary);
    stroke: var(--color-secondary);
}
.testimonial-card .title {
    font-family: var(--font-oswald);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.2;
}
.testimonial-inner-slider .sub-title{
    font-size:16px;
    line-height:1.2;
    margin-top: 5px;
}
.testimonial-inner-slider .slick-dots li button {
    background: #fff;
}
.testimonial-inner-slider .slick-dots li button:hover,
.testimonial-inner-slider .slick-dots li.slick-active button,
.testimonial-inner-slider .slick-dots li button:focus {
    background: var(--color-secondary);
}
.testimonials-sec .view-btn {
    position: absolute;
    right: 0;
    top: 25px;
}
.testimonials-sec .slick-dots {
    margin-top: 50px;
}
@media (max-width: 1400px) {
    .testimonial-inner-slider .slick-track {
        gap: 40px;
    }
}
@media (max-width: 1199px) {
    .testimonials-sec .view-btn {
        position: static;
        margin-top: 40px;
    }
    .testimonial-inner-slider .slick-track {
        gap: 30px;
    }
    .testimonial-inner-slider .testimonial-card::before, .testimonial-inner-slider .testimonial-card::after {
        height: 25%;
    }
    .testimonial-inner-slider .testimonial-card::before {
        border-radius: 0 100px 0 0;
    }
    .testimonial-inner-slider .testimonial-card::after {
        border-radius: 0 0 0 100px;
    }
}
@media (max-width: 991px) {
    .testimonial-inner-slider .slick-track {
        gap: 15px;
    }
}
@media (max-width: 767px) {
    .testimonial-inner-slider {
        margin-top: 30px;
    }
    .author-img-col {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        font-size: 18px;
    }
    .testimonial-inner-slider .testimonial-card {
        height: 100%;
        padding: 30px 20px;
        display: block;
    }
    .author-info-col {
        width: 100%;
    }
    .testimonial-card .testimonial-qoute {
        right: 0px;
        bottom: -20px;
        width: 35px;
        height: 35px;
    }
}

/* Latest Blog Section CSS */
.latest-blogs-section .common-header-wrapper{
    margin-top:35px;
}
.latest-blogs-section{
    background-color:rgba(18, 40, 75, 0.03);
}
.posts-wrapper .post-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px !important;
    display: block;
}
.posts-wrapper .post-date{
    background-color:var(--color-secondary);
    padding:5px 15px;
    font-size:12px;
    color:#fff;
    top:0;
    right:0;
}
.post-content-inner {
    padding: 15px 20px 30px;
}
.posts-wrapper .post-item {
    padding: 12px 12px;
    border: 1px solid transparent;
    width: 50%;
    box-shadow: 0px 4px 50px 0px transparent;
}
.post-inner-wrap {
    height: 100%;
    background: #fff;
}
.posts-wrapper .post-item img{
    width: 100%;
    height: 185px;
    background-size: 180px;
}
.post-read-more {
    font-size: 16px;
    font-weight: 700;
    right: 20px;
    bottom: 15px;
}
.posts-wrapper .post-item .post-date {
    line-height: 11px;
}
.transtion-4{
    transition:all .4s ease;
}
.posts-wrapper .post-item:hover {
    border-color:var(--color-secondary);
}
.posts-wrapper .post-item:hover .post-title{
    color:var(--color-secondary);
}
.posts-wrapper .post-item:hover .post-date{
    background-color:var(--color-secondary);
}
.posts-wrapper .post-item:hover .post-read-more{
    display:block!important;
}
.posts-wrapper .post-item:hover {
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}
.post-read-more a{
    color: var(--color-secondary);
}
.post-read-more:hover a{
    color: var(--color-primary);
    text-decoration:underline;
}
@media (max-width: 1400px){
    .posts-wrapper .post-title {
        font-size: 18px;
    }
    .posts-wrapper .post-item {
        padding: 8px 8px;
    }
    .post-content-inner {
        padding: 15px 10px 30px;
    }
}
@media (max-width: 991px){
    .posts-wrapper {
        margin-top: 40px;
    }
    .post-content-inner {
        padding: 15px 10px 30px;
    }
}
@media (max-width: 767px){
    .posts-wrapper {
        flex-flow: column;
    }
    .posts-wrapper .post-item {
        padding: 0;
        border: none;
        width: 100%;
        margin-bottom: 25px;
    }
    .posts-wrapper .post-item:last-child {
        margin-bottom: 0;
    }
    .post-read-more {
        bottom: 10px;
    }
    .post-content-inner {
        padding: 15px 10px 50px;
    }
}

/* Award Section CSS */
.award-slider .slick-track {
    display: flex;
    align-items: center;
}
.award-slider  .slick-slide img {
    padding: 0 20px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    height: 150px;
}
@media (min-width:1700px) {
    .award-slider  .slick-slide img {
        padding: 0 10px;
        height: 170px;
    }
}

/* Contact Form with Map Section CSS */
.map-with-form-on-right {
    background: rgba(242, 149, 0, 0.1);
}
.map-block {
    position: absolute;
    right: 0;
    width: 48%;
    top: 0;
    height: 100%;
}
.map-block iframe {
    display: block;
}
@media (max-width:991px) {
    .map-block {
        position: static;
        width: 100%;
        height: 450px;
        margin-top: -60px;
        margin-bottom: 40px;
    }
}

/* FAQs Post Section CSS */
.faq-post-sec {
    background: rgba(242, 149, 0, 0.1);
}
.faq-post-sec .accordion-item {
    background: #fff;
    border-bottom: none;
    margin-bottom: 10px;
    padding: 0 15px;
}
.faq-post-sec .accordion-item:last-child {
    margin-bottom: 0;
}
.map-sec {
    height: 500px;
}
.map-sec iframe {
    display: block;
}

/* Logo Section CSS */
.trusted-logo-sec {
    background: rgba(242, 149, 0, 0.1);
}
.trusted-logo-sec .logo-card {
    border: 1px solid #ddd;
    height: 100%;
    padding: 10px 10px;
    background: #fff;
}
.trusted-logo-sec .logo-card img {
    height: 190px;
    object-fit: contain;
    object-position: center;
}
.trusted-logo-sec .read-btn {
    margin-top: 5px;
    font-size: 14px;
    display: block;
}
.trusted-logo-sec .read-btn svg, .trusted-logo-sec .read-btn img {
    width: 10px;
    height: 10px;
    display: inline-block;
}
.trusted-logo-sec .read-btn::after {
    display: none;
}
.trusted-logo-sec .read-btn:hover {
    color: var(--color-primary);
}
.trusted-logo-sec .read-btn:hover svg {
    stroke: var(--color-primary);
}
.video-testimonial-sec {
    background: rgba(242, 149, 0, 0.1);
}
.video-testimonial-sec .html5lightbox {
    background: #fff;
    padding: 10px 10px 20px;
    height: 100%;
}


/*=== hero Banner Slider CSS ===*/
.hero-banner-slider {
    height: 750px;
    overflow: hidden;
}
.hero-banner-slider .banner-subtitle {
    font-size: 25px;
}
.hero-banner-slider .banner-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 1000px;
}
.hero-banner-slider .slick-list, .hero-banner-slider .slick-slide, .hero-banner-slider .slick-slide > div,
.hero-banner-slider .slick-track {
    height: 100%;
}
.hero-banner-slider .slick-slide::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hero-banner-slider .slider-img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}
.hero-banner-slider .slick-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 0;
    z-index: 99;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
}
.hero-banner-slider .slick-next {
    left: auto;
    right: 0;
}
.hero-banner-slider .container {
    display: flex;
    align-items: center;
    height: calc(100% - 130px);
    z-index: 9;
}
.hero-banner-slider .slick-active .slider-img {
    animation: zoomEffect 9000ms linear infinite;
}
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.12);
    }
}
.slider-award-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}
.slider-award {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}
.slider-award .loop-item {
    width: 33.33%;
}
.slider-award img {
    width: 100%;
    padding: 0 10px;
    object-fit: contain;
    height: 100px;
}
.slider-attorney {
    display: flex;
    gap: 14px;
    flex-flow: wrap;
    margin-bottom: 25px;
}
.slider-attorney .thumb-item {
    width: calc(16.66% - 14px);
    padding: 10px;
    background: #fff;
}
.thumb-title {
    font-weight: 700;
    text-align: center;
    margin: 10px 0 5px;
    font-size: 18px;
    line-height: 1.2;
}
.thumb-designation {
    text-align: center;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}
.cta-banner {
    display: flex;
    flex-flow: wrap;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.cta-banner .loop-col {
    width: 33.33%;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.4);
    gap: 20px;
    background: rgba(0,0,0,0.1);
}
.cta-banner .icon-img {
    width: 50px;
    height: 50px;
    display: block;
}
.cta-banner .cta-sub-title {
    color: var(--color-secondary);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
}
.cta-title {
    font-family: var(--font-oswald);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}
.cta-banner .loop-col:hover {
    background: var(--color-primary);
}
@media (max-width:1700px){
    .hero-banner-slider .banner-subtitle {
        font-size: 20px;
    }
    .hero-banner-slider .banner-title {
        font-size: 35px;
    }
    .slider-award img {
        height: 70px;
    }
    .thumb-title {
        margin: 5px 0 5px;
        font-size: 16px;
    }
    .slider-award img {
        height: 70px;
    }
    .cta-banner .loop-col {
        padding: 20px 30px;
    }
    .cta-banner .icon-img {
        width: 40px;
        height: 40px;
    }
    .cta-title {
        font-size: 30px;
    }
    .cta-banner .cta-sub-title {
        font-size: 17px;
    }
    .hero-banner-slider .container {
        height: calc(100% - 90px);
    }
}
@media (max-width:1400px){
    .hero-banner-slider {
        height: 700px !important;
    }
    .hero-banner-slider .banner-title {
        font-size: 32px;
    }
    .hero-banner-slider .banner-subtitle {
        font-size: 20px;
    }
}
@media (max-width:1199px){

}
@media (max-width:991px){
    .hero-banner-slider .banner-title {
        font-size: 35px;
    }
    .cta-title {
        font-size: 25px;
    }
    .cta-banner .icon-img {
        width: 40px;
        height: 40px;
    }
    .hero-banner-slider .container {
        max-width: 100%;
    }
    .slider-attorney {
        gap: 8px;
        margin-bottom: 20px;
    }
    .slider-attorney .thumb-item {
        width: calc(16.66% - 7px);
        padding: 5px;
    }
    .thumb-title {
        margin: 5px 0 5px;
        font-size: 14px;
    }
}
@media (max-width:767px){
    .hero-banner-slider .banner-subtitle {
        font-size: 20px;
    }
    .hero-banner-slider {
        height: 400px !important;
    }
    .hero-banner-slider .banner-title {
        font-size: 30px;
        line-height: 1.2;
    }
    .cta-banner {
        position: static;
        flex-direction: column;
    }
    .cta-banner .loop-col {
        width: 100%;
        padding: 30px 40px;
        background: var(--color-primary);
        justify-content: flex-start;
        border-right: none;
    }
    .cta-title {
        font-size: 35px;
    }
    .slider-award-cta {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-banner-slider .container {
        height: 100%;
    }
    .slider-award {
        gap: 0;
    }
    .slider-award .loop-item {
        width: 33.33%;
    }
    .slider-award img {
        object-fit: contain;
        height: 70px;
        width: 100%;
        padding: 0 10px;
    }
    .slider-attorney {
        display: none;
    }
    .hero-banner-slider  .slick-arrow {
        width: 30px;
        height: 30px;
    }
}