@font-face {
  font-family: "jost";
  src: url("../fonts/jost/jost-variable-font-wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "marcellus";
  src: url("../fonts/marcellus/marcellus-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --jost: "jost", sans-serif;
  --marcellus: "marcellus", sans-serif;
  --btn-primary: rgba(205, 163, 88, 1);
  --btn-white: rgba(255, 255, 255, 1);
  --btn-green: rgba(22, 81, 83, 1);
}

a {
  text-decoration: none;
}

iframe {
  display: block;
}

.btn-close:focus {
  box-shadow: none;
}

.custom-buttom {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--jost);
  font-size: 16px;
  padding: 10px 25px;
  color: var(--btn-white);
  text-transform: capitalize;
  transition: all 0.3s;
}

.custom-buttom.btn-bg-dark {
  background-color: var(--btn-primary);
  color: var(--btn-white);
  border: solid 1px var(--btn-primary);
}

.custom-buttom.sm {
  padding: 12px 17px;
}

.custom-buttom.yellow-border {
  color: var(--btn-primary);
  border: solid 1px var(--btn-primary);
}

.custom-buttom.yellow-border svg path {
  stroke: var(--btn-primary);
}

.custom-buttom.yellow-border:hover {
  color: var(--btn-white);
  background-color: var(--btn-primary);
}

.custom-buttom.yellow-border:hover svg {
  transform: rotate(45deg);
}

.custom-buttom.yellow-border:hover svg path {
  stroke: var(--btn-white);
}

.custom-buttom img,
.custom-buttom svg {
  transition: all 0.3s;
}

.custom-buttom:hover {
  gap: 10px;
  background-color: var(--btn-primary) !important;
}

.custom-buttom:hover svg,
.custom-buttom:hover img {
  transform: rotate(45deg);
}

.custom-buttom.transparent {
  background-color: transparent;
  border: solid 1px var(--btn-white);
}

.custom-buttom.dark {
  background-color: var(--btn-primary);
}

.custom-buttom.light {
  background-color: var(--btn-white);
}

.primary-title {
  font-family: var(--marcellus);
  font-size: 56px;
  font-weight: 400;
  color: var(--btn-green);
  line-height: 1.1;
}

.primary-title span {
  color: var(--btn-primary);
}

.primary-title.light {
  color: var(--btn-white);
}

.md {
  font-size: 32px;
}

.desc {
  font-family: var(--jost);
  font-weight: 500;
  font-size: 16px;
  color: rgb(240, 240, 240);
  margin-bottom: 10px;
}

.desc.dark {
  color: rgba(16, 16, 16, 0.6);
  font-weight: 400;
}

main img.blog-listing-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

main img.blog-listing-left {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

main .header-mobile-responsive {
  display: none;
}

main .section-margin {
  margin-bottom: 50px;
}

main img,
main video {
  max-width: 100%;
  display: block;
}

main .home-banner header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

main .home-banner header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

main .home-banner header .header-top .left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

main .home-banner header .header-top .left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--jost);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

main .home-banner header .header-top .left span a {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

main .home-banner header .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

main .home-banner header .right a {
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 7px;
}

main .home-banner header .hr {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

main .home-banner header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

main .home-banner header .header-main .main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

main .home-banner header .header-main .main-menu ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 0;
}

main .home-banner header .header-main .main-menu ul li,
main .home-banner header .header-main .main-menu ul a {
  font-family: var(--jost);
  font-weight: 500;
  font-size: 16px;
  color: rgb(255, 255, 255);
}

main .home-banner header .header-main .main-menu ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

main .home-banner header .header-main .main-menu ul a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--btn-primary);
  transform: rotate(45deg);
}

main .home-banner header .header-main .main-menu ul a::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0px;
  top: 50%;
  left: 0;
  border: solid 1px var(--btn-primary);
  transition: all 0.3s;
}

main .home-banner header .header-main .main-menu ul li.active>a,
main .home-banner header .header-main .main-menu ul li:hover>a {
  color: var(--btn-primary);
  gap: 20px;
}

main .home-banner header .header-main .main-menu ul li.active>a img,
main .home-banner header .header-main .main-menu ul li:hover>a img {
  margin-inline-start: -10px;
}

main .home-banner header .header-main .main-menu ul li.active>a::after,
main .home-banner header .header-main .main-menu ul li:hover>a::after {
  width: 25px;
}

main .home-banner header .header-main .main-menu ul .menu-dropdown a.active,
main .home-banner header .header-main .main-menu ul .menu-dropdown a:hover {
  color: var(--btn-primary);
  gap: 20px;
}

main .home-banner header .header-main .main-menu ul .menu-dropdown a.active::after,
main .home-banner header .header-main .main-menu ul .menu-dropdown a:hover::after {
  width: 25px;
}

main .home-banner header .header-main .main-menu .has-dropdown {
  position: relative;
}

main .home-banner header .header-main .main-menu .has-dropdown:hover .menu-dropdown {
  display: block;
}

main .home-banner header .header-main .main-menu .has-dropdown .menu-dropdown {
  background-color: var(--btn-white);
  padding: 0 15px;
  width: 260px;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 1;
  display: none;
}

main .home-banner header .header-main .main-menu .has-dropdown .menu-dropdown a {
  font-family: var(--jost);
  font-weight: 500;
  display: flex;
  color: rgb(22, 81, 83);
  font-size: 14px;
  padding: 12px 0;
  border-bottom: solid 1px rgb(224, 224, 224);
}

main .home-banner header .header-main .main-menu .has-dropdown .menu-dropdown a:hover {
  color: var(--btn-primary);
}

s main .home-banner header .header-main .main-menu .has-dropdown .menu-dropdown a:last-child {
  border-bottom: none;
}

main .home-banner header.HeaderGreen .header-main .main-menu ul a {
  color: var(--btn-green);
}

main .home-banner header.HeaderGreen .header-main .main-menu ul a:hover {
  color: var(--btn-primary);
}

main .home-banner header.HeaderGreen .right a {
  border: solid 1px rgba(16, 16, 16, 0.2);
}

main .home-banner header.HeaderGreen .header-top .left span {
  color: rgba(16, 16, 16, 0.6);
}

main .home-banner header.HeaderGreen .header-top .left span a {
  color: rgba(16, 16, 16, 0.6);
}

main .home-banner header.HeaderGreen .hr {
  border-bottom: solid 1px rgba(16, 16, 16, 0.2);
}

main .home-banner .home-video {
  position: relative;
  z-index: 0;
}

main .home-banner .home-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
}

main .home-banner .home-video video, 
.banner {
  width: 100%;
  max-height: 710px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* main .home-banner .home-video .banner {
  width: 100%;
  max-height: 710px;
  -o-object-fit: cover;
  object-fit: cover;
} */

main .home-banner .home-video .home-video-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-120px);
  width: 100%;
  z-index: 5;
}

main .home-banner .home-video .scroll-main {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  margin-bottom: 16px;
  z-index: 1;
}

main .home-banner .home-video .scroll-main span {
  margin-bottom: 10px;
  display: block;
}

@keyframes heightAnimation {
  0% {
    height: 20px;
  }

  100% {
    height: 24px;
  }
}

main .home-banner .home-video .scroll-main img {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  margin: auto;
  width: 24px;
  height: 18px;
  -o-object-position: bottom;
  object-position: bottom;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: bottom;
  animation: heightAnimation 1.5s ease-in-out infinite;
}

main .slider-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
}

main .slider-main .arrow-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

main .slider-main .arrow-main a {
  border: solid 1px var(--btn-primary);
  padding: 10px;
  opacity: 1;
}

main .slider-main .arrow-main a:hover {
  border: solid 1px var(--btn-green);
  background-color: var(--btn-green);
}

main .slider-main .arrow-main a:hover:hover svg path {
  stroke: var(--btn-white);
}

main .slider-main .arrow-main a.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.7;
}

main .slider-main .arrow-main a.swiper-button-disabled:hover {
  border: solid 1px var(--btn-primary);
  background-color: transparent;
}

main .slider-main .arrow-main a.swiper-button-disabled:hover:hover svg path {
  stroke: var(--btn-green);
}

main .slider-main .card-main .card-text h5 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-green);
}

main .slider-main .card-main .card-text p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(23, 29, 28, 0.6);
  margin-bottom: 0;
  line-height: 1.1;
}

main .slider-main .card-main .card-text>img {
  margin: 10px 0;
}

main .consulting-main {
  background-color: var(--btn-green);
  width: 100%;
  position: relative;
  overflow: hidden;
}

main .consulting-main .left-bg-image {
  position: absolute;
  left: 0;
  top: 0;
}

main .consulting-main .right-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

main .consulting-main .consulting-img-main {
  position: relative;
}

main .consulting-main .consulting-img-main .left {
  position: absolute;
  top: 0;
  left: 0;
}

