@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/********** Template CSS **********/
:root {
    --primary: #7a7a7a;
    --secondary: #2B9BFF;
    --light: #dddddd;
    --dark: #2B3940;
    --red: #E34234;
    --text_color: #003c8c;
    --logo_color:#ba8b62;
    /*new color 07022026*/
    --white_color:#ffffff;
    --black_color:#000000;
    --top_header:#18304c;
    --functions_header:#8f8f8f;
    --functions_content:#d5d5d5;
    --footer:#6f2fa0;
    --header_all:#363a9e;
    --bar_color:#919bd1;
    --background:#f3f3f3;
    --card_shadow:#00000014;
}
body{
	color:var(--text_color)!important;
  font-family: "Roboto", sans-serif !important;
}
.text_color{
  color: var(--text_color);
}
.text-white-50 {
    color: #ffffff !important;
}

.text-blue {
    color: #2B3940 !important;
}
.seen_icon{
  color: #1b8478;
}
.text-10size{
	font-size:10px;
}
.text-14size{
	font-size:14px;
}
.dis_flex{
	display: flex; /* Ensure content stretches to full height */
}
.left_con{
		 flex: 1; /* Adjust width proportionally */
	   max-width:100% !important;
     overflow: hidden;
     flex-direction: column;
}
.right_con{
	 flex: 2; /* Takes remaining space */
    max-width: 35%; /* Takes 35% of the parent width */
     align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
	    overflow: hidden; /* Prevent clipping */
    flex-direction: column;
}

@media (max-width: 768px) {
	.dis_flex{
	display: block; /* Ensure content stretches to full height */
}
.left_con{
	 max-width:100% !important;
    overflow: hidden;
	  display: black; /* Ensure content stretches to full height */
}
.right_con {
      	max-width:100% !important;
     overflow: hidden;
	  display: block; /* Ensure content stretches to full height */
    }
}
.inner_con{
	max-width:90% !important;
}
.inner_con{
	max-width:95% !important;
}
.inner_con_grey{
 	background-color:#EDEDED;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary{
	color:#FFFFFF;
}
.btn.btn-secondary {
    color: #FFFFFF;
	background-color:#7a7a7a;
	border-color:#7a7a7a;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}
.btn_menu_sc{
	    height: fit-content !important;
    background-color: gray;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: capitalize;
    outline: none;
}
.loging_color{
  color: #ffffff !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--white_color);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--white_color);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    background-color: var(--top_header) !important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header_about {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/about_banner.jpg) top center repeat !important;
}
.page-header {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.practice_areas_bg_img {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/carousel-1.jpg) top center repeat !important;
}

.our_team_bg_img {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/team_picture.jpg) top center repeat !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}


/*** Category ***/
.cat-item {
    display: block;
	background-color:#ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
	color:#656565;
}


/*** lawyer Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.lawyer-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.lawyer-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

/*** news ***/
.news-carousel .owl-item .news-item,
.news-carousel .owl-item.center .news-item * {
    transition: .5s;
}

.news-carousel .owl-item.center .news-item {
    background: var(--primary) !important;
}

.news-carousel .owl-item.center .news-item * {
    color: #FFFFFF !important;
}

.news-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.news-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.news-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* Styling the navigation container */
.news-carousel .owl-nav, .video-carousel .owl-nav {
    position: absolute;
    top: 50%; /* Align vertically */
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Allow clicks only on the buttons */
}

