@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --primary-color: #BB9955;
    --secondary-color: #062441;
    --white: #ffffff;
}
@font-face {
    font-family: times-new;
    src: url(../font/times-new.ttf);
}
@font-face {
    font-family: times-new-roman;
    src: url(../font/times-new-roman.ttf);
}
body{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

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

a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

li {
    list-style: none;
    display: inline-block;
}

h1,h2,h3,h4,h5,h6,p {
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6{
    font-family: times-new;
}

ul,ol {
    padding: 0;
    margin: 0;
}
p{
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Open Sans", sans-serif;
    color: #636D78;
}
.btn-primary{
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 17px;
    font-family: "Open Sans", sans-serif;
    transition: all .3s;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-transform: uppercase;
}
.btn-primary:hover{
    background: var(--secondary-color);
}
.btn-secondary{
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 15px;
    font-family: "Open Sans", sans-serif;
    transition: all .3s;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-transform: uppercase;    
}
.btn-secondary:hover{
    background: var(--primary-color);
}
.sec-padd{
    padding: 80px 0;
}
.sec-t-padd{
    padding-top: 80px;
}
.sec-b-padd{
    padding-bottom: 80px;
}
.form-control:focus{
    box-shadow: none;
    border-color: var(--primary-color);
}
/*---------Desktop Menubar-------------*/
.nav-menu{
    padding: 12px 0;
    position: relative;
}
.menubar{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
.menu{
    text-align: center;
    display: flex;
}
.menu-box{
    width: 25%;
    position: relative;
}
.menu-box::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,.25);
    position: absolute;
    top: 0;
    left: 0;
}
.nav-menu .menu > .menu-box:first-of-type::before{
    display: none;
}
.menu-box h6 {
    color: var(--primary-color);
    font-size: 24px;
    letter-spacing: 2px;
    text-align: left;
    padding: 25px 20px 20px;
}
.menu-ul{
    text-align: left;
    padding-left: 20px;
}
.menu-ul li{
    display: block;
}
.menu-ul li a{
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--white);
    padding: 8px 0;
    display: inline-block;
    transition: all .4s ease-in-out;
    /* border-bottom: 1px solid #fff; */
    position: relative;
    text-transform: capitalize;
}

.menu-ul li a:hover{
    text-decoration: none;
    color: var(--primary-color);
}

.menu-ul li a.active{
    color: var(--primary-color);
}

.navbar-toggler span{
    font-size: 14px;
    line-height: 24px;
    color: var(--dark-black);
    width: 70px;
    position: relative;
    padding-right: 5px;
}
.navbar-toggler span:before{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 15px;
    color: var(--primary-color);
    position: relative;
    top: 1px;
    left: -3px;
}
.navbar-toggler{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    border: none;
}
.navbar-toggler:focus{
    border: none;
    outline: none;
}
.user-profile-wrap{
    margin-left: 15px;
}
.mobile-toggle.menu-open span:first-child {
    transform: rotate(47deg) translateY(2px);
}
.mobile-toggle.menu-open span:nth-child(2) {
    display: none;
}
.mobile-toggle.menu-open span:last-child {
    transform: rotate(128deg) translateY(1px);
}
/*-------Mobile Menubar----------*/

.mobile-toggle{
    display: block;
    cursor: pointer;
}
.menu{
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    width: 100%;
    height: 65vh;
    transition: 0.5s;
    z-index: 1045;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
	right:0;
}
.menu.active{
    visibility: visible;
    opacity: 1;
}
.menu.hover{
    visibility: visible;
    opacity: 1;
}

.mobile-toggle span{
    background: var(--primary-color);
    height: 2px;
    display: block;
    width: 27px;
    position: relative;
    transition: all 0.5s;
}
.mobile-toggle span:nth-child(2) {
    margin: 7px 0;
}

/*---header----*/
@keyframes goDown {
    0%{
      top:-60px;
    }
    100% {
      transform: translateY(0px);
    }
  }
header.fixed{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    box-shadow: 0 -5px 8px 4px rgb(0 0 0 / 15%);
    animation: goDown 0.5s ease-in-out forwards;
}
.logo-box img{
    width: 230px;
}
.header-phome h5 a{
    font-size: 32px;
    font-weight: 700;
    line-height: 28px;
    color: var(--secondary-color);
}
.header-phome h5 a i{
    color: var(--primary-color);
    font-size: 25px;
    margin-right: 5px;
}
.header-phome h5 p{
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    color: var(--secondary-color);
    text-align: right;
    font-family: "Open Sans", sans-serif;
}
.header-right{
    display: flex;
    align-items: center;
}
.btn-gap{
    margin: 0 25px;
}



/* .menu-ul {

    top: 100%;
    left: 30%;
    margin-top: 10px;
    width: 40%;
    opacity: 0;
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.4;
    visibility: hidden;
    pointer-events: none;
}
    
.mobile-toggle:hover + .menu-ul {
    opacity: 1!important;
    visibility: visible!important;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
} */



