/* ----------------- Google Fonts ----------------- */

@import url('https://fonts.googleapis.com/css2?display=swap&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?display=swap&family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?display=swap&family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?display=swap&family=Noto+Serif:wght@400;700&display=swap');


/*-------------- Download Font inport --------------*/

@font-face {
    font-family: 'Noto-Serif600';
    src: url(../fonts/NotoSerif-SemiBold.ttf);
}

/*--------------- Universal Selecter ---------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fonts */
    --poppins: 'Poppins',
        sans-serif;
    --noto: 'Noto Serif',
        serif;
    --lato: 'Lato',
        sans-serif;
    --libre: 'Libre Baskerville',
        serif;
    /* colors */
    --green: #0E6B35;
    --lightgray: #FAFAFA;
    --gray-lite1: #EBEBEB;
    --gray-lite2: #F4F4F4;
    --lightblack: #333333;
    --black: #000000;
    --white: #FFFFFF;
    --orange: #253746;
    --orange2: #5c5b5b;
    --mblack: #0A0A0A;

}

/*----------------- Global Use Fonts -----------------*/

h1 {
    font-family: var(--noto);
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
    color: var(--orange);
}

h2 {
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--orange);
}

h3 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: var(--black);
}

button {
    background: var(--orange);
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--white);
    font-family: var(--lato);
    transition: 0.5s;
    font-weight: bold;
}

button:hover {
    background: var(--green);
}


li {
    list-style: none;
}
p 
{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--lato);
    line-height: 30px;
    font-style: normal;
    color: var(--lightblack);
}

/*------------- Container For All Website -------------*/
.container {
    width: 1200px;
    margin: 0 auto;
}

header {
    box-shadow: -16px 14px 6px -16px #333333;
    background: #ffffff;
    padding: 10px 0;
}
header .container-fluid{
	width:97%;
}
header{
	position:sticky;
	top:0px;
	z-index:999;
}
 header {
    box-shadow: none;
    position: fixed;
    top: 0px !important;
    z-index: 999;
    width: 100%;
} 
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav ul {
    display: flex;
}

nav ul li .green {
    color: var(--green);
}

nav ul li {
    padding: 0 15px;
}

nav ul li a {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: var(--mblack);
}

nav> #header-button button a{
    padding: 14px;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
	color:#ffffff;
    line-height: 26px;
    font-family: var(--lato);
	background: var(--orange);
	width:220px !important;
}
nav> #header-button button a:hover{
	background: var(--green);
}
nav> #header-button p{
	font-size:15px;
	line-height:25px;
	color:var(--orange);
}
nav> #header-button button img {
    padding-right: 10px;
}

/* small active nav */
.faq_parent {
    position: relative;
}

.faq_body {
    display: none;
    position: absolute;
    top: 80%;
    left: 12%;
    background: var(--lightgray);
    transition: 0.3s;
    z-index: 1;
}

.faq_page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 9px;
    color: var(--mblack);
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

/* Nav TOGGLE */
.toggle {
    display: none;
}

.cross_x {
    display: none;
}

/*small active menu */
.faq_body ul {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

/*------------------ Hero Section ------------------- */
.background_img_hero {
    background-image: url(../assets/hero.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 18.8% 0;
}

.text_contect_hero {
    width: 89%;
    margin: 0 auto;
    padding: 20px;
    background: rgba(14, 107, 53, 0.9);
}

.text_contect_hero p {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    letter-spacing: 0.02em;
    color: var(--white);
    padding: 20px 0;
}

.text_contect_hero .btn_hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 15px 0 20px 0;
}


.btn_hero>a {
    padding: 13px 35px;
    font-family: var(--lato);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--green);
    background: var(--white);
    border: 2px solid var(--white);

    transition: 0.5s;
}

.btn_hero>a:hover {
    background: transparent;
    color: var(--white);
}

.btn_hero>.btn2_cobt_us {
    background: none;
    color: var(--white);
    transition: 0.5s;
}

.btn_hero>.btn2_cobt_us:hover {
    background: var(--white);
    color: var(--black);
}

/*---------------- Brand Section  ----------------*/
.bg-color_brand {
    background: #FCFCFC;
}

.brand_logo_img {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    place-content: center;
    padding: 20px 0;
}

.brand_logo_img img {
    margin: 0 auto;
}

.brand_logo_img div img {
    width: auto;
}


/* Slik Slider Button Next Or Pre */
#brand .slick-prev,
.slick-next {
    display: none !important;
}

#brand .slick-next:before {
    display: none !important;
}

/*-------------- specializinf in Personal & Lorem Ipsum --------------*/
.sp_section {
    margin-bottom: 80px;
    padding-top: 60px;

}
.sp_main_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 25px;
}
.sp_left div {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.sp_left div h4 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #5B5650;
    margin-left: 15px;
	margin-bottom:0px;
}

.sp_left>p {
    padding-right: 40px;
    margin-bottom: 5px;
}

.sp_left button{
    color: var(--white);
    padding: 13px 40px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    margin-top: 20px;
}
.sp_left button a{
	color:var(--white);
}
.sp_right {
    display: flex;
    justify-content: end;
    padding-left: 40px;
    position: relative;
}
.sp_right .sp_bg1 {
    width: 70%;
}

.sp_right .sp_bg2 {
    width: 55%;
    position: absolute;
    top: 44%;
    right: 45.5%;
}

.sp_bg3_text {
   	background: var(--orange);
    padding: 6px 20px;
}

.sp_right .sp_bg3_text {
    position: absolute;
    bottom: -9%;
    left: 24%;
    display: flex;
    text-align: center;
    align-items: center;
}

.sp_right .sp_bg3_text h2 {
    color: var(--white);
    letter-spacing: 0.02em;
    font-family: var(--poppins);
    font-style: normal;
    font-weight: 600;
    font-size: 58px;
    line-height: 87px;
}

.sp_right .sp_bg3_text p {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: var(--white);
    margin-left: 8px;
	padding-top:8px;
}

/* -------------------------- Result Section -------------------------- */
.line_orange img {
    margin: 0 10px;
}

.reslut_section{
    padding-top: 55px;
    padding-bottom: 55px;
    background: var(--gray-lite2);
}

.result_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}


.heading_result {
    text-align: center;
    margin-bottom: 40px;
}

.heading_result h2 {
    margin-top: 5px;
}

