@import url(https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
.b {
  border: 1px solid red;
}

body {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;

  font-family: "Inter", sans-serif;
}
body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
::selection {
  color: #fff;
  background: var(--primary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #af956c;
  --secondary-color: #333;
}

.bg_third {
  background-color: var(--thid-color);
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 70px 0 70px;
}

.large_heading {
  font-size: 55px;
}
.heading {
  font-size: 40px;
  line-height: 50px;
}
.sub_heading {
  font-size: 30px;
}
.small_heading {
  font-size: 25px;
}
.small_heading {
  font-size: 22px;
}
.title {
  font-size: 20px;
}
.title_sm {
  font-size: 18px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
/* header */
.inlineHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  /* padding: 10px 0; */
  /* position: absolute; */
  background-color: var(--third-color);
  top: 0px;
  left: 0px;
  z-index: 9;
  width: 100%;
  background-color: white;
}
.header .inline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* .header .left_logo{
  padding: 10px 0;

} */
.header .left_logo a img {
  width: 150px;
  padding: 10px 0;
}
.header .menu-links {
  display: flex;
  align-items: center;
}
.header .menu-links ul {
  display: flex;
  align-items: center;
}
.header .menu-links ul li {
  position: relative;
  padding: 10px;
  /* border-bottom: 2px solid transparent; */
  transition: all 0.3s ease-in-out;
  & a {
    color: #333;
    font-weight: 600;
  }
  & a.active {
    color: var(--primary-color);
    font-weight: 600;
  }
}
.header .menu-links ul li:hover {
  color: #fff;
  & a {
    color: var(--primary-color);
  }
}

.header .menu-links ul li .submenu {
  position: absolute;
  padding: 30px;
  background: #fff;
  z-index: -2;
  display: block;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  border-radius: 10px;
  border-bottom: 3px solid var(--primary-color);
}

.header .menu-links ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9999;
}
.header .menu-links ul li .submenu li {
  display: block !important;
}
.header .menu-links ul li .submenu li a {
  color: #333;
}
.header .menu-links ul li .submenu li a:hover,
.header .menu-links ul li .submenu li a.active {
  color: var(--primary-color);
}

.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  width: 100%;
  background: #fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.menu_btn {
  border: none;
  transition:all .3s ease-in-out;

  background-color: transparent;
  font-size: 35px;
}
.menu_btn:hover {
      color: var(--primary-color);
  border: none;
  background-color: transparent;
  font-size: 35px;
}

.mobile-menu ul li{
  padding: 10px 0;
}

.mobile-menu ul li > a {
  color: #333;
  font-weight: 600;
}
.mobile-menu ul li > a.active {
  color: var(--primary-color);
}
.mobile-menu .submanu{
  
  background-color: #f3efef31;
}

@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}

.fontHeading {
  /* font-family: "Montserrat", sans-serif; */
  font-family: Sora, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

  /* font-family: "Anek Odia", sans-serif; */
}

.text_primary {
  color: var(--primary-color);
}
.bg_primary {
  background-color: var(--primary-color);
}
.bg_secondary {
  background-color: var(--secondary-color);
}
.bg_third {
  background-color: var(--third-color);
}
.bg-gray-light {
  background-color: #f6f6f6;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_third {
  color: var(--third-color);
}

/* buttons */

.callActionBtn {
  display: inline-flex;
  color: var(--primary-color);
}
.iconPhone {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0px 0px 1px 1px #0000001a;
  margin-right: 15px;
}
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.btn_1 {
  text-align: inherit;
  line-height: 27px;
  border-width: 1px;
  margin: 0px;
  padding: 18px 70px 18px 46px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  background-color: #333;
  background-size: 200% auto;
  color: #ffffff;
  display: block;
  border: 2px solid transparent;
  width: fit-content;
  border-radius: 50px;
  position: relative;
  transition: 0.3s ease-in-out !important;
  margin: 0 auto;
}

.btn_1:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.btn_1 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: absolute;
  border-radius: 100%;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  background: #fff;
  color: #af956c;
}
.btn_2 {
  text-align: inherit;
  line-height: 27px;
  border-width: 1px;
  margin: 0px;
  padding: 18px 70px 18px 46px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  background-color: var(--primary-color);
  background-size: 200% auto;
  color: #ffffff;
  display: block;
  border: 2px solid transparent;
  width: fit-content;
  border-radius: 50px;
  position: relative;
  transition: 0.3s ease-in-out !important;
  margin: 0 auto;
}

