*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #fff;
}
ul li{
    list-style: none;
}
ul{
    margin-bottom: 0;
    padding-left: 0;
}
.activecursor{
  cursor: pointer;
}
html{
  max-width: 100%;
  overflow-x: hidden;
}
body{
    background-color: #000;
     max-width: 100%;
    color: #fff;
    /* overflow-x: hidden; */
}
.btmdes{
position: relative;
padding-bottom: 1rem;
}
.btmdes::before{
    content: "....";
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    color: goldenrod;
font-size: 4rem;
}
/* .btmdes::after{
    content: "";
    position: absolute;
    bottom: -34%;
    left: 50%;
    transform: translateX(calc(-50% + 50px));
    width: 50px;
    height: 4px;
    background-color: goldenrod;
} */
 button{
   padding: 0.75rem 2rem;
   border-radius: 10px;
   border: 2px solid #fff;
   font-weight: 500;
   font-size: 1.1rem;
   position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
 button::after{
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 50%;
background-color: #000;
transition: 0.3s ease-in-out;
border-radius: 10px 10px 0 0;
opacity: 0;
z-index: -1;
}
button::before{
content: "";
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 50%;
background-color: #000;
transition: 0.3s ease-in-out;
border-radius:0 0 10px 10px ;
opacity: 0;
z-index: -1;
}
 button:hover::after , button:hover::before{
    width: 100%;
    opacity: 1;
}
 button:hover span{
    color: #fff;
}
button span{
  transition: 0.3s;
  
}
/* instant div */
.instdiv{
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.441);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   z-index: 999;
   
}
.inst{
    background-color:black ;
    color: #fff;
    width: 50%;
 /* height: fit-content; */
 /*  */
 padding: 2rem;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 10px 10px 20px #000;
}
@media(max-width:992px){
  .inst{
    width: 80%;
}  
}
@media(max-width:600px){
  .inst{
    width: 98%;
     height:98%;
     padding: 2rem 0.75rem;
      overflow-y: scroll;
      font-size: 14px;
    }  
}
.instclose{
   display: flex;
   align-items: center;
   justify-content: end;

}
.instclose p{
    /* border: 2px solid #000; */
    padding: 8px 12px;
    border-radius: 10px;
    width: fit-content;
    background-color: #fff;
    color: #000;
    display: block;
}
/* .abtn::before , .abtn::after{
    background-color: goldenrod;
} */

/* header */
.topnav p span:hover ,.topnav-icons i:hover {
color: goldenrod;
}
.topnav p{
    font-size: 1.1rem;
    font-weight: 500;
}
.topnav-icons{
    font-size: 2rem;
}
@media(max-width:1200px){
  .topnav-icons{
    font-size: 1.5rem;
}  
}
header{
    border-bottom:  2px solid goldenrod;
   border-top:  2px solid goldenrod;
   z-index: 990;
  position: sticky;
  top: 0;
}
header ul li a{
    padding-bottom: 5px;
}
header ul li:hover a{
    border-bottom: 2px solid #fff;
}
.activenav{
     border-bottom: 2px solid #fff;
}

/* menu */
.menu{
    background-color: black;
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -350px;
    z-index: 992;
    padding:2rem 1rem;
    transition: 0.3s;
    overflow-y: scroll;
}

.closing{
    /* align-items: end; */
   display: flex;
   align-items: center;
   justify-content: end;
  
    
}
.closing p{
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 50%;
    margin-bottom: 0;
}
.menu ul{
    line-height: 3;
}
.menu ul li a i.icn{
    transition: transform 0.3s ;
    display: inline-block;
}
.menu ul li {
    font-size: 1.1rem;
    
}

.menu ul li a:hover  i.icn{
   transform: scale(1.3);
}
.menu ul li a:hover{
   color: goldenrod;
}

.activeslider{
    color: goldenrod;
}

/* banner */

 @media(min-width:1440px){
  .carousel-item{
    height: 100vh;
} 
}
.innerdiv{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.597);
    display: flex;
    align-items: center;
    justify-content: center;
}
.outerdiv{
    width: 60%;
}

