@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-Bold.woff2") format("woff2"),
    url("PlusJakartaSans-Bold.woff") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-ExtraBold.woff2") format("woff2"),
    url("PlusJakartaSans-ExtraBold.woff") format("woff");
  font-weight: 800;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-Light.woff2") format("woff2"),
    url("PlusJakartaSans-Light.woff") format("woff");
  font-weight: 300;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-Regular.woff2") format("woff2"),
    url("PlusJakartaSans-Regular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-Medium.woff2") format("woff2"),
    url("PlusJakartaSans-Medium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("PlusJakartaSans-SemiBold.woff2") format("woff2"),
    url("PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
  font-size: 16px;
  color: #494949 !important;
}
* {
  outline: none;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

section {
  overflow-x: hidden;
}

.navbar-brand {
  max-width: 180px;
}
.navbar-brand img {
  width: 100%;
  max-width: 128px;
}
.navbar-collapse {
  flex-grow: 0 !important;
  column-gap: 200px;
}
.navbar{
  position:static;
}
.col-right {
  display: flex;
  align-items: center;
}
.nav-item > a {
  transition: all 0.4s;
  color: #393838;
  font-size: 18px;
  font-weight: 600;
  padding: 0 15px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
.nav-item > a:hover {
  color: red;
}
header.header {
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  transition: height 0.5s ease-in;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header.fixed {
  width: 100%;
  position: fixed;
  z-index: 9;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler {
  font-size: 20px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.large-menu.dropdown-menu {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 3px;
  border: none;
  background-color: rgb(255 250 250) !important;
}

.lg-sub-menu h6 a {
  text-decoration: none;
  color: #48443a;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
ul.lg-sub-menu {
  width: 340px;
  padding:12px 0;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  background: #fff;
  justify-content: space-between;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  top: 61px;
}
.lg-sub-menu li{
  width: 100%;
}
.lg-sub-menu li a {
  width: 100%;
  transition: all 0.4s;
  text-decoration: none;
  padding: 8px 0 8px 28px;
  font-weight: 500;
  font-size: 17px;
  display: inline-block;
  color: #111;
}
.lg-sub-menu li a:hover{
  color: red;
}
.search {
  width: 210px;
  border: 1px solid #707070;
  border-radius: 50px;
  height: 40px;
  justify-content: space-between;
  padding: 10px;
}

.search input {
  width: calc(100% - 21px);
  border: none;
  background-color: transparent;
}
.search img {
  width: 16px;
  height: 17px;
}
.bttn {
  margin-left: 25px;
  background: red;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 2px 3px 6px #222;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.bttn button {
  position: relative;
  z-index: 2;
  border: none;
  font-weight: 700;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #fff;
}

.banner-btn:hover {
  border: solid 2px #fff;
}
.bttn:hover::after {
  transform: scale(50);
  opacity: 1;
}
.bttn::after {
  opacity: 0;
  z-index: 1;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 10px;
  background-color: #000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

/*======= banner============= */

.banner {
  width: 100%;
  background-color: #1d1d1f;
  color: #fff;
  padding: 70px 0;
}

.banner-img img {
  width: 100%;
}
.banner-text h1 {
  font-size: 54px;
  color: rgb(255 255 255 / 92%);
  font-weight: 700;
}
.banner-text p {
  padding-top: 10px;
  color: #b7b7b7;
  font-weight: 400;
  line-height: 23px;
  font-size: 17px;
}
.banner-text {
  padding-right: 70px;
}
ul.features {
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
ul.features li {
  width: 50%;
  padding-left: 45px;
  color: #b1b1b1;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 23px;
  font-size: 16px;
}
ul.features li:before {
  content: "";
  position: absolute;
  /* font-family: "FontAwesome"; */
  margin-left: -45px;
  background-image: url(../images/arrow.png);
  font-size: 12px;
  background-color: #f2f2f2;
  color: #1d1d1f;
  width: 25px;
  background-position: center center;
  background-size: 70% 76%;
  background-repeat: no-repeat;
  height: 25px;
  text-align: center;
  border-radius: 50%;
}
.banner-btn {
  border: solid 2px red;
  border-radius: 7px;
}
.banner-btn button {
  font-size: 18px;
}
.banner-img {
  max-width: 230px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.overlap-img {
  max-width: 200px;
  position: absolute;
  top: 20%;
  left: -85%;
  z-index: 2;
  animation: mover 1s infinite alternate;
}
@keyframes mover {
  0% {
    transform: translateY(10);
  }
  100% {
    transform: translateY(-10px);
  }
}

section.our-offering {
  padding: 70px 0;
}
section.our-offering .row {
  row-gap: 26px;
}
.overlap-img > img {
  width: 100%;
}
.banner-img::after {
  position: absolute;
  left: -109%;
  top: 9%;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 0, 13, 0.38);
  content: "";
  animation: zoom-in-zoom-out 5s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9, 0.9);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0.9, 0.9);
  }
}
/* ===========our offring========== */
.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
  text-align: center;
  line-height: 50px;
  max-width: 630px;
  text-transform: capitalize;
  color: #3c3b3b;
}
.offering-box {
  background: #fff;
  border: solid 2px #ccc;
  padding: 20px;
  height: 100%;
  border-radius: 12px;
}
.offering-img .fa {
  font-size: 48px;
  color: #392e15;
}
.offering-text h4 {
  font-size: 24px;
  margin-top: 18px;
  font-weight: 600;
}
.offering-text p {
  color: #555555;
  font-size: 19px;
}
section.partners {
  background: #fff;
  padding: 45px 0;
}
.partner-slider {
  width: 100%;
  margin-top: 20px;
}
.partner-box {
  width: 100%;
}
.partner-box img {
  width: 100%;
}

.swiper-wrapper {
  padding: 10px 0;
}
/* ==========loan============ */

.loan {
  /* padding: 50px; */
  border-radius: 10px 89px 10px 10px;
  /* margin-top: 50px; */
  /* background-image: url(../images/bg_style-1.png); */
  background-size: 100%;
  background-repeat: no-repeat;
  /* background-color: #000; */
}

.loan .inner-tax {
  margin-bottom: 15px;
}

.service-tax {
  padding-bottom: 50px;
}

.inner-service-tax {
  background: #f1f4f6;
  padding: 60px 40px 60px;
  border-radius: 24px;
}

.title h4 {
  font-weight: 700;
  line-height: 1.2em;
  font-size: 27px;
  color: #181b31;
}

.contact-btn a {
  transition: all 0.4s;
  text-decoration: none;
  background: #1d1d1f;
  text-transform: capitalize;
  font-weight: 700;
  display: inline-block;
  padding: 15px 33px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
}

.contact-btn {
  display: flex;
  justify-content: end;
}
.contact-btn .bttn::after {
  background-color: red;
  z-index: -1;
}
.contact-btn .bttn:hover {
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 2;
}
h6.samll-con {
  font-weight: 700;
  line-height: 1.2em;
  font-size: 18.5px;
  color: #8a8a8e;
  margin-bottom: 40px;
}

.inner-tax {
  padding: 15px;
  background-color: #e5e5e5 !important;
  border-radius: 20px;
}

.tax-img {
  margin-bottom: 20px;
}

.about-tax.row {
  column-gap: 30px !important;
}

.title span {
  width: 42px;
  display: inline-block;
  height: 2px;
  background: #8a8a8e;
}

.title {
  margin-bottom: 13px;
}

.about-tax {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-content: end;
  row-gap: 20px;
}

.inner-tax {
  width: 44%;
}

.tax-contain a {
  text-decoration: none;
  color: #a7a9b8;
  font-weight: 600;
  font-size: 17px;
}

.loan .tax-contain strong {
  color: #bf3838;
  font-size: 15.5px;
}

.tax-contain p {
  font-family: math;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 0;
  font-size: 16px;
  /* color: #111111 !important; */
}
.partners .sub-line::after {
  right: -45%;
}
.partners .sub-line::before {
  left: -45%;
}
/* ======================= business section start here n==================== */

.business {
  padding-bottom: 50px;
}

.inner-business {
  background: #111111;
  padding: 60px 40px 60px;
  border-radius: 24px;
}

.inner-business h4 {
  color: white;
}

.inner-business .inner-tax {
  background-color: #2a2a2c !important;
}

.inner-business .inner-tax p {
  color: #c4c4c4;
}
.inner-business .inner-tax p strong {
  color: #fff;
}

/* =================================  outsorcing section start here ======================== */

.outsorcing {
  padding-bottom: 50px;
}

.inner-source {
  background: #f1f4f6;
  padding: 60px 40px 60px;
  border-radius: 24px;
}

.inner-taxs {
  padding: 20px;
  background-color: #e5e5e5;
  border-radius: 20px;
}

/*============= footer =================*/

footer {
  background-color: #111111;
}

.top-footar {
  padding: 77px 0px;
  text-align: center;
  border-bottom: solid 2px #222;
}

.top-footar h2 {
  color: white;
}

.top-footar p {
  color: white;
}
.copy-right p {
  color: #fff;
}
.copy-right p {
  color: #88888c;
  font-size: 17px;
  text-transform: capitalize;
}
.middle-footar {
  padding: 50px 0px;
  border-bottom: 1px solid;
  border-top: 1px solid;
}

.bottom-footar {
  padding: 50px;
}

.copy-right {
  padding: 30px;
  border-top: 1px solid;
}

.copy-right a {
  color: #8a8a8e;
}

.b-footar p {
  color: #b9b9b9;
  max-width: 325px;
}

.f-heading a {
  color: #b9b9b9;
  text-decoration: none;
  font-weight: 400;
  line-height: 23px;
  font-size: 17px;
}
.coin-img {
  max-width: 560px;
  height: 459px;
  margin: auto 0;
  border-radius: 20px;
  overflow: hidden;
}
.coin-img img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.address {
  color: #8a8a8e;
}

.f-heading h4 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}
.f-heading ul li {
  margin-bottom: 4px;
}
.f-logo {
  max-width: 180px;
  margin-bottom: 20px;
}
.f-logo img {
  width: 100%;
}

.services-img {
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
}
.services-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.service {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.service .inner-tax {
  width: calc(50% - 20px);
}
section.our-services {
  padding: 70px 0;
}
.our-services .section-title {
  margin-bottom: 70px;
}
.inner-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #504e4e;
}
.f-heading a:hover {
  color: red;
}

.partners .section-title {
  margin-bottom: 20px;
}

.col-12.my-slider {
  box-shadow: 2px 3px 10px #bbb;
  border-radius: 22px;
  background: #fff;
  margin: 0 auto;
  width: 90%;
  padding: 22px 0;
  /* border: solid 1px #ccc; */
}

/* ==========all services css=========== */

.sub-line {
  font-size: 16px;
  color: red;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
}

.sub-line::after,
.sub-line::before {
  position: absolute;
  width: 30px;
  background-color: red;
  content: "";
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}
.sub-line::after {
  right: -30%;
}
.sub-line::before {
  left: -30%;
}

section.all-services {
  padding: 60px 0;
}
.all-services .row {
  row-gap: 30px;
}
.services-card.w-100 {
  background: #fff;
  height: 100%;
  transition: all 0.5s;
  padding: 28px 22px;
  box-shadow: 0 0 5px #ccc;
}
.services-card:hover {
  background-color: red;
}
.services-icon .fa {
  transition: all 0.5s;
  color: red;
  font-size: 45px;
}
.services-card:hover .services-icon .fa {
  color: #fff;
}

.services-card h4 a {
  transition: all 0.5s;
  font-size: 24px;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  color: #3c3b3b;
  text-transform: capitalize;
}
.services-card:hover p,
.services-card:hover h4 a {
  color: #fff;
}
.services-card:hover a {
  color: #fff;
}
.services-card p {
  font-size: 16px;
  transition: all 0.5s;
  font-weight: 400;
  color: #393838;
}
.services-card > a {
  text-decoration: none;
}
.services-card > a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s;
  color: red;
}
.services-card > a .fa {
  padding-left: 10px;
}

/* bg section */

.hr-consultancy-img {
  max-width: 563px;
  border-radius: 20px;
  overflow: hidden;
}
.hr-consultancy-img img {
  width: 100%;
}
.bg-sec {
  width: 100%;
  background-image: url(../images/counter_box_bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  padding: 140px 0 100px 0;
}

.bg-sec::before {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(78, 77, 75, 0.65);
  content: "";
  width: 100%;
  height: 100%;
}

h2.mysection-heading {
  font-size: 48px;
  color: #ffffff;
  line-height: 72px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 50px;
}
.mysection-heading::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  content: "";
  background-color: red;
}

.business-box {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  column-gap: 30px;
}
.business-box .fa {
  color: #fff;
  font-size: 48px;
}
.business-box p {
  font-size: 16px;
  line-height: 24px;
  /* text-transform: uppercase; */
  color: #ffffff;
  margin-bottom: 0;
  max-width: 200px;
}

.member-box {
  width: 100%;
}
.member-box img {
  width: 100%;
}
.text h4 {
  text-transform: capitalize;
}
.text p {
  text-transform: capitalize;
}

.text {
  padding: 10px 20px;
}
.member-box {
  margin-top: 40px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
}

.members {
  width: 100%;
  padding: 100px 0;
}

.inner-service-tax .inner-tax {
  margin-bottom: 15px;
}

.marketing .inner-tax {
  padding: 28px;
}
.marketing .inner-tax p {
  margin-bottom: 0;
}

.hrc .about-tax {
  display: inline;
}

.hrc .inner-tax {
  width: auto;
}
.hrc .inner-business .inner-tax {
  background-color: #cecece !important;
  margin-bottom: 20px;
}

.hrc .tax-contain p {
  color: #111111;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.hrc .tax-contain p strong {
  color: #222;
}

.hrc .inner-tax {
  padding: 12px 22px;
}

/*========= contact page========== */

.inner-banner {
  padding: 200px 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
}
.inner-banner h2 {
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  font-size: 46px;
}
.contact-location img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

#contact-now {
  width: 100%;
  position: relative;
}

#contact-now::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 35%;
  background-color: red;
  z-index: -1;
}

.contacts-details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  padding: 60px 0;
}

