@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* font-family: "DM Sans", sans-serif; */
/* font-family: "Playfair Display", serif; */

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


:root {
  --blackColor:#000;
  --whiteColor:#ffffff;
  --themeColor:#0B224B;
  --secondartColor:#A88158;
  --paraColor:#171612;
  --dmFont:"DM Sans", sans-serif;
  --playFairFont:"Playfair Display", serif;
}

body {
  font-family:var(--dmFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color:var(--paraColor);
  background-color:var(--whiteColor);
  overflow-x: hidden;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.6s;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--playFairFont);
  line-height: 1;
  font-weight:500;
  margin-bottom: 20px;
}
h1,
.h1-title {
  font-size:65px;
  line-height: 1.1;
}
h2,
.h2-title {
  font-size:50px;
  line-height:1.1;
}
h3,
.h3-title {
  font-size:32px;
}
h4,
.h4-title {
  font-size:30px;
}
h5,
.h5-title {
  font-size: 24px;
}
h6,
.h6-title {
  font-size: 20px;
}
p {
  margin-bottom: 20px;
}
.white >*,.white-txt{
  color:var(--whiteColor);
}
p:last-child,
h1:last-child,
.h1-title:last-child,
h2:last-child,
.h2-title:last-child,
h3:last-child,
.h3-title:last-child,
h4:last-child,
.h4-title:last-child,
h5:last-child,
.h5-title:last-child,
h6:last-child,
.h6-title:last-child {
  margin: 0;
}
figure {
  margin: 0 0 0;
}
.sec-head {
  padding-bottom:50px;
  margin-bottom:60px;
  border-bottom:1px solid rgba(23,22,18,0.1);

}
.sec-head p{
  font-size:20px;
}

.cmn-gap {
  padding: 80px 0;
}
.cmn-btn{
  color: var(--whiteColor);
  cursor: pointer;
  display: inline-flex;
  align-items:center;
  font-size: 18px;
  font-weight:500;
  padding: 13px 25px;
  background: linear-gradient(90deg, #BB9773 0%, #A88158 100%);
  border-radius:50px;
  position:relative;
  overflow:hidden;
  z-index:1;
  transition: all 0.4s ease 0s;
}
.cmn-btn:after{
  position:absolute;
  content:'';
  top:0;
  left:auto;
  right:0;
  width:0;
  height:100%;
  border-radius:50px;
  transition:0.4s;
  background-color:var(--paraColor);
  z-index:-1;
}
.cmn-btn span{
  position:relative;
  z-index:1;
}
.cmn-btn i{
  width:20px;
  margin-left:10px;
}
.cmn-btn i img{
  transition:0.4s;
}
.cmn-btn:hover i img{
  transform:rotate(45deg);
}
.cmn-btn:hover {
  color: var(--whiteColor);
}
.cmn-btn:hover:after{
  width:100%;
  left:0;
  right:auto;
}
.cmn-btn.whitebtn{
  background:var(--whiteColor);
  color:var(--paraColor);
}
.cmn-btn.whitebtn:hover{
  color:var(--whiteColor);
}
.cmn-btn.whitebtn i img{
  filter: brightness(0) saturate(100%) invert(6%) sepia(10%) saturate(918%) hue-rotate(11deg) brightness(96%) contrast(94%);
}
.cmn-btn.whitebtn:hover i img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(48%) saturate(0%) hue-rotate(46deg) brightness(112%) contrast(100%);
}


input,
textarea,
select {
  font-weight: 400;
  outline: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px !important;
  background-image: url(../images/select-arw.png);
  background-repeat: no-repeat;
  background-position: 94% center;
}
input[type="text"],
input[type="email"],
textarea{
  width:100%;
  height:55px;
  border:1px solid rgba(0,0,0,0.2);
  padding:10px;
  border-radius:5px;
}
textarea{
  height:150px;
  resize:none;
}
input[type="submit"]{
  border:0;
  padding:15px 45px;
  background-color:var(--themeColor);
  color:var(--whiteColor);
  font-size:18px;
  transition:0.4s;
  border-radius:50px;
}
input[type="submit"]:hover{
  background-color:var(--blackColor);
}