main .consulting-main .consulting-img-main .left img {
  width: 100%;
  height: 100%;
}

main .consulting-main .consulting-img-main .right {
  position: absolute;
  top: 0;
  right: 0;
}

main .consulting-main .consulting-img-main .right img {
  width: 100%;
  height: 100%;
}

main .consulting-structure {
  position: relative;
  z-index: 1;
}

main .consulting-structure .consulting-tab-main {
  max-width: 430px;
}

main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link {
  display: inline-flex !important;
  cursor: auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--jost);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px !important;
  transition: 0.4s ease all;
  border: 1px solid transparent;
}

main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link.active {
  background-color: var(--btn-white);
  color: #165153;
  transition: 0.4s ease all;
  border-color: #CDA358;
}

main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link.active img {
  background-color: rgba(22, 81, 83, 0.2);
}

main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link img {
  width: 25px;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
  border-radius: 15px;
}

main .consulting-structure .right-line {
  position: relative;
  padding-left: 110px;
  height: 100vh;
}

main .consulting-structure .right-line::after {
  content: "";
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
}

main .consulting-structure .row1,
main .consulting-structure .row2 {
  align-items: center;
  flex-wrap: nowrap;
  height: 100%;
}

main .consulting-structure .row1 .col-12,
main .consulting-structure .row2 .col-12 {
  height: 100%;
}

main .consulting-structure .row1 .col-12 .expert-consulting-main,
main .consulting-structure .row2 .col-12 .expert-consulting-main {
  height: 100%;
}

main .consulting-structure .row1 .col-12:nth-child(even) .expert-consulting-main {
  position: relative;
}

main .consulting-structure .row1 .col-12:nth-child(even) .expert-consulting-main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 40px;
  transform: translateX(-50%);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

main .consulting-structure .row1 .col-12:nth-child(even) .expert-consulting-main img {
  margin: auto;
}

main .consulting-structure .row2 .col-12 .expert-consulting-main {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

main .consulting-structure .row2 .col-12 .expert-consulting-main .expert-consulting-heading,
main .consulting-structure .row2 .col-12 .expert-consulting-main img {
  margin: unset;
}

main .consulting-structure .row2 .col-12:nth-child(odd) {
  padding-top: 40px;
}

main .consulting-structure .row2 .col-12:nth-child(odd) .expert-consulting-main {
  position: relative;
}

main .consulting-structure .row2 .col-12:nth-child(odd) .expert-consulting-main::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  height: 40px;
  transform: translateX(-50%);
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

main .consulting-structure .row2 .col-12:nth-child(odd) .expert-consulting-main img {
  margin: auto;
}

@media screen and (max-width: 768px) {
  main .consulting-structure .row2 .col-12:nth-child(odd) .expert-consulting-main::after {
    display: none;
  }
}

main .consulting-structure .consulting-heading-main {
  padding: 60px 0;
  max-width: 400px;
}

main .consulting-structure .regulation-main {
  padding: 100px 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main .consulting-structure .regulation-main .slider-container {
  position: relative;
}

main .consulting-structure .regulation-main .expert-consulting-main img {
  margin: auto;
}

main .consulting-structure .regulation-main .expert-consulting-heading {
  text-align: center;
  max-width: 320px;
  margin: auto;
}

main .consulting-structure .regulation-main .expert-consulting-heading h5 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 28px;
  color: var(--btn-primary);
}

main .consulting-structure .regulation-main .expert-consulting-heading p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: var(--btn-white);
}

main .consulting-structure .regulation-main .line-top::after {
  content: "";
  position: absolute;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  width: 115vw;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

main .consulting-structure .regulation-main .consulting-slider-one,
main .consulting-structure .regulation-main .consulting-slider-two {
  height: 200px;
}

@media screen and (max-width: 768px) {

  main .consulting-structure .regulation-main .consulting-slider-one,
  main .consulting-structure .regulation-main .consulting-slider-two {
    height: auto;
  }
}

main .exclusive-client-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
}

main .exclusive-client-main .exclusive-heading-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

main .exclusive-client-main .exclusive-heading-main h2 {
  max-width: 550px;
}

main .exclusive-client-main .exclusive-heading-main .desc {
  line-height: 1.1;
}

main .exclusive-client-main.show .desc-wrapper {
  max-height: 400px;
}

main .exclusive-client-main.show .desc {
  opacity: 1;
}

main .exclusive-client-main.show .exclusive-client-imgs>div:nth-child(1) {
  width: calc(50% - 10px);
}

main .exclusive-client-main.show .exclusive-client-imgs>div:nth-child(1) img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

main .exclusive-client-main.show .exclusive-client-imgs>div:nth-child(2) {
  width: calc(50% - 10px);
}

main .exclusive-client-main.show .exclusive-client-imgs>div:nth-child(2) img {
  margin-top: -100px;
  height: calc(100% + 100px);
  transition: 0.5s linear;
}

@media screen and (max-width: 768px) {
  main .exclusive-client-main.show .exclusive-client-imgs>div:nth-child(2) img {
    margin-top: -40px;
    height: calc(100% + 40px);
  }
}

main .exclusive-client-main .desc-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: 0.6s linear;
}

main .exclusive-client-main .desc {
  opacity: 0;
  transition: 0.5s linear;
  transition-delay: 0.6s;
}

main .exclusive-client-main .exclusive-client-imgs {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

main .exclusive-client-main .exclusive-client-imgs>div {
  transition: 0.5s linear;
}

main .exclusive-client-main .exclusive-client-imgs>div:nth-child(1) {
  width: calc(60% - 10px);
}

main .exclusive-client-main .exclusive-client-imgs>div:nth-child(1) img {
  width: 95%;
}

main .exclusive-client-main .exclusive-client-imgs>div:nth-child(2) {
  width: calc(40% - 10px);
}

main .exclusive-client-main .exclusive-client-imgs>div:nth-child(2) img {
  width: 95%;
  margin-inline-start: auto;
}

main .expert-main {
  background-color: rgb(244, 242, 232);
  position: relative;
  padding: 70px 0;
}

main .expert-main .expert-text-heading {
  max-width: 800px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

main .expert-main .Process__dotted-line--inner {
  background: rgba(22, 81, 83, 0.1019607843);
  width: 100%;
  height: 100%;
}

main .expert-main .exper-column-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px 0;
}

main .expert-main .exper-column-main .expert-text-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 270px;
  padding: 0 10px;
  position: relative;
}

main .expert-main .exper-column-main .expert-text-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: solid 3px rgba(22, 81, 83, 0.1);
}

main .expert-main .exper-column-main .expert-text-main .num-text span {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 26px;
  color: var(--btn-primary);
}

main .expert-main .exper-column-main .expert-text-main .num-text h4 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 26px;
  color: var(--btn-green);
}

main .expert-main .exper-column-main .expert-text-main .expert-desc p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(23, 29, 28, 0.6);
  margin-bottom: 0;
}

main .expert-main .expert-bg-line-main {
  position: relative;
  height: 32px;
  top: auto;
  left: auto;
  width: 100%;
  z-index: 1;
  margin-bottom: 70px;
}

