* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
}

.container {
    width: 1170px;
    margin: 0 auto;
}


/* header part start */
header {
    background-color: #232323;
    padding: 11px;
}

header span {
    color: #fff;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
}

.header_contact {
    display: flex;
}

.header_email a {
    text-decoration: none;
    color: #fff;
}

.header_email a:hover {
    text-decoration: none;
    color: #9DC02E;
    transition: .5s;
}


header i {
    color: #9DC02E;
    margin-right: 5px;
    font-size: 15px;
    font-weight: 500;
}

.header_socile ul {
    float: right;
    margin-bottom: 0px;
}

.header_socile ul li {
    float: left;
    margin-left: 14px;
    position: relative;
}

.header_socile ul li:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #232323;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 11px;

}

.dropdown-content a {
    color: rgb(247, 246, 246);
    padding: 1px 3px;
    text-decoration: none;
    display: block;
}

.header_socile ul li a {
    text-decoration: none;
}

.header_socile ul li a i:hover {
    color: #9DC02E;
    transition: .5s;
}


.header_socile ul li a i {
    font-size: 13px;
    color: #fff;
    transition: .5s;
}

/* Supreme Court animation */

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(-225deg,
            #c1fa06 50%,
            #66700a 29%,
            #84885c 67%,
            #d1f55c 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/* header part end */

/* navbar part start */
.navbar {
    box-shadow: 2px 2px 5px rgb(12, 12, 12, .2);
    height: 90px;
}

.nav_logo img {
    height: 70px;
}

.nav_manu {
    flex-grow: 0;
}

.nav_manu ul {
    display: flex;
    justify-content: space-around;
    flex-grow: 0;
}

.nav_manu ul li {
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding-top: 30px;
    margin-left: 29px;
    margin-bottom: 30px;
}

.nav_manu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    list-style: circle;
}


.nav_manu>ul>li::after {
    content: '';
    height: 4px;
    width: 0;
    background-color: #9DC02E;
    position: absolute;
    left: 0;
    top: 0;
    transition: .4s;
}

.nav_manu ul li:hover::after {
    width: 100%;
}

.nav_manu ul li a:hover {
    color: #9DC02E;
    transition: .5s;
}

.nav_manu ul li a i {
    background-color: #000;
    color: #fff;
    padding: 9px;
    border-radius: 50%;
}

.nav_manu ul li a i:hover {
    background-color: #9DC02E;
    transition: .5s;
}

/* navbar part end */

/* Banner Part start */

.carousel-caption {
    right: 0% !important;
    top: 14rem !important;
    left: 12% !important;
    padding-bottom: 16rem !important;
    text-align: left !important;
}

.carousel-caption h6 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: Roboto Condensed;
}

.carousel-caption h1 {
    color: #000;
    font-weight: 700;
    font-family: Roboto Condensed;
    letter-spacing: 2px;
}

.carousel-caption .btn_view {
    background-color: rgb(219, 28, 34);
    font-family: Roboto Condensed;
    color: rgb(255, 255, 255);
    text-decoration: none;
    line-height: 17px;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    border-color: rgb(219, 28, 34);
    border-width: 2px;
    padding: 14px 25px;
    border-radius: 3px;
    transform-origin: 84.3833px 24.5px 0px;
    opacity: 1;
}

#banner img {
    height: 600px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_second {
    position: absolute;
    right: 0%;
    bottom: 17rem;
    left: 0%;
    color: #fff;
    text-align: center;
}

.banner_second h6 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: Roboto Condensed;

}

.banner_second h1 {
    color: #fff;
    font-weight: 700;
    font-family: Roboto Condensed;
    letter-spacing: 2px;
}

.banner_second .btn_view {
    background-color: rgb(219, 28, 34);
    font-family: Roboto Condensed;
    color: rgb(255, 255, 255);
    text-decoration: none;
    line-height: 17px;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    border-color: rgb(219, 28, 34);
    border-width: 2px;
    padding: 14px 25px;
    border-radius: 3px;
    transform-origin: 84.3833px 24.5px 0px;
    opacity: 1;
}

/* Banner Part end*/

/* Digital Law part start */

#digital_law {
    margin: 6rem;
}

.wlm_heading {
    border-left: 6px solid #9DC02E;
    padding-left: 18px;
}