.close_menu {
  display: none;
}
.hamberger {
  display: none;
}

/*==== Header Start ====*/
.navbar{
  padding:0;
}
.main-head{
  padding:30px 0 0;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background-color:var(--themeColor);
}
.brand{
  width:208px;
  display:block;
}
.nav-list-uter ul{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 -25px;
}
.nav-list-uter ul li{
  padding:0 25px;
}
.nav-list-uter ul li a{
  font-size:17px;
  color:var(--whiteColor);
  font-family:var(--dmFont);
  text-transform:capitalize;
}
.nav-list-uter ul li a:hover{
  color:var(--secondartColor);
}

.hero-sec{
  background-color:var(--themeColor);
  padding:163px 0 60px;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.bnr-abs{
  position:absolute;
  pointer-events:none;
  z-index:-1;
  max-width:499px;
}
.bnr-abs.one{
  top:30px;
  right:7%;
}
.bnr-abs.two{
  bottom:139px;
  left:7%;
}
.bnr-blur {
    position: absolute;
    top: 48%;
    transform: translate(-50% , -50%);
    left: 50%;
    width: 1200px;
    z-index: -1;
    pointer-events:none;
}

.hero-text-wpr{
  max-width:850px;
  text-align:center;
  margin:0 auto 21px;
}
.hero-text-btn-wpr ul{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:-7px;
}
.hero-text-btn-wpr{
  padding-top:15px;
}
.hero-text-btn-wpr ul li{
  padding: 7px;
}
.hero-img-row{
  --bs-gutter-x:20px;
  --bs-gutter-y:20px;
  align-items:flex-end;
}
.hero-img-clm{
  width:22%;
}
.hero-img-clm:nth-child(2){
  width:56%;
}
.hero-img-clm figure{
  padding-top:149%;
  position:relative;
  overflow:hidden;
  border-radius:20px;
}
.hero-img-clm figure img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-img-clm:nth-child(2) figure{
  padding-top:52%;
}
.hero-img-txt{
  position:absolute;
  width:100%;
  height:100%;
  padding:38px;
  top:0;
  left:0;
  display:flex;
  align-items:flex-end;
}
.hero-img-with-txt{
  position:relative;
}
.hero-img-txt-list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  margin:-3px;
}
.hero-img-txt-list li{
  padding:3px;
}
.hero-img-txt-list li span{
  position:relative;
  padding:10px 10px 10px 32px;
  font-family: var(--dmFont);
  color:var(--whiteColor);
  background: rgba(23, 22, 18, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  display:inline-block;
}
.hero-img-txt-list li span:after,
.why-choose-list-wpr ul li:after{
  position:absolute;
  content:'';
  top:50%;
  transform:translateY(-50%);
  left:15px;
  width:5px;
  height:5px;
  border-radius:50%;
  background-color:var(--whiteColor);
}
.about-lft-clm {
    width: 51.5%;
}
.about-rgt-clm{
  width:48.5%;
}
.about-lft-txt{
  margin-bottom:60px;
}
.about-lft-wpr figure{
  padding-top:69%;
  position:relative;
  overflow:hidden;
  border-radius:20px;
}
.about-lft-wpr figure img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-rgt-wpr{
  max-width:588px;
  margin-left:auto;
}
.about-para-wpr{
  padding-bottom:50px;
  margin-bottom:50px;
  border-bottom:1px solid rgba(23,22,18,0.1);
}
.about-para-wpr p{
  font-size:18px;
  margin-bottom:28px;
}
.about-para-wpr p:last-child{
  margin-bottom:0;
}
.about-para-wpr p span{
  font-weight:600;
  color:var(--secondartColor);
}

.why-choose-wpr h3{
  margin-bottom:38px;
}
.why-choose-list-wpr ul li:not(:last-child){
  margin-bottom:10px;
}
.why-choose-list-wpr ul li{
  display:inline-block;
  padding:11px 18px 11px 30px;
  position:relative;
  border-radius:50px;
  background: #F1F1F1;
  line-height:1.1;
  font-size:18px;
}
.why-choose-list-wpr ul li:after{
  background-color:var(--paraColor);
}

.law-firms-sec{
  background-color:#F1F1F1;
}
.law-firms-row{
  --bs-gutter-x:20px;
  --bs-gutter-y:20px;
}
.law-firms-clm{
  width:33.33%;
}
.law-firms-card{
  width:100%;
  height:100%;
  background:var(--whiteColor);
  border-radius: 20px;
  padding: 10px 10px 30px;
  display:flex;
  flex-direction:column;
}
.law-firms-card-upr{
  background-color:#F1F1F1;
  padding:20px;
  border-radius:20px;
  margin-bottom:15px;
  flex:0 0 auto;
}

.law-firms-tag{
  display:inline-block;
  padding:4px 15px;
  border-radius:50px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color:var(--secondartColor);
  background-color:var(--whiteColor);
  margin-bottom:15px;
}
.law-firms-card-upr span{
  display:block;
  font-size:18px;
  margin-bottom:15px;
}

.starting-at-txt{
  border-top:1px solid rgba(23,22,18,0.1);
  padding-top:15px;
  font-size:15px;
  margin-bottom:10px;
}
.law-firms-card-upr h3{
  font-family:var(--dmFont);
}
.law-firms-card-lwr{
  padding:5px 20px 0;
  flex:1;
  display:flex;
  flex-direction:column;
}
.law-firms-card-lwr > span{
  display:block;
  font-size:12px;
  font-weight:500;
  margin-bottom:13px;
  color:var(--paraColor);
}
.law-firms-card-lwr ul li{
  margin-bottom:8px;
  display:flex;
  align-items:center;
}
.law-firms-card-lwr ul li i{
  width:20px;
  margin-right:8px;
  flex:0 0 auto;
  margin-top:-3px;
}
.law-firms-card-btn-wpr{
  padding-top:14px;
  margin-top:auto;
}
.law-firms-clm.advanced .law-firms-card-upr{
  background: linear-gradient(71.04deg, #0B224B 0%, #294B87 100%);
  color:var(--whiteColor);
}
.law-firms-clm.advanced .law-firms-tag{
  background-color:var(--secondartColor);
  color:var(--whiteColor);
}
.law-firms-clm.advanced .starting-at-txt{
  border-color:rgba(255,255,255,0.1);
}


.our-recent-sec{
  background-color:var(--themeColor);
  position:relative;
  z-index:1;
  overflow:hidden;
}
.our-recent-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
}

.our-recent-sec .sec-head{
  padding-bottom:0;
  border:0;
}

.our-recent-pjct-outer{
  padding-top:17px;
}
.our-recent-pjct-outer ul{
  justify-content:center;
}
.our-recent-pjct-outer ul li span{
  background-color:rgba(255,255,255,0.1);
  padding-right:15px;
}

.our-recent-row{
    --bs-gutter-x:20px;
    --bs-gutter-y:20px;
}
.our-recent-clm{
  width:50%;
}
.our-recent-card{
  width:100%;
  height:100%;
}
.our-recent-card figure{
  padding-top:59%;
  position: relative;
  overflow:hidden;
  border-radius:20px;
  border:10px solid var(--whiteColor);
}
.our-recent-card figure img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.our-recent-txt-wpt{
  padding-top:30px;
  max-width:599px;
}
.our-proven-row{
  --bs-gutter-x:0;
  --bs-gutter-y:0;
}
.our-proven-clm{
  width:20%;
}
.our-proven-card{
  width:288px;
  height:288px;
  border-radius:50%;
  background: linear-gradient(358deg,rgba(255, 255, 255, 1) 0%, rgba(168, 129, 88, 1) 100%);
  position:relative;
  text-align:center;
  padding:10px 50px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.our-proven-clm:nth-child(even) .our-proven-card{
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(168, 129, 88, 1) 100%);
}
.our-proven-card:after{
  position:absolute;
  content:'';
  top:1px;
  left:1px;
  right:1px;
  bottom:1px;
  background-color:var(--whiteColor);
  border-radius:50%;
}
.our-proven-card >*{
  position:relative;
  z-index:1;
}
.our-proven-card i{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 15px;
  border-radius:50%;
  background-color:var(--secondartColor);
}
.our-proven-cd-txt h3{
  margin-bottom:12px;
}
.our-proven-btn-wpr{
  margin-top:60px;
  text-align:center;
}


.what-use-sec{
  background-color:#F1F1F1;
}
.sec-sub-txt{
  display:block;
  margin-bottom:15px;
  font-size:20px;
}
.what-use-slider .slick-track{
  display:flex !important;
}
.what-use-sldr-item{
  height:initial;
  padding:10px;
} 
.what-use-sldr-card{
  padding: 30px;
  background: #FFFFFF;
  border-radius: 20px;
  height:100%;
}
.what-use-sldr-card i{
  display:block;
  margin-bottom:15px;
}
.what-use-sldr-card .h5-title{
  font-family:var(--dmFont);
  line-height:1.2;
  margin-bottom:30px;
  max-width:300px;
}
.what-use-sldr-card p{
  font-size:18px;
}
.what-use-sldr-card span{
  display:block;
  font-weight:500;
}
.what-use-slider .slick-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:19px;
}
.what-use-slider .slick-dots li{
  line-height:0;
  margin:3px;
}
.what-use-slider .slick-dots li button{
  width:40px;
  height:3px;
  border-radius:50px;
  background-color:rgba(11,34,75,0.2);
  font-size:0;
  border:0;
  transition:0.4s;
}
.what-use-slider .slick-dots li.slick-active button,
.what-use-slider .slick-dots li button:hover{
  background-color:var(--themeColor);
}
.get-a-free-sec{
  position:relative;
  z-index:1;
}
.get-a-free-frm-inr{
  text-align:center;
}
.sec-head.white{
  border-color:rgba(255,255,255,0.1);
}
.main-footer{
  background-color:#050C17;
  padding:80px 0 35px;
}
.footer-upper{
  display:flex;
  flex-wrap:wrap;
  max-width:930px;
  margin:0 auto;
  align-items:center;
}
.ftr-upr-lft{
  width:60%;
}
.ftr-upr-lft span{
  font-family:var(--playFairFont);
}
.ftr-upr-rgt{
  width:40%;
  text-align:right;
}
.footer-lower{
  padding:50px 0;
  border-top:1px solid rgba(255,255,255,0.1);
  border-bottom:1px solid rgba(255,255,255,0.1);
  margin-top:50px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
}
.ftr-logo{
  width:209px;
}
.ftr-brand{
  display:block;
}
.ftr-brand img{
  width:100%;
}
.ftr-location-wpr{
  width:calc(100% - 209px);
   padding-left:20px;
}
.ftr-location-list{
  display:flex;
  align-items:center;
  justify-content:flex-end;
 
}