main .expert-main .expert-bg-line-main .expert-bg {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

main .expert-main .expert-bg-line-main .expert-bg .expert-bg-line {
  background: rgba(22, 81, 83, 0.1);
  height: 6px;
  width: 100%;
  display: block;
  border-radius: 20px;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group {
  flex: 1;
  height: 100%;
  position: relative;
  mix-blend-mode: screen;
  z-index: 1;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group .expert-timeline-line {
  position: absolute;
  left: 0;
  transform: none;
  overflow: hidden;
  z-index: 9;
  height: 2px;
  width: 100%;
  transform: translateY(100%);
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group .expert-timeline-line .expert-timeline-line-inner {
  width: 100%;
  height: 100%;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group .expert-timeline-dot-group {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  z-index: 5;
  height: -moz-fit-content;
  height: fit-content;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group .expert-timeline-dot-group .expert-timeline-dot-line {
  height: 70px;
  border-left: 2px dashed rgba(22, 81, 83, 0.5);
  width: 2px;
  transition: opacity 0.3s ease-in-out;
}

main .expert-main .expert-bg-line-main .expert-timeline-inner .expert-line-group .expert-timeline-dot-group .expert-timeline-dot-title {
  font-family: var(--marcellus);
  font-weight: 600;
  font-size: 16px;
  color: var(--btn-green);
  padding-left: 5px;
  line-height: 1;
}

main .review-main {
  background-color: var(--btn-green);
  width: 100%;
  padding: 70px 0;
  overflow: hidden;
}

main .review-main .consulting-img-main {
  position: relative;
}

main .review-main .consulting-img-main .left {
  position: absolute;
  top: 0;
  left: 0;
}

main .review-main .consulting-img-main .left img {
  width: 100%;
  height: 100%;
}

main .review-main .consulting-img-main .right {
  position: absolute;
  top: 0;
  right: 0;
}

main .review-main .consulting-img-main .right img {
  width: 100%;
  height: 100%;
}

main .review-main .review-slider-main {
  border: solid 3px var(--btn-primary);
  padding: 60px;
}

main .review-main .review-slider-main .ReviewPagination {
  margin-top: 20px;
  text-align: center;
}

main .review-main .review-slider-main .ReviewPagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: rgba(205, 163, 88, 0.5);
  opacity: 1;
  transition: all 0.3s;
}

main .review-main .review-slider-main .ReviewPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.6);
  opacity: 1 !important;
  background: var(--btn-primary) !important;
}

main .review-main .review-slider-main .review-slider {
  max-width: 800px;
  margin: auto;
}

main .review-main .review-slider-main .review-slider h2,
main .review-main .review-slider-main .review-slider p {
  text-align: center;
}

main .review-main .review-slider-main .review-slider img {
  margin: auto;
}

main .review-main .review-slider-main .review-slider .review-name-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 15px;
}

main .review-main .review-slider-main .review-slider .review-name-main .name-main span {
  font-family: var(--marcellus);
  font-weight: 400;
  color: var(--btn-white);
  font-size: 24px;
}

main .review-main .review-slider-main .review-slider .review-name-main .name-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(224, 224, 224, 0.8);
  margin-bottom: 0;
}

main .team-dedicated-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

main .team-dedicated-main .blog-detail-right-one {
  position: absolute;
  right: 0;
  pointer-events: none;
  bottom: 9%;
  z-index: 1;
}

main .team-dedicated-main .home-right-one {
  position: absolute;
  right: 0;
  top: 45%;
}

main .team-dedicated-main .blog-detail-left-one {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

main .team-dedicated-main .blog-detail-left-one.leftOne {
  bottom: -5%;
}

main .team-dedicated-main img.blog-listing-left {
  position: absolute;
  left: 0;
  bottom: -80px;
}

main .team-dedicated-main .team-heading-main {
  max-width: 700px;
  margin: 0 auto 15px auto;
}

main .team-dedicated-main .team-card-main .team-card-body {
  position: relative;
  overflow: hidden;
}

main .team-dedicated-main .team-card-main .team-card-body:hover .social-icon-main {
  transform: translateY(0);
}

main .team-dedicated-main .team-card-main .team-card-body .social-icon-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s;
}

main .team-dedicated-main .team-card-main .team-card-body .social-icon-main a {
  background: rgba(255, 255, 255, 0.2);
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 10px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

main .team-dedicated-main .team-card-main .team-card-footer {
  text-align: center;
  padding-top: 10px;
}

main .team-dedicated-main .team-card-main .team-card-footer h5 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-green);
  margin-bottom: 0;
}

main .team-dedicated-main .team-card-main .team-card-footer p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(23, 29, 28, 0.6);
}

main .team-dedicated-main .success-storie-main {
  padding: 70px 0;
}

main .team-dedicated-main .success-storie-main .success-heading-main {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

main .team-dedicated-main .success-storie-main .success-card-main {
  margin-bottom: 20px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body {
  position: relative;
  overflow: hidden;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body:hover::before {
  content: "";
  background: linear-gradient(180deg, rgba(104, 131, 126, 0.7) 0%, rgba(23, 29, 28, 0.7) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body:hover .success-card-text-main {
  transform: translateY(0);
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-overlay::before {
  content: "";
  background: linear-gradient(180deg, rgba(23, 29, 28, 0) 0%, rgba(23, 29, 28, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-overlay>img {
  min-height: 550px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body img {
  width: 100%;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
  transform: translateY(55%);
  transition: all 0.3s;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main h3 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 30px;
  color: var(--btn-white);
  max-width: 500px;
  margin-bottom: 0;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .desc {
  font-size: 15px;
  line-height: 1.2;
  height: 180px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .desc::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .desc::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .desc::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .desc::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .bottom-border {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .success-text-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .success-text-img .success-text .text-percentage {
  display: flex;
  align-items: center;
  gap: 8px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .success-text-img .success-text .text-percentage h4 {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-white);
  margin-bottom: 0;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .success-text-img .success-text p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: var(--btn-white);
  margin-bottom: 0;
  text-transform: capitalize;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .chief-text-main {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 10px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .chief-text-main .george-img img {
  width: 48px !important;
  min-width: 100%;
  border-radius: 48px;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .chief-text-main .george-text h5 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 18px;
  color: var(--btn-white);
  margin-bottom: 0;
}

main .team-dedicated-main .success-storie-main .success-card-main .success-card-body .success-card-text-main .chief-text-main .george-text p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 12px;
  color: var(--btn-white);
  margin-bottom: 0;
}

main .team-dedicated-main .top-spacing {
  margin-top: 150px !important;
  position: relative;
  z-index: 1;
}

main .team-dedicated-main .explore-blog-main {
  position: relative;
  z-index: 1;
}

main .team-dedicated-main .explore-blog-main .blog-heading-button-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

main .team-dedicated-main .explore-blog-main .blog-text-img-main {
  margin-bottom: 40px;
}

main .team-dedicated-main .explore-blog-main .blog-text-img-main:last-child {
  margin-bottom: 0;
}

main .team-dedicated-main .explore-blog-main .blog-text-img-main:hover .custom-buttom {
  background-color: var(--btn-primary);
}

main .team-dedicated-main .explore-blog-main .blog-text-img-main:hover .custom-buttom svg path {
  stroke: var(--btn-white);
}

main .team-dedicated-main .explore-blog-main .date-img-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

main .team-dedicated-main .explore-blog-main .date-img-main .date-days {
  text-align: center;
  width: calc(30% - 20px);
}

main .team-dedicated-main .explore-blog-main .date-img-main .date-days h5 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 28px;
  color: var(--btn-primary);
  margin-bottom: 0;
}

main .team-dedicated-main .explore-blog-main .date-img-main .date-days span {
  font-family: var(--jost);
  font-weight: 500;
  font-size: 16px;
  color: rgba(23, 29, 28, 0.6);
}

main .team-dedicated-main .explore-blog-main .date-img-main .blog-img {
  width: calc(70% - 20px);
}

main .team-dedicated-main .explore-blog-main .date-img-main .blog-img img {
  width: 100%;
}

main .team-dedicated-main .explore-blog-main .blog-text-main h3 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 32px;
  font-weight: 400;
  color: var(--btn-green);
  text-transform: capitalize;
}

main .team-dedicated-main .explore-blog-main .blog-text-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(23, 29, 28, 0.6);
}

main .team-dedicated-main .explore-blog-main .blog-text-main .custom-buttom {
  padding: 9px;
}

main .team-dedicated-main .explore-blog-main .blog-button-main {
  text-align: center;
  margin: 70px 0;
}

/* ==========================================================================
   Modern Footer Styles
   ========================================================================== */

.footer-main {
    background-color: var(--btn-green);
    color: #fff;
    padding: 100px 0 0 0;
    overflow: hidden;
}

.footer-widget-title {
    font-family: var(--marcellus);
    font-size: 22px;
    font-weight: 400;
    color: var(--btn-primary);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--btn-primary);
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list li a {
    font-family: var(--jost);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--btn-primary);
    transform: translateX(8px);
}

/* Services Grid */
.footer-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    font-family: var(--jost);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 16px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.service-tag:hover {
    background: var(--btn-primary);
    border-color: var(--btn-primary);
    color: var(--btn-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(205, 163, 88, 0.2);
}

/* Newsletter Box */
.newsletter-input-group {
    position: relative;
    display: flex;
}

.newsletter-input-group .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 60px 15px 20px;
    color: #fff;
    font-family: var(--jost);
}

.newsletter-input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--btn-primary);
    box-shadow: none;
}

.newsletter-input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: var(--btn-primary);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #fff;
    transform: scale(0.95);
}

.btn-newsletter img {
    width: 20px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(42%) contrast(150%) saturate(453%) hue-rotate(133deg) brightness(92%);
}

/* Newsletter Checkbox Custom Styling */
.footer-newsletter-box .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.footer-newsletter-box .form-check-input:checked {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
}

.footer-newsletter-box .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(205, 163, 88, 0.25);
    border-color: var(--btn-primary);
}

.footer-newsletter-box .form-check-label a:hover {
    color: var(--btn-primary) !important;
}

/* Footer Error Styling */
.newsletter-input-group.error .form-control {
    border-color: #ff4d4d !important;
}

.error-txt {
    color: #ff4d4d;
    font-size: 12px;
    font-family: var(--jost);
    margin-top: 5px;
    display: block;
}

.newsletter-input-group .error-txt {
    position: absolute;
    bottom: -22px;
    left: 0;
}

/* Community Box Styles */
.community-title {
    font-family: var(--marcellus);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

/* Community Button */
.community-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--btn-primary);
    color: var(--btn-primary);
    padding: 14px 30px;
    border-radius: 12px;
    font-family: var(--jost);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background: var(--btn-primary);
    color: var(--btn-green);
    box-shadow: 0 10px 20px rgba(205, 163, 88, 0.15);
}

.community-btn svg {
    transition: transform 0.3s ease;
}

.community-btn:hover svg {
    transform: translate(3px, -3px);
}

/* Marquee Section */
.footer-marquee-container {
    background: transparent;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-text {
    font-family: var(--marcellus);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    padding: 0 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Footer Bottom Row */
.footer-bottom-row {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--btn-primary);
    border-color: var(--btn-primary);
    transform: translateY(-5px);
}

.social-icon img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.social-icon:hover img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(42%) contrast(150%) saturate(453%) hue-rotate(133deg) brightness(92%);
}

.copyright-text, .developed-by {
    font-family: var(--jost);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-text a:hover {
    color: var(--btn-primary);
}

@media (max-width: 991px) {
    .footer-main { padding-top: 60px; }
    .footer-widget { margin-bottom: 40px; }
    .marquee-text { font-size: 60px; }
    .footer-bottom-row { text-align: center; }
    .footer-socials { justify-content: center; margin-bottom: 25px; }
}

main .simplify-taxation-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
}

main .simplify-taxation-main .simplify-heading-main {
  margin-bottom: 50px;
}

main .simplify-taxation-main .simplify-img-main {
  position: relative;
}

main .simplify-taxation-main .simplify-img-main img {
  width: 100%;
  height: 490px;
  -o-object-fit: cover;
  object-fit: cover;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(244, 242, 232);
  max-width: 680px;
  padding: 0 25px 25px 0;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg .simplify-text-main {
  border: solid 2px var(--btn-primary);
  padding: 24px;
  outline: 1px solid rgba(16, 16, 16, 0.1019607843);
  outline-offset: -5px;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg .simplify-text-main h4 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-primary);
}

main .simplify-taxation-main .simplify-img-main .simplify-bg .simplify-text-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
  margin-bottom: 0;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg-second {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgb(244, 242, 232);
  max-width: 680px;
  padding: 25px 0 0 25px;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg-second .simplify-text-main {
  border: solid 2px var(--btn-primary);
  padding: 24px;
  outline: 1px solid rgba(16, 16, 16, 0.1019607843);
  outline-offset: -5px;
}

main .simplify-taxation-main .simplify-img-main .simplify-bg-second .simplify-text-main h4 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-primary);
}

main .simplify-taxation-main .simplify-img-main .simplify-bg-second .simplify-text-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
  margin-bottom: 0;
}

main .simplify-taxation-main .simplify-count-main {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgba(22, 81, 83, 0.1);
  padding: 20px 100px;
  gap: 10px 0;
}

main .simplify-taxation-main .simplify-count-main .states-count {
  text-align: center;
}

main .simplify-taxation-main .simplify-count-main .states-count h4 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 32px;
  color: var(--btn-green);
  margin-bottom: 0;
}

main .simplify-taxation-main .simplify-count-main .states-count span {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--btn-primary);
}

main .journey-growth-main {
  position: relative;
  background-color: var(--btn-green);
  width: 100%;
  overflow: hidden;
}

main .journey-growth-main .left {
  position: absolute;
  top: -30%;
  left: 0;
  pointer-events: none;
}

main .journey-growth-main .left img {
  width: 100%;
  height: 100%;
}

main .journey-growth-main .right {
  position: absolute;
  top: -30%;
  right: 0;
  pointer-events: none;
}

main .journey-growth-main .right img {
  width: 100%;
  height: 100%;
}

main .journey-growth-main .journey-growth-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 70px 0;
}