.heading_result>p {
    font-family: var(--lato);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: var(--lightblack);
}
.r_card4{
	background: url(../assets/home-img/result-img4.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.r_card2{
	background: url(/wp-content/uploads/2023/05/image-42-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.r_card3{
	background:url(/wp-content/uploads/2023/05/image-42.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.bgr_card1 {
    background: linear-gradient(0deg, rgba(106, 106, 106, 0.8), rgba(106, 106, 106, 0.8)), url(../assets/home-img/result-img444.png);
}

.bgr_card2 {
    background: linear-gradient(0deg, rgba(106, 106, 106, 0.8), rgba(106, 106, 106, 0.8)), url(../assets/home-img/result-img44.png);
}
.r_in_card1{
	background:rgba(106, 106, 106, 0.66);
}
.r_in_card1:hover{
    background-color:rgba(37, 55, 70, 0.9);
}
.r_card1 .r_in_card1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 138.5px;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 3px;
    padding: 0 20px;
	transition: transform .2s;
}
.r_card1 .r_in_card1:hover{
	 -ms-transform: scale(1.025); /* IE 9 */
  -webkit-transform: scale(1.025); /* Safari 3-8 */
  transform: scale(1.025); 
}
.r_card1 .r_in_card1 h4 {
    font-family: var(--lato);
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: var(--white);
}

.r_card1 .r_in_card1 p {
    font-family: var(--lato);
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: var(--white);
}

.r_in_card1 div {
    margin-left: 20px;
}

.r_card1 .r_in_card1:last-child {
    border: none;
}
.reslut_section .r_card1.bgr_card {
     background-image: url(../assets/image-42-5.jpg);
    background-position: top;
	background-size:cover;
    height:450px!important;
}
.reslut_section .r_card2.bgr_card {
    background-image: url(/wp-content/uploads/2023/05/image-42-1.jpg);
    background-position: top;
	background-size:cover;
    height: 411px;
}
.reslut_section .r_card3.bgr_card {
    background-image: url(/wp-content/uploads/2023/05/image-42.jpg);
    background-position: top;
	background-size:cover;
    height: 411px;
}
@media only screen 
  and (min-width: 1024px) 
  and (max-width: 1200px){
	  #faq-heading3 {
	   padding-top: 15px!important;
}
	  #faq-heading4 {
      padding-top: 32px!important;
}
      #faq-heading5 {
      padding-top: 15px!important;
}
}

/* ---------------- sp In Personal Injury & Mass Tort Law ---------------- */
.sp_law_main_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 55px;
    row-gap: 20px;
    padding: 70px 0;
}
.sp_law_main_div h1{
	text-align:left;
}

.law_left img {
    width: 100%;
}
.law_right h1{
	font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 36px!important;
    line-height: 46px;
    color: var(--orange);
}
.law_right>h1 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.law_right>.line_orange {
    text-align: left;
}

.law_right .lap_passage {
    padding-right: 35px;
}



/* ----------------------- Personal Injury Cases ----------------------- */
/* Small Creeen */
.pic_small_sc_slider {
    display: none !important;
}

/* end */
.bg_color_pic {
    background: var(--gray-lite2);
    padding: 65px 0 65px 0;
}

.pic_top_heading {
    text-align: center;
    margin-bottom: 45px;
}

.pic_top_heading h2 {
    margin: 10px 0;
}

.pic_top_heading .pic_text_in {
    font-size: 15px;
    line-height: 25px;
    margin: 20px 0 10px 0;
}

.card_pic_main {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    column-gap: 120px;
    row-gap: 60px;
    margin: 0 5px 10px 5px;
}

.card_box_pica>h3 {
    line-height: 22px;
    color: #54585A;
}

.card_box_pica {
    display: flex;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    background: var(--white);
}

#slider_pc .slick-dots li {
    background: var(--orange) !important;
    border-radius: 50%;
}

#slider_pc .slick-dots li button::before {
    display: none;
}

#slider_pc ul .slick-active {
    background: var(--green) !important;
}

#slider_pc .slick-dots li {
    width: 15px;
    height: 15px;
}

#slider_pc .slick-dots {
    bottom: -15%;
}

#slider_pc .slick-prev {
    display: none !important;
}

#slider_pc .slick-next {
    display: none !important;
}

/* -------------------- First Party Insurance Cases -------------------- */
.fpic_h2 {
    padding: 70px 0;
}

.fpic_h2 h2 {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 6px;
}

.line_orange {
    text-align: center;
}

.fpic_card_main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    padding: 20px 0;
    gap: 25px;
}

.fpic_card_main .fpic_card1 {
    padding: 12px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    text-align: center;
	transition: transform .2s;
}
.fpic_card_main .fpic_card1:hover{
	-ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05); 
}
.fpic_card_main .fpic_card1 span img {
    transition: 0.4s;
}

.fpic_card_main .fpic_card1 span:hover img {
    transform: translateX(10px);
}

.fpic_card_main .fpic_card1 h6 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--lightblack);
    margin-bottom: 30px;
	margin-top:10px;
}

.fpic_card1 span {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: var(--green);
    cursor: pointer;
}
.fpic_card1 span img {
    margin-left: 2px;
}
.fpic_card1 .card {
        width: 100px;
        height: 100px;
        position: relative;
        display: inline-block;
		border:none;
    }
.fpic_card1 .card .img-top {
        display: none;
        position: absolute;
        top: 0;
        left:0;
        z-index: 99;
    }
.fpic_card1:hover .img-top {
        display: inline;
    }
/*------------------ Product Liability Caes ------------------*/
.bg_color_pic2 {
    background: var(--gray-lite2);
    padding: 60px 0 65px 0;
}

.brtag {
    display: block;
}

.text_left_side {
    justify-content: space-between !important;
    padding: 20px 30px;
}

.text_left_side h3 {
    text-align: left;
    padding-right: 50px;
    color: var(--black);
}

.plc_card_oic {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    row-gap: 60px;
    column-gap: 120px;
    margin-bottom: 10px;
}

/*--------------------- Types Of Injury Damages ---------------------*/
.main_content_types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 50px 0;
  	gap: 40px;
}

.top_heading_types>p {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: var(--lite-black);
    margin: 20px 0;
}

.list_types {
    display: flex;
    align-items: flex-start;
}

.list_types_py {
    padding: 30px 0 20px 0;
}

.list_types>div h4 {
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-transform: capitalize;
    color: var(--orange);
}

.list_types>img {
    margin-right: 20px;
}

.list_types>div p {
    font-weight: 400;
    color: var(--lightblack);
}

.list_type_in_p {
    font-size: 13px;
    line-height: 23px;
    padding-right: 48px;
}


.right_types {
    display: flex;
    justify-content: flex-end;
    order: 1;
}

.right_types img {
    padding-left: 20px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* ----------------------- Our Attorneys ----------------------- */
.bg_attorney_color {
    background: var(--gray-lite2);
    padding: 20px 0 30px 0;
}

.pr_h2 {
    padding: 40px 0;
}

.pr_h2 h2 {
    text-align: center;
    line-height: 50px;
    margin-bottom:0px;
    margin-top: 15px;
}

.attorney_card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 30px;
	margin-top:30px;
}

.attorney_card .att_card {
    background: var(--white);
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    cursor: pointer;
}