.wlm_heading h4 {
    font-family: Lora;
    line-height: 20px;
    font-weight: 500;
    font-style: italic;
    color: #838383;
    font-size: 19px;
}

.wlm_heading h2 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #2c2c2c;
    font-size: 26px;
}

.digital_law_wlm p {
    color: rgba(59, 59, 59, 0.76);
    margin: 30px 0;
}

.wlm_item i {
    font-size: 35px;
    color: #9DC02E;
    margin: 2px 12px 0 0;
}

.wlm_item p {
    margin: 0;
    font-size: 16px;
    line-height: 16px;

}

.digital_law_wlm button {
    padding: 10px 16px;
    background-color: #fff;
    color: #9DC02E;
    border: 2px solid #9DC02E;
    border-radius: 3px;
    margin-top: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

.digital_law_wlm button:hover {
    background-color: #a9d125;
    color: #fff;
    border: 2px solid #a9d125;
    border-radius: 2px;
}

/* Digital Law part end */

/* Consulation part start */
#consulation {
    margin: 5rem 0;
}

.con_text {
    background-color: #a9d125;
    height: 410px;
    padding-top: 6%;
    text-align: center;
    color: #fff;
}

.con_text h2 {
    font-size: 18px;
    text-align: center;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    padding: 10px 0;
}

.con_text h3 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    font-display: swap;
    padding: 10px 0;
}

.con_text h4 {
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
    padding: 10px 0;
}

.con_text h5 {
    font-size: 25px;
    line-height: 25px;
    text-align: center;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
    padding: 10px 0;
}

.con_text h6 {
    font-size: 29px;
    line-height: 30px;
    text-align: center;
    padding: 10px 0;
}

.con_img {
    background-image: url("../img/Consulation/consulation_2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Consulation part end */

/* about part */
.about_us {
    height: 380px;
    text-align: right;
    position: relative;
    background-color: #9DC02E;
    padding-top: 5%;
    padding-left: 20px;
}

.about_us::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/Consulation/consulation_2.jpg");
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .09;
}

.about_us h2 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    font-size: 28px;
}

.about_us h4 {
    font-size: 22px;
    line-height: 23px;
    text-align: right;
    font-family: Lora;
    font-weight: 500;
    color: #fff;
    padding: 6px 0;
    font-style: italic;
}

.about_us p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff;
}

.about_us_text {
    padding-right: 2rem;
}

.about_us button {
    background-color: transparent;
    padding: 8px 15px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 1px;
    margin-top: 10px;
    font-size: 12px;
    position: relative;
    transition: 0.3s;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.about_us button:hover {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    border-radius: 2px;
}

.about_consultation {
    height: 380px;
    text-align: left;
    position: relative;
    background-color: #000;
    padding-top: 5%;
    padding-right: 20px;
}

.about_consultation::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/Consulation/consulation_3.jpg");
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .2;
}

.about_consultation_text h4 {
    font-size: 22px;
    line-height: 23px;
    text-align: left;
    font-family: Lora;
    font-weight: 500;
    color: #fff;
    padding: 6px 0;
    font-style: italic;
}

.about_consultation_text {
    padding-left: 2rem;
}

/* Services part */
#service {
    text-align: center;
    padding: 95px 0 60px;
    background-color: rgba(247, 247, 247, .96);
}

.service_header {
    border-bottom: 6px solid #9DC02E;
    display: inline-block;
    margin-bottom: 60px;
}

.service_header h2 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #2c2c2c;
    font-size: 26px;
    letter-spacing: 2px;
}

.service_item {
    margin-bottom: 25px;
}

.service_item img {
    height: 60px;
    width: 60px;
}

.service_item h2 {
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 6px;
    line-height: 22px;
    font-weight: bold;
    padding-top: 25px;
}

.service_item p {
    font-size: 15px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    font-weight: 400;
    color: rgba(40, 40, 40, .76);
}

/* trusted Team part */

#trusted_team {
    padding: 100px 0 70px;
}

.trusted_team_items p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;
    padding-top: 40px;
}