/*-------main banner----*/
.main-banner-sec{
    background-size: cover;
    background-position: center;
    position: relative;
}
.main-banner-sec:after{
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(132.8% 132.8% at 54.75% -10.67%, rgba(6, 36, 65, 0.3) 20.18%, rgba(6, 36, 65, 0.86) 88.37%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-content{
    position: relative;
    z-index: 2;
    padding: 220px 0;
}
.banner-content h4{
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    color: var(--white);
    text-transform: uppercase;
    font-family: Times New Roman;
    letter-spacing: 0.03em;

}
.banner-content h1{
    font-size: 98px;
    font-weight: 700;
    line-height: 60px;
    color: var(--white);
    padding: 25px 0;
    text-transform: uppercase;
    font-family: Times New Roman;
    letter-spacing: 0.03em;

}
.banner-content p{
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: var(--white);
    position: relative;
    padding-left: 44px;
}
.banner-content p:before{
    content: "";
    width: 35px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 12px;
    left: 0;
}
.banner-img{
    position: absolute;
    bottom: 0;
    right: 6%;
    z-index: 2;
}
.banner-icon{
    position: absolute;
    top: 10%;
    right: 10%;
}


/*----banner bottom counter---*/
.counter-sec{
    background: var(--primary-color);
    padding: 15px 0 20px;
}
.count-area-content{
    text-align: center;
    border-right: 1px solid #C9AD77
}
.counter-sec .row > .col-md-3:last-child .count-area-content{
    border-right: none;
}
.count-digit{
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 45px;
    color: var(--white);
}
.count-title{
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: var(--white);
    max-width: 210px;
    margin: auto;
    padding-right: 5px;
}
.count-digit::after {
    content: " +";
    display: inline-block;
}
/*-----About section----*/
.section-title h2{
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.about-content{
    position: relative;
    z-index: 2;
}
.section-title p{
    padding-top: 5px;
}
.section-title h6{
    font-size: 20px;
    font-weight: 600;
    line-height: 18px;
    color: var(--primary-color);
    font-family: "Open Sans", sans-serif;
    padding-bottom: 10px;
}
.section-title{
    margin-bottom: 15px;
}
.about-content p{
    padding-bottom: 10px;
}
.about-img{
    position: relative;
}
.about-img img{
    width: 100%;
    position: relative;
    z-index: 2;
}
.about-img:before{
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 1;
}
.about-btm-img{
    background: linear-gradient(180deg, #FAFAFA 0%, #EFEEEE 100%);
    padding: 20px;
    text-align: center;
}
.about-sec{
    position: relative;
}
.about-back-img{
    position: absolute;
    top: 0;
    left: 0;
}
.about-back-overlay-img{
    position: absolute;
    top: 0;
    left: 0;
}

/*-----Hollywood sec----*/
.hollywood-sec{
    position: relative;
}
.hollywood-bg{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.hollywood-content-wrap{
    box-shadow: 1.2px 1.2px 32px 0px #0000000D;
    background: #fff;
    padding: 35px;
    width: 60%;
    position: absolute;
    bottom: -50px;
    left: 0;
    padding-left: calc((100vw - 1320px) / 2);
}
.hollywood-content-wrap ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.hollywood-content-wrap ul li{
    display: flex;
    align-items: center;
    flex: 0 0 50%;
    margin-bottom: 15px;
}
.hollywood-content-wrap ul li p{
    font-size: 20px;
    font-weight: 600;
    line-height: 18px;
    color: var(--secondary-color);
}
.hollywood-content-wrap ul li img{
    width: 29px;
    height: 29px;
    margin-right: 8px;
}

/*----Injury----*/
.injurey-result-box{
    border-radius: 0px 0px 2px 2px;
    border-bottom: 2px solid var(--primary-color);
}
.injurey-result-box h4{
    font-size: 38px;
    font-weight: 700;
    line-height: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.injurey-result-box p{
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #636D78;
}
.injurey-result-box{
    padding: 25px;
}
.owl-nav .owl-prev, .owl-nav .owl-next{
    width: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    color: #fff !important;
    background: var(--secondary-color) !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-nav .owl-prev{
    left: -45px;
}
.owl-nav .owl-next{
    right: -45px;
}
.owl-nav .owl-prev span, .owl-nav .owl-next span{
    line-height: 1;
    display: block;
    height: 35px;
}
.owl-theme .owl-dots .owl-dot span{
    width: 7px;
    height: 7px;
    margin: 3px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--secondary-color);
}
/*----case section---*/
.case-sec{
    background: linear-gradient(
    to right, 
    var(--secondary-color) 0%, 
    var(--secondary-color) 50%, 
    var(--primary-color) 50%, 
    var(--primary-color) 100%
  );
}
.case-left-content h4{
    font-size: 35px;
    font-weight: 700;
    line-height: 34px;
    color: var(--white);
    padding-bottom: 10px;
    text-transform: uppercase;
}
.case-left-content h6{
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
    text-transform: uppercase;
}
.case-left-content{
    padding: 35px;
}
.case-sec .row > .col-md-6:nth-child(1){
    background: var(--secondary-color);
}
.case-sec .row > .col-md-6:nth-child(2){
    background: var(--primary-color);
}
.case-sec .case-left-content a{
    border: 1px solid transparent;
}
.case-sec .case-left-content a:hover{
    border-color: #fff;
}

/*---WHY HIRE---*/
.why-hire-content P{
    padding-bottom: 10px;
}
.hire-main-wrap{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0px;
    align-items: center;
}
.hire-left-img{
    width: 50%;
}
.hire-rigt-content{
    width: 50%;
    padding-right: calc((100vw - 1320px) / 2);
}
.why-hire-content{
    padding-left: 25px;
}
.hire-img-wrap img{
    width: 100%;
}
/*-----Testimonial-----*/
.testimonials-sec .section-title{
    margin-bottom: 50px;
}
.testi-title{
    text-align: center;
}
.star-wrap {
    padding: 12px 0;
}
.star-wrap i{
    font-size: 32px;
    color: #FFC107;
}
.testi-title p{
    font-size: 18px;
    font-weight: 600;
    line-height: 15px;
    color: var(--secondary-color);
    padding-bottom: 5px;
}
.testi-title span{
    font-size: 18px;
    font-weight: 400;
    line-height: 15px;
    color: #636D78;
}
.test-title p{
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    color: var(--secondary-color);
}
.test-title span{
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    color: #A0A0A0;
}
.tsti-img{
    display: flex;
    gap: 10px;
    align-items: center;
}
.tsti-img img{
    width: 50px!important;
}
.tsti-slide .item p{
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;  
    color: #636D78;
}
.g-icon{
    width: 24px!important;
}
.test-cont-icon{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tsti-slide .testi .star-wrap i{
    font-size: 17px;
}

/*---Faq----*/
.faq-content{
    position: relative;
    z-index: 2;
}
.faq-content .accordion-button{
    background: #EFF8FF;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Open Sans", sans-serif;
    color: var(--secondary-color);
    box-shadow: none;
}  
.faq-content .accordion-body {
    background: #EFF8FF; 
    padding-top: 0;
    max-height: 180px;
    overflow-y: auto;
}
.faq-content .accordion-item{
    border: none;
    margin-bottom: 14px;
}
.accordion-button::after{
    background-image: url(../images/faq-icon-close.svg);
    width: 15px;
    height: 15px;
    background-size: cover;
}
.accordion-button:not(.collapsed)::after{
    transform: rotate(90deg);
    background-image: url(../images/faq-icon-close.svg);
}
.faq-sec{
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.faq-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    z-index: 1;
}
.blog-content{
    padding: 10px;
}
.blog-content h6{
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 15px;
    color: var(--primary-color);
}
.blog-content h5{
    font-size: 24px;
    font-weight: 700;
    line-height: 25px;
    color: var(--secondary-color);
    padding: 14px 0;
    height: 90px;
}
.blog-box .btn-primary{
    width: 100%;
    text-align: center;
    display: block;
}
.blog-box img{
    width: 100%;
}
/*----city service-----*/
.city-service-wrap{
    background-size: cover;
    position: relative;
    padding: 50px;
}
.city-service-wrap:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #ffffffc9;
    position: absolute;
    top: 0;
    left: 0;
}
.city-box{
    box-shadow: 1.2px 1.2px 20px 0px #0000000A;
    background: #fff;
    padding: 25px 15px;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
}
.city-box i{
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}
.city-content h6{
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: var(--secondary-color);
    padding-bottom: 8px;
}
.city-content p{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #636D78;
}

/*----contact----*/
.contact-sec{
    background-size: cover;
    position: relative;
    padding-top: 70px;
}
.contact-sec:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #062441c9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.contact-left-content{
    position: relative;
    z-index: 2;
}
.contact-sec .section-title h2{
    color: #fff;
}
.contact-sec .section-title p{
    color: #F2F2F2;
}
/* .con-adrs-conatct{
    display: flex;
    align-items: center;
    gap: 10px;
} */
.contact-no p{
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-no p i{
    width: 40px;
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    font-size: 18px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}
.client-contact span{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Open Sans", sans-serif;
    color: #F2F2F2;
}
.client-contact p, .client-contact p a{
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
}
.client-contact-wrap .client-contact p a{
   color: #636D78;
}
.client-contact-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.client-contact-wrap .client-contact:first-child{
    margin-left: 52px;
}
.con-adrs-conatct > span{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #F2F2F2;
    max-width: 250px;
    display: block;
    padding-left: 52px;
}
.personal-info-box{
    /* border: 1px solid #E9E9E9; */
    background: #fff;
    box-shadow: 1.2px 1.2px 20px 0px #0000000A;

}
.personal-info-header{
    background: var(--primary-color);
    padding: 15px 25px;
}
.personal-info-header h4{
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    color: #fff;
}
.personal-info-header p{
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    color: #F2F2F2;
    padding-top: 5px;
}
.personal-info-header p span, .form-group label span{
    color: red;
}
.personal-info-box{
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
}
.personal-info-form{
    padding: 15px 25px;
    position: relative;
    z-index: 9;
}
.form-group .form-control{
    border-radius: 0;
}
.form-group label{
    padding-bottom: 5px;
}
.personal-info-form .form-group{
    margin-bottom: 15px;
}
/*------client----*/
.client-slide .item{
    justify-content: center;
    align-items: center;
}
.client-slide .item img{
    width: 150px;
}
.client-slide-sec .owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}

/*----footer----*/
footer{
    background: #062441;
    position: relative;
}
.footer-top{
    padding: 60px 0 30px;
}
.footer-left p{
    color: #F2F2F2;
    margin-top: 10px;
}
.footer-left ul li a{
    transition: .3s;
}
.footer-left ul li a i{
    font-size: 25px;
    color: #fff;
}
.footer-left ul li a:hover i{
    color: var(--primary-color);
}
.footer-left ul li{
    margin: 0 4px;
}
.footer-left ul{
    margin-top: 15px;
}
.footer-title h5{
    font-size: 24px;
    font-weight: 700;
    line-height: 19px;
    color: #fff;
    margin-bottom: 15px;
}
.footer-mid ul li{
    display: block;
}
.footer-mid ul li a{
    color: #FAFAFA;
    transition: .3s;
    margin: 4px 0;
    display: inline-block;
}
.footer-mid ul li a:hover{
    color: var(--primary-color);
}
.footer-content h5{
    font-size: 24px;
    font-weight: 700;
    line-height: 19px;
    color: #fff;
}
.footer-content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #FAFAFA;
    padding: 15px 0;
}   
.footer-content a{
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}
.footer-bottom{
    border-top: 1px solid #FFFFFF;
    padding: 10px 0;
}
.footer-bottom p{
    color: #FAFAFA;
}
.footer-bottom ul li a{
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Open Sans", sans-serif;
    color: #FAFAFA;
    transition: .3s;
}
.footer-bottom ul li a:hover{
    color: #fff;
}
.footer-bottom ul li{
    margin: 0 8px;
}
.footer-bottom ul{
    text-align: right;
}
.footer-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
}
.footer-mid{
    position: relative;
    z-index: 9;
}


/*----
---------------About Us---
-----------------------------------------------*/
.page-banner-sec{
    height: 230px;
    background-size: cover;
    position: relative;
    background-position: center;
}
.page-banner-sec:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    opacity: 76%;
}
.page-banner-hdr{
    position: relative;
    z-index: 3;
}
.page-banner-hdr h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 45px;
    color: var(--white);
    text-transform: uppercase;
}
.page-banner-hdr ul li, .page-banner-hdr ul li a{
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.01em;
    color: #C7C7C7;
    text-transform: uppercase;
    position: relative;
}
.page-banner-hdr ul li{
    color: var(--white);
}
.page-banner-hdr ul{
    padding-top: 25px;
}
.page-banner-hdr ul li a:after{
    content: "//";
    padding: 0 12px;
}
.page-banner-hdr{
    padding: 70px 0 0;
}
img.img-fluid.about-us-right-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}
.about-us-sec{
    position: relative;
}
.about-counter-sec .count-digit{
    color: var(--primary-color);
}
.about-counter-sec .count-title{
    color: #636D78;
}
.about-counter-sec .count-area-content{
    border-color: #E6E6E6;
}
.about-counter-sec .row > .col-md-3:last-child .count-area-content {
    border-right: none;
}