.att_card {
    width: 100%;
    height: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.att_card img {
    margin: 15px 0 30px 0;
}

.att_card>h4 {
    font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    color: #047940;
}
.att_card>p {
    font-weight: 500;
    font-size: 13px;
	line-height:23px;
	margin-bottom:0px;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
}

.att_card>hr {
    width: 20%;
    margin: 20px auto 12px auto;
    height: 2.5px;
    background: var(--black);
}

.attor_email {
    display: flex;
    margin: 7px 0;
    align-items: center;
}

.attor_email label {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
    color: #000000;
    margin-right: 5px;
}

.attor_email span {

    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #253746;
}
.page-id-64  .attorney_card{
	height:530px;
}
.page-id-64  .attorney_card h4{
	padding:0px 10px;
}

.mob {
    font-family: 'lato'!important;
}

.btn_practices {
    text-align: center;
    margin-top: 40px;
}

.btn_practices button {
    padding: 13px 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    margin-top: 10px;
}

.btn_practices button img {
    transition: 0.6s;
    margin-left: 3px;
}

.btn_practices button:hover img {
    transform: translateX(15px);
}

/* ------------------- How Personal Injury Cases Work ------------------- */
.main_hpicw_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 70px 0;
    align-items: center;
	gap:40px;
}

.hpicw_left_side {
    width: 100%;
}


.hpicw_right_side>h2 {
    margin-top: 30px;
}
.hpicw_right_side ol li{
	font-size: 16px;
    font-weight: 400;
    font-family: var(--lato);
    line-height: 30px;
    font-style: normal;
    color: var(--lightblack);
}

.hpicw_right_side {
    padding-left: 15px;
	font-size: 16px;
    font-weight: 400;
    font-family: var(--lato);
    line-height: 30px;
    font-style: normal;
    color: var(--lightblack);
}

.hpicw_right_side>.line_orange {
    text-align: left;
    margin-bottom: 30px;
}

.hpicw_right_side>.line_orange img:first-child {
    margin: 0 3px;
}

.hpicw_right_side .p_hpicw {
    margin: 20px 0 15px 0;
    line-height: 25px;
}

.hpicw_right_side .p_hpicw2 {
    line-height: 18px;
}

.list_items_hpicw {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.list_items_hpicw span {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--lightblack);
}

.list_items_hpicw img {
    margin-right: 10px;
    padding-top: 8px;
}

.list_items_hpicw p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--lightblack);
    padding-right: 30px;
}

/* ---------------- Frequently Asked Question ---------------- */
.bg_color_gray {
    background: var(--gray-lite2);
    padding: 70px 0;
}

.main_div_question {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap:50px;
}

.que_ph .line_orange {
    text-align: left;
    margin-bottom: 25px;
}

.que_ph .line_orange img:first-child {
    margin-left: 0;
}

.question_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.question_left img {
    width: 95%;
    padding-top: 30px;
}

.question_left button {
    padding: 12px 25px;
    margin-bottom: 35px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.que_ph h2 {
    line-height: 52px;
    margin-bottom: 15px;
}

.que_ph p {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    color: var(--lightblack);
    line-height: 25px;
}

.question_ans {
    margin-top: 25px;
}

.question_ans div {
    margin-bottom: 20px;
}

.question_ans div:last-child {
    margin-bottom: 0;
}

.question_ans div h6 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 27px;
    padding: 14px;
    color: #7C7C7C;
    cursor: pointer;
}

.question_box_border {
    border: 1px solid #CCCCCC;
}

.question_ans div p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    padding: 14px;
}

.active-q {
    color: var(--white) !important;
    background: #7C7C7C !important;
}

.faq-body {
    display: none;
    padding: 5px;
    background: #7C7C7C;
}

.que-page::before {
    content: url(../assets/pluse1.png);
    font-size: 10px;
    color: #fff !important;
    float: left;
    margin-right: 5px;
    padding-top: 5px;
}

.active-q::before {
    content: url(../assets/pluse2.png);
    color: #fff !important;
    margin-top: -7px;
}

/*---------------------- Client Reviews ------------------------ */

.bg_image_client_review {
    background-image: url(../assets/RealJustice-151-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 70px 0 80px 0;
    position: relative;
}

.bg_image_client_review>h2 {
    text-align: center;
    margin-bottom: 30px;
}

.review_div_main {
    background: var(--white);
    padding: 20px;
    text-align:left;
    border-radius: 10px;
	margin:10px;
   /* height:300px;
	height:auto!important;*/
}

.review_div_main img {
    margin: 0 auto;
}

.review_div_main>p {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin: 5px 0 15px 0;
}


.review_div_main>h4 {
    font-family: var(--noto);
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
    color: #5B5650;
}
.bg_image_client_review .slick-list.draggable{
	background-color:transparent!important;
}
#client_review_slider {
    display: flex;
    width: 65%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}
#client_review_slider .client_reviews{
	font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    padding:15px 0px;
}
#client_review_slider .slick-track {
    display: flex;
}
#post_slider_none .slick-track{
	height:500px;
}
#post_slider_none .card_post{
	justify-content:start;
	background-color:#ffffff;
}
.arrow_img_div_client img:nth-child(1) {
    position: absolute;
    top: 54%;
    left: 11%;
    cursor: pointer;
}

.arrow_img_div_client img:nth-child(2) {
    position: absolute;
    top: 54%;
    right: 11%;
    cursor: pointer;
}

/* -------------- Our Latest News Post & Articles -------------- */
#post_slider_none .slick-prev {
    display: none !important;
}

#post_slider_none .slick-next {
    display: none !important;
}


.post_h2 h2 {
    text-align: center;
    margin-bottom: 30px;
}

.post_h2 .line_orange {
    margin-bottom: 20px;
}

.post_main_card_block {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}

.card_post {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    border-radius: 3px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.page-template-blog_template .content_post_in{
	height:300px !important;
    padding: 10px 25px;
    background: var(--white);
}
.content_post_in {
    padding: 10px 25px;
    background: var(--white);
}
.card_post .cal {
    display: flex;
    align-items: center;
    margin: 25px 0 10px 0;
}
.card_post .cal div p {
    display: flex;
    align-items: center;
    font-family: var(--lato);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--lightblack);
}
.content_post_in>h3 {
	 font-family: var(--noto);
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
    color: var(--orange);
    text-align: left;
    margin-bottom:10px;
}

.content_post_in>p {
    font-weight: 500;
}
.cal div {
    margin-right: 20px;
}

.cal div img {
    margin-right: 5px;
}

#post_slider ul li {
    background: var(--orange);
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#post_slider ul .slick-active {
    background: var(--green);
}

#post_slider ul li button {
    display: none;
}

#post_slider .slick-slide {
    margin: 0 30px;
    margin-bottom: 40px;
}

/* ----------- Talk to a Personal Injury & Call Back ----------- */
.talk_main_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 70px 0;
}

.talk_left .line_orange,
form .line_orange {
    text-align: left;
    margin-bottom: 20px;
}

.talk_left .line_orange img:first-child,
form .line_orange img:first-child {
    margin-left: 0;
}

.talk_left .t_passage {
    font-weight: 500;
    line-height: 25px;
    padding-right: 50px;
    margin-bottom: 40px;
}

.contact_area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.contact_area button {
    padding: 13px 30px;
}
.contact_left,
.contact_right {
    display: flex;
    align-items: flex-start;
}

.contact_left img,
.contact_right img {
    margin-right: 30px;
}

.contact_left div h5,
.contact_right div h5 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--mblack);
}

.social_media {
    display: flex;
    align-items: center;
	margin-bottom:30px;
}