.trusted_team_items a {
    color: #9DC02E;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

.trusted_team_items a:hover {
    color: #000;
    transition: 0.3s;
}


.trusted_team_img img {
    height: 100%;
    width: 100%;
}

.trusted_team_text h3 a {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    color: #000;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

.trusted_team_text h4 {
    color: #838383;
    font-size: 15px;
    font-weight: 400;
    font-family: Lora, sans-serif;
    font-style: italic;
}

.trusted_team_text {
    background-color: #f3f3f3;
    border-bottom: 4px solid #EAEAEA;
    padding: 5px 20px;
}

.trusted_team_items:hover .trusted_team_text {
    border-bottom: 4px solid #9DC02E;
    transition: .3s;
}

.trusted_team_img {
    position: relative;
}

.trusted_team_img:after {
    content: '';
    height: 0;
    width: 100%;
    background-color: #9DC02E;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .3s;
    opacity: .7;
}

.trusted_team_items:hover .trusted_team_img:after {
    height: 100%;
    transition: .3s;
}

.trusted_team_text h3 a:hover {
    color: #9DC02E;
    transition: .3s;
}

/* History count part */

#history .row {
    --bs-gutter-x: 0;
}

.history_about {
    background-color: rgba(157, 192, 46, 0.8);
    padding: 30px 20px;
}

.history_about a {
    color: #fff !important;
    text-decoration: none;
    background: none;
    font-size: 14px;
}

.counter {
    color: #fff;
    background: linear-gradient(to bottom, #749603 49%, transparent 50%);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    width: 155px;
    height: 155px;
    padding: 10px 10px 0px;
    margin: 0 auto 20px;
    border: 15px solid #79a111;
    border-radius: 100% 100%;
    box-shadow: inset 0 5px 10px rgba(102, 102, 102, 0.3);
}

.counter .counter-value {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin: 0 0 25px;
}

.counter h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.counter.red {
    color: #fff;
    background: linear-gradient(to bottom, #e3213c 49%, transparent 50%);
    border-color: #e3213c;
}

.counter.orange {
    color: #fb8603;
    background: linear-gradient(to bottom, #fb8603 49%, transparent 50%);
    border-color: #fb8603;
}

.counter.blue {
    color: #1f8bc1;
    background: linear-gradient(to bottom, #1f8bc1 49%, transparent 50%);
    border-color: #1f8bc1;
}

.history_about_text {
    padding: 10px 40px;
}

.history_about_text h3 {
    font-size: 26px;
    line-height: 30px;
    text-align: left;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.history_about_text p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 14px;
}

.history_Focused {
    background-color: #303030;
    padding: 30px 65px !important;
}

.history_Focused .wlm_heading h4 {
    color: #fff;
}

.history_Focused .wlm_heading h2 {
    color: #fff;
    margin-bottom: 50px;
}


.focused_content {
    margin-top: 30px;
}

.focused_content i {
    color: #9DC02E;
    font-size: 22px;
    padding-right: 16px;
}

.focused_contentc_text h2 {
    font-size: 22px;
    color: #9dc02e;
    line-height: 25px;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
}

.focused_content p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    color: #c2c2c2;
}

.history_img img {
    height: 100%;
    width: 100%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

/* count part  */

.projectFactsWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    padding: 50px 0px;
    text-align: center;
}

.projectFactsWrap .item:nth-child(1) {
    background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2) {
    background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3) {
    background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4) {
    background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: 'Open Sans';
}


.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 0 auto;
}


.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}

/* Latest news part */

#latest_news {
    padding: 100px 0 370px;
    background-color: #ebebeb;
}

#latest_news .service_header h4 {
    font-family: Lora;
    line-height: 25px;
    font-weight: 400;
    font-style: italic;
    color: #838383;
    font-size: 19px;
}

#latest_news button {
    color: #fff;
    background-color: #f1514c;
    border: none;
    border-radius: 3px;
    font-size: 14PX;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 20px;
    padding-right: 20px;
    padding: 14px 20px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: normal;
}

#latest_news button:hover {
    background-color: #f82821;
    transition: .3s;
}

.court_corridor_item h4 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 20px;
    font-style: normal;
    color: #4a4a4a;
    font-size: 18px;
}

.court_corridor_item p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;
}

.court_corridor_item {
    height: 356px;
    width: 356px;
}

.court_corridor_item img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.court_corridor_text {
    padding: 10px;
    background-color: #fff;
}