.btn_2:hover {
  background-color: #333;
  color: #fff;
}
.btn_2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: absolute;
  border-radius: 100%;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
  background: #fff;
  color: #af956c;
}

/*  */

.popup button {
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.popup button:hover {
  background-color: #333;
  color: #fff;
}

/* footer css */
.footer {
  background: #000;
  padding: 60px 0;
}
.itemFooter h4 {
  color: #fff;
}
.itemFooter p {
  margin-top: 30px;
  color: #fff;
}
.socialLink {
  margin-top: 20px;
}
.socialLink ul {
  display: flex;
}
.socialLink ul li a {
  color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #999;
  text-align: center;
  margin: 5px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.socialLink ul li a:hover {
  background: var(--secondary-color);
}
.itemBorder {
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
}
.iconContact {
  display: flex;
}
.iconLeft {
  width: 45px;
  height: 45px;
  border: 1px solid #999;
  color: #fff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
}
.rightContact {
  width: calc(100% - 50px);
}
.rightContact p {
  margin-top: 1px;
  font-size: 14px;
}
.rightContact p a {
  color: #fff;
}
.rightContact small {
  color: var(--primary-color);
  font-weight: 500;
}
.iconLeft i {
  font-size: 20px;
}
.footerInnerMenu {
  margin-top: 30px;
}
.footerInnerMenu ul li a {
  display: inline-block;
  padding: 5px 0;
  color: #ccc;
  font-size: 15px;
  font-weight: 500;
}
.footerInnerMenu ul li a:hover {
  color: #fff;
}
.copyRight {
  text-align: center;
  padding: 10px 0;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  background-color: var(--primary-color);
  z-index: 999;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.copyRight p {
  font-size: 14px;
}

/*  */
.service-item_main .img_box {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.service-item_main .img_box img {
  border-radius: 20px;
}
.service-item img {
  width: 60px;
  margin: 20px 0;
}

/* .specialization */
.specialization {
  background-color: #af956c21;
}
.item_sep {
  position: relative;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px 2px #af956c48;
  height:100%;
}
.item_sep img {
  width: 70px;
  margin-bottom: 20px;
}
.item_sep .num_box {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 45px;
  font-weight: 700;
  color: #00000023;
}

/* cta1 */

.cta1,
.cta2 {
  background-color: #0000005b;
  background-image: url(../images//cta.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: multiply;
}
.cta1 h4 {
  color: #fff;
  /* padding: 100px 0; */
}

.why_choose .img_box {
  position: sticky;
  top: 100px;
  height: 400px;
}
.why_choose .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contact_section {
  background-color: #af956c09;
}
.contact_info li {
  padding: 5px 0;
}
.contact_info li a {
  color: #333;
  transition: all 0.4s ease-in-out;
}
.contact_info li a:hover {
  color: #000;
}
.contact_info li {
  color: #333;
}

.formBoxMain {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formBoxMain .formBox {
  width: 75%;
  height: 100%;
  box-shadow: 0 0 10px 2px #af956c42;
}
.formBoxMain .formHeader {
  padding: 20px;
  background-color: var(--primary-color);
}
.formBoxMain .formHeader h5 {
  color: #fff;
}
.formBoxMain .formHeader p {
  color: #ffffff6e;
}
.formBox form button {
  color: #fff;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}
.formBox form button:hover {
  color: #fff;
  background-color: #333;
}
.formBox form input:focus,
.formBox form textarea:focus {
  border-color: var(--primary-color);

  box-shadow: 0 0 0 0.25rem #af956c00;
}

.counter2_grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.counter2_grid .itemCol {
  padding: 0 20px;
}
.counter2_grid .itemCol:not(:last-child) {
  border-right: 2px solid #ffffff41;
}

.client_review {
  background-color: #af956c33;
}

.itemReview {
  border-radius: 20px;
  overflow: hidden;
}

.itemReview .itemReview_inner {
  padding: 30px;
  background-color: #fff;
}

.about_home .img_box,
.lady_img .img_box  {
  width: 100%;
  height: 400px;
}
.about_home .img_box img,
.lady_img .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.lady_img .img_box img {
  border-radius: 20px;
}

.importantLink ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.importantLink ul li {
  width: calc(100% / 3 - 15px);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 5px;
  padding-left: 20px;
}
.importantLink ul li:before {
  content: "\f101";
  position: absolute;
  top: 9px;
  left: 0px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
.modal-header {
  border: none;
}
.modalLeft {
  padding: 40px 30px;
}
.modal-body {
  background: var(--primary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: relative;
  z-index: 1;
}
.modal-body:before {
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bg/bg-form.jpg) no-repeat;
  background-size: cover;
  z-index: -2;
}
.modal-body:after {
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.modalRight {
  background: #fff;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  padding: 20px;
}
.innerRight {
  margin-top: 15px;
  padding: 0px 20px;
}
.formItem {
  margin: 15px 0;
}
.formItem input,
.formItem textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #888;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.formItem input:focus,
.formItem textarea:focus {
  border: 1px solid var(--primary-color);
  box-shadow: 0px 2px 10px rgb(102 102 104 / 65%);
}
.formItem input::placeholder,
.formItem textarea::placeholder {
  font-size: 15px;
}
.formItem textarea {
  height: 80px;
}
.modalLeft p {
  color: #fff;
}
.modalLeft .itemBorder {
  padding-top: 15px;
}
.smallBtn {
  background: var(--primary-color);
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
}
.smallBtn:hover {
  color: #fff;
}
#disclaimer .modal-body {
  background: #fff;
}
#disclaimer .modal-body:after,
#disclaimer .modal-body:before {
  display: none;
}
.contentDislaimer ul {
  list-style-type: disc;
  margin: 20px 10px 10px 30px;
}
.contentDislaimer ul li {
  padding: 5px;
  font-size: 14px;
}
.bgGrey {
  background: #f1f1f1;
}
.certicate,
.itemCertificate {
  display: flex;
}
.itemCertificate {
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin: 0 15px;
  margin-top: 30px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.imgCertificate {
  width: 120px;
}
.imgCertificate img {
  max-width: 100%;
}
.rightCertificate {
  width: calc(100% - 140px);
}
.rightCertificate p {
  color: var(--primary-color);
}
.leftAbout ul {
  margin: 20px 0 0 0;
}
.leftAbout ul li {
  font-size: 15px;
  padding: 8px 10px;
  font-weight: 500;
  position: relative;
  padding-left: 40px;
}
.leftAbout ul li:before {
  content: "\f058";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 22px;
  color: var(--secondary-color);
}
.itemWhy {
  text-align: center;
}
.iconWhy {
  width: 80px;
  margin: 0 auto;
}
.iconWhy img {
  max-width: 100%;
}
.listBullet ul li {
  font-weight: 500;
  padding: 5px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.listBullet ul li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.socialBtn_sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;

  .share {
    border-radius: 80px;
  }
  .share span {
    line-height: 50px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
  .share nav {
    font-size: 0;
  }
  .share {
    /*width:80px;*/
    /*line-height: 80px;*/
  }
  .share svg {
    font-size: 25px;
    font-weight: 700;
  }
  .share a {
    border-radius: 50%;
    line-height: 50px;
    width: 50px;
    text-align: center;
    display: inline-block;
    background-color: #ffffff;
    color: #ffffff;
    overflow: hidden;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 -20px;
    box-shadow: 3px 1px 3px rgba(0, 0, 0, 0.1);
    /*border-radius: 40px;*/
  }
  .share a:nth-child(1) {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    margin-left: 0;
  }
  .share a:nth-child(1):hover {
    background-color: #25d366;
  }
  .share a:nth-child(2):hover {
    background-color: #3b5998;
  }
  .share a:nth-child(3):hover {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  }
  .share a:nth-child(4) {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-right: 0;
  }
  .share a:nth-child(4):hover {
    background-color: #000000;
  }
  .share:hover span,
  .share.hover span {
    opacity: 0;
  }
  .share:hover a,
  .share.hover a {
    border-radius: 50%;
    margin: 0 5px;
    color: var(--primary-color);
    font-size: 20px;
  }
  .share:hover a:hover,
  .share.hover a:hover {
    color: #fff;
  }
}

/* contact page */
.shortBanner {
  background-image: url(../images/bg/inner-page-bg.jpg);
  background-repeat: repeat;
  background-size: cover;
  height: 300px;
  position: relative;
  z-index: 1;
}
.shortBanner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.iconLaw {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
}
.connectIcon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin: 40px 0;
}
.connectIcon h5 {
  font-size: 17px;
  margin-top: 8px;
}
.connectIcon h3 {
  font-size: 19px;
  color: #000;
}
.newIcons {
  font-size: 24px;
  color: var(--primary-color);

  display: inline;
  border-radius: 50%;
}
.loader {
  height: 59px;
  width: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border-radius: 50%;
  background-color: #f1f1f1;
}
.contactRightInner {
  padding: 60px;
  background: #fff;
}
.rightCotnactNew iframe {
  margin-top: 10px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.connectIcon a {
  color: #000;
}
.rightContactInner {
  background: #000;
  padding: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.itemFormInner {
  margin: 20px 0;
}
.itemFormInner input,
.itemFormInner textarea {
  width: 100%;
  border: 1px solid #ccc;
  color: #fff;
  padding: 15px;
  background: transparent !important;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.itemFormInner input::placeholder,
.itemFormInner textarea::placeholder {
  color: #999;
}
.itemFormInner input:focus,
.itemFormInner textarea:focus {
  color: #fff;
  border-color: var(--primary-color);
}
.itemFormInner textarea {
  height: 100px;
}
.btnContact {
  padding: 15px 40px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  border: 1px solid var(--primary-color);
  color: #fff;
  background: transparent;
}
.btnContact:hover {
  background: var(--primary-color);
}
.btn-left {
    margin: 0 !important;
}


.services_list li {
  padding-left: 35px;
  position: relative;
  margin: 5px 0;
  /*border: 1px dotted #333;*/
}
.services_list li::after {
  left: 0;
  top: 5px;
  /*top: 50%;*/
  /*transform: translateY(-50%);*/

  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px dotted #333;
  border-radius: 100%;
}
.services_list li::before {
  left: 5px;
  top: 10px;
  /*transform: translateY(-50%);*/
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 100%;
}

.services_list ul{
    list-style:square;
    padding-left:30px;
    color:var(--primary-color);
    
}
.services_list ul li{
    padding-left:0px;
}
.services_list ul li::before{
    display:none;
}
.services_list ul li::after{
    display:none;
}

.income_tax_law .img_box {
  width: 100%;
  height: 500px;
}
.income_tax_law .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.income_sec_1 .img_box {
  width: 100%;
  height: 600px;
  position: sticky;
  top: 100px;
}
.income_sec_1 .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whyChoose_Kunal .img_box {
  width: 100%;
  height: 100%;
}
.whyChoose_Kunal .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mission */
.item_mission {
  padding: 30px;
  border: 1px dashed #33333385;
  height: 100%;
  border-radius: 10px;
}

.whyChoose_ul {
  padding-left: 35px;
}
.whyChoose_ul li strong {
  font-size: 20px;
}
.whyChoose_ul li {
  margin-top: 10px;
  position: relative;
}
.whyChoose_ul li:before {
  content: "\f058";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0px;
  left: -35px;
  font-size: 22px;
  color: var(--secondary-color);
}

.whatChat {
  position: fixed;
  right: 15px;
  bottom: 10px;
  /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; */
  width: 75px;
  /* background: #fff; */
  /* border: 1px solid #e0e0e0; */
  border-radius: 10px;
  padding: 4px 12px;
  z-index: 99;
}
.whatChat a {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.whatChat p {
  font-size: 15px;
  animation: hideShow 1s infinite ease-in-out;
}
@keyframes hideShow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.whatChat img {
  width: 50px;
}

/**/
.item_changes{
    padding:30px;
    @media(max-width:768px){
        padding:0px;
    }
}

.img_why_right{
  position: sticky;
    top:150px;
}
.whychoose_s .img_why_right img{
  width:100%;
  border-radius:20px;
}