main .journey-growth-main .journey-slider-main {
  padding-bottom: 50px !important;
}

main .journey-growth-main .journey-slider-main .journey-wrapper {
  flex-wrap: nowrap;
}

main .journey-growth-main .journey-slider-main .journey-wrapper .journey-slide {
  padding: 0;
}

main .journey-growth-main .journey-slider-main .journey-img-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin: auto;
  position: relative;
}

main .journey-growth-main .journey-slider-main .journey-img-text img {
  margin: 0 auto 0 auto;
}

main .journey-growth-main .journey-slider-main .journey-img-text h3 {
  margin-top: 20px;
}

main .journey-growth-main .journey-slider-main .journey-img-text p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 14px;
  color: rgba(240, 240, 240, 0.8);
  margin-bottom: 0;
}

main .journey-growth-main .journey-slider-main .journey-img-text .hr {
  position: relative;
}

main .journey-growth-main .journey-slider-main .journey-img-text .hr::before {
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border: solid 1px rgba(255, 255, 255, 0.2);
}

main .journey-growth-main .journey-slider-main .journey-img-text .journey-height {
  position: relative;
  height: 150px;
  max-width: 300px;
  margin: 30px auto;
}

main .journey-growth-main .journey-slider-main .journey-img-text .journey-height:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

main .journey-growth-main .journey-slider-main .journey-img-text .journey-height:nth-child(1)::before {
  content: "";
  border-left: solid 2px rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -40px;
  left: 50%;
  height: 20px;
  display: block;
}

main .journey-growth-main .journey-slider-main .journey-img-text .journey-height:nth-child(3)::before {
  content: "";
  border-left: solid 2px rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -38px;
  left: 50%;
  height: 20px;
  display: block;
}

main .journey-growth-main .journey-slider-main .journey-img-text .journey-height.journey-border {
  position: relative;
}

main .journey-growth-main .journey-slider-main .journey-slide:first-child .journey-img-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 70px;
  transform: translateY(-50%);
  border-left: solid 2px rgba(255, 255, 255, 0.2);
}

main .journey-growth-main .journey-slider-main .journey-slide:last-child .journey-img-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 70px;
  transform: translateY(-50%);
  border-left: solid 2px rgba(255, 255, 255, 0.2);
}

main .journey-growth-main .journey-slider-main .journey-slide:nth-child(even) .journey-height:nth-child(1)::before {
  display: none;
}

main .journey-growth-main .journey-slider-main .journey-slide:nth-child(odd) .journey-height:nth-child(3)::before {
  display: none;
}

main .blog-detail-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

main .navigat-main {
  background-color: rgb(244, 242, 232);
  padding-top: 70px;
  position: relative;
  z-index: 0;
}

main .navigat-main .blog-detail-left {
  position: absolute;
  left: 0;
  bottom: 30%;
}

main .navigat-main .navigat-heading-main {
  margin-top: 150px;
  margin-bottom: 25px;
  text-align: center;
}

main .navigat-main .blog-detail-main {
  position: relative;
  z-index: 10;
}

main .navigat-main .blog-detail-main img {
  width: 100%;
  margin-bottom: 20px;
}

main .navigat-main .blog-detail-main h1,
main .navigat-main .blog-detail-main h2,
main .navigat-main .blog-detail-main h3,
main .navigat-main .blog-detail-main h4,
main .navigat-main .blog-detail-main h5,
main .navigat-main .blog-detail-main h6 {
  font-family: var(--marcellus);
  font-weight: 400;
  margin-top: 30px;
  color: var(--btn-green);
}

main .navigat-main .blog-detail-main h1 {
  font-size: clamp(26px, 3vw, 38px);
}

main .navigat-main .blog-detail-main h2 {
  font-size: clamp(24px, 3vw, 36px);
}

main .navigat-main .blog-detail-main h3 {
  font-size: clamp(22px, 3vw, 34px);
}

main .navigat-main .blog-detail-main h4 {
  font-size: clamp(20px, 3vw, 32px);
}

main .navigat-main .blog-detail-main h5 {
  font-size: clamp(18px, 2vw, 30px);
}

main .navigat-main .blog-detail-main h6 {
  font-size: clamp(16px, 2vw, 28px);
}

main .navigat-main .blog-detail-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
  color: rgba(16, 16, 16, 0.6);
}

main .navigat-main .blog-detail-main b {
  font-weight: 500;
}

main .navigat-main .blog-detail-main span {
  font-weight: 500;
}

main .navigat-main .blog-detail-main p a {
  color: rgba(16, 16, 16, 0.6);
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 500;
  text-decoration-thickness: 1px;
}

main .navigat-main .blog-detail-main ol li {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
}

main .navigat-main .blog-detail-main ul li {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
}

main .terms-condition-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

main .terms-condition-main .terms-heading-main {
  margin-top: 150px;
  margin-bottom: 40px;
}

main .terms-condition-main .terms-heading-main p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
}

main .terms-condition-main .terms-condition-detail-main .terms-condition-text {
  margin-bottom: 40px;
}