/* Related Issues part */
#related_issue {
    padding: 100px 0 15px;
}

.retaliation_item {
    padding: 40px 20px 65px;
    position: relative;
    background-color: rgb(0, 0, 0);
}

#related_issue .retaliation .injury {
    background-color: rgba(157, 192, 46, 0.91);
}

.retaliation_item::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/Consulation/consulation_3.jpg");
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .1;
}

.retaliation_item i {
    font-size: 2.50em;
    color: #fff;
    margin-bottom: 25px;
}

.retaliation_item h2 {
    font-size: 20px;
    line-height: 25px;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.retaliation_item h4 {
    font-size: 18px;
    line-height: 20px;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}

/* Footer part */
footer {
    background-color: rgba(33, 33, 33, 0.97);
}


.category_icon i {
    font-size: 34px;
    margin-top: 10px;
    margin: 10px 25px 0 0;
    color: #9DC02E;
    font-weight: 700;
}

.category_item_content {
    border-right: 1px solid rgb(66, 66, 66);
}

.category_item {
    padding: 60px 0 60px;
    border-bottom: 1px solid rgb(66, 66, 66);
    margin-bottom: 50px;
}

.category_item_third {
    border: none;
}

.category_item h2 {
    font-size: 21px;
    color: #fff;
    line-height: 23px;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-style: normal;
}

.category_item h2:hover {
    color: #9DC02E;
    transition: .3s;
}

.category_item h4 {
    font-size: 14px;
    color: #adadad;
    line-height: 16px;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
}

/* Footer mdl */
.footer_mdl {
    border-bottom: 1px solid rgb(66, 66, 66);
    padding-bottom: 60px;
}

.footer_about img {
    height: 100px;
    width: 360px;
}

.footer_about p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;
}

.footer_social ul {
    padding-left: 0;
}

.footer_social ul li {
    float: left;
    margin-right: 15px;
}

.footer_about ul li a i {
    font-size: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 8px;
    color: rgba(255, 255, 255, .7)
}

.footer_about ul li a i:hover {
    border: 1px solid #9DC02E;
    color: #9DC02E;
    transition: .3s;
}

.footer_category {
    padding-bottom: 30px;
}

.footer_category h3 {
    border-left: 5px solid #9DC02E;
    padding-left: 20px;
}

.footer_category h3 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    font-size: 17px;
    font-display: swap;
}

.fooer_news i {
    color: #9DC02E;
    font-size: 10px;
    margin-top: 8px;
    padding-right: 15px;
}

.fooer_news a {
    color: rgba(255, 255, 255, .7);
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 14px;

}

.fooer_news a:hover {
    color: #9DC02E;
    transition: .3s;
}

.footer_contact ul {
    padding-left: 0;
}

.footer_contact ul li {
    margin-bottom: 16px;
}

.footer_contact i {
    color: rgba(204, 203, 203, 0.7) !important;
    font-size: 12px;
    margin: 8px 10px 0 0;
}

.footer_contact a {
    color: rgba(204, 203, 203, 0.7) !important;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 14px;
}

.footer_contact a:hover {
    color: #9DC02E !important;
    transition: .3s;
}

/* Footer end */
.footer_end {
    padding: 30px 0;
    color: rgba(204, 203, 203, 0.7) !important;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-decoration: none;
    letter-spacing: .9px;
    font-size: 14px;
    text-align: center;
}

.footer_end a {
    text-decoration: none;
    color: rgba(253, 253, 253, 0.7) !important;
}

.footer_end a:hover {
    text-decoration: none;
    color: #9DC02E !important;
    transition: .3s;
}

/* scroll button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 30px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, .2);
    color: white;
    cursor: pointer;
    padding: 1px 11px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #9DC02E;
    transition: .3s;
}

/* Testiminials part */
#testimonials {
    margin-bottom: 60px;
}

#testimonials button {
    color: #000;
}

.testimonial .wlm_heading {
    margin-bottom: 50px;
}

.test_content_item img {
    border-radius: 80%;
    width: 150px;
    display: inline-block;
}

.test_img_head {
    padding-top: 35px;
}

.test_img_head a {
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #2d2d2d;
}

.test_content_item span {
    display: block;
    font-size: 16px;
    color: #9a9a9a;
    padding-top: 0;
    font-style: italic;
    font-weight: 400;
}