/* Styling the prev and next buttons */
.news-carousel .owl-prev, .news-carousel .owl-next {
    background-color: #010137; /* Button background color */
    color: white; /* Icon color */
    font-size: 20px; /* Icon size */
     display: flex;
    justify-content: center;
    align-items: center;
     pointer-events: auto; /* Allow clicking */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Hover effect for buttons */
.news-carousel .owl-prev:hover, .news-carousel .owl-next:hover {
    background-color: #dddddd; /* Darker shade on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* Position adjustments */
.news-carousel .owl-prev {
    left: 10px; /* Adjust distance from the carousel */
}

.news-carousel .owl-next {
    right: 10px; /* Adjust distance from the carousel */
}

@media (max-width: 768px) {
.news-carousel .owl-prev, .owl-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .owl-prev {
        left: -10px;
    }
    .owl-next {
        right: -10px;
    }
}


/*******header services  carousel**********/
.services-container {
    width: 98%;
	margin-left:5px;
    height: 63vh;
    position: relative;
    overflow: hidden;
     border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-scroller {
    position: absolute;
	width:100%;
    top: 0;
    display: flex;
    flex-direction: column;
    transition: top 0.5s linear;
}

.service-card {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    background-color: #f9f9f9;
	margin:5px;
}

.service-card h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.service-card p {
    margin: 10px 0 0;
    font-size: 14px;
    color: #666;
}

.nav-btn {
    position: absolute;
	right:0px;
     height: 30px;
    background: #7a7a7a;
    color: #fff;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    z-index: 10;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-btn:hover {
    opacity: 1;
}

#scroll-up {
    top: 0;
    border-radius: 5px 5px 0 0;
}

#scroll-down {
    bottom: 0;
    border-radius: 0 0 5px 5px;
}
/* Position the navigation buttons vertically */
.head-services-carousel{
	 transform: rotate(90deg);
     overflow: visible;
	 top: 2vw;
 }
 .head-services-carousel .owl-stage {
    display: flex; /* Ensure items align correctly */
    align-items: center;
 }
.head-services-carousel .owl-nav{
	 display: flex;
  justify-content: space-between;
  position: absolute;
  width: 93%;
  top: calc(0%);
 }
/* Adjust news-item styling */
 .head-services-item{
     transform: rotate(-90deg);
	width: 34vw; /* Width is 25% of the viewport width */
    margin: 12vw 1vw 12vw -1vw; /* Margin adjusts based on viewport size */
	height:180px;
}
.head-services-carousel .owl-item{
 }
.head-services-carousel .owl-nav .owl-prev, .head-services-carousel .owl-nav .owl-next{

	background-color: #010137; /* Button background color */
    color: white; /* Icon color */
    font-size: 20px; /* Icon size */
     display: flex;
    justify-content: center;
    align-items: center;
     pointer-events: auto; /* Allow clicking */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}


/*
.head-services-carousel .owl-prev,
.head-services-carousel .owl-next {
   position: absolute;
  /*  width: 40px;
    height: 40px;
    border-radius: 50%;
*/
  /*  background-color: #010137;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Adjust button positions */
/*.head-services-carousel .owl-prev {
   top: -30px; /* Place it above the carousel */
  /*  left: 50%;
    transform: translateX(-50%);
}

.head-services-carousel .owl-next {
    bottom: -30px; /* Below the carousel */
    /*left: 50%;
    transform: translateX(-50%);
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .head-services-carousel .owl-prev, .owl-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
	.head-services-carousel .owl-prev {
        top: -15px;
    }
    .head-services-carousel .owl-next {
        bottom: -15px;
    }
}



/*** video ***/
.video-carousel .owl-item .video-item,
.video-carousel .owl-item.center .video-item * {
    transition: .5s;
}

.video-carousel .owl-item.center .video-item {
    background: var(--primary) !important;
}

.video-carousel .owl-item.center .video-item * {
    color: #FFFFFF !important;
}

.video-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.video-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.video-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/* Styling the prev and next buttons */
.video-carousel .owl-prev, .video-carousel .owl-next {
    background-color: #010137; /* Button background color */
    color: white; /* Icon color */
    font-size: 20px; /* Icon size */
     display: flex;
    justify-content: center;
    align-items: center;
     pointer-events: auto; /* Allow clicking */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Hover effect for buttons */
.video-carousel .owl-prev:hover, .video-carousel .owl-next:hover {
    background-color: #dddddd; /* Darker shade on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* Position adjustments */
.video-carousel .owl-prev {
    left: 10px; /* Adjust distance from the carousel */
}

.video-carousel .owl-next {
    right: 10px; /* Adjust distance from the carousel */
}

@media (max-width: 768px) {
.video-carousel .owl-prev, .owl-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .owl-prev {
        left: -10px;
    }
    .owl-next {
        right: -10px;
    }
}




/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 15px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/*
index slide view
*/
.right-slider-title{
	height: 50px;
	position: relative;
	z-index: 9;
	background-color: #fff;
}
.spinner-border-wh{
    width: 3rem;
    height: 3rem;
}
.newslatter-div{
    max-width: 400px;
}
.slider-div-1{
    /*background: rgba(43, 57, 64, .5);*/
    background-color: #0000004a;
}
.about-us-img-2{
     width: 85%; margin-top: 15%;
}
.about-us-img-3{
     width: 85%;
}
.about-info-div{
    padding:10px 20px;
}
.text-align-right{
    text-align:right;
}
.text_align_center{
    text-align:center;
}
.team-img{
    width: 130px;
    height: 100%;
}
.width100{
    width: 100%;
}

.leave_icon_width{
    width: 20px;
}

.video1-right{
        z-index: 999;
    height: 30px;
    float: right !important;
    position: absolute;
    display: flex;
    margin: 150px 122px 0px 85.5%;
}

.video1-lrft{
    position: absolute;
    display: flex;
    margin-top: 150px;
    z-index: 999;
    height: 30px;
}
.mission-vision-div-padding{
    padding:10px 20px;
}
.mission-vision-div-padding-bg{
    background-color:white;
    padding:10px 20px;
}
.our-story-width{
    width: 85%;
}
.our-story-margin-top{
    margin-top: 15%;
}
.our-story-div-padding{
    padding:10px 20px;
}
.padding10-20{
    padding:10px 20px;
}
.background-white{
    background-color:#ffffff;
}
.textarea-height{
    height: 150px !important;
}
.width-height-45{
    width: 45px;
    height: 45px;
}
.map-div{
    min-height: 400px;
    border:0;
}
.width-height-70{
    width: 70px;
    height: 70px;
}
.code-pm-zero{
    padding: 0px !important;
    margin: 0px !important;
}
.reload-icon{
    font-size: 20px;
    font-weight: 600;
    margin: 35px 0 0 0 !important;
    cursor: pointer;
}
.reset-password{
    text-align: right;
    font-size: 15px;
    font-weight: 600;
    color: #727272;
    font-style: italic;
    margin: 0;
    padding: 0;
    width: 100%;
    display: table;
}
.form-select{
    background-color: unset !important;
}
.form-control:focus {
    border-color: #ced4da !important;
    border: 1px solid #ced4da !important;
    box-shadow: unset !important;
}
.card-height{
  height: 100%;
}
.card-margin{
  margin: 25px 0;
}
.about-img-div-margin-top{
  margin-top: 1.8rem;
}
.about-info-div-home{
  padding: 0 20px 10px 20px;
}
.home-menu-logo{
  margin: 0px 0 0 20px;
  height: 100%;
  border-radius: 10% !important;
}
.color_red{
  color: red;
}
.hide{
  display: none;
}
.hide_im{
  display: none !important;
}
.btn-primary:hover {
  color: var(--white_color) !important;
  background-color: var(--top_header) !important;
  border-color: var(--top_header) !important;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #FFFFFF !important;
    background-color: #010137 !important;
    border-color: #010137 !important;
    box-shadow: 0 0 0 .25rem #010137 !important;
}
.btn-check:checked+.btn-primary, .btn-check:active+.btn-primary, .btn-primary:active, .btn-primary.active, .show>.btn-primary.dropdown-toggle {
    color: #FFFFFF;
    background-color: #010137 !important;
    border-color: #010137 !important;
}
.chat-body-2{
  height: auto !important;
}
.free_con_but{
  background: none;
  color: #a56221 !important;
  border-radius: 10px !important;
}
.free_con_but:hover, .free_con_but:active, .free_con_but:focus{
  background: none !important;
  color: #a56221 !important;
  border-radius: 10px !important;
  border-color: unset !important;
  box-shadow: unset !important;
}
.chat-body_no{
  border: unset !important;
}
.nav_link_p{
  padding: 0px 8px;
  margin: 5px 0;
}
.nav_active_dash{
  border-left: 5px solid #ba8b62;
  padding-left: 3px;
}
.float_r{
  float: right;
}
.close{
  background: unset;
  border: unset;
  font-size: 25px;
  margin: 0;
  padding: 0;
}
.error_msg_p{
  margin: 15px 0 0 0;
}
.error_red_color{
  color: var(--red);
}
.error_text_color{
  color: var(--text_color);
}
.form_popup_scroll{
  overflow-y: auto;
  max-height: 53vh;
  padding: 0 12px 0 0;
}
/*email input box*/
#emailInputContainer{
  border: solid 1px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  padding: 4px 6px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  line-height: 22px;
  cursor: text;
  width: 100%;
  height: auto;
  min-height: 3.5em;
}

.tag{
  padding: 2px 5px;
  margin: 2px 2px;
  background: #5bc0de;
  color: white;
  display: inline-block;
  padding: 0px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 42px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.tempinput{
  border: none;
  outline: none;
  line-height: 42px;
}

.tag > .remove{
  margin-left: 8px;
  cursor: pointer;
}

.tag > .remove::after{
  content: "x";
  padding: 0px 0px;
}
.email_lable{
  display: table !important;
  position: relative !important;
  padding: 0 !important;
}
.error_msg_note{
  margin: 0;
  padding: 0;
  line-height: 3;
}

#search_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 999;
}

#search_list li a {
  border: 1px solid #ddd;
  margin-top: -1px; /* Prevent double borders */
  background-color: #f6f6f6;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  color: black;
  display: block
}

#search_list li a:hover:not(.header) {
  background-color: #eee;
}
.calendar_event_p{
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--secondary);
}
.calendar_card{
  max-height: 450px;
  overflow-y: auto;
}
.accordion-button:focus {
  box-shadow: unset !important;
}
.colorPendding{
  color: var(--primary);
}
.colorApproved{
  color: var(--secondary);
}
.colorRejected{
  color: var(--red);
}
.leave_icon{
  height: 20px;
  width: 20px;
  margin: 2px;
  position: absolute;
}
/*new 07022026*/
.footer_color{
  background-color: var(--top_header)!important;
}
.dropdown-menu{
  background-color: var(--top_header)!important;
}
.dropdown-item{
  color: var(--white_color)!important;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: var(--white_color)!important;;
    background-color: var(--top_header)!important;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: var(--white_color);
  background-color: var(--top_header)!important;
}
.cat_item_ar{
	background-color:#EDEDED;
  height: 450px;
}