main .terms-condition-main .terms-condition-detail-main .terms-condition-text h3 {
  font-family: var(--marcellus);
  font-weight: 400;
  font-size: 24px;
  color: var(--btn-green);
}

main .terms-condition-main .terms-condition-detail-main .terms-condition-text p {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
}

main .terms-condition-main .terms-condition-detail-main .terms-condition-text ol li {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
}

main .terms-condition-main img.blog-listing-left {
  position: absolute;
  left: 0;
  bottom: -80px;
}

main .faqs-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

main .faqs-main .bg-faqs-main {
  background-image: url("../images/faqs-right-bg-img.png");
  background-repeat: no-repeat;
}

main .faqs-main .faqs-heading-main {
  margin-top: 150px;
  margin-bottom: 20px;
  text-align: center;
}

main .faqs-main .collapse-parent {
  border: 2px solid var(--btn-primary);
  margin-bottom: 20px;
  transition: all 0.3s;
  outline: 2px solid rgba(16, 16, 16, 0.1019607843);
  outline-offset: -4px;
}

main .faqs-main .collapse-parent a {
  padding: 15px;
  display: block;
  color: var(--btn-green);
  font-size: 18px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--jost);
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s;
}

main .faqs-main .collapse-parent a span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

main .faqs-main .collapse-parent a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 1px;
  height: 12px;
  background-color: var(--btn-green);
  transition: 0.3s;
}

main .faqs-main .collapse-parent a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 12px;
  background-color: var(--btn-green);
  transition: 0.3s all;
}

main .faqs-main .collapse-parent .collapse-body {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  padding: 0 15px 15px 15px;
  color: rgba(16, 16, 16, 0.6);
}

main .faqs-main .collapse-parent.active {
  background-color: rgb(244, 242, 232);
  transition: all 0.3s;
}

main .faqs-main .collapse-parent.active a {
  color: var(--btn-primary);
}

main .faqs-main .collapse-parent.active a span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

main .contact-main {
  background-color: rgb(244, 242, 232);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

main .contact-main .contact-right {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}

main .contact-main .contact-left {
  position: absolute;
  left: 0;
  top: 10%;
  pointer-events: none;
}

main .contact-main .contact-heading-main {
  margin-top: 150px;
  margin-bottom: 30px;
  text-align: center;
}

main .contact-main .contact-heading-main p {
  font-family: var(--jost);
  font-size: 16px;
  font-weight: 400;
  color: rgba(16, 16, 16, 0.6);
}

main .contact-main .form-main .contact-input {
  border: solid 1px var(--btn-primary);
  outline: 1px solid rgba(16, 16, 16, 0.1019607843);
  outline-offset: -4px;
  padding: 12px 18px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

main .contact-main .form-main .contact-input.show {
  background-color: #fff;
}

main .contact-main .form-main .contact-input.show .input .select-main .select-head span {
  color: var(--btn-primary);
}

main .contact-main .form-main .contact-input label {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--btn-green);
}

main .contact-main .form-main .contact-input .input {
  margin-bottom: 0 !important;
}

main .contact-main .form-main .contact-input .input .select-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

main .contact-main .form-main .contact-input .input .select-main .select-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main .contact-main .form-main .contact-input .input .select-main .select-head span {
  font-family: var(--jost);
  font-size: 16px;
  font-weight: 400;
  color: rgba(16, 16, 16, 0.4);
}

main .contact-main .form-main .contact-input .input .select-main .select-body label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--btn-green);
  padding: 5px 0;
}

main .contact-main .form-main .contact-input .input .select-main .select-body label input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px;
  height: 16px;
  border: 2px solid var(--btn-primary);
  padding: 5px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  border-radius: 25px;
}

main .contact-main .form-main .contact-input .input .select-main .select-body label input[type=checkbox]::before {
  content: "";
  width: 8px;
  height: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--btn-primary);
  box-shadow: inset 1em 1em var(--btn-primary);
  border-radius: 25px;
}

main .contact-main .form-main .contact-input .input .select-main .select-body label input[type=checkbox]:checked::before {
  transform: scale(1);
}

main .contact-main .form-main .contact-input .input .error input {
  border: 1px solid red !important;
}

main .contact-main .form-main .contact-input .input .error .select.select2 {
  border: 1px solid red !important;
}

main .contact-main .form-main .contact-input .input .error textarea {
  border: 1px solid red !important;
}

main .contact-main .form-main .contact-input .input .error-txt {
  display: block;
  width: 100%;
  color: red;
  font-size: 12px;
  font-family: var(--jost);
}

main .contact-main .form-main .contact-input .input input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--jost);
  color: rgba(16, 16, 16, 0.4);
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
}

main .contact-main .form-main .contact-input .input input::-moz-placeholder {
  color: rgba(16, 16, 16, 0.4);
  opacity: 1;
  /* Firefox */
}

main .contact-main .form-main .contact-input .input input::placeholder {
  color: rgba(16, 16, 16, 0.4);
  opacity: 1;
  /* Firefox */
}

main .contact-main .form-main .contact-input .input input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(16, 16, 16, 0.4);
}

main .contact-main .form-main .contact-input .input select.select2 {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: var(--jost);
  color: rgba(16, 16, 16, 0.4);
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
}

main .contact-main .form-main .contact-input .input textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--jost);
  color: rgba(16, 16, 16, 0.4);
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
}

main .contact-main .form-main .contact-input .input textarea::-moz-placeholder {
  color: rgba(16, 16, 16, 0.4);
  opacity: 1;
  /* Firefox */
}

main .contact-main .form-main .contact-input .input textarea::placeholder {
  color: rgba(16, 16, 16, 0.4);
  opacity: 1;
  /* Firefox */
}

main .contact-main .form-main .contact-input .input textarea::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(16, 16, 16, 0.4);
}

main .contact-main .form-main .input {
  margin-bottom: 20px;
}

main .contact-main .form-main .input .iti__selected-flag {
  background-color: transparent;
}

main .contact-main .form-main .input .iti {
  width: 100%;
}

main .contact-main .contact-map-main {
  margin-top: 80px;
}

main .contact-main .form-text-main {
  margin-top: 50px;
  text-align: center;
}