.progress{
	width: 100%;
	height: 7px;
    border-radius: 0;
    background: #E8E8E9;
}
.skill-wrapper{
  margin-top:25px;
}
.skill-wrapper p{
    font-size: 20px;
    font-weight: 400;
    line-height: 16px;
    color: var(--secondary-color);
    padding-bottom: 0;
}
.progress-bar {
    background: var(--primary-color);
}
.progressbar-active{
	animation-name: progress;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-delay: 0.4s;
}
@keyframes progress{
	0%{
		width:0;
	}
	100%{
		width:100%;
	}
}
.progres-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}
.progres-title span{
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    color: #636D78;
}
.service-practice-wrap{
    display: flex;
    justify-content: space-between;
}
.city-service, .practice-area{
    background-size: cover;
    background-position: center;
    width: 50%;
    position: relative;
}
.practice-area:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 85%;
}
.city-service:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 85%;
}
.city-service ul{
    flex-wrap: wrap;
    display: flex;
}
.city-service ul li{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
    position: relative;
    padding-left: 25px;
    flex: 50%;
    padding-top: 18px;
}
.city-service ul li:before{
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-size: 19px;
    position: absolute;
    left: 0;
}
.city-service-content{
    position: relative;
    z-index: 9;
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: 35px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.city-service .section-title h2, .practice-area-content .section-title h2{
    color: #fff;
}
.city-service .section-title p, .practice-area-content .section-title p{
    color: #F2F2F2;
}
.practice-area-content{
    position: relative;
    z-index: 9;
    padding-right: calc((100vw - 1320px) / 2);
    padding-left: 35px;
    padding-top: 60px;
    padding-bottom: 60px   
}
.practice-area ul{
    display: flex;
    flex-wrap: wrap;
}
.practice-area ul li{
    display: flex;
    align-items: center;
    flex: 0 0 50%;
    padding-top: 18px;
}
.practice-area ul li p{
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
}
.practice-area ul li img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(13%) saturate(7460%) hue-rotate(178deg) brightness(110%) contrast(115%);
    width: 29px;
    height: 29px;
    margin-right: 8px;
}