.carousel-control-next, .carousel-control-prev{
    height: 50px;
    width: 50px;
    border: 2px solid white;
    top: 50%;
    transform: translateY(-50%);
opacity: 0.8;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.carousel-control-next{
    right: 40px;

}
.carousel-control-prev{
    left: 40px;
    
}

.outerdiv h1{
    font-size: 4rem;
}
@media(min-width:1200px){
   .outerdiv h1{
    font-size: 6rem;
} 
}
@media(max-width:768px){
   .outerdiv {
    width: 70%;
} 
}
@media(max-width:576px){
   .outerdiv h1{
    font-size: 1.75rem;
} 
.outerdiv button{
   padding: 0.5rem 1.5rem;
   font-size: 1rem;
}
.outerdiv {
    width: 90%;
} 
}

/* about us */
.gdntext{
    color: goldenrod;
}
.aboutsec .container{
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    /* box-shadow: 10px 10px 5px #fff; */
    /* box-shadow: rgba(218, 165, 32, 0.54) 10px 13px 15px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
}
@media(max-width:576px){
    .aboutsec .container{
        border-radius: 0;
    }
}
.aboutsec .imgdiv{
    border: 2px solid rgb(218, 165, 32);
    border-radius: 0 0 50% 50%;
    padding: 2rem;
    background-color: goldenrod;
}
.aboutsec h2{
    padding-bottom: 5px;
    position: relative;
}
.aboutsec h2::before{
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    background-color: goldenrod;
    bottom: 0;
    left: 0;
}
.aboutsec h2::after{
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background-color: goldenrod;
    bottom: 0;
    left: 50px;
}
/* why choose us */
      .wcucard{
        height: 400px;
        background-color: #fff;
        border-radius: 20px 20px 0 0;
        /* position: relative; */
        overflow: hidden;
      }
      .wcutext{
        position: absolute;
        height: 400px;
        width: 100%;
        background-color: goldenrod;
        top: 0;
      transform: translateY(30%);
       display: flex ;
       align-items: center;
       /* justify-content: center; */
       padding-top: 30%;
       flex-direction: column;
        border-radius: 20px 20px 0 0;
        transition: 0.3s;
        z-index: 2;
        text-align: justify;
      }
      .wcutext h4{
       text-align: center;
       position: relative;
       padding-bottom: 10px;
      
      }
      .wcutext h4::before{
       content: "";
       position: absolute;
       bottom: 0;
      left: 50%;
      transform: translateX(-50%);
       height: 2px;
       width: 40%;
       background-color: #fff;
      }
       .wcutext h4::after{
       content: "";
       position: absolute;
       bottom: 0;
      left: 50%;
      /* transform: translateX(calc(-50% + 50%)); */
       height: 4px;
       width: 40%;
       background-color: #fff;
      }
     
      .clrdiv{
        position: absolute;
        height: 400px;
        width: 100%;
        background-color: goldenrod;
         top: 0;
      transform: translateY(30%);
      
        border-radius: 20px 20px 0 0;
        transition: 0.3s;
        z-index: 1;
      }
      .wcumg{
        position: absolute;
        height: 80px;
        width: 80px;
        top: 0;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%,100%);
        background-color: #fff;
        border: 2px solid goldenrod;
        outline: 4px solid #fff;
        border-radius: 50%;
        padding: 1rem;
        z-index: 99;
        transition: 0.3s;
      }
      .wcucard:hover .divvv .clrdiv{
transform: translateY(0);
      }
      
      /*area of practise  */
      .aop{
        background-image: url(../images/banner2.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
      }
      .aopmaindiv{
        background-color: rgba(0, 0, 0, 0.825);
      }
     
      .aopcard{
        background-color: #fff;
        border-radius: 20px;
        /* margin: 0 0.75rem; */
        /* padding: ; */
      }

      .aopcard:hover  .aopimg img {
        transform: scale(1.2);
      }
      .aop h5{
        /* color: black; */
        color: goldenrod;
        text-align: center;
      }
      @media(max-width:576px){
         .aop h5{
       font-size: 1rem;
       padding: 0 5px;
      }
       .aopmaindiv{
        background-color: rgba(0, 0, 0, 0.625);
      }
      }
      .aopimg{
          border-radius: 20px 20px 0 0;
          overflow: hidden;
      }
      .aopimg img{
        border-radius: 20px 20px 0 0;
        transition: 0.3s ease-in-out;
      }

      /* contact us */
      .contactus{
  background-image: url(../images/bgimgcontact.webp);
   background-position: center; 
   background-repeat: no-repeat;
    background-size: cover;
     background-attachment: fixed;
      }
    
      .contactus form{
        display: flex;
         align-items: start;
        justify-content: center;
        flex-direction: column;
        width: 60%;
        background-color: rgba(218, 165, 32, 0.425);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 20px;
      }
      .contactus form input, .contactus form textarea{
       width: 100%;
       padding: 1rem;
border-radius: 20px;
margin: 0.75rem  0;
box-shadow: 5px 5px 5px black;
border: none;
      }
      @media(max-width:768px){
        .contactus form{
            width: 100%;
        }
      }

/* footer */

footer .icons i{
    border:2px solid #fff;
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    background-color: goldenrod;
    transition: 0.3s;
    margin: 0 0.5rem;
}
footer .icons i:hover{
    background-color: #000;
}
.qlinks a{
    font-size: 1.25rem;
}
.qlinks a:hover{
   color: goldenrod;
}



@media(max-width:576px){
  .qlinks a{
    font-size: 1rem;
}  
}
      .cpyr{
        background-color: goldenrod;
        color: #fff;
        padding: 1rem;
        text-align: center;
      }


































      /* About page */
      .smallbanner{
        background-image: url(../images/banner1.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
       
      }

      .smallbannerdiv{
        background-color: #0000009a;
        height: 100%;
        width: 100%;
         padding: 100px 0;
      } 

      .smallbanner h1{
        font-size: 4rem;
      }
      
@media(min-width:1200px){
   .smallbanner h1{
    font-size: 6rem;
} 
}
@media(max-width:576px){
   .smallbanner h1{
    font-size: 1.75rem;
}
}
/* login form */
.loginfrm{
  height: 100vh;
  width: 100vw;
  background-color: #000000be;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  
}
.lgdata > div{
  width: 300px;
  background-color: #000;
  padding: 2rem 1rem;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 20px;
}
.lgdata input{
border: none;
border-bottom: 1px solid #fff;
background-color: transparent;
border-radius: 5px;
padding: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}
.lgdata button{
  padding: 0.5rem ;
  margin-top: 2rem;
  width: 100%;
}
#login , #signin{
  display: none;
}
.closelogin, .closesignin {
    /* align-items: end; */
   display: flex;
   align-items: center;
   justify-content: end;
  
    
}
.closelogin p, .closesignin p {
    border: 2px solid #fff;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: 50%;
    margin-bottom: 0;
}
/* about top cards */
.abouttopcardbotm{
  width: 100%;
  height: 50px;
  background-color: #000;
  top:50%;
  transform: translateY(-50%);
}
.abouttopcard{
  background-color: #fff;
}
.atopcard{
  background-color: #000;
  padding-top: 4rem;
  padding-bottom: 1rem;
  text-align: center;
  box-shadow: 5px 5px 10px #000000c8;
}
.atopimg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  border: 4px solid goldenrod;
  /* padding: 0.5rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  height: 80px;
  width: 80px;
}
.atopcard p{
  color: goldenrod;
}
.imgdiv2{
 box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* vision */
.visioncard{
  /* background-color: #ffffffd8; */
   /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
/* backdrop-filter: blur(10px);    */
}
.vin h2{
  position: relative;
   padding-bottom: 10px;
}
.vin h2::before{
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    background-color: goldenrod;
    bottom: 0;
    left: 0;
}
.vin h2::after{
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background-color: goldenrod;
    bottom: 0;
    left: 50px;
}
.vin{
  position: relative;
  /* color: #000; */
}
.vin::before{
content: '"'; /* double inverted comma */
  font-size: 4rem; /* make it big */
  font-weight: bold;
  color: #fff; /* optional styling */
  margin-right: 0.5rem;
 
 vertical-align: top;
  line-height: 1;
  display: inline-block;
}
.vin::after{
content: '"'; /* double inverted comma */
  font-size: 4rem; /* make it big */
  font-weight: bold;
  color: #fff; /* optional styling */
  margin-right: 0.5rem;
position: absolute;
right: 0;

  line-height: 1;
  display: inline-block;
}

/* faq  */
.fqcard span{
color: goldenrod;
font-size: 1.2rem;
}
@media(max-width:576px){
  .fqcard span{
color: goldenrod;
font-size: 1rem;
}
}
.fqcard p{
  margin-bottom: 5px;
}

/* contact us */
.cucd{
  background-color: goldenrod;
  /* backdrop-filter: blur(10px); */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  border-radius: 20px;
  border: 2px solid #fff;
  position: relative;
  padding: 3rem 0;
}
.cuicn{
position: absolute;
top: 0;
transform: translateY(-50%);
border-radius: 50%;
}
.cuicn i{
font-size: 2rem;
color: white;
border: 2px solid #fff;
padding: 0.5rem 0.75rem;
border-radius: 50%;
background-color: #000;
}
.cucd p{
margin-bottom: 0;
}
/* working hr */
.whr{
  background-color: #fff;
}
.whr table{
  background-color: rgb(29, 0, 0);
  border-radius: 10px;
   /* border-collapse: collapse; */
  width: 100%;
}
.whr table th{
  font-size: 1.5rem;
}
.whr table tr td,.whr table tr th{
  padding: 1rem ;
}
.whr table tr:first-child, .whr table tr:last-child {
  background-color: #530202;  /* or any color you want */
  color: #fff;
}
.whr table tr{
  border-bottom: 1px solid white;
}


table tr td:last-child{
  text-align: end;

}

@media(min-width:1440px){
  .whr table th{
  font-size: 2rem;
}
}
@media(max-width:576px){
  .whr table th{
  font-size: 1rem;
}
table tr td:first-child{
  padding-right: 0;
  padding-right: 0.5rem;
  font-size: 0.75rem;
}
table tr td:last-child{
padding-left: 0;
padding-right: 0.5rem;
 font-size: 0.75rem;
}
}








/* debt settlement */
 .cmnprobcrd{
  background-color: rgba(40, 39, 39, 0.789);
 }
 .cmnprobcrd:hover{
  outline: 2px solid white;
 }
.cmnprobimg{
  overflow: hidden;
  position: relative;
}
.cmnprobimg img{
transform: rotate(355deg) translateY(-20%) scale(1.15);
}
.cmnprobimg > div{
position: absolute;
 top: 0;
  left: 0;
   height: 100%;
    width: 100%;
   
     transform: rotate(355deg) translateY(-20%) scale(1.15);
}
.cmnprobimg1 > div{
 background-image: linear-gradient(to top right , rgba(166, 4, 166, 0.653), rgba(0, 0, 255, 0.527));
}
.cmnprobimg2 > div{
 background-image: linear-gradient(to top right , rgba(0, 0, 255, 0.653), rgba(0, 255, 255, 0.527));
}
.cmnprobimg3 > div{
 background-image: linear-gradient(to top right , rgba(0, 255, 255, 0.653), rgba(255, 0, 0, 0.527));
}
.cmnprobimg4 > div{
 background-image: linear-gradient(to top right , rgba(255, 0, 0, 0.653), rgba(255, 166, 0, 0.527));
}
.cmnprobimg5 > div{
 background-image: linear-gradient(to top right , rgba(255, 166, 0, 0.653), rgba(0, 128, 0, 0.527));
}
.cmnprobtxt{
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  text-align: center;
}





/* our process */
 .opcscrd{
    background-color: rgba(218, 165, 32,1);
    border: 2px solid white;
    /* color: black; */
    padding: 1rem;
    text-align: center;
    border-radius: 20px;
  }