main .contact-main .form-text-main span {
  font-family: var(--jost);
  font-weight: 500;
  font-size: 16px;
  color: var(--btn-green);
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

main .contact-main .form-text-main span::after {
  content: "";
  flex: 1;
  border-top: solid 1px rgba(16, 16, 16, 0.1);
}

main .contact-main .form-text-main span::before {
  content: "";
  flex: 1;
  border-top: solid 1px rgba(16, 16, 16, 0.1);
}

main .contact-main .form-text-main .form-email-num {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

main .contact-main .form-text-main .form-email-num a {
  font-family: var(--jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--btn-green);
  border: solid 1px var(--btn-primary);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

main .contact-main .form-text-main .form-email-num a:hover {
  background-color: var(--btn-green);
  color: var(--btn-white);
  text-decoration: underline;
}

main .calendly-main {
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

main .calendly-main .calendly-head {
  margin-top: 150px;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  main .consulting-structure .consulting-heading-main {
    padding: 22px 0;
    max-width: 100%;
  }

  main .consulting-structure .right-line {
    height: 100%;
    padding-left: 55px;
  }

  main .consulting-structure .consulting-tab-main {
    max-width: 100%;
  }

  main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link {
    gap: 5px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  main .consulting-main .consulting-structure {
    padding: 50px 0;
  }

  main .consulting-main .consulting-structure .row1,
  main .consulting-main .consulting-structure .row2 {
    flex-wrap: wrap;
    row-gap: 25px;
  }

  main .consulting-main .consulting-structure .consulting-heading-main {
    padding-top: 0 !important;
  }

  main .consulting-main .consulting-structure .regulation-main {
    height: 100%;
    padding: 0px 25px;
  }

  main .consulting-main .consulting-structure .regulation-main .line-top::after {
    content: none;
  }

  main .consulting-main .consulting-structure .regulation-main .expert-consulting-main {
    width: 100%;
    margin: 0 auto;
  }

  main .consulting-main .consulting-structure .regulation-main .expert-consulting-main img {
    width: 100%;
  }

  main .consulting-main .consulting-structure .regulation-main .expert-consulting-heading {
    max-width: 100%;
  }

  main .consulting-main .consulting-structure .regulation-main .expert-consulting-heading h5 {
    font-size: 24px;
  }

  main .consulting-main .consulting-structure .regulation-main .expert-consulting-heading p {
    margin-bottom: 0;
  }

  main .consulting-main .right-bg-image {
    z-index: -1;
  }
}

@media only screen and (max-width: 767px) {
  main .home-banner header .header-top {
    justify-content: center;
  }

  main .home-banner header .header-top .left span {
    color: var(--btn-primary);
  }

  main .home-banner header .header-top .left span a {
    color: #000;
  }

  main .home-banner header .header-top .left {
    justify-content: center;
  }

  main .home-banner header .right a {
    border: solid 1px var(--btn-primary);
    border-radius: 25px;
    padding: 7px;
    background: var(--btn-primary);
  }

  .header-mobile-responsive {
    display: block !important;
  }

  .header-mobile-responsive .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }

  .off-custom-body ul {
    padding-left: 0;
    list-style: none;
    border: solid 1px #eee;
  }

  .off-custom-body ul li {
    border-bottom: solid 1px #eee;
  }

  .off-custom-body ul li:last-child {
    border-bottom: none;
  }

  .off-custom-body ul li a {
    font-family: var(--jost);
    font-weight: 400;
    font-size: 16px;
    color: var(--btn-primary);
    padding: 10px 10px;
    display: block;
  }

  .custom-accordion .accordion-button,
  .collapsed {
    padding: 12px 10px;
    display: flex;
  }

  .custom-accordion .accordion-item {
    border: 0;
  }

  .custom-accordion .accordion-button:not(.collapsed) {
    color: var(--btn-primary);
    box-shadow: 0px 1px 0px #eee;
    background-color: transparent;
    padding-bottom: 10px;
  }

  .custom-accordion .accordion-body {
    border-top: solid 1px #eee;
    padding: 0;
  }

  .custom-accordion .accordion-body .menu-dropdown a {
    display: block;
    border-bottom: solid 1px #eee;
    padding-left: 25px;
  }

  .custom-accordion .accordion-body .menu-dropdown a:last-child {
    border-bottom: 0;
  }

  .custom-accordion .accordion-button::after {
    background-image: url("../images/yellow-down-arrow.svg");
  }

  .container.deskstop {
    display: none;
  }

  video {
    max-width: 100%;
    height: 100vh;
    display: block;
  }

  .primary-title {
    font-size: 30px;
  }

  .desc {
    font-size: 14px;
  }

  .custom-buttom {
    font-size: 14px;
    padding: 8px 15px !important;
  }

  .consulting-heading-main img {
    width: 50px;
    margin-bottom: 10px;
  }

  .consulting-structure .right-line {
    padding-left: 20px !important;
  }

  .review-main .review-slider-main {
    padding: 20px 10px !important;
  }

  .name-main span {
    font-size: 20px !important;
  }

  .name-main p {
    font-size: 12px !important;
  }

  .team-card-body img {
    width: 100%;
  }

  .team-card-body {
    position: relative;
    overflow: hidden;
  }

  .team-card-body .social-icon-main {
    transform: translateY(0) !important;
  }

  .success-card-text-main {
    padding: 15px !important;
  }

  .success-card-text-main h3 {
    font-size: 22px !important;
  }

  .text-percentage h4 {
    font-size: 18px;
  }

  .success-text p {
    font-size: 12px !important;
  }

  .success-text-img {
    padding-bottom: 15px !important;
  }

  .success-logo img {
    width: 55px !important;
  }

  .success-card-text-main .bottom-border {
    margin: 10px 0 !important;
  }

  .text-percentage h4 {
    font-size: 18px !important;
  }

  img.success-story-image {
    min-height: 550px;
  }

  .success-card-body {
    position: relative;
    overflow: hidden;
  }

  .success-card-body::before {
    content: "";
    background: linear-gradient(180deg, rgba(104, 131, 126, 0.7) 0%, rgba(23, 29, 28, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
  }

  .success-card-body .success-card-text-main {
    transform: translateY(0) !important;
  }

  .george-text h5 {
    font-size: 16px !important;
  }

  .explore-blog-main .date-img-main .blog-img {
    flex: unset !important;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main {
    gap: 10px;
    justify-content: center;
  }

  main .team-dedicated-main .explore-blog-main .blog-text-main h3 {
    font-size: 24px;
    margin-top: 10px;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .date-days h5 {
    font-size: 20px;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .date-days span {
    font-size: 14px;
  }

  .custom-buttom.sm {
    padding: 8px 10px !important;
  }

  main .exclusive-client-main .exclusive-heading-main {
    margin-bottom: 20px;
  }

  .footer-news-letter-main {
    margin-top: 30px;
  }

  main .consulting-structure .consulting-tab-main .nav-link.custom-nav-link {
    font-size: 14px;
  }

  main .consulting-structure .regulation-main {
    padding: 50px 0;
  }

  main .expert-main .expert-bg-line-main {
    display: none;
  }

  main .expert-main .exper-column-main {
    gap: 30px;
  }

  main .expert-main .exper-column-main .expert-text-main {
    flex: unset;
    height: auto;
    gap: 10px;
  }

  main .expert-main .exper-column-main .expert-text-main::before {
    position: unset;
  }

  .expert-text-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  main .exclusive-client-main {
    padding-bottom: 0;
  }

  main .expert-main {
    padding-bottom: 40px;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg {
    position: unset;
    padding: 0 0 25px 0;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg-second {
    position: unset;
    padding: 25px 0 0 0;
  }

  .simplify-bg .simplify-text-main,
  .simplify-bg-second .simplify-text-main {
    padding: 15px !important;
  }

  main .simplify-taxation-main .simplify-count-main {
    justify-content: center;
    gap: 40px;
    padding: 30px 30px;
  }

  main .team-dedicated-main .top-spacing {
    margin-top: 30px !important;
  }

  main .team-dedicated-main .explore-blog-main .blog-button-main {
    margin: 0;
  }

  main .navigat-main .navigat-heading-main {
    margin-top: 40px;
  }

  main img.blog-listing-right {
    display: none;
  }

  main .navigat-main .blog-detail-main h3 {
    font-size: 26px;
  }

  main .navigat-main .blog-detail-main ol li {
    font-size: 14px;
  }

  main .navigat-main .blog-detail-main p {
    font-size: 14px;
  }

  main .navigat-main .blog-detail-main ul li {
    font-size: 14px;
  }

  main .team-dedicated-main .explore-blog-main .blog-heading-button-main {
    justify-content: center;
  }

  main .terms-condition-main .terms-heading-main {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  main .terms-condition-main .terms-heading-main p {
    font-size: 14px;
  }

  main .terms-condition-main .terms-condition-detail-main .terms-condition-text h3 {
    font-size: 22px;
  }

  main .terms-condition-main .terms-condition-detail-main .terms-condition-text p {
    font-size: 14px;
  }

  main .terms-condition-main .terms-condition-detail-main .terms-condition-text ol li {
    font-size: 14px;
  }

  main .terms-condition-main img.blog-listing-left {
    display: none;
  }

  main .terms-condition-main {
    padding-bottom: 20px;
  }

  main .terms-condition-main .terms-condition-detail-main .terms-condition-text {
    margin-bottom: 20px;
  }

  main .faqs-main .faqs-heading-main {
    margin-top: 30px;
  }

  main img.blog-listing-left {
    display: none;
  }

  main .conatct-main .contact-heading-main {
    margin-top: 30px;
    margin-bottom: 25px;
  }

  main .conatct-main .contact-heading-main p {
    font-size: 14px;
  }

  main .conatct-main .form-text-main span {
    position: unset;
  }

  main .conatct-main .form-text-main span::before {
    content: none;
  }

  main .conatct-main .form-text-main span::after {
    content: none;
  }

  main .navigat-main .blog-detail-main {
    z-index: 0;
  }

  main .navigat-main .blog-detail-left {
    display: none;
  }

  main .blog-detail-right {
    display: none;
  }

  main .team-dedicated-main .blog-detail-right-one {
    display: none;
  }

  main .team-dedicated-main .blog-detail-left-one {
    display: none;
  }

  main .team-dedicated-main .explore-blog-main {
    padding-top: 30px;
  }

  main .contact-main .contact-right {
    display: none;
  }

  main .contact-main .contact-left {
    display: none;
  }

  main .contact-main .contact-heading-main {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  main .contact-main .contact-heading-main p {
    font-size: 14px;
  }

  main .terms-condition-main img.blog-listing-left {
    display: none;
  }

  main .expert-main .expert-text-heading {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 992px) {
  main .home-banner header .header-top {
    justify-content: center;
  }

  main .home-banner header .header-top .left span {
    color: var(--btn-primary);
  }

  main .home-banner header .header-top .left span a {
    color: #000;
  }

  main .home-banner header .header-top .left {
    justify-content: center;
  }

  main .home-banner header .right a {
    border: solid 1px var(--btn-primary);
    border-radius: 25px;
    padding: 7px;
    background: var(--btn-primary);
  }

  .header-mobile-responsive {
    display: block !important;
  }

  .header-mobile-responsive .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }

  .off-custom-body ul {
    padding-left: 0;
    list-style: none;
    border: solid 1px #eee;
  }

  .off-custom-body ul li {
    border-bottom: solid 1px #eee;
  }

  .off-custom-body ul li .accordion-header {
    cursor: pointer;
  }

  .off-custom-body ul li:last-child {
    border-bottom: none;
  }

  .off-custom-body ul li a {
    font-family: var(--jost);
    font-weight: 400;
    font-size: 16px;
    color: var(--btn-primary);
    padding: 10px 10px;
    display: block;
  }

  .custom-accordion .accordion-button,
  .collapsed {
    padding: 12px 10px;
    display: flex;
  }

  .custom-accordion .accordion-item {
    border: 0;
  }

  .custom-accordion .accordion-button:not(.collapsed) {
    color: var(--btn-primary);
    box-shadow: 0px 1px 0px #eee;
    background-color: transparent;
    padding-bottom: 10px;
  }

  .custom-accordion .accordion-body {
    border-top: solid 1px #eee;
    padding: 0;
  }

  .custom-accordion .accordion-body .menu-dropdown a {
    display: block;
    border-bottom: solid 1px #eee;
    color: var(--btn-green);
    padding-left: 25px;
  }

  .custom-accordion .accordion-body .menu-dropdown a:last-child {
    border-bottom: 0;
  }

  .custom-accordion .accordion-button::after {
    background-image: url("../images/yellow-down-arrow.svg");
  }

  .container.deskstop {
    display: none;
  }

  video {
    max-width: 100%;
    height: 100vh;
    display: block;
  }

  .primary-title {
    font-size: 32px;
  }

  .desc {
    font-size: 14px;
  }

  .custom-buttom {
    font-size: 14px;
    padding: 8px 15px !important;
  }

  .consulting-heading-main {
    padding: 60px 0 !important;
  }

  .consulting-heading-main img {
    width: 50px;
    margin-bottom: 10px;
  }

  .consulting-structure .right-line {
    padding-left: 20px !important;
  }

  .review-main .review-slider-main {
    padding: 20px 10px !important;
  }

  .name-main span {
    font-size: 20px !important;
  }

  .name-main p {
    font-size: 12px !important;
  }

  .team-card-body img {
    width: 100%;
  }

  .team-card-body {
    position: relative;
    overflow: hidden;
  }

  .team-card-body .social-icon-main {
    transform: translateY(0) !important;
  }

  .success-card-text-main {
    padding: 15px !important;
  }

  .success-card-text-main h3 {
    font-size: 22px !important;
  }

  .text-percentage h4 {
    font-size: 18px;
  }

  .success-text p {
    font-size: 12px !important;
  }

  .success-text-img {
    padding-bottom: 15px !important;
  }

  .success-logo img {
    width: 55px !important;
  }

  .success-card-text-main .bottom-border {
    margin: 10px 0 !important;
  }

  .text-percentage h4 {
    font-size: 18px !important;
  }

  img.success-story-image {
    min-height: 550px;
  }

  .success-card-body {
    position: relative;
    overflow: hidden;
  }

  .success-card-body::before {
    content: "";
    background: linear-gradient(180deg, rgba(104, 131, 126, 0.7) 0%, rgba(23, 29, 28, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
  }

  .success-card-body .success-card-text-main {
    transform: translateY(0) !important;
  }

  .george-text h5 {
    font-size: 16px !important;
  }

  .explore-blog-main .date-img-main .blog-img {
    flex: unset !important;
    width: 100%;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main {
    gap: 10px;
    justify-content: center;
  }

  main .team-dedicated-main .explore-blog-main .blog-text-main h3 {
    font-size: 24px;
    margin-top: 10px;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .date-days h5 {
    font-size: 20px;
  }

  main .team-dedicated-main .home-right-one {
    display: none;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .date-days span {
    font-size: 14px;
  }

  .custom-buttom.sm {
    padding: 8px 10px !important;
  }

  main .footer-main {
    padding: 50px 0 30px 0;
  }

  main .footer-main .footer-link-main {
    margin-bottom: 20px;
  }

  main .footer-main .footer-link-main a {
    font-size: 32px;
  }

  main .footer-main .footer-news-letter-main .input-checkbox-main span {
    font-size: 12px;
  }

  main .footer-main .footer-icon-main {
    gap: 10px;
    text-align: center;
    justify-content: center;
  }

  main .exclusive-client-main .exclusive-heading-main {
    margin-bottom: 60px !important;
  }

  main .expert-main .expert-bg-line-main {
    display: none;
  }

  main .expert-main .exper-column-main {
    gap: 30px;
  }

  main .expert-main .exper-column-main .expert-text-main {
    flex: unset;
    height: auto;
    gap: 10px;
  }

  main .expert-main .exper-column-main .expert-text-main::before {
    position: unset;
  }

  .footer-news-letter-main {
    margin-top: 30px;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg {
    position: unset;
    padding: 0 0 25px 0;
    max-width: none;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg-second {
    position: unset;
    padding: 25px 0 0 0;
    max-width: none;
  }

  main .simplify-taxation-main .simplify-count-main .states-count {
    text-align: center;
    width: 50%;
    margin-bottom: 10px;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg .simplify-text-main p {
    font-size: 14px;
  }

  main .simplify-taxation-main .simplify-img-main .simplify-bg-second .simplify-text-main p {
    font-size: 14px;
  }

  main .expert-main {
    padding: 15px 0;
  }

  main .navigat-main .navigat-heading-main {
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
  }

  main .conatct-main .contact-heading-main {
    margin-top: 30px;
  }

  main .conatct-main .contact-heading-main p {
    font-size: 14px;
  }

  main .conatct-main .form-text-main span {
    position: unset;
  }

  main .conatct-main .form-text-main span::before {
    content: none;
  }

  main .conatct-main .form-text-main span::after {
    content: none;
  }

  main .navigat-main .blog-detail-main {
    z-index: 0;
  }

  main .navigat-main .blog-detail-left {
    display: none;
  }

  main .blog-detail-right {
    display: none;
  }

  main .team-dedicated-main .blog-detail-right-one {
    display: none;
  }

  main .team-dedicated-main .blog-detail-left-one {
    display: none;
  }

  main .team-dedicated-main .explore-blog-main {
    padding-top: 30px;
  }

  main .navigat-main .blog-detail-main p {
    font-size: 14px;
  }

  main .navigat-main .blog-detail-main h3 {
    font-size: 28px;
  }

  main .navigat-main .blog-detail-main ol li {
    font-size: 14px;
  }

  main .navigat-main .blog-detail-main ul li {
    font-size: 14px;
  }

  main .team-dedicated-main img.blog-listing-left {
    display: none;
  }

  main img.blog-listing-right {
    display: none;
  }

  main .team-dedicated-main .explore-blog-main .blog-button-main {
    margin: 10px 0 0 0;
  }

  main .contact-main .contact-right {
    display: none;
  }

  main .contact-main .contact-left {
    display: none;
  }

  main .contact-main .contact-heading-main {
    margin-top: 50px;
  }

  main .contact-main .contact-heading-main p {
    font-size: 14px;
  }

  main .terms-condition-main img.blog-listing-left {
    display: none;
  }

  main img.blog-listing-left {
    display: none;
  }

  main .faqs-main .faqs-heading-main {
    margin-top: 50px;
  }

  main .faqs-main .collapse-parent .collapse-body {
    font-size: 14px;
  }

  main .consulting-structure .row1 .col-12:nth-child(even) .expert-consulting-main::after {
    display: none;
  }

  main .consulting-structure .row2 .col-12:nth-child(odd) {
    padding-top: 0;
  }

  .overview-main:before {
    display: none;
  }
}

/* breadcrumb style start */
.breadcrumb {
  gap: 16px;
  color: rgba(255, 255, 255, 0.5019607843);
}

.breadcrumb.slash {
  gap: 16px;
  color: rgba(205, 163, 88, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5019607843);
  font-family: var(--jost);
  font-size: 18px;
  font-weight: 500;
  color: rgba(205, 163, 88, 0.5);
}

.custom-breadcrumb-main .breadcrumb a {
  color: rgba(205, 163, 88, 0.5);
  font-family: var(--jost);
  font-size: 18px;
  font-weight: 500;
}

.custom-breadcrumb-main .breadcrumb span {
  color: #CDA358;
  font-family: var(--jost);
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb span {
  color: #CDA358;
  font-family: var(--jost);
  font-size: 18px;
}

.faqs-heading-main p,
.faqs-bottom p {
  color: rgba(16, 16, 16, 0.6);
}

.faqs-bottom a {
  color: rgba(16, 16, 16, 0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* breadcrumb style close */
/* overview-main style start */
.overview-main {
  position: relative;
  background-color: rgb(244, 242, 232);
  padding: 70px 0;
  overflow: hidden;
}

.overview-main h2 {
  max-width: 920px;
}

.overview-main p {
  color: rgba(16, 16, 16, 0.6);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--jost);
  margin-top: 10px;
  max-width: 850px;
}

.overview-box-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
}

.overview-box {
  border: 1px solid #CDA358;
  padding: 28px 20px;
  max-width: 300px;
}

.overview-box h3 {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 400;
  font-family: var(--marcellus);
  color: var(--btn-green);
  margin-top: 100px;
}

.overview-box p {
  margin: 0px !important;
  color: rgba(23, 29, 28, 0.6);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--jost);
  line-height: 13px;
}

.overview-main:before {
  position: absolute;
  content: "";
  background: url("../images/overview-back.png");
  width: 100%;
  height: 100%;
  top: -50%;
  left: 0;
  z-index: 9;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .overview-box-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .overview-box {
    max-width: 350px;
  }
}

/* overview-main style close */
.serviceTabs {
  position: relative;
  border: 1px solid #CDA358;
  margin-bottom: 20px;
  background: #0C4749;
}

.serviceTabs h2 {
  font-size: clamp(14px, 5vw, 32px);
  font-weight: 400;
  color: var(--btn-primary);
  font-family: var(--marcellus);
  margin-bottom: 0px;
}

.serviceBorder {
  margin: 6px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.serviceBorder span {
  color: #fff;
  font-size: clamp(14px, 4vw, 16px);
  font-family: var(--jost);
  font-weight: 400;
  cursor: pointer;
  text-align: right;
}

.service-bottom {
  padding: 0 40px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.serviceTabs:not(:first-child) .service-bottom {
  display: none;
}

.service-bottom h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  font-family: var(--jost);
  color: var(--btn-primary);
}

.service-bottom p {
  color: rgba(240, 240, 240, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 16.2px;
  font-family: var(--jost);
  max-width: 370px;
}

.service-bottom-last h4 {
  color: var(--btn-primary);
  font-family: var(--marcellus);
  margin-bottom: 30px;
}

.service-bottom-last {
  max-width: 560px;
  padding-left: 40px;
}

.service-bottom-last ul {
  padding: 0px;
  margin: 0px;
}

.service-bottom-last ul li {
  position: relative;
  list-style: none;
  color: rgba(240, 240, 240, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 16.2px;
  font-family: var(--jost);
  margin-bottom: 20px;
  padding-left: 30px;
}

.service-bottom-last ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 23px;
  height: 12px;
  background-image: url("../images/benefit-icon.svg");
  background-repeat: no-repeat;
}

.sevice-tabs {
  padding-bottom: 80px;
}

.success-heading-main1 {
  text-align: left !important;
  margin: unset !important;
  margin-bottom: 20px !important;
}

@media screen and (min-width: 320px) and (max-width: 992px) {
  .overview-box-main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .overview-box {
    max-width: 320px;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .date-days {
    width: 100%;
  }

  main .team-dedicated-main .explore-blog-main .date-img-main .blog-img {
    width: 100%;
  }
}

.blog-box-main {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.blog-box-inner {
  width: 33%;
  text-align: center;
}

.blog-box {
  padding: 12px;
  margin-bottom: 15px;
  color: #165153;
  font-size: 16px;
  font-weight: 500;
  outline: 1px solid #CDA358;
  outline-offset: 3px;
  border: 1px solid #1010101A;
}

.blog-box:first-child {
  background: #165153;
  color: #fff;
  font-weight: 600;
}


.who-desc {
  color: #101010B2;
  font-size: 16px;
  font-weight: 500;
}

.help-service {
  position: relative;
  padding-bottom: 80px;
}

.help-box {
  position: relative;
  outline: 1px solid #CDA358;
  outline-offset: 3px;
  border: 1px solid #1010101A;
  margin-bottom: 15px;
  padding: 25px;
  display: block;
  height: calc(100% - 15px);
}

.help-box.help-box-01 span {
  color: #171D1C99;
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 5px;
  display: block;
}

.help-box.help-box-01 p {
  font-size: clamp(24px, 4vw, 20px);
  font-family: var(--marcellus);
  font-weight: 400;
  color: var(--btn-green);
  text-transform: capitalize;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 15px;
}

.review-main-bottom {
  background-color: var(--btn-green);
  width: 100%;
  padding: 40px;
  outline: 1px solid #CDA358;
  outline-offset: 4px;
}

.trustpilot-content {
  margin-top: 20px;
  max-width: 800px;

}

.trustpilot-content h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 18px);
  font-weight: 500;
  font-family: var(--jost);
}

.trustpilot-content p {
  color: #F0F0F0E5;
  font-size: 15px;
  margin-bottom: 0;
}

/* Who We Help Css Start */
.who-we-help-main {
  padding: 70px 0;
  background: rgba(244, 242, 232, 1);
}

@media screen and (max-width: 992px) {
  .who-we-help-main {
    padding-bottom: 0;
  }
}

.who-we-help-main .heading-main {
  margin-bottom: 15px;
  text-align: center;
}

.who-we-help-main .heading-main h2 {
  font-family: var(--marcellus);
  font-size: 56px;
  font-weight: 400;
  color: var(--btn-green);
}

@media screen and (max-width: 992px) {
  .who-we-help-main .heading-main h2 {
    font-size: 32px;
  }
}

.who-we-help-main .who-help-slider .card-main {
  position: relative;
  display: block;
}

.who-we-help-main .who-help-slider .card-main .who-we-img {
  width: 100%;
}

.who-we-help-main .who-help-slider .text-main {
  position: absolute;
  left: 31px;
  bottom: 44px;
  width: calc(100% - 62px);

}

@media screen and (max-width: 420px) {
  .who-we-help-main .who-help-slider .text-main {
    bottom: 10px;
  }
}

.who-we-help-main .who-help-slider .text-main .who-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

}

.who-we-help-main .who-help-slider .text-main .who-flex div:nth-child(1) {
  flex: 1;
}
@media screen and (max-width: 430px) {
  .who-we-help-main .who-help-slider .text-main .who-flex img {
    width: 30px;
  }
}

.who-we-help-main .who-help-slider .text-main h4 {
  font-family: var(--marcellus);
  font-size: 28px;
  font-weight: 400;
  color: var(--btn-white);
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .who-we-help-main .who-help-slider .text-main h4 {
    font-size: 20px;
  }
}

.who-we-help-main .who-help-slider .who-arrow-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.who-we-help-main .who-help-slider .who-arrow-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--btn-green);
  background: var(--btn-green);
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: 0.3s all;
}

.who-we-help-main .who-help-slider .who-arrow-main span.swiper-button-disabled {
  border: 1px solid var(--btn-primary);
  background: transparent;
  cursor: not-allowed;
  opacity: 0.8;
}

.who-we-help-main .who-help-slider .who-arrow-main span.swiper-button-disabled svg {
  stroke: var(--btn-primary);
}

.who-we-help-main .who-help-slider .who-arrow-main span svg {
  stroke: var(--btn-white);
}

/* Who We Help Css End */


@media only screen and (max-width: 767px) {
  .service-bottom {
    padding: 0 15px;
    margin-top: 20px;
  }

  .serviceBorder {
    padding: 12px 10px;
  }

  .service-bottom-last {
    padding-left: 20px;
  }

  .serviceBorder span {
    width: 100px;
  }

  .blog-box-main {
    flex-wrap: wrap;
  }

  .blog-box-inner {
    width: 100%;
  }

  main .faqs-main .collapse-parent a {
    font-size: 16px;
  }
}


/* ==========================================================================
   Book Now Page Modern Styles
   ========================================================================== */

.booking-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(22, 81, 83, 0.05) !important;
}

.booking-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.custom-input, .custom-select {
    padding: 0.75rem 1.25rem;
    border: 2px solid #f8f9fa;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    font-family: var(--jost);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-input:focus, .custom-select:focus {
    background-color: #fff;
    border-color: var(--btn-primary);
    box-shadow: 0 0 0 0.25rem rgba(205, 163, 88, 0.1);
    outline: none;
}

.form-label {
    color: var(--btn-green);
    font-size: 0.95rem;
}

.custom-input::-webkit-input-placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.booking-card .custom-buttom {
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 56px;
    border-radius: 12px !important;
}

.booking-card .custom-buttom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 163, 88, 0.3);
}

/* Select2 Modern Overrides for Booking Page */
.booking-card .select2-container--bootstrap-5 .select2-selection {
    border: 2px solid #f8f9fa;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.booking-card .select2-container--bootstrap-5.select2-container--focus .select2-selection {
    background-color: #fff;
    border-color: var(--btn-primary);
    box-shadow: 0 0 0 0.25rem rgba(205, 163, 88, 0.1);
}

.booking-card .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: #212529;
    padding-left: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-card {
        padding: 2rem !important;
    }
    .primary-title {
        font-size: 42px;
    }
}