.cat_item_blog{
	background-color:#EDEDED;
  height: 480px;
}
.login_link{
  font-size: 14px !important;
  text-transform: none !important;
  margin-right: 12px !important;
}
p{
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  line-height: 1.5;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--text_color)!important;
}
.page_background{
  background-color: var(--background);
}
.title_view{
  border-left: 10px solid var(--text_color);
}
.card_title{
  border-bottom:3px solid var(--text_color);
}
.card_pra_area{
  position: relative;
  overflow: hidden !important;
  background: var(--white_color);
  border-radius: 20px !important;
  box-shadow: var(--card_shadow);
  border: 1px solid var(--top_header);
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card_pra_area:hover {
    border-color: var(--top_header)!important;
    box-shadow: var(--card_shadow)!important;
    color: var(--text_color)!important;
}
.card_pra_area::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-warning);
    opacity: 0.5;
    border-radius: 50%;
    bottom: -17px;
    right: -17px;
}
.home_about_us{
    position: relative;
    overflow: hidden !important;
}
.home_about_us::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--bs-warning);
    opacity: 0.20;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.sub_title{
  color: var(--bs-warning);
  letter-spacing: 2px;
}
.sub_title1{
  color: var(--bs-warning);
  letter-spacing: 1px;
}
.padding_zero{
  padding: 0px;
}
.padding_left_zero{
  padding-left: 0px;
}
.margin_top_zero{
  margin-top: 0px;
}
.tagPill {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 15px;
    border: 1px solid #6f2fa030;
    background: #6f2fa030;
    font-size: 14px;
    font-weight: 400;
    color: var(--text_color);
}
.tagRow--tight {
    margin-top: 10px;
    margin-bottom: 0;
}
.tagRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