.social_media a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    margin-right: 10px;
    transition: 0.5s ease-in-out;
}

.social_media a:hover {
    transform: translateY(-15px);
	background: #047940;
}

.talk_right {
    display: flex;
    justify-content: flex-end;
}

.talk_right form {
    width: 100%;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    padding: 45px 21% 45px 55px;
}

.talk_right form h2 {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 34px;
}

.input_first_div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.input_first_div div .input_type,
.input_type2 {
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    margin-top: 10px;
}

.input_type2 {
    margin-top: 30px;
}

.input_second_div {
    margin-top: 40px;
}

.form_main_div button {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--white);
    margin-top: 30px;
    padding: 14px 25px;
}

.input_first_div div label,
.input_second_div label {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--mblack);
}

/*-------------------- Footer Section --------------------*/
.bg_color_footer {
    background: var(--lightgray);
}

.footer_main {
    display: grid;
    grid-template-columns: repeat(3, 48% 22% 30%);
    gap: 20px;
}

.left_footer .logo_f {
    margin-bottom: 20px;
}

.left_footer>p {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    font-family: var(--lato);
}

.left_footer button {
    padding: 10px 28px;
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px;
	background: var(--orange);
	border:none!important;
}
.left_footer button:hover{
	background: var(--green);
}
.left_footer button img {
    margin-right: 10px;
}

.footer_add_in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    column-gap: 70px;
}
.center_footer, .left_footer{
	padding:60px 0px;
}
.center_footer>h4,
.left_footer>h4 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: var(--green);
    margin-bottom: 20px;
}

.footer_add_in div h5,
.center_footer div h5 {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: var(--lightblack);
	padding-top:20px;
}

.footer_add_in div span,
.center_footer div span {
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.footer_add_in div span i,
.center_footer div span i {
    margin-right: 10px;
    color: #333333c7;
    margin-top: 4px;
    transition: 0.5s;
	font-size:13px;
}

.footer_add_in div span:hover i,
.center_footer div span:hover i {
    transform: translateY(5px);
}

.footer_add_in div span p,
.center_footer div span p {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--lightblack);
	margin-bottom:0px;
}
.footer_add_in a,
.center_footer a{
	color: var(--lightblack);
}

.footer_add_in i {
    font-size: 13px;
}

.bold_footer_ph {
    font-weight: 700 !important;
}

.mt_footer_g {
    margin-top: 20px;
}

/*----------------- After Footer Section Review  ----------------*/
.bg_after_footer {
    width: 100%;
    background: var(--gray-lite1);
    padding: 20px 0;
}

.bg_after_footer div p {
    color: var(--lightblack);
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    font-family: var(--lato);
    font-style: normal;
    letter-spacing: 0.02em;
}

.bg_after_footer div p span {
    color: var(--green);
    font-weight: 700;
}

/* ----------------- footer Navigation Section ---------- */
.bg_after_footer2 {
    width: 100%;
    background: #54585A;
    padding: 20px 0px 0px 0px;
}
.main_footer_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_footer_nav ul {
    display: flex;
    align-items: center;
}

.main_footer_nav ul li {
    padding: 0 10px;
}

.main_footer_nav ul li:last-child {
    padding-right: 0;
}

.main_footer_nav ul li a {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    letter-spacing: 0.02em;
    color: var(--white);
}

.main_footer_nav ul li a:hover {
    opacity: 0.7;
}

.nav_ul li a:hover {
    opacity: 0.7;
}

.left_nav_footer>p {
    font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: var(--white);
}

/*-------------- Add Animation in Home page --------------*/
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active:after {
    content:none;
}
.active.fade-bottom {
  animation: fade-bottom 1.25s;
}
.active.fade-left {
  animation: fade-left 1.25s;
}
.active.fade-right {
  animation: fade-right 1.25s;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*New CSS*/
.result_card-padding{
    padding: 20px;
    color: #ffffff;
}
.m-20{
    margin-bottom: 20px;
}
.m-30{
    margin-bottom: 30px;
}
.result_section_grey{
    padding-top: 55px;
    padding-bottom: 55px;
    background: var(--gray-lite2);
}
.result_section_white{
    padding-top: 55px;
    padding-bottom: 55px;
    background: #ffffff;
}
.card_min_height{
    height: 431px;
}
.page-id-101 .r_card1.bgr_card{
background-image:none;
}
/* Testimonials */
#testimonials .card{
    border: none!important;
    background: rgba(235, 235, 235, 0.33);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}
#testimonials .link-wraper{
	margin-top:50px;
}
#testimonials .link-wraper a{
	color:#ffffff;
	background-color:#007A33;
	padding:20px;
}
#testimonials .link-wraper a.active{
	color:#ffffff;
	background-color:#54585a;
	padding:20px;
}

/* Contact US */
#contact_location{
    background-color: #F4F4F4;
    padding-top: 30px;
    padding-bottom: 30px;
}
#contact_location .location_info img{
    width: 100%;
}
#contact_location h3{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color: #54585A;
    background-color: #D9D9D9;
    padding-top: 10px;
    padding-bottom: 10px;
}
/* Hero Section */
#hero_banner .hero_banner_content h1
{
	text-align: left!important;
    color: #047940 !important;
}
#hero_banner .hero_banner_content{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 40px;
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}
#hero_banner .hero_banner_content p{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #253746;
    padding-bottom: 20px;
}
#hero_banner .btn1{
    font-size: 16px;
    padding: 15px 30px;
    font-family:'Lato';
    font-weight: 700;
    background-color:#253746;
    color: #FFFFFF;
    border: 2px solid #253746;
    text-decoration: none;
}
#hero_banner .btn1:hover{
	 background-color:#0E6B35;
	border: 2px solid #0E6B35;
}
#hero_banner .btn2:hover{
	color:#253746;
	border: 2px solid #253746;
}
#hero_banner .btn2{
    font-size: 16px;
    padding: 15px 30px;
    font-family:'Lato';
    font-weight: 700;
    background-color: transparent;
    color: #0E6B35;
    text-decoration: none;
    border: 2px solid #0E6B35;
	margin-left:10px;
}
#hero_banner{
    background-image: url("../assets/Herobanner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
#hero_banner .col-md-4{
	padding-left:0px !important;
}
#hero_banner h2{
	color: #0E6B35!important;
}
@media only screen and (max-width: 1260px) {
    #hero_banner .hero_banner_content img{
        width: 100%;
        height: auto;
        padding-right: 20px;
    }
}