.contact-box {
  width: calc(33.33% - 20px);
  border: solid 1px #ccced1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 34px 20px;
}

.address {
  width: 100%;
}

.address p {
  display: block;
  text-align: left;
  padding-top: 8px;
  color: #b9b9b9;
  text-transform: capitalize;
}
.address p strong {
  color: #d1d1d1;
}
.contact-title {
  display: flex;
  justify-content: center;
  text-transform: capitalize;
}

.contact-title h4 {
  color: #222;
  font-size: 24px;
}

.contact-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-img i {
  font-size: 50px;
  color: red;
}

.contact-form-col {
  width: 100%;
  display: flex;
  gap: 46px;
  margin-bottom: 65px;
}

.contact-form {
  width: calc(50% - 23px);
}

.contact-form form {
  padding: 30px 30px;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 3px;
}

.input-label {
  width: 100%;
  margin-bottom: 4px;
}

.input-label label {
  color: #222;
  font-size: 22px;
  font-weight: 500;
}

.user-information {
  width: 100%;
  column-gap: 30px;
  row-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.user-information > .input-box {
  width: calc(50% - 15px);
}

.input-box input {
  width: 100%;
  border-radius: 3px;
  padding: 10px 20px;
  border: solid 1px #bbb;
  /* text-transform: capitalize; */
}

.input-box input::placeholder,
.input-textarea textarea::placeholder {
  color: #222;
  text-transform: capitalize;
}

.input-textarea {
  width: 100%;
  height: 102px;
  margin-bottom: 20px;
}

.input-textarea textarea {
  height: 100%;
  padding: 10px 20px;
  border: solid 1px #bbb;
  border-radius: 3px;
  width: 100%;
}

.input-box.input-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.input-box.input-btn button {
  background-color: #000;
  border-radius: 3px;
  width: 100%;
  font-size: 14px;
  border: navajowhite;
  font-weight: 600;
  color: #fff;
  height: 50px;
  text-transform: capitalize;
}

.contact-location {
  width: calc(50% - 23px);
}

/* financial */

.loan.financial {
  background-color: transparent;
}
.business.management {
  margin-top: 40px;
}

.main-marketing {
  margin-top: 40px;
}
.development {
  margin-top: 40px;
}
.hr-con {
  margin-top: 40px;
}

.business-services img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

.services-box {
  background: #111;
  padding: 60px 40px 60px;
  border-radius: 24px;
}
section.business.hrc {
  margin-top: 50px;
  margin-bottom: 20px;
}
.loan.financial {
  margin-top: 50px;
}

.business {
  margin-top: 50px;
}

.marketing {
  margin-top: 50px;
}

.address-box {
  display: flex;
  justify-content: center;
}

.grow-business .sub-line::before {
  left: 0;
}

.grow-business {
  margin-top: 50px;
  background-color: #f1f4f6;
  padding: 70px 0;
  position: relative;
}

.grow-business::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 50%;
  height: 100%;
  background-image: url(../images/1.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}
.grow-business .sub-line::after {
  right: -24%;
}
.graph-content {
  display: flex;
  margin-top: 45px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.graphline {
  position: relative;
  width: 100%;
  padding: 0;
  background: #000;
  float: left;
  border-radius: 4px;
  padding: 5px 0;
  margin-top: 5px;
}

.graphline span {
  border-radius: 4px;
  background: red;
  display: block;
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  /* width: 100%; */
  left: 0;
  padding: 5px 0;
}

/* 404 error css */

.error-wrapper {
  /* height: 100vh; */
  background: #f1f4f6;
}
.error-wrapper .error-inner {
  background-color: #fff;
  margin: 90px 0;
  border-radius: 15px;
  padding: 16fpx 60px;
}

.btn-common {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 0;
  text-transform: capitalize;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  padding: 37px 42px 36px;
  border: 1px solid #e4e4e4;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  position: relative;
  z-index: 1;
}
.btn-common:hover {
  color: red;
}
.title {
  width: 100%;
}
.error-wrapper .error-inner .title {
  font-size: 45px;
  font-weight: 700;
}
.error-wrapper .error-inner .btn-wrap {
  margin-top: 50px;
}

.business-services-img {
  max-width: 563px;
  height: 533px;
}

.projucy-service-text {
  align-content: end;
}

/* managment page css */

.section-title p {
  max-width: 730px;
  text-align: center;
  text-transform: none;
  font-weight: 400;
  line-height: 23px;
  font-size: 17px;
  color: #111111;
}
.backgroun-box {
  position: relative;
  background-color: #f1f4f6;
  border-radius: 20px;
  width: 90%;
  padding:40px;
  height: 100%;
}
.backgroun-box span {
  position: absolute;
  left: 10%;
  font-weight: 800;
  font-size: 70px;
  color: #181b31;
  top: 0%;
  opacity: 0.1;
}
.backgroun-box h3{
  font-weight: 700;
  position: relative;
    line-height: 1.2em;
    font-size: 27px;
    color: #181b31;
    margin-bottom: 20px;
}
.backgroun-box p{
  margin-bottom: 0;
  color: #8A8A8E;
  font-weight: 400;
  line-height: 26px;
  font-size: 17px;
}
.managment{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}
.managment .row{
  row-gap: 10px;
}
.bg-shape {
  width: 347px;
  height: 968px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 21%;
  z-index: -1;
  background-image: url(../images/bg-shape.png);
  background-repeat: no-repeat;
  background-size: 100% 76%;
}

.members.knowledge-member{
  padding: 43px 0;
}

.contact-img img{
  max-width: 48px;
}
.phone-icon img{
  max-width: 40px;
}





.business.management{
  margin-bottom: 20px;
}
.management-box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 30px;
  justify-content: center;
  row-gap: 30px;
}

.management-box .inner-tax {
  width:calc(33.33% - 20px);
  padding: 32px;
}

.marketing-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 15px;
}

.marketing-box .inner-tax {
  width:calc(33.33% - 20px);
  padding: 32px;
}
.hr-box .inner-tax {
  width:calc(33.33% - 20px);
  padding: 32px;
}
.hr-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 15px;
}

.business-box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 15px;
}

.business-box .inner-tax {
  width: calc(33.33% - 20px);
  display: flex !important;
  flex-direction: column;
  padding: 32px !important;
  background-color: #545454 !important;
}

.financial-box{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 15px;
}

.financial-box .inner-tax {
  width:calc(50% - 15px) !important;
  display: flex !important;
  flex-direction: column;
  padding: 32px !important;
  background-color: #545454 !important;
}
.ex-css.business-box p {
  font-size: 16px;
  line-height: 24px;
  height: 107px;
  max-width: 349px;
}