.test_content_item p {
    font-size: 18px;
    color: #9a9a9a;
    padding-top: 45px;
    padding-right: 20px;
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.law_services_content {
    border-bottom: 1px solid #cccccc;
    padding-top: 2px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.law_services a {
    font-size: 14px;
    padding: 15px 40px;
    text-decoration: none;
    border: 1px solid #cccccc;
    margin-bottom: 2px;
    border-top: none;
    color: #2d2d2d;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.law_services a:hover {
    color: #9DC02E;
    transition: .3s;
}

.law_services_content_extra {
    color: #9DC02E;
}

.law_services_content_item {
    border: none !important;
    padding: 0 !important;
}

.law_services_content_item p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    display: block;
    font-size: 14px;
}

.law_services_content_item h2 {
    font-size: 17px;
    text-align: left;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.law_services_content_item_img_text img {
    height: 155px;
    width: 227px;
    margin-right: 20px;
    margin-bottom: 40px;
}

.law_services_content_item_text h2 {
    font-size: 16px;
    text-align: left;
    color: #9DC02E;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.law_services_content_item_text {
    display: block;
}


/* About banner part */
.about_banner_content {
    background-image: url('../img/banner/all_Banner3.jpg');
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.about_banner_content h1 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #000;
}

.about_banner_text h3 {
    font-family: Lora;
    text-transform: none;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: italic;
    font-size: 24px;
    color: #000;
}


.about_banner_text {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 20px;
}

#Ourabout {
    padding: 60px 0;
}

#Ourabout p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;
}

/* About count part */
#about_count {
    background-image: url('../img/banner/all_Banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.projectFactsWrap .item {
    background: none !important;
    transition: .5s;
    border: 1px solid #fff;
    border-top: none;
    border-bottom: none;
}

.about_count_item:first-child {
    border-left: none;
}

.about_count_item:last-child {
    border-right: none;
}

.projectFactsWrap .item i {
    color: #000;
}

.projectFactsWrap .item p {
    color: #000;
}

.projectFactsWrap .item span {
    background: #000;
}

.projectFactsWrap .item span {
    background: #000;
}

.projectFactsWrap .item:hover {
    background: rgba(0, 0, 0, .5) !important;
    transition: .5s;
}

/* chamberHead banner */

.chamberHead {
    background-image: url('../img/banner/all_Banner3.jpg');
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.chamberHead_text h1 {
    color: #0e0d0d;
    text-transform: uppercase;
    line-height: 40px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 20px;
}


/* chamberhead part */
#chamberhead_ditails {
    padding: 100px 0;
}

#chamberhead_ditails img {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
}

#chamberhead_ditails h3 {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    margin: 40px 0;
}

#chamberhead_ditails p {
    font-size: 14px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    margin: 10px 280px;
}


/* Chief member part */
#chief_member {
    padding: 100px;
}

.chief_member_head h2 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #2c2c2c;
    font-size: 26px;
    margin-bottom: 15px;
}

.chief_member_head img {
    border-radius: 50%;
}

.chief_member_item h3 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-style: normal;
    color: #838282;
    font-size: 18px;
    margin-top: 20px;
}

.chief_member_item h4 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #868686;
    font-size: 18px;
}

.chief_member_item span {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 1px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;

}

/* assosites part */

#associates .chief_member_item {
    margin-bottom: 36px;
}


/* Gallery page */
#gallery {
    padding: 100px 0;
}

.gallery_img img {
    transition: 1s ease;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #fff;
    padding: 0;
}

.gallery_img img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: .5s ease;
}

/* Contact page  */

#contact {
    margin: 70px;
}

#contact .wlm_heading {
    margin-bottom: 50px;
}

#contact input,
textarea {
    width: 70%;
    padding: 8px 5px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 4px;
    border: 1px solid #dfdfdf;
    margin: 5px 0 20px;
}

#contact label {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-style: normal;
    color: #6e6e6e;
    font-size: 14px;
}

#contact button {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 29px;
    border-radius: 2px;
    border: 2px solid transparent;
    background-color: #9dc02e;
    margin-top: 20px;
}

#contact button:hover {
    color: #9dc02e;
    border: 2px solid #9dc02e;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background-color: #fff;
}