/*-----
-----------------Parctice area----
-------------------------------------------------*/
.skilled-area-box{
    box-shadow: 0px 2px 10px 0px #0000000F;
    border: 1px solid transparent;
    padding: 25px;
    transition: .3s;
    margin-top: 25px;
}
.skilled-area-box h6{
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    color: var(--secondary-color);
    padding: 20px 0 10px;
}
.skilled-area-box img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.skilled-area-box:hover{
    border-color: var(--primary-color);
}
.skilled-area-box a{
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.01em;
    color: var(--primary-color);
    transition: .3s;
    margin-top: 20px;
    display: inline-block;
}
.skilled-area-box a i{
    transition: .3s;
    font-size: 14px;
}
.skilled-area-box a:hover i{
    padding-left: 2px;
}
.skilled-area-box a:hover{
    color: var(--secondary-color);
}

/*------
---------------Practice area details------
------------------------------------------------------------*/
.practice-arear-detl-sec{
    position: relative;
}
section.practice-arear-detl-sec.sec-padd.el-cus-clas {
    padding-bottom: 40px;
}
.area-del-left-icon{
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 1;
    opacity: 0.5;
}
.prac-area-detl-content{
    position: relative;
    z-index: 2;
}
.prac-area-detl-content p{
    padding-bottom: 10px;
}
.practice-area-list h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.practice-area-list{
    background-color: #FBFBFB;
    padding: 25px;
}
.practice-area-list ul li{
    display: block;
    margin-bottom: 10px;
}
.practice-area-list ul li a{
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    color: var(--secondary-color);
    font-family: times-new;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 9px 12px;
    border-radius: 2px;
    transition: .3s;
    gap: 10px;
    flex-wrap: wrap;
}
.practice-area-list ul li a i{
    font-size: 16px;
}
.practice-area-list ul li a:hover{
    background: var(--primary-color);
    color: var(--white);
}
.practice-area-list ul li a:hover i{
    color: var(--white);
}
.prac-area-detl-content > img{
    width: 100%;
}
.how-injured-wrap, .full-fair-content-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    /* flex-wrap: wrap; */
}
.how-injured-lft-content, .full-fair-lft-content{
    padding-left: calc((100vw - 1320px) / 2);
    width: 62%;
    padding-right: 20px;
}
.his-first .how-injured-lft-content, .his-second .how-injured-lft-content {
    padding-left: 0;
}
.his-first, .his-second {
	padding-bottom: 40px;
}
.injured-list-content{
    display: flex;
    flex-wrap: wrap;
}
.injured-list-box{
    width: 50%;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 10px 0 15px;
}
.injured-list-box i{
    font-size: 16px;
    color: var(--secondary-color);
}
.injured-list-box-detl h6{
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    color: var(--secondary-color);
    font-family: "Open Sans", sans-serif;
}
.injured-detl p{
    padding-top: 10px;
}
.full-fair-compensation{
    background: #FBFBFB;
}
.full-fair-free-case-evlu{
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px;
    border-radius: 2px;
    margin-top: 35px;
}
.full-fair-free-case-evlu:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 85%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 2px;
}
.free-case-text h3{
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    color: var(--white);
}
.free-case-text h5{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--white);
}
.full-fair-free-case-evlu-cont{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
.btn-border{
    border: 1px solid transparent;
}
.btn-border:hover{
    border-color: #fff;
}
.vehilcle-review-slide .star-wrap{
    position: relative;
}
.vehilcle-review-slide .star-wrap i{
    font-size: 19px;
}
.vehilcle-review-slide .star-wrap > img{
    position: absolute;
    right: 0;
    bottom: 15px;
}
.vehilcle-review-slide .testi{
    text-align: center;
}
.vehilcle-review-slide .testi h6{
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    font-family: "Open Sans", sans-serif;
    color: var(--secondary-color);
    margin-top: 25px;
}
.vehilcle-review-slide .testi h6:before{
    content: "";
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.vehilcle-review-slide .item{
    background: #FBFBFB;
    padding: 25px 40px;
    border-radius: 2px;
}
.vehilcle-review-slide .owl-nav .owl-prev{
    left: -24px;
}
.vehilcle-review-slide .owl-nav .owl-next{
    right: -24px;
}
.vehilcle-review{
    margin-top: 30px;
}
.new-injury-law{
    background: var(--primary-color);
    border-radius: 2px;
    padding: 12px;
}
.new-injury-law-inner{
    border: 1px dashed #F2F5F899;
    padding: 15px;
    border-radius: 2px;
}
.new-injury-law-inner h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: var(--white);
    padding: 10px 0 15px;
}
.adrs-cntact h6{
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    color: var(--white);
    min-width: 100px;
}
.adrs-cntact h6 i{
    font-size: 18px;
    color: var(--white);
}
.adrs-cntact p, .adrs-cntact p a{
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: #FAFAFA;
    padding-left: 4px;
}
.adrs-cntact {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 12px;
}


/*------
------------------Result page-------
-----------------------------------------------------*/
.result-box h2{
    font-size: 72px;
    font-weight: 400;
    line-height: 62px;
    color: var(--primary-color);
    padding-bottom: 10px;
    font-family: times-new-roman;
}
.result-box{
    border-bottom: 1px solid #BB9955;
    margin-bottom: 30px;
}
.result-box p{
    padding-bottom: 30px;
}
.result-sec .section-title{
    margin-bottom: 32px;
}
.motor-vehilcle-review .section-title h2{
    font-size: 25px;
}
.result-free-case-evlu .full-fair-free-case-evlu-cont{
    display: block;
    text-align: center;
}
.result-free-case-evlu .btn-primary{
    margin-top: 20px;
}
.result-lft-content{
    padding-right: 25px;
}

/*------
------------------Testimonial Page-----
-----------------------------------------------------------*/
.features-tab .nav-item .nav-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 12px;
    font-family: "Open Sans", sans-serif;
    color: var(--secondary-color);
    border: none;
    text-align: center;
    width: 100%;
    padding: 15px 10px;
    border-radius: 2px 0px 0px 2px;
}