/* ===== TEAM SECTION ===== */
.team-section{
  padding:0;
}

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:70px;
  color:#0f172a;
}

/* TEAM CARD */
.team-card{
  position: relative;
 overflow: hidden !important;
  display:flex;
  align-items: start;
  gap:50px;
  background:white;
  padding:50px;
  border-radius:20px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  transition:0.4s ease;
  margin-bottom:50px;
}

.team-card:hover{
  /* transform:translateY(-10px);
  box-shadow:0 35px 100px rgba(0,0,0,0.15); */
}

.team-card::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-warning);
    opacity: 0.5;
    border-radius: 50%;
    top: -17px;
    left: -17px;
}
.team-card::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-warning);
    opacity: 0.5;
    border-radius: 50%;
    bottom: -17px;
    right: -17px;
}
.team-card::after {
  z-index: 0;
}

.team-card > * {
  position: relative;
  z-index: 1;
}

/* SMALL IMAGE */
.team-image img{
  width:150px;
  height:150px;
  border-radius:20px;
  object-fit:cover;
  transition:0.4s ease;
}

.team-card:hover .team-image img{
  transform:scale(1.05);
}

/* CONTENT */
.team-content{
  flex:1;
}

.team-content h3{
  font-size:28px;
  margin-bottom:8px;
  text-align: left;
}