/* Team member */
#attorney_info{
    background: #F4F4F4;
    padding-top: 40px;
    padding-bottom: 40px;
}
#attorney_info h4{
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 43px;
    text-transform: capitalize;
    color: #0E6B35;
}
#attorney_bio h4{
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 43px;
    text-transform: capitalize;
    color: #0E6B35;
}
#attorney_bio ul li{
  list-style-type: circle;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #333333;
}
#attorney_info ul li{
  list-style-type: circle;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #333333;
}
#attorney_info ul{
	margin-left:30px;
}
#attorney_info .attorney_content .line_orange{
    text-align: left !important;
}
#attorney_info .attorney_content h3{
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 43px;
    color: #54585A;
    text-align: left;
    margin-bottom: 20px;
}
#attorney_info .attorney_img img{
	border: 4px solid #54585A;
}
#attorney_info h1 {
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    color: #0E6B35;
    text-align: left;
}
#attorney_bio h4{ 
	font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 43px;
    text-transform: capitalize;
    color: #0E6B35;
}
#attorney_bio ul li {
  list-style-type: circle;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #333333;
}
#attorney_bio ul{
	margin-left:30px;
}
section#attorney_bio {
    padding-bottom: 30px;
}
#attorney_detail{
    background-color: #F4F4F4;
    padding-top: 30px;
    padding-bottom: 30px;
}
#attorney_quote{
    padding-bottom: 30px;
}
#attorney_quote .col-12{
	padding-left:0px!important;
	padding-right:0px!important;
}
#attorney_quote .attorney_words{
    padding: 30px;
    background-color: #0E6B35;
}
#attorney_quote .attorney_words p, #attorney_quote .attorney_words h3{
    color: #FFFFFF;
}
#attorney_quote .attorney_words h3{
    font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}
#attorney_quote .attorney_words p{
     font-family: var(--lato);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}
.page-template-team-member h2{
	padding-top:30px;
}
@media only screen and (max-width: 768px) {
    #attorney_info .attorney_content h3{
        font-size: 16px;
        line-height: 26px;
    }
}
#blogs .card_post img.feature_image{
	height:250px!important;
	width:100%!important;
}

#blogs .card_post div.content_post_in{
	height:65px;
}
.pagination .page-numbers {
    background-color: #253746!important;
    padding: 20px;
    margin: 10px;
    color: #ffffff;
}
#practice-area-content{
	padding-top:30px;
	padding-bottom:30px;
}
#practice-area-content .col-md-8 h2{
	margin-top: 1.5em;
}
#practice-area-content form .bg-dark {
    background-color: #494949!important;
}
#practice-area-content h3{
	text-align:left;
	font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    color:var(--orange);
}
#practice-area-content h4{
	text-align:left;
	font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    color:var(--orange);
}
#practice-area-content .col-md-8 ul li:before{
	content: '';
    background: url(../assets/post_icon.png) !important;
	height: 16px;
    width: 16px;
	background-repeat:no-repeat;
    position: absolute;
	left:20px;
	margin-top:8px;
}
#practice-area-content .col-md-8 ul li{
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: #333333;
	padding-left:15px;
}
#practice-area-content .col-md-4  form .form-wrapper {
margin-top: 0px!important;
}
#practice-area-content .col-md-4  form p{
	color:#ffffff;
}
#practice-area-content .col-md-8 img{
	width:100%;
}
#practice-area-content .sub_category_list, #practice-area-content .practice_area_list, #practice-area-content .location_list{
   background: var(--gray-lite1);
}
#practice-area-content .sub_category_list ul, #practice-area-content .practice_area_list ul, #practice-area-content .location_list ul{
    padding-left: 0px;
}
#practice-area-content .sub_category_list ul li, #practice-area-content .practice_area_list ul li, #practice-area-content .location_list ul li{
    font-family: ;
    font-size: 16px;
    line-height:46px;
    border-bottom: 1px solid #000000;
    color: #000000;
}
#practice-area-content .location_list ul li a{
font-size: 16px;
    font-weight: 400;
    font-family: var(--lato);
    line-height: 30px;
    font-style: normal;
    color: var(--lightblack);
}
#practice-area-content .card_post .content_post_in h4 {
	 font-family: var(--poppins);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--mblack);
    text-align: left;
	margin-bottom:0px;
}
#practice-area-content .card_post .content_post_in h4 a{
	color: var(--orange);

}
#content-table a
{
	color:#333333;
	text-decoration:none;
	border-left: 1px solid #333333;
    padding: 0px 12px;
    font-size: 15px;
    line-height: 29px;
	font-weight:400;
}
#content-table a:hover
{
color:#0e6b35;
}
#content-table a:first-child
{
	border-left:none;
	color:#0e6b35;
	padding-left:0px;
}
section#content-table{
	background: #ffffff;
	padding:20px;
}
@media only screen and (min-width: 768px){
	section#content-table{
  	background: #ffffff;
	padding:20px;
	z-index:99;
	background: var(--gray-lite2);
}
}
#related_blogs{
    background: var(--gray-lite1);
    padding-top: 30px;
    padding-bottom: 30px;
}
h3.practice-sidebar{
	font-family: 'Noto Serif';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 46px;
    text-transform: capitalize;
    color: #0E6B35;
}
@media (max-width: 767px){
.location_list{
    margin-top: -60px;
}
.practice_area_list{
    margin-top: -60px;
}
}
.practice-table-content-div {
	background-color: #54585A;
	padding: 25px 23px;
}
.practice-table-content-div ol {
	padding-left: 20px;
}
.practice-table-content-div ol li {
	list-style: decimal !important;
	color: #fff;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 33px;
}

.personal_injury_slider .product-liability-bg1{
    height:200px;
	width:100%;
}
.personal_injury_slider .product-liability-image{
  	display: block;
	width:100%;
    height:200px;
	filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}
.personal-wrapper .slick-initialized .slick-slide:hover .product-liability-image{
	filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.product-liability .text {
  color: #000000;
    font-family: var(--lato);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height:18px;
  	text-align: center;
}

//client reviews

.aa{ display: none;}
.readmore { margin: 0 5px;}

//Personal Injury Cases Slider
#personalInjury .slick-slider{
	width:100%;
}
.slick-slider .slick-disabled {
  opacity : 0;
  pointer-events:none;
}
.personal-wrapper .slick-initialized .slick-slide .personal_injury_slider{
	width:100%;
    height:200px;
}
.personal-wrapper .slick-initialized .slick-slide:hover .text{
	background-color:#0e6b35;
	color:#ffffff;
}
.personal-my-slidering .slick-slide{
	margin:0px 20px;
}
.personal-my-slidering ul.slick-dots{
	display:none!important;
}
.personal-my-slidering .personal_injury_slider {
  position: relative;
  width: 50%;
}
.personal-my-slidering .personal-injury-image{
  display: block;
  width:100%;
  height: 200px;
	filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}