.features-tab .nav-tabs .nav-item{
    width: 50%;
    text-align: center;
    
}

.features-tab .nav-item .nav-link img {
    margin-right: 8px;
}

.features-tab .nav-tabs li:last-child .nav-link {
    margin-right: 0 !important;
    width: 100%; 
}

.features-tab .nav-tabs .nav-item .nav-link.active {
    color: var(--white);
    background: var(--primary-color);
    border: none !important;
}
.features-tab .nav-item:last-child .nav-link.active{
    border-radius: 0px 2px 2px 0px;
}

.features-tab .nav-tabs .nav-item .nav-link:hover {
    color: var(--white);
    background: var(--primary-color);
    border: none !important;
}
.features-tab .nav-item:last-child .nav-link:hover{
    border-radius: 0px 2px 2px 0px;
}

.features-tab .nav-tabs {
    border-bottom: none;
    display: flex;
    flex-wrap: nowrap;
}

.features-tab .tab-content {
    padding: 25px 0;
}
.review-top-wrap .testi-title p > img{
    width: 80px;
}
.review-top-wrap .testi-title{
    text-align: left;
}
.star-wrap i{
    font-size: 26px;
}
.review-top-wrap .testi-title p{
    padding-bottom: 0;
    padding-top: 6px;
}
.star-rating{
    display: flex;
    gap: 10px;
}
.review-top-wrap .testi-title .star-rating p{
    font-size: 35px;
    font-weight: 700;
    line-height: 30px;
    color: #FFC107;
    padding-top: 12px;
}
.review-top-wrap .review-right p{
    font-size: 20px;
    font-weight: 600;
    line-height: 15px;
    color: var(--white);
    background: #0A6CFF;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
}
.review-top-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}
.review-top-wrap .review-right p > img{
    width: 22px;
    padding: 2px;
    background: #fff;
    border-radius: 50%;
}
.review-testi-list .testi{
    background: #FBFBFB;
    padding: 25px;
    border-radius: 2px;
    margin-bottom: 25px;
}
.review-testi-list .testi p{
    padding-bottom: 0;
}
.review-testi-list .testi .star-wrap i{
    font-size: 19px;
}
.review-testi-list .testi .star-wrap{
    padding-bottom: 8px;
}
.shop-paginattion .pagination{
    justify-content: center;
}
.shop-paginattion .pagination .page-item .page-link{
    border: none;
    background: transparent;
    margin: 0 5px;
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;

    transition: all .3s ease-in-out;
    box-shadow: none!important;
}
.shop-paginattion .pagination .page-item .page-link:hover{
    background: var(--primary-color);
    color: #fff
}
.shop-paginattion .pagination .page-item .page-link.active-tab{
    background: var(--primary-color);
    color: #fff;
}