.contact_ditails i {
    font-size: 24px;
    color: #9dc02e;
    border: 1px solid #9dc02e;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 5px;

}

.contact_ditails_text {
    margin: 2px 0 0 30px;
}

.contact_ditails_text h2 {
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 6px;
    line-height: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.contact_ditails_text p {
    font-size: 14px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
}

/* contact_number */

.contact_number {
    background-image: url('../img/banner/all_Banner4.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    height: 300px;
    z-index: -1;
    display: flex;
    text-align: center;
    align-items: center;
}

.contact_number::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9dc02e;
    opacity: .9;
    z-index: -1;
}

.conNubText h2 {
    font-size: 32px;
    line-height: 32px;
    color: #fff;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
}

.contact_number h3 {
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    font-family: Lora;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}

/* Blog part */
#blog {
    padding: 80px 0px;

}


#blog .row {
    --bs-gutter-x: 0.0rem !important;
}

.blog_pen i {
    color: #fff;
    font-size: 25px;
    background-color: #9dc02e;
    padding: 20px 17px;
}

.blog_date p {
    color: #fff;
    font-size: 15px;
    background-color: #9dc02e;
    padding: 19px 14px;
    display: inline-block;
    margin-bottom: 0;
}

.blog_comments div {
    margin-bottom: 2px;
}

.blog_comment i {
    padding: 19px 14px 0px;
    color: #fff;
    font-size: 24.80px;
    background-color: #9dc02e;
}

.blog_comment p {
    color: #fff;
    font-size: 15px;
    padding-top: 5px;
    background-color: #9dc02e;
}

.blog_img img {
    width: 100%;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.blog_celender {
    padding-left: 15px !important;
    width: 95%;
}

.blog_celender input {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px;
    padding: 10px 5px;
}

.blog_celender input:hover {
    border: 1px solid #9dc02e;
}

.blog_celender button {
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #9dc02e;
    border: none;
    padding: 11px 15px;
}

.blog_celender .wlm_heading h3 {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #0c0c0c;
    font-size: 17px;
}

.blog_celender .wlm_heading {
    margin: 30px 0;
}

.recentPost_img img {
    height: 60px;
    width: 60px;

}

.recentPost_text {
    padding-left: 10px !important;
}

.recentPost_text i {
    font-size: 12px;
    line-height: 15px;
    color: #727272;
}

.recentPost_text span {
    font-size: 12px;
    color: #727272;
    font-style: italic;
}

.recentPost_text p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #474747;
    font-size: 14px;
}

.blog_celender .fooer_news a {
    color: #000;
}

/* calender */
.calendar-container {
    background: #fff;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin: 0;
}

.calendar-container header {
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
}

header .calendar-navigation {
    display: flex;
}

header .calendar-navigation span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    user-select: none;
    color: #aeabab;
    font-size: 1.9rem;
}

.calendar-navigation span:last-child {
    margin-right: -10px;
}

header .calendar-navigation span:hover {
    background: #f2f2f2;
}

header .calendar-current-date {
    font-weight: 500;
    font-size: 1.45rem;
    color: #fff;
}

.calendar-body {
    padding: 20px;
}

.calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
}

.calendar-body .calendar-dates {
    margin-bottom: 20px;
}

.calendar-body li {
    width: calc(100% / 7);
    font-size: 1.07rem;
    color: #414141;
}

.calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 500;
}

.calendar-body .calendar-dates li {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.calendar-dates li.inactive {
    color: #aaa;
}

.calendar-dates li.active {
    color: #fff;
}

.calendar-dates li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calendar-dates li.active::before {
    background: #6332c5;
}

.calendar-dates li:not(.active):hover::before {
    background: #e4e1e1;
}

.blog_celender select {
    padding: 10px;
    width: 100%;
}

.blog_celender select option {
    color: #9a9a9a;
}

.blog_img_text {
    padding-top: 20px;
}

.blog_img_text h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    font-style: normal;
    color: #2c2c2c;
}

.blowadmin .blowadmin_item {
    margin-right: 30px;
}

.blowadmin .blowadmin_item i,
span {
    color: #999;
    font-style: italic;
}

.blog_img_text p {
    font-family: "Roboto Condensed", 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-style: normal;
    color: #838383;
    font-size: 14px;
}