.personal-wrapper .slick-initialized .slick-slide:hover .personal-injury-image{
	filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.personal-my-slidering .text{
 	color: rgb(0, 0, 0);
    font-family: var(--lato);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    padding:10px 5px;
	margin-bottom:0px;
	
}
.personal-my-slidering .slick-next{
	right: -20px;
	display:block!important;
}
.personal-my-slidering .slick-prev::before {
 content: url(../assets/left_icon.png) !important;
}
.personal-my-slidering .slick-next::before {
  content: url(../assets/right_icon.png) !important;
}
/* contact form css */
.right_talk .line_orange{
	text-align:left!important;
}
.right_talk .OTMForm.vertical-form{
margin-top:50px;
}
.right_talk .btn.primary {
    background-color: #253746;
    color: #fff;
}
.right_talk .btn.primary:hover {
    background-color: #007A33;
    color: #fff;
}
.right_talk {
    width: 94%;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    padding: 45px 55px 45px 55px;
}
.right_talk h2{
	font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: var(--orange);
}
.right_talk .content-field{
  display: grid;
  grid-template-columns:50% 50%;
}
.right_talk .OTMForm .input-wrapper label{
	color:#000000;
}
.page-id-2498 form.wpcf7-form .form-wrapper.text-white.text-center.bg-dark.p-2.p-lg-3.p-xl-4.pt-2.ll-at-font.ll-at-size.ll-at-line-height{
	margin-top:0px!important;
}
.page-id-2498 form.wpcf7-form .bg-dark {
    background-color: #494949!important;
}
.page-id-2498 h3{
	text-align:left;
	font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    color:var(--orange);

}
.page-id-2498 h4{
	text-align:left;
	font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    color: var(--orange);

}
.personal-my-slidering .slick-track  .slick-slide {
transition: transform .2s;
}
.personal-my-slidering .slick-track  .slick-slide:hover{
	-ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05); 
}
.personal-my-slidering .slick-track  .slick-slide:hover .text{
	padding-top:5px;
}
#smithChatWidget .widget-header {
    background-color: #253746!important;
}
.subheading{
	text-align:center;
	font-size:16px!important;
	line-height:28px;
}
.imagefullwidth{
	width:100%;
}

/*  Ho do you Get Realjustice section    */

.how_do_you_get_heading{
	font-family: Noto Serif;
font-size: 36px;
font-weight: 700;
line-height: 49px;
letter-spacing: 0em;
text-align: center;
padding-top:10px;
}
.how_do_you_get_circle{
	background:#0E6B35;
	text-align:center;
	border-radius:50%;
	width:100px;
	height:100px;
	margin-left: auto;
    margin-right: auto;
    color:#fff;
    font-family: Lato;
font-size: 39px;
font-weight: 800;
line-height: 46px;
letter-spacing: 0em;
text-align: center;
padding-top:25px;
margin-top:15px;
margin-bottom: 15px;
}
.How_do_get_line{
	margin:0px 10px;
}
.How_do_you_get_box{
	border: 1px solid #0E6B35;
	background-color:#F0F0F0;
	font-family: 'Lato' sans-serif;
font-size: 17px;
font-weight: 400;
line-height: 23px;
letter-spacing: 0em;
text-align: center;
margin-top: 20px;
margin-right: 20px;
margin-bottom: 20px;

    padding:30px;
}
.How_do_you_get_box h3{
	font-family: Noto Serif;
	font-size:24px;
	line-height:28px;
	margin-bottom:10px;
	margin-top:10px;
		
}
.How_do_you_get_para{
	font-family: 'Lato' sans-serif;
font-size: 16px;
font-weight: 700;
letter-spacing: 0em;
text-align: center;
padding:10px;
}
.How_do_get_seprater{
	text-align:center;
}
@media only screen and (min-width:541px) and (max-width:991px){
	.How_do_you_get_box{
    padding: 15px;
	}
}
/*  type of injury damages  */

@media only screen and (min-width: 820px), screen and (max-width: 1180px){
@media (min-width: 768px)
@media (min-width: 768px)
@media only screen and (min-width: 820px), screen and (max-width: 1180px)
.injurydamages {
    height: 100%;
}

}
#imginjury{
	padding: 10px 0px 70px 0px;
	background-image: url("../assets/testimonial-bg.png");
	 background-repeat:no-repeat;
	 background-size: cover;
	background-position:center;
}
#divinjury{
	color: #fff;
}
#headinjury{
	font-family: 'Noto Serif';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 52px;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 0px 20px 0px;
	margin-top: 35px;
}
#parainjury{
font-family: 'Lato';
font-size: 18px;
font-weight: 400;
line-height: 26px;
letter-spacing: 0em;
text-align: center;
color: #fff;
padding-bottom: 45px;
}

#iconimg {
    margin-left: auto;
    margin-top: -43px;
    height: auto;
    max-width: 100%;
    padding-left: -2px;
    margin-right: auto;
    display: block;
}
#iconcolor {
    margin-left: 66px;
    margin-right: 60px;
    margin-top: -130px;
}
#cardinjury {
    width: 100%;
    height: 100% !impoetant;
}

#cardhead{
	color: #253746;
	font-family: 'Noto Serif';
	font-size: 22px !important;
	font-weight: 700;
	line-height: 32px;
	letter-spacing: 0em;
	text-align: center;
	font-style: normal;
	padding-top: 10px;
}
#cardpara-injury{
	color: #333333;
	font-family: 'Lato';
	font-size: 13px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0em;
	text-align: center;
}
.injurydamages{
	background-color: #fff;
	margin: 0px 0px 60px 16px;
    text-align: center;
    padding: 10px 10px 62px 10px;
    

}
.injurydamages {
    height: 100%;
}
.injurydamages {
    background-color: #fff;
    text-align: center;
    padding: 10px 10px 15px 10px;
}
.img-fluid{
	max-width: 100%;
	height: auto;
}

@media only screen and (min-width: 820px) {
    .injurydamages{
    	width: 100%;
    	height: 100%;
    	padding: 0px 10px 60px 10px;
      
       
	}
	#cardinjury {
    width: 100%;
    height: 382px !important;
}
}
     @media (min-width: 768px){
 .injurydamages{
        padding: 10px 10px 15px 10px;
}	 
 #iconcolor {
    margin-left: 51px;
    margin-right: 44px;
    margin-top: -130px;
}
#cardinjury {
    width: 100%;
    height: 420px !important;
}
 
/* #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu{
	margin-top:29px!important;
}
#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-flyout ul.mega-sub-menu{
	margin-top:29px!important;
} */
	}
div#mega-menu-wrap-main-menu{
	width:100%;
}

@media only screen and (min-width: 820px) {
.injurydamages {
    width: 100%;
    height: 384px;
	}
}
@media only screen and (min-width: 1280px){
.injurydamages {
    width: 100%;
    height: 311px;
	}}
@media only screen and (min-width: 1024px){
.injurydamages {
    width: 100%;
    height: 325px;
	}
}

/* type of injury damages css end */

/* personal injury case section home page */
		.single-post .main-content .sidebar{
			height:auto;
		}