/*----------
-------------------Miami page------------
-------------------------------------------------------------*/
.slide-read-more-button{
    font-size: 18px;
    font-weight: 500;
    line-height: 16px;
    color: var(--secondary-color);
    transition: .3s;
    display: none;
    cursor: pointer;
}
.read-more-button{
    padding-top: 15px;
}
.slide-read-more-button i {
    font-size: 16px;
    position: relative;
    top: 2px;
}
.slide-read-more-button:hover{
    color: var(--primary-color);
}
.slide-read-more{
    overflow:hidden;
}
.provide-fault-sec{
    background: #FBFBFB;
}
.slide-read-more ul, .provide-content ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 50%;
    margin: 18px auto 0;
}
.slide-read-more ul li, .provide-content ul li{
    width: 50%;
    list-style: disc;
    display: list-item;
    text-align: left;
    color: #636D78;
    padding: 5px;
}
.provide-content{
    text-align: center;
}
.provide-content p{
    padding-bottom: 10px;
}
.provide-content .slide-read-more-button{
    padding-top: 15px;
}
.provide-content .read-more-button{
    padding-top: 10px;
}
.less-cont{
    height: auto!important;
}
.types-of-compensation{
    position: relative;
    padding-top: 60px;
    height: 450px;
    background-size: cover;
}
.types-of-compensation:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #062441c9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.types-content{
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 50px;
    margin-top: -360px;
    box-shadow: 1.2px 1.2px 34px 0px #0000000A;
    text-align: center;
    margin-bottom: 50px;
}
.types-of-compensation-cont .injured-list-box-detl {
    text-align: left;
}
.types-of-compensation-cont .injured-list-box span{
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 14px;
}
.hollywood-detl-content p{
    color: #fff;
    padding-top: 15px;
}
.practice-area-ul-list ul li a{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
    position: relative;
    padding-left: 25px;
    transition: .3s;
}
.practice-area-ul-list ul li a:before{
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-size: 19px;
    position: absolute;
    left: 0;
}
.practice-area-ul-list ul{
    display: flex;
    flex-wrap: wrap;
}
.practice-area-ul-list ul li a:hover{
    color: var(--secondary-color);
}