.team-role{
  font-weight:500;
  color:var(--bs-warning);
  margin-bottom:20px;
  letter-spacing: 2px;
  text-align: left;
}
.team_role_mb{
  margin-bottom:2px !important;
}
.team-content p{
  font-size:16px;
  line-height:1.8;
  color:var(--text_color);
  margin-bottom:15px;
  text-align: left;
}

/* ALTERNATE */
.team-card.reverse{
  flex-direction:row-reverse;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

  nav{
    flex-direction:column;
    gap:15px;
  }

  .team-section{
    padding:0px;
  }

  .team-card,
  .team-card.reverse{
    flex-direction:column;
    text-align:center;
  }

  .team-image img{
    width:120px;
    height:120px;
  }
  .team-card {
    padding: 50px 15px;
  }
}

.read_on {
  text-align: right;
  font-weight: 700;
  cursor: pointer;
}
/*
  Home practice areas
*/
.practice_area_icon{
  width: 100px;
}
.rsaa_icon{
  width: 150px;
}
.title_ye{
  color: var(--bs-warning);
}

.card_awards{
  position: relative;
  overflow: hidden !important;
  background: var(--white_color);
  border-radius: 20px !important;
  box-shadow: var(--card_shadow);
  border: 1px solid var(--top_header);
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card_awards:hover {
    border-color: var(--top_header)!important;
    box-shadow: var(--card_shadow)!important;
    color: var(--text_color)!important;
}
.card_awards::before {
    content: "";
    position: absolute;
    content: "\1F389";
    font-size: 50px;
    right: -8px;
    bottom: 0px;
    transform: rotate(290deg);
}
.last_menu_dropdown{
  position: absolute;
  margin-left: -52px !important;
}
.fix_scren_h{
  height: calc(100vh - 564px) !important;
  overflow-y: auto;
}
/*
nav
*/
.active{
  color: var(--bs-warning) !important;
}
.active:hover{
  color: var(--bs-warning) !important;
}
.btn-primary {
  color: var(--white_color) !important;
  background-color: var(--top_header) !important;
  border-color: var(--top_header) !important;
}
.home_ab_btn{
  z-index: 99999;
  position: relative;
}
.navbar-light .navbar-toggler {
    color: var(--white_color);
    border-color: var(--white_color);
    margin-bottom: 10px;
}