/* single post page */
		.single-post form .bg-dark{
background-color: #494949!important;
}
.single-post h3 {
    text-align: left;
    font-family: var(--noto);
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    color: var(--orange);
}
.single-post .sub_category_list ul li, .single-post .practice_area_list ul li, .single-post .location_list ul li {
    font-family: ;
    font-size: 16px;
    line-height: 46px;
    border-bottom: 1px solid #000000;
    color: #000000;
}
.single-post .sub_category_list, .single-post .practice_area_list, .single-post .location_list {
    background: var(--gray-lite1);
}
.single-post h2{
margin-top: 1.5em !important;
}
	.single-post .practice-table-content-div h2{
		margin-top:0px!important;
	}
		.single-post .content ul li:before{
	 content: '';
    background: url(../assets/post_icon.png) !important;
	height: 16px;
    width: 16px;
	background-repeat:no-repeat;
    position: absolute;
	left:5px;
}
.single-post .content ul li{
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	line-height: 24px;
	color: #333333;
	padding-left:30px;
}
.talk_main_div .contact_area button{
    padding: 10px 20px;
    font-weight: 700;
    font-size: 26px;
    line-height: 39px;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px;
    background: var(--orange);
    border: none!important;
	width: 250px;
	margin-bottom:20px;
}
.talk_main_div .contact_area button:hover{
	background-color:#047940;
}
.talk_main_div .contact_area p{
font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
		
		/*       hero section CSS      */
		
/* 		
			#hero_section .row .col-sm-3, #hero_section .row .col-sm-6{
			padding-right: 0px;
    padding-left: 0px;
		}
		#hero_section .content_banner img{
			width:100%;
		}
#hero_section .content_banner{
    display: block;
    margin-top: auto!important;
	margin-bottom:auto!important;
	padding-bottom:35px;
}
#hero_section .content_banner p{
    font-family: 'inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #253746;
    padding-bottom: 20px;
}
#hero_section .btn1{
    font-size: 16px;
    padding: 15px 30px;
    font-family:'Lato';
    font-weight: 700;
    background-color:#253746;
    color: #FFFFFF;
    border: 2px solid #253746;
    text-decoration: none;
}
#hero_section .btn1:hover{
	 background-color:#0E6B35;
	border: 2px solid #0E6B35;
}
#hero_section .btn2:hover{
	color:#253746;
	border: 2px solid #253746;
}
#hero_section .btn2{
    font-size: 16px;
    padding: 15px 30px;
    font-family:'Lato';
    font-weight: 700;
    background-color: transparent;
    color: #0E6B35;
    text-decoration: none;
    border: 2px solid #0E6B35;
	margin-left:10px;
}
#hero_section h2{
	 font-family: var(--noto);
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: var(--orange);
	color: #0E6B35!important;
} */
	.page-id-2498 li {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #333333;
    padding-left: 30px;
}
	#referral-quotation .referral-quotation-content{
		margin-top:auto;
		margin-bottom:auto;
	}
	
	/* hero section css*/
	
	
.btnhover{
background:none !important;
}
.carousel-control-prev, .carousel-control-next {
	font-size: 20px;
    line-height: 1;
    opacity: .75;  
}
.content_banner_{
padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 10px !important;	
}
.content_{
	padding-right:10% !important;
}
.pdrow_ {
    padding-left: 0px !important;
	padding-right:0px !important;
}
.content_banner_ h2{
font-family: Noto !important;
font-size: 30px;
font-weight: 700;
line-height: 40px;
letter-spacing: 0em;
text-align: left;
color: #047940;
margin-bottom:0px;
}	
.content_banner_ p{
font-size: 16px;
font-weight: 400;
line-height: 30px;
letter-spacing: 0.02em;
color:#000000!important;
}
.btn1_{
text-align: center;
font-size: 18px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0em;
background: #253746;
color:#ffffff!important;
padding:2% 5%;
border:1px solid #253746;
}
.btn1_ a{
 color:#ffffff!important;
}
.btn2_{
	font-weight: 400;
	font-size: 18px;
	line-height: 19px;
    letter-spacing: 0em;
	border:1px solid #047940;
	margin-left:10px;
	padding:2% 5%;
	background-color:transparent;
}
	.btn2_:hover a{
		color:#ffffff;
	}
 @media only screen and (max-width: 821px) and (min-width: 769px){
	.content_{
	padding:0% !important;
	 }
 
#img_2{
			display:none !important;
		}
#img_1{
			display:none !important;
		}
#img_4{
			display:block !important;
		}
#img_3{
			display:none !important;
		} 

}

@media only screen and (max-width: 768px) and (min-width: 461px) {
	
	.content_{
	padding-right:0% !important;
}
 #img_2{
			display:none !important;
		}
#img_1{
			display:none !important;
		}
#img_3{
			display:block !important;
		}

#img_4{
			display:none !important;
}
#ipad_mini_1{
			display:block !important;
		}
#image_3{
			display:none !important;
		}
	#ipad_air{
		display:none !important;
	}
	

}
	
	/*slider*/
.pdrow_ {
    padding-left: 0px !important;
	padding-right:0px !important;
}
#demo button.carousel-control-prev.btnhover {
    width: 40px;
}
#demo button.carousel-control-next.btnhover {
    width: 40px;
}
.page-template-practice .OTMForm .input-wrapper input, .OTMForm .input-wrapper textarea{
color:#000000;
}


/* The Modal (background) */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1;
  padding-top: 100px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}


	
/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin:auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
	p.content_hero {
    text-align: center !important;
    padding: 10px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
	@media (max-width: 1200px) and (min-width: 600px){
		.modal-content{
			 width: 70%;
			margin-top:140px;
		}
	}
	@media (max-width: 600px){
		.modal-content{
			 width: 92%;
		}
}
section.bgcontent_ {
   background: linear-gradient(90deg, rgba(224,221,216,1) 0%, rgba(251,251,251,1) 50%, rgba(230,230,230,1) 100%);
}
#ipad_air{
	display:none;
}
#ipad_mini_1{
display:none;

}
#img_2{
	display:none;
}
#img_3{
	display:none;
}

#img_4{
	display:none;
}

/* contact section   */

section#realfooter {
    margin-top: -396px;
}

section#thirdsection {
    padding-top: 40px;
}

section.fullfooter {
    padding-top: 70px;
    padding-bottom: 70px !important;
}
.footerhead{

font-family: 'Lato', sans-serif;
font-size: 16px;
font-weight: 700 !important;
line-height: 19px;
letter-spacing: 0.02em;
text-align: left;
color:#333;
}

.footerhead1{

font-family: 'Lato', sans-serif;
font-size: 16px;
font-weight: 700 !important;
line-height: 19px;
letter-spacing: 0.02em;
text-align: left;
color:#333;
/* padding-top: 26px; */
}
.span_para{
font-family: 'Lato', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
letter-spacing: 0.01em;
text-align: left;
color:#575D5E  !important;

}

.span_number{
font-family: 'Lato', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 24px;
letter-spacing: 0.01em;
text-align: left;
color:#575D5E  !important;
}

.topheadfoot{
font-family: 'Lato', sans-serif;
font-size: 21px;
font-weight: 600;
line-height: 25px;
letter-spacing: 0.02em;
text-align: left;
color:#0E6B35;
padding: 0px 0px 10px 0px;

}

.thirdsechead{
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: left;
    padding-bottom: 10px;
	color: #0E6B35;
	padding-top:20px;
}


/*  mobile */


 @media (max-width: 414px) {
section#realfooter {
    margin-top: 30px !important;
}
.footerhead1 {
	
	/*padding-top: 25px !important; */
}
.col-md-3.footer_space {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}
section#thirdsection {
    padding-top: 0px !important;
}
section#realfooter {
    margin-top: 0px !important;
}

 }


 @media (max-width: 480px) {
section#realfooter {
    margin-top: 30px !important;
}
	 