.ftr-location-list li{
  margin-left:60px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
}
.ftr-location-list li i{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:50%;
  padding:5px;
}
.ftr-location-txt{
  width:calc(100% - 50px);
  padding-left:20px;
}
.ftr-location-txt span{
  display:block;
  font-weight: 500;
  font-size: 18px;
  color: #BB9773;
}
.ftr-location-txt .ftr-location-link{
  display:block;
  color:var(--whiteColor);
  font-weight:500;
}
.ftr-location-txt a.ftr-location-link:hover{
  color:var(--secondartColor);
}
.footer-copy{
  text-align:center;
  margin-top:20px;
}
.footer-copy a,
.footer-copy p{
  color:rgba(255,255,255,0.5);
}
.footer-copy a:hover{
  color:var(--secondartColor);
}
.ftr-location-list li:first-child{
  margin:0;
}


.recent_project_sldr .slick-list{
	margin: -12px;
}

.recent_project_sldr_items {
	padding: 12px;
}

.our-recent-pjct-outer .slick-dots{
	display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.our-recent-pjct-outer .slick-dots li{
	line-height: 1;
}
.our-recent-pjct-outer .slick-dots li button{
	padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 0;
    border: 0;
}
.our-recent-pjct-outer .slick-dots li.slick-active button{
	background: linear-gradient(90deg, #BB9773 0%, #A88158 100%);
}

/*======= Responsive Start =======*/
@media screen and (min-width:992px){
  .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
  }
}

@media screen and (min-width: 1500px) {
  .container{
    max-width:1464px;
  }
}
@media screen and (min-width: 1750px) {
  .container.large{
    max-width:1744px;
  }
}





@media screen and (max-width: 1599px) {
    h1, .h1-title {
        font-size: 55px;
    }
    h2, .h2-title {
        font-size: 45px;
    }
    h3, .h3-title {
        font-size: 28px;
    }
    .sec-head {
        padding-bottom: 40px;
        margin-bottom: 50px;
    }


    .our-proven-card {
        width: 100%;
        height: 258px;
    }
    .our-proven-card i {
        width: 70px;
        height: 70px;
        margin: 0 auto 6px;
    }





}

@media screen and (max-width: 1399px) {

  h1, .h1-title {
      font-size: 50px;
  }
  h2, .h2-title {
      font-size: 40px;
  }
  .sec-head {
      padding-bottom: 30px;
      margin-bottom: 40px;
  }

  .cmn-gap {
      padding: 70px 0;
  }




  .brand {
      width: 170px;
  }
  .nav-list-uter ul {
      margin: 0 -12px;
  }
  .nav-list-uter ul li {
      padding: 0 12px;
  }
  .hero-img-txt {
    padding: 18px;
  }
  .hero-text-btn-wpr {
      padding-top: 10px;
  }
  .about-para-wpr {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .why-choose-wpr h3 {
      margin-bottom: 25px;
  }
  .about-lft-txt {
      margin-bottom: 40px;
  }
  .about-para-wpr p {
      font-size: 16px;
      margin-bottom: 18px;
  }
  .sec-head p {
      font-size: 18px;
  }
  .law-firms-card-upr span {
    font-size: 16px;
  }
  .our-proven-card {
      height: 223px;
      padding:10px 30px;
  }
  .our-proven-card i {
      width: 60px;
      height: 60px;
  }
  .our-proven-cd-txt h3{
    font-size:22px;
  }
  .our-proven-cd-txt p{
    font-size:14px;
  }
  .our-proven-btn-wpr {
    margin-top: 50px;
  }
  .what-use-sldr-card p{
    font-size: 16px;
  }
  .ftr-location-list li {
    margin-left: 20px;
  }
  .ftr-logo {
    width: 160px;
  }
  .ftr-location-wpr {
    width: calc(100% - 160px);
    padding-left:15px;
  }
  .footer-lower {
    padding: 30px 0;
    margin-top: 30px;
  }
  .main-footer {
      padding: 50px 0 35px;
  }





}

@media screen and (max-width: 1199px) {
  h1, .h1-title {
      font-size: 42px;
  }
  h2, .h2-title {
      font-size: 36px;
  }
  h5, .h5-title {
      font-size: 20px;
  }
  .cmn-gap {
      padding: 60px 0;
  }
  .cmn-btn {
    font-size: 15px;
    padding: 10px 15px;
  }



  .brand {
      width: 140px;
  }
  .nav-list-uter ul li a {
      font-size: 15px;
  }
  .main-head {
      padding: 20px 0 0;
  }
  .hero-sec {
      padding: 140px 0 50px;
  }
  .hero-img-txt-list li span {
      padding: 7px 10px 7px 32px;
      font-size: 15px;
  }
  .hero-img-row {
      --bs-gutter-x: 10px;
  }
  .about-para-wpr {
      padding-bottom: 20px;
      margin-bottom: 20px;
  }
  .law-firms-row {
      --bs-gutter-x: 10px;
  }
  .law-firms-tag {
      font-size: 13px;
  }
  .law-firms-card-upr {
    padding: 12px;
  }
  .law-firms-card-lwr {
      padding: 5px 10px 0;
  }
  .law-firms-card-lwr ul li i {
      width: 14px;
      margin-right: 5px;
  }
  .our-proven-card {
    height: 187px;
    padding: 10px 25px;
}
.our-proven-card i {
    width: 50px;
    height: 50px;
    padding: 13px;
}
.our-proven-cd-txt h3 {
    font-size: 16px;
}
.our-proven-cd-txt p {
    font-size: 12px;
}
.what-use-sldr-card {
    padding: 20px;
}
.ftr-logo {
    width: 100%;
}
.ftr-brand {
    width: 180px;
}
.ftr-location-wpr {
    width: 100%;
    padding: 15px 0 0;
}
.ftr-location-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}





}

@media screen and (max-width: 991px) {

.hamberger{
  display:block;
  width:30px;
}
.nav-list-uter{
  position:fixed;
  top:0;
  right:-320px;
  width:320px;
  height:100vh;
  background-color:var(--paraColor);
  z-index:99;
  transition:0.5s;
}
.nav-list-uter.active{
  right:0;
}
body.active{
  overflow:hidden;
}
.nav-list-uter ul {
    justify-content: flex-start;
    margin: 0;
    flex-direction: column;
    padding-top:100px;
}
.nav-list-uter ul li {
    width: 100%;
    text-align: left;
    padding:0;
}
.nav-list-uter ul li a{
  display:block;
  color:var(--whiteColor);
  padding: 10px 30px;
}
.nav-list-uter ul li a:hover{
  color: var(--themeColor);
}
.close_menu{
  position:absolute;
  display:block;
  top:30px;
  right:30px;
  width:18px;
}

h1, .h1-title {
    font-size: 34px;
    line-height:1.3;
}
h2, .h2-title {
    font-size: 34px;
}
.sec-head {
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.hdr-social-outer {
    margin-right: 15px;
    margin-left: auto;
}
.hamberger img{
  filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(0%) hue-rotate(162deg) brightness(102%) contrast(105%);
}
.nav-list-uter ul li a {
    font-size: 16px;
}
.hero-img-txt-list li span {
    padding: 5px 7px 5px 23px;
    font-size: 13px;
}
.hero-img-txt-list li span:after, .why-choose-list-wpr ul li:after {
    left: 10px;
}
.hero-img-txt {
    padding: 10px;
}
.hero-img-clm figure {
    border-radius: 10px;
}
.about-lft-clm ,
.about-rgt-clm{
    width: 100%;
}
.about-lft-txt {
    margin-bottom: 30px;
    text-align: center;
}
.about-rgt-wpr {
    max-width: 100%;
    padding-top: 30px;
}
.law-firms-clm {
    width: 50%;
}
.our-recent-card figure {
    border-radius: 10px;
    border: 6px solid var(--whiteColor);
}
.our-recent-txt-wpt {
    padding-top: 20px;
    max-width: 100%;
}
.our-proven-clm {
    width: 33.33%;
}
.our-proven-card {
    height: 231px;
}
.our-proven-card i {
    width: 60px;
    height: 60px;
    margin-bottom:12px;
}
.our-proven-cd-txt h3 {
    font-size: 18px;
}
.our-proven-cd-txt p {
    font-size: 14px;
}
.our-proven-row {
    justify-content: center;
}
.ftr-location-list{
  flex-wrap:wrap;
  justify-content: center;
}
.ftr-location-list li:first-child {
    margin: 0;
    width: 100%;
    justify-content:center;
}
.ftr-location-list li{
  margin:0;
  padding:10px;
}
.ftr-brand {
    margin: 0 auto 10px;
}
.ftr-location-txt {
    width: auto;
    padding-left: 20px;
}
.law-firms-row {
    justify-content: center;
}
.hero-text-wpr {
    max-width: 510px;
}
.why-choose-list-wpr ul li {
    font-size: 16px;
}


}

@media screen and (max-width: 767px) {
  h2, .h2-title {
      font-size: 28px;
  }
  h1, .h1-title {
      font-size: 30px;
  }
  h3, .h3-title {
      font-size: 25px;
  }
  .why-choose-list-wpr ul li {
    font-size: 14px;
}
  


  .hero-img-clm figure {
      padding-top: 213%;
      border-radius: 10px;
  }

  .hero-img-clm:nth-child(2) figure {
      padding-top: 74%;
  }
  .hero-sec {
      padding: 130px 0 40px;
  }
  .law-firms-clm,
  .our-recent-clm  {
      width: 100%;
  }
  .our-recent-row {
      --bs-gutter-y: 40px;
  }
  .our-proven-clm {
      width: 50%;
  }
  .our-proven-card {
      height: 258px;
  }
  .ftr-upr-lft {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.ftr-upr-rgt {
    width: 100%;
    text-align: center;
}
.ftr-location-list {
    justify-content: flex-start;
    max-width: 400px;
    margin: 0 auto;
}
.ftr-location-list li:first-child {
    justify-content: flex-start;
}



  
}


@media screen and (max-width: 575px) {
  .hero-img-txt-list li span {
      font-size: 10px;
  }
  .hero-img-txt-list li {
      padding: 2px;
  }
  .hero-img-txt-list {
      margin:-2px;
  }
  .our-proven-card {
      height: 228px;
  }




}

@media screen and (max-width:479px) {
  h1, h2, h3, h4, h5, h6 {
      margin-bottom: 15px;
  }
  h1, .h1-title {
      font-size: 24px;
  }
  h2, .h2-title {
      font-size: 22px;
  }
  h3, .h3-title {
      font-size: 20px;
  }


  .cmn-gap {
      padding: 50px 0;
  }

  .nav-list-uter {
    right: -280px;
    width: 280px;
}
.nav-list-uter ul {
    padding-top: 80px;
}
.nav-list-uter ul li a {
    padding: 14px 20px;
}
.hdr-social-outer .cmn-btn i{
  display:none;
}
.hdr-social-outer .cmn-btn {
    font-size: 12px;
    padding: 7px;
}
.brand {
    width: 120px;
}
.hero-sec {
    padding: 110px 0 40px;
}
.hero-text-btn-wpr ul {
    flex-direction: column;
}
.hero-img-clm:nth-child(1),
.hero-img-clm:nth-child(3){
  display:none;
}
.hero-img-clm:nth-child(2) {
    width: 100%;
}
.why-choose-list-wpr ul li:after {
    left: 15px;
}
.our-recent-pjct-outer {
    padding-top: 0;
}
.our-proven-clm {
    width: 100%;
}
.our-proven-card {
    height: 288px;
}
.ftr-location-list li i{
  width:40px;
  height:40px;
  padding:12px;
}
.ftr-location-txt{
  width:calc(100% - 40px);
  padding-left:10px;
}
.footer-lower {
    padding: 20px 0 10px;
}


}