/* .side-form {
    width: 100%;
    z-index: 99;
    position: static;
}

.side-form.stick {
    position: fixed;
    top: 40px;
} */
/*----
-------------------Hollywood page--------
------------------------------------------------------------*/
.more-content-sec .slide-read-more.more-ul ul{
    max-width: 90%;
    margin: 6px auto 0;
    align-items: flex-start;
}
.more-content-sec .slide-read-more.more-ul ul li{
    padding-right: 30px;
}
.acc-content p{
    padding-bottom: 10px;
}

.no-read-more .slide-read-more{
    height: auto!important;
}
.four-box-sec{
    position: relative;
}
.four-box-sec:after{
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 80%;
    position: absolute;
    top: 0;
    left: 0;
}
.medi-acc-box{
    background: #fff;
    padding: 25px;
    position: relative;
    z-index: 2;
    margin: 12px 0;
}
.medi-acc-box h4{
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    color: var(--secondary-color);
    padding-bottom: 15px;
    text-transform: uppercase;
}
.single-list ul li{
    width: 100%;
}
.single-list ul{
    max-width: 100%;
    padding-left: 30px;
}
.auto-height{
    height: auto!important;
}
.bg-gray{
    background-color: #FBFBFB;
}
.bg-theme{
    background-color: var(--primary-color);
}
.bg-gray:after{
    display: none;
}
.bg-gray .section-title h2{
    color: var(--secondary-color);
}
.bg-gray .city-service-content p{
    color: #636D78;
}
.two-box-sec-bg{
    background-size: cover;
    position: relative;
    height: 350px;
}
.two-box-sec-bg:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #062441c9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.two-box-sec-cont{
    position: relative;
    z-index: 2;
    margin-top: -300px;
}
.two-box-sec-cont .medi-acc-box{
    box-shadow: 1.2px 1.2px 34px 0px #0000000A;
    padding: 40px;
}
.two-box-sec-cont .medi-acc-box h4{
    font-size: 22px;
    line-height: 30px;
}
.dot-ul ul li:before{
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-size: 6px;
}

/*-----
----------------Contact Us------
--------------------------------------------------*/
.contact-us-page-sec:after{
    display: none;
}
.contact-us-page-sec .section-title h2{
    color: var(--secondary-color);
}
.contact-us-page-sec .section-title p{
    color: #636D78;
}
.contact-us-page-sec .contact-no p{
    color: var(--secondary-color);
}
.contact-us-page-sec .con-adrs-conatct > span, .contact-us-page-sec .client-contact span{
    color: #636D78;
}


