@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
/*  font-family: "Playfair Display", serif; */
a{
  text-decoration: none;
}
li{
  list-style: none;
}
#button {
  display: inline-block;
  background-color: #D3C191;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s ,transform .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transform: translateX(50px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 40px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  transform: translateX(-0px);
  opacity: 1;
  visibility: visible;
}
/* top Navbar */
.navbar-bgcolor{
  background-color: #2C3454;
  border-bottom: 1px solid #686868;
}
.nav-top li{
  display: flex;
  align-items: center;
}
.nav-top li i{
  color: #D3C191;
}
.nav-top li a{
  color: #ffffff;
}
.nav-top li a:hover{
  color: #ffffff;
}
.btnfree{
  color: #ffffff;
  border: 2px solid #D3C191;
  border-radius: 30px;
  padding: 5px 15px;
}
.navbar-toggler i{
 color: #ffffff;
 font-size: 20px;
}
/* main nav bar */
.mainnavbar{
  background-color: #2C3454;
  position: sticky;
  top: 0px;
  z-index: 9999;
}
.active-nav{
  color: #D3C191 !important;
}
.logo-box{
  width: 70%;
}
.main-nav{
  position: relative;
}
.nav-box{
  background-color: #ffffff;
  z-index: 99999;
  position: sticky;
  top: 0px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sub-nav{
  position: relative;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  width: 16rem;
  opacity: 0;
 display: none;
  transform: translateY(-10px);
  transition: all 0.5s;
  z-index: 5;
}
.main-nav:hover .sub-nav{
  opacity: 1;
  display: block;
  transform: translateY(0);
}
.navbar-nav li .nav-link{
  color: #ffffff;
  font-weight: 500;
  transition: all .5s ease-out;
  text-transform: uppercase;
}

.navbar-nav li .nav-link:hover ,.sub-nav li .sub-manu:hover{
    color: #D3C191;
}
.sub-nav li .sub-manu{
  line-height: 2rem;
  color: #1b1b1b;
  display: block;
  position: relative;
  transition: all .5s;
}
.nav-link{
  font-weight: 600 !important;
}
.sub-nav li .sub-manu::after{
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #D3C191;
  transition: all .5s;
  transform:scaleX(0);
  transform-origin: left;
}
.sub-nav li .sub-manu:hover:after{
  transform:scaleX(1);
  transform-origin: left;
  border-bottom: 1px solid #D3C191;
}
.navcolor i{
  font-size: 10px;
  transition: all .5s;
}
.main-nav:hover  .navcolor i{
  transform: rotate(180deg);
}
/* new section */
.bgcolor{
  background-color: #F1F1F1;

}
.main-box{
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.icon-box{
 background-color: #C0B596;
 width: 25%;
 padding: 20px;
}
.text-box{
  padding: 20px;
}
.text-box p ,.text-box1 p{
  color: #C0B596;
  margin: 0px;
}
.text-box h3 ,.textAll{
  font-family: "Playfair Display", serif;
  color: #333333;
  font-weight: 300;
}
/* about section */
.about-img-box{
  width: 90%;
  position: relative;
  margin:0px auto ;
}
.about-img-box::after{
  content: "";
  background-color: #C0B596;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -4%;
  top: -4%;
  z-index: -1;
}
.textpara{
  text-align: justify;
  color: #5d5d5d;
}
.btnMore{
  background-color: #C0B596;
  padding: 12px 40px;
  color: #ffffff;
  transition: all .5s;
  font-weight: 600;
}
.btnMore:hover{
  background-color: #D3C191;
  color: #ffffff;
}
.sign-box{
  width: 30%;

}
/* services section */
.line{
  background-color: #C0B596;
  width: 6%;
  height: 3px;
  margin: 0px auto;
}
.main-box-services{
  display: flex;

}
.services-icon-box{
  width: 165px;
  height: 85px;
  padding: 15px;
  border: 1px solid #C0B596;
  border-radius: 50%;
}
.textpara1{
  color: #5d5d5d;
}
.line1{
  background-color: #C0B596;
  width: 10%;
  height: 3px;
}
/* case studies */
.nav-pills .nav-link.active{
  color: #D3C191;
  background-color: transparent;
}
.nav-pills li button{
  color: #393939;
  transition: all .5s;
}
.nav-pills li button:hover{
  color:#D3C191;
}
.main-box-case{
  position: relative;
  overflow: hidden;
}
.text-case-box{
  background-color: #272e4bda;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  padding: 20px;
  opacity: 0;
  transition: all .5s;
  transform: translateY(60px);
 
}
.main-box-case:hover .text-case-box{
  opacity: 1;
  transform: translateY(0px);
}
.line2{
  background-color: #C0B596;
  width: 25%;
  height: 3px;
  margin: 0px auto;
}
.text-box1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 2px solid #C0B596;
}
/* Free Consulting section */
.bg-Consulting{
  background-image: url(../images/Consulting.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.bg-Consulting::after{
  content: "";
  position: absolute;
  background-color: #161a2ce1;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.consulting-box p,.consulting-box h5{
  color: #C0B596;
}
.consulting-box h2 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  position: relative;
}
.consulting-box h2::after{
  content: "";
  position: absolute;
  background-color: #c0b596d8;
  width: 10%;
  height: 1px;
  left: -10%;
  top: 50%;
}
.inputbox{
  width: 100%;
  padding: 14px 20px;
  background-color: #c0b59648;
  border: 1px solid #c0b596cb;
  color: #c0b596;
}
.inputbox:focus{
  outline: none;
}
.inputbox::placeholder{
  color: #C0B596;
}
.inputbox option {
  background-color: #c0b596;
  color: #ffffff;
}
/* team section */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background-color: #c0b596;
  color: #ffffff;
}
.owl-nav {
  display: flex;
  justify-content:end;
  
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #D3C191;
  color: #ffffff;
}
.textcolor{
  color: #aba184;
}
.slider-img-box{
position: relative;
}
.team-name{
  text-align: center;
  background-color: #F1F1F1;
  transition: all .5s;
 height: 15vh;
}
.box-text{
  background-color: #F1F1F1;
  transition: all .5s;
}
.slider-img-box:hover .box-text{
  transform: translateY(-40px);
  background-color: #f5f5f5;
}

.team-icon-list{
  display: flex;
  column-gap: 20px; 
  justify-content: center;
}
.team-icon-list li a{
  color: #aba184;
}
/* counter section */
.counter-bg-img{
 background-image: url(../images/counter.jpg);
 background-position: bottom;
 background-repeat: no-repeat;
 background-size: cover;

}
.counter-box{
  background-color: #403D38;
  padding: 40px 0px;
}
.counter-text{
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
}
.counter-font{
 color: #C0B596;
 text-align: center;
}
/* btn-News */
.news-text a{
 font-size: inherit;
 color: #333333;
 font-family: "Playfair Display", serif;
}
.text-news-box{
  padding: 20px;
  background-color: #e9e9e9;
}
.news-icon-box{
  border-radius: 50%;
  overflow: hidden;
  width: 12%;
}
.date-box-news{
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.text-name-news a{
  color: #525252;
  font-weight: 600;
  border-right: 3px solid #646464;
  padding-right: 10px;
}
/* footer section */
.footer-bg{
  background-color: #151A30;
}
.footer-heading{
  color: #ffffff;
  font-family: "Playfair Display", serif;
}
.footer-text{
  color: #ffffff;
  text-align: justify;
}
.footer-list{
  padding: 0px;
}
.footer-list li{
  line-height: 2.1rem;
}
.footer-list li i{
  color: #D3C191;
}
.footer-list li a{
  color: #ffffff;
}
.footer-line{
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #ffffff;
}
.footer-line a{
  color: #C0B596;
}
.line-footer{
  width: 40%;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 15px;
  position: relative;
}
.line-footer::after{
  position: absolute;
  content: "";
  width: 30%;
  height: 4px;
  background-color: #caad5d;
  top: -50%;
}
/* banner section */
.banner-bg-img{
  background-image: url(../images/banner.jpg);
  height: 65vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.banner-bg-img::after{
  background-color: #151a3094;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner-text{
  font-size: 25px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Playfair Display", serif;

}
.breadcram a{
  color: #ffffff;
  font-size: 18px;
}
.breadcram span{
  color: #D3C191;
  font-size: 18px;
}
.text-heading-form{
  font-family: "Playfair Display", serif;
  color: #636363;
  font-weight: 300;
}
.input-box-form{
 padding: 15px 30px;
 background-color: #EBEBEB;
 border: none;
 width: 100%;
}
/* modal box */
.Attorneys-box{
  background-color: transparent;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #D3C191;  
  
}
.Attorneys-box img{
  border: 5px solid #1b1b1b;
}
.text-box-attorneys h5{
  font-weight: bold;
  color: #2C3454;
  padding-bottom: 10px;
  transition: all .5s; 
}
.text-box-attorneys{
 
  position: relative;
  height: 10vh; 
}
.All-text-box{
  padding: 10px 0px;
  transition: all .5s;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 10vh; 
}
.Attorneys-box:hover .All-text-box{
  transform: translateY(-56px);
  background-color: #D3C191; 
  overflow: visible; 
}
.btn-read{
  border: 2px solid #ffffff;
  padding: 8px 20px;
  display: inline;
  border-radius: 20px;
  opacity: 0;
  transition: all .5s;
}
.Attorneys-box:hover .btn-read{
  opacity: 1;
}
.Attorneys-box img{
  transition: all .5s;
  object-fit: cover;
}
.Attorneys-box:hover img{
  filter: grayscale(100%);
}
.modal-dialog{
  top: 20% !important;
}

.text-box-modal h5{
  font-weight: bold;
  color: #2C3454;
}
/* language change */
.goog-te-gadget-icon {
  display:none;
}


.goog-te-gadget-simple {
    background-color: #C0B596 !important;
    border:none !important;
    display: inline-block;
    cursor: pointer;
    zoom: 1 !important;
    padding: 10px 20px !important;
    border-radius: 10px;
}

.goog-te-gadget-simple  span {
  color: #ffffff !important;
  letter-spacing: 0.8px;
  font-weight: 500;
  font-size: 14px;

}
 
body{
  top: 0px !important;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd{
  display: none !important;
}
.contact-btn ,.contact-btn1{
  border: none;
  padding: 10px 20px;
  background-color: #b4a479;
  color: #ffffff;
  border-radius: 10px;
  transition: all .5s;
}
.contact-btn:hover, .contact-btn1:hover{
  background-color: #C0B596;
  color: #ffffff;
}
.text-name-form{
  color: #2C3454;
  font-weight: bold;
}
/* about page */
.text-heading-form1{
  font-family: "Playfair Display", serif;
  color: #D3C191;
  font-weight: 600;
}
.about-main-box{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 100%;
  background-color: #2C3454;

}
.text-box-about{
  background-color: #2C3454;
  padding: 0px 20px;
}
.text-box-about h4{
  color: #ffffff;
  font-weight: bold;
}
.text-box-about h5{
  color: #ffffff;
}
.textpara1 span{
  font-weight: bold;
  color: #ff0000;
}
/* search section */
.main-search-box{
  display: flex;
}
.search-box{
  border: 2px solid #1b1b1b;
  width: 80%;
  padding: 10px 20px;
}
.search-btn{
  border: none;
  width: 20%;
  background-color: #caad5d;
  color: #ffffff;
  font-weight: bold;
}
.input-search{
  border: none;
  background-color: transparent;
  padding: 0px 10px;
  width: 90%;
}
.input-search:focus{
  outline: none;
}
@media(min-width:768px){
  .services-icon-box{
    width: 160px;
  }
  .counter-text{
    font-size: 45px;
  }
  .logo-box{
    width: 40%;
  }
  .banner-text{
    font-size: 40px;
    
  }
}
@media(min-width:992px){
  .services-icon-box{
    width: 140px;
  }
  .logo-box{
    width: 24%;
  }
  .banner-text{
    font-size: 50px;
    
  }
  .sub-nav{
    position: absolute;
    visibility: hidden;
    display: block;
  }
  .main-nav:hover .sub-nav{
    opacity: 1;
   visibility: visible;
    transform: translateY(0);
  }
  .modal-content{
    width: 140%;
  }
}
@media(min-width:1440px){
  .navbar-nav{
    column-gap: 20px;
  }

}