.footerhead1 {
	
	/* padding-top: 25px !important; */
}
/* .col-md-3.footer_space {
    padding-top: 10px !important;
    padding-bottom: 20px !important;   */
}
section#thirdsection {
    padding-top: 0px !important;
}

 }
 
 @media (max-width: 820px) {
 section#realfooter {
    margin-top: -372px !important;
}
	 .thirdsechead {
    font-family: 'Lato', sans-serif;
    font-size: 20px !important;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: left;
    padding-bottom: 10px;
    color: #0E6B35;
}

/* .footerhead1 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #333;
    padding-top: 82px !important;
 } */
 }
 
 @media (max-width: 912px) {
 section#realfooter {
    margin-top: -374px !important;
 }
 /* .footerhead1 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #333;
    padding-top: 60px !important;
} */
 }
 
 
 @media (max-width: 1024px) {
	 
	.footerhead1 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #333;
     /* padding-top: 50px !important; */
} 
.thirdsechead {
    font-family: 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: left;
    padding-bottom: 10px;
    color: #0E6B35;
}
 }
 
 
 @media (max-width: 390px){
section#realfooter {
    margin-top: 30px !important;
}
/*.footerhead1 {
	
	padding-top: 25px !important;
} */
 }
.span_para {
/* padding-left: 5px;*/
}
.span_number {
/* padding-left: 5px; */
}
  
@media (max-width: 414px){
/* section#realfooter {
    margin-top: 30px !important;
}  */
	h4.footerhead1 {
    margin-top: -47px;
}
	.col-md-3.mobileview {
    display: block!important;
}
.col-md-3.row-start-1.row-end-4.desktopview {
    display: none;
}
	section#realfooter {
    margin-top: -10px!important;
}
 }
@media (max-width: 540px){
 section#realfooter {
    margin-top: 30px !important;
}
/*  .col-md-3.footer_space {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}  */
/* .footerhead1 {
	padding-top: 30px !important;
} */
}
.span_para a {
padding-left: 5px;
	color:#575D5E !important;
}
.span_number a {
padding-left: 5px;
	color:#575D5E !important;
} 


	@media only screen and (max-width: 768px) and (min-width: 414px) {

	
.col-md-3.footer_space.tennessee_sec {
    margin-top: 252px!important;
    margin-left: -344px!important;
}
.col-md-3.row-start-1.row-end-4.ipadmap {
    margin-top: 230px!important;
    margin-left: -175px!important;
}
section#realfooter {
    margin-top: -582px !important;
}
section#realfooter {
    margin-top: -610px !important;
}	 
  }
.col-md-3.row-start-1.row-end-4.desktopview {
    margin-top: -50px;
}


@media only screen and (max-width: 820px) and (min-width: 768px) {
/*.col-md-3.footer_space.tennessee_sec.tennessec22 {
    margin-top: 252px;
    margin-left: -360px;
}*/
.col-md-3.footer_space.tennessec_air {
    margin-top: 252px!important;
    margin-left: -360px!important;
}
.col-md-3.row-start-1.row-end-4.ipadairmap {
    margin-top: 230px!important;
    margin-left: -175px!important;
}
/*.col-md-3.row-start-1.row-end-4.desktopview.ipadmap.ipadairmap {
	margin-top: 230px;
    margin-left: -175px;
}*/
section#realfooter {
    margin-top: -610px !important;
}
	.desktop_content_section{
         display:none;!important;
                            }
	.ipad_content_section{
         display: block !important;
                            }  
}
@media only screen and (max-width: 767px) and (min-width: 414px) {
section#realfooter {
    margin-top: -10px !important;
	}
.col-md-3.footer_space.tennessee_sec.tennessec_air {
    margin: 0px !important;
}
}

.ipad_content_section{
         display:none;
                            }

.tensee {
  margin-top: 420px;
}
.tensee_content{
	margin-bottom: 40px;
}
.postid-5739 p.treat{
	padding-left:35px;
}
.postid-5739 p.trick{
	padding-left:35px;
}
.postid-5739 p.treat:before {
content:'';
background: url('https://realjustice.com/wp-content/uploads/2023/10/dog-treat.png'); /*url of image*/
height: 32px; /*height of image*/
width: 32px;  /*width of image*/
left:10px;
position: absolute;
}
.postid-5739 p.trick:before {
content:'';
background: url('https://realjustice.com/wp-content/uploads/2023/10/hat-1.png'); /*url of image*/
height: 32px; /*height of image*/
width: 32px;  /*width of image*/
left:10px;
position: absolute;
}
.postid-5739 .practice-table-content-div{
	display:none;
}


 
/* Start testimonial css  */
div#testimonialsreal {
    display: flex !important;
    width: 100%;
    height: auto !important;
    padding: 0px 80px 0px 80px;
}
@media only screen and (max-width: 912px) {
div#testimonialsreal {
/*     display: flex !important; */
    width: 100%;
    height: auto !important;
    /*padding: 0px 250px 0px 250px;*/
	padding: 30px !important;
}
}
		
@media only screen and (max-width: 768px) {
	
	div#testimonialsreal {
/*     display: flex !important; */
    width: 100%;
    height: auto !important;
    /* padding: 0px 250px 0px 250px; */
  
}
}
@media only screen and (max-width: 820px) {
div#testimonialsreal {
/*     display: flex !important; */
    width: 100%;
    height: auto !important;
    /* padding: 0px 250px 0px 250px; */
   
	
}
}
	
	
@media only screen and (max-width: 414px) {
	div#testimonialsreal {
    display: block !important;
    width: 100%;
	padding: 0px 30px 0px 10px!important;
}
}
@media only screen and (max-width: 1024px) {
div#testimonialsreal {
	
	width: 100%;
    height: auto!important;
    padding: 0px 0px 0px 0px;
}
	.container.post_h2 {
    width: 100% !important;
}
	.post_main_card_block {
/*     display: grid !important; */
    grid-template-columns: repeat(1, 1fr);
	gap: 20px !important;
/*     gap: 50px; */
}
}
.client_reviews {
    padding: 15px 0px 15px 0px !important;
    color: #333 !important;
    line-height: 30px !important;
	font-size: 16px !important;
	
}
/*end testimonial css */
/*blog section css*/
	
	#post_slider_none .card_post {
    justify-content: start;
    background-color: #fff;
    width: 100% !important;
}
	
div#post_slider {
    display: flex !important;
}
	
@media only screen and (max-width: 414px) {
	div#post_slider {
    display: block !important;
    width: 100% !important;
    padding: 0px 20px 0px 20px !important;
}
	div#review_div_main {
    width: 100% !important;
}
		
}
	
@media only screen and (max-width: 820px) {
.container.post_h2 {
    padding: 10px !important;
    /* margin: 0px !important; */
	}
	.post_main_card_block {
/*     display: grid !important; */
    grid-template-columns: repeat(1, 1fr);
	gap: 20px !important;
/*     gap: 50px; */
}
}
/*blog css end*/