/*-------
--------------------Location-----------
---------------------------------------------------------*/
.per-inj-claims .per-inj-content ol, .per-inj-claims .per-inj-content ul{
    display: flex;
    flex-wrap: wrap;
}
.per-inj-claims .per-inj-content ol li, .per-inj-claims .per-inj-content ul li{
    width: calc(50% - 10px);
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 10px 0 5px;
}
.per-inj-claims .per-inj-content ol li span{
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 14px;
}
.per-inj-claims .per-inj-content ol li p{
    line-height: 20px;
}
.per-inj-claims .per-inj-content ol{
    margin-bottom: 15px;
}
.per-inj-claims .per-inj-content ul li:before{
    content: "\f058";
    font-family: "FontAwesome";
    color: var(--secondary-color);
    font-size: 20px;
}
.per-inj-claims .per-inj-content ul li{
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Open Sans", sans-serif;
    color: #636D78;
}



/*----blog fixing----*/
.blog-list-sec .page-title h1{
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: var(--secondary-color);
    text-transform: uppercase;
    padding-top: 10px;
}
.blog-list-sec .item img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.blog-list-sec .item h3{
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    color: #032C59;
    font-family: times-new-roman;
    padding-top: 10px;
}
.blog-list-sec .item a{
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.01em;
    color: var(--primary-color);
    margin-top: 14px;
    display: inline-block;
}   
.blog-list-sec .item a:after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    padding-left: 2px;
}
.blog-list-sec .item{
    margin-top: 35px;
}
.post-date span{
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    color: #636D78;
}
.post-date span:after{
    content: "|";
    color: #E3E3E3;
    padding: 0 10px;
}
.post-date span:last-child:after{
    display: none;
}
.post-date{
    border-bottom: 1px solid #E3E3E3;
    padding: 10px 0;
}
.blog-detl-page .search, .blog-list-sec .search{
    background: #FBFBFB;
    padding: 15px;
}
.search label{
    width: calc(100% - 80px);
}
.search input[type=search]{
    border: 1px solid #F6F6F6;
    background: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 15px;
    color: #636D78;
    padding: 8px 12px;
    width: 100%;
    outline: none;
}
.search-submit{
    font-size: 16px;
    border: none;
    outline: none;
    width: 80px;
    height: 40px;
    color: var(--secondary-color);
    transition: .3s;
}
form.search-form {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.search-submit:hover{
    background: var(--primary-color);
}
.recent-posts{
    background: #FBFBFB;
    padding: 15px;
    margin: 25px 0; 
}
.recent-posts .item img{
    width: 140px;
    height: 100px;
    object-fit: cover;
}
.recent-posts .item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.recent-posts .item h5{
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    font-family: times-new-roman;
    color: var(--secondary-color);
}
.recent-posts .item span{
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
    color: #636D78;
    display: block;
    padding-top: 12px;
}
.recent-posts .item {
    margin-top: 20px;
}
.recent-posts h4{
    font-family: times-new-roman;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: var(--secondary-color);
}
.single-blog-title, .search-blog h1{
    font-size: 28px;
    font-weight: 700;
    line-height: 32.2px;
    color: #032C59;
    font-family: times-new-roman;
    margin-bottom: 15px;
}
.single-blog-img, .search-blog img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.expense-production .tab-content h1{
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: var(--secondary-color);
    text-transform: uppercase;
    padding-bottom: 12px;
    font-family: times-new-roman;
}
.expense-production .tab-content h2{
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-family: times-new-roman;
    padding-top: 12px;
}
.expense-production .tab-content p{
    padding-bottom: 10px;
}
.expense-production .tab-content p strong{
    color: #444;
}
.expense-production .tab-content ul li{
    display: block;
    padding: 4px 0;
}
.expense-production .tab-content ul li a{
    color: var(--secondary-color);
    transition: .3s;
}
.expense-production .tab-content ul li a:hover{
    color: var(--primary-color);
}
.expense-production .tab-content ol{
    padding-left: 25px;
    padding-top: 8px;
    padding-bottom: 12px;
}
.expense-production .tab-content ul li:before{
    content: "\f111";
    font-family: 'FontAwesome';
    font-size: 7px;
    position: relative;
    bottom: 3px;
    margin-right: 7px;
    color: var(--primary-color);
}
.expense-production .tab-content ol li::before{
    content: "\f061";
    font-family: 'FontAwesome';
    font-size: 13px;
    position: relative;
    bottom: -1px;
    margin-right: 7px;
    color: var(--primary-color);
}


.css-1otywcc{
    display: none;
}
.personal-info-form iframe{
    height: 600px;
}
.personal-info-form iframe .css-10r2u8z{
    height: auto;
}
.my-custom-class .css-1otywcc {
    display: none !important;
}

.my-custom-class #root h1{
    font-family: times-new;
}
.attorney-sec .about-content p{
    padding-bottom: 5px;
}