:root {
  --common-white: #ffffff;
  --common-black: #000000;
  --common-primary: #d90000;
  --white: #ffffff;
  --black: #000000;
  --primary-100-transparent: rgba(241, 167, 167, 0.15);
  --common-gray: #888888;
  --gray-100: #F7F7F7;
  --gray-200: rgba(184, 184, 184, 0.149);
  --primary-100: #f7d0d0;
  --primary-200: #ec7f7f;
  --primary-300: #ffdede;
}

body.dark-mode {
  --common-white: #ffffff;
  --common-black: #000000;
  --common-primary: #d90000;
  --white: #000000;
  --black: #ffffff;
  --primary-100-transparent: rgba(241, 167, 167, 0.15);
  --common-gray: #888888;
  --gray-100: #3B3B3B;
  --gray-200: rgba(160, 160, 160, 0.322);
  --primary-100: #4B0303;
  --primary-200: #8f0505;
  --primary-300: #352525;
}
body.dark-mode .bg-video {
  opacity: 0.2 !important;
  filter: invert(1) !important;
}

@font-face {
  font-family: "HelveticaNeue LT 53 Ex Regular";
  src: url("../fonts/HelveticaNeue_LT_53_Ex_Regular.ttf") format("truetype"), url("../fonts/HelveticaNeue_LT_53_Ex_Bold.ttf") format("truetype"), url("../fonts/HelveticaNeue_LT_53_Ex_Regular.woff") format("woff"), url("../fonts/HelveticaNeue_LT_53_Ex_Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  background: var(--white);
  color: var(--black);
  margin: 0;
  transition: background 0.3s, color 0.3s;
  word-break: break-word;
}

* {
  font-family: "HelveticaNeue LT 53 Ex Regular" !important;
}

.text-common-primary {
  color: var(--common-primary) !important;
}

a.link-text {
  color: var(--black) !important;
  transition: all 0.5s ease;
  text-decoration: none;
}
a.link-text:hover {
  color: var(--common-primary) !important;
}

ul.list-disc {
  list-style: disc;
}

.border {
  border: 1px solid var(--gray-100) !important;
}

.border-top {
  border-top: 1px solid var(--gray-100) !important;
}

.border-end {
  border-right: 1px solid var(--gray-100) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--gray-100) !important;
}

.border-start {
  border-left: 1px solid var(--gray-100) !important;
}

.lh-1 {
  line-height: 1;
}

.lh-13 {
  line-height: 1.3;
}

.lh-17 {
  line-height: 1.75;
}

hr.vertical-seprator {
  border-left: 3px solid var(--primary-200);
  border-top: 0;
  margin: 0;
}

hr.horizontal-seprator {
  border-top: 3px solid var(--primary-200);
  margin: 30px 0;
}

.form-control {
  padding: 12px 24px;
}
.form-control::-webkit-input-placeholder {
  opacity: 0.6;
}

.toggle-switch,
.toggle-icon {
  display: inline-block;
  width: 56px;
  height: 32px;
  background: var(--primary-100);
  border-radius: 32px;
  position: relative;
  transition: background 0.3s;
  vertical-align: middle;
}
.toggle-switch::before,
.toggle-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 24px;
  height: 24px;
  background: var(--common-white);
  border-radius: 50%;
  transition: left 0.3s, background 0.3s;
}

body.dark-mode .toggle-switch,
body.dark-mode .toggle-icon {
  background: var(--primary-100);
}

body.dark-mode .toggle-switch::before,
body.dark-mode .toggle-icon::before {
  left: 26px;
  background: var(--common-primary);
}

header {
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
  background-color: var(--white);
}

.navbar,
.navbar-nav .nav-link,
.dropdown-menu {
  background: transparent !important;
  color: var(--black) !important;
}

.navbar-nav .nav-link,
.navbar-brand {
  color: var(--black) !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active,
.navbar-brand:hover,
.navbar-brand.active {
  color: var(--common-primary) !important;
}

.navbar {
  transition: box-shadow 0.3s;
}

.dropdown-menu {
  background: var(--white) !important;
}

.dropdown-item {
  color: var(--black) !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
}

.mega-menu {
  border-radius: 18px;
  background: var(--white);
  border: none;
  padding: 0;
  min-width: 700px;
  max-width: 95vw;
}

.mega-menu-overlay {
  position: absolute;
  top: 77px;
  width: 100%;
  z-index: 1055;
  background: var(--white);
  color: var(--black);
  display: none;
  transition: opacity 1s;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.mega-menu-overlay.active {
  display: block;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mega-menu-overlay .btn-close {
  filter: invert(1);
}

.top-label {
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-title {
  font-size: 48px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--main-font);
}
.main-title .main-subtitle {
  color: var(--common-primary);
  display: block;
}
.main-title .main-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.dot-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--common-primary);
  font-size: 18px;
}

.btn-custom {
  border: 1px solid var(--gray-100);
  background-color: var(--gray-100);
  color: var(--black);
}
.btn-custom:hover {
  border: 1px solid var(--common-gray);
}

.explore-btn {
  background-color: var(--common-primary);
  width: 40px;
  height: 40px;
  border: 1px solid var(--common-primary);
}
.explore-btn:hover {
  background-color: var(--white);
  border: 1px solid var(--common-primary);
}
.explore-btn:hover .arrow {
  color: var(--common-primary) !important;
}
.explore-btn .arrow {
  color: var(--common-white);
  font-size: 24px;
  margin-bottom: 4px;
}

.feature-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--main-font);
}

.feature-desc {
  color: var(--common-gray);
  font-size: 16px;
  font-weight: 400;
}

.red-btn {
  background-color: var(--primary-100);
}
.red-btn:hover {
  background-color: var(--common-primary);
  border: 1px solid var(--common-primary);
  color: var(--common-white);
}

.home-bg-image {
  background-image: url(../images/home-bg-image.png);
  background-position: top center;
  background-size: contain;
  background-repeat: repeat-y;
}

.home-welcome-section {
  padding-bottom: 65px;
}
.home-welcome-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
  z-index: -1;
}

.home-about-section {
  position: relative;
}
.home-about-section .gif-image {
  position: absolute;
  bottom: 0;
  max-width: 30%;
  height: auto;
  right: 3%;
  z-index: -1;
  opacity: 0.2;
  transform: rotate(12deg);
}

.home-about-images {
  position: relative;
}
.home-about-images .home-about-img.img-1 {
  position: relative;
  top: 0;
  left: -90px;
  z-index: 2;
  width: 320px;
}
.home-about-images .home-about-img.img-2 {
  position: absolute;
  top: -65px;
  left: 160px;
  z-index: 3;
  width: 250px;
}
.home-about-images .home-about-img.img-3 {
  position: absolute;
  bottom: -40px;
  left: 195px;
  z-index: 3;
  width: 220px;
}
.home-about-images .home-about-img.img-4 {
  position: absolute;
  top: 40%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 120px;
}

.key-points-section {
  padding: 100px 0;
  border-top: 2px dashed var(--common-primary);
  border-bottom: 2px dashed var(--common-primary);
  background-color: var(--primary-100-transparent);
}

.feature-box {
  text-decoration: none;
  border: 1px solid var(--gray-100);
  background-color: var(--gray-100);
  color: var(--black);
  padding: 20px 16px;
  border-radius: 8px;
  transition: all 0.5s ease;
}
.feature-box .dot-icon {
  transition: all 0.5s ease;
}
.feature-box:hover {
  color: var(--common-white);
  background-color: var(--common-primary);
}
.feature-box:hover .dot-icon {
  color: var(--common-white);
}

.advantages-section .analytics-icon {
  top: 100%;
  right: 0px;
  z-index: -1;
  opacity: 0.2;
  max-width: 30%;
  transform: rotate(-9deg) translateY(-50%);
}
.advantages-section .advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--common-primary);
}
.advantages-section .advantage-icon svg {
  display: block;
  width: 40px;
  height: 40px;
  stroke: currentColor;
}
.advantages-section .advantage-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  font-family: var(--main-font);
}
.advantages-section .advantage-desc {
  color: var(--common-gray);
  font-size: 16px;
  font-family: var(--main-font);
  margin: 0 auto;
  max-width: 90%;
}
.advantages-section .advantages-border {
  border-right: 1px solid var(--primary-100) !important;
}

.features-section .profit-animated-icon {
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.2;
  transform: rotate(4deg);
  z-index: -1;
  max-width: 30%;
}
.features-section .sales-analytics-icon {
  top: 50%;
  left: -24px;
  z-index: -1;
  opacity: 0.2;
  transform: translateY(-50%) rotate(10deg);
  z-index: -1;
  max-width: 30%;
}

.future-ready-section .solution-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.5rem auto;
  background: var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
}
.future-ready-section .solution-label {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  text-align: center;
}
.future-ready-section .future-ready-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 50px;
}
.future-ready-section .future-ready-tabs .nav-item .nav-link {
  border-bottom: 2px solid var(--gray-200);
  width: 100%;
  padding-bottom: 40px;
}
.future-ready-section .future-ready-tabs .nav-item .nav-link.active {
  border-color: var(--common-primary);
}
.future-ready-section .future-ready-tabs .nav-item .nav-link.active .solution-icon {
  background-color: var(--common-primary);
  color: var(--common-white);
}
.future-ready-section .future-ready-tabs .nav-item .nav-link.active .solution-label {
  color: var(--common-primary);
}

.feature-card {
  border: 4px solid var(--primary-100-transparent);
  border-radius: 24px;
  background: var(--white);
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.feature-card-empty video {
  max-width: 446px;
  width: 100%;
  height: auto;
  aspect-ratio: 446/431;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% 50%;
     object-position: 30% 50%;
}

.feature-card-block {
  background-color: var(--primary-100-transparent);
  position: relative;
}

.feature-card-lg {
  border: 1px solid var(--primary-100);
  border-radius: 20px;
  background-color: var(--primary-100-transparent);
  overflow: hidden;
}

.flip-icon-wrapper .flip-icon {
  transition: all 0.2s ease-out;
  transform: scaleX(1);
}
.flip-icon-wrapper:hover .flip-icon {
  transform: scaleX(-1);
}

.why-choose-us-section .why-image-wrapper .why-main-image {
  border: 6px solid var(--primary-100);
  background: var(--white);
  transition: box-shadow 0.2s;
  overflow: hidden;
  border-left: none;
}
.why-choose-us-section .why-red-box {
  background: var(--common-primary);
  color: var(--common-white);
  position: relative;
}
.why-choose-us-section .why-red-box .dot-icon {
  color: var(--common-white);
}
.why-choose-us-section .yellow-accent {
  position: absolute;
  z-index: 2;
}
.why-choose-us-section .yellow-accent-left {
  top: -30px;
  left: -40px;
}
.why-choose-us-section .yellow-accent-right {
  bottom: -30px;
  right: -40px;
}

.management-banner-section {
  padding-bottom: 65px;
  position: relative;
  overflow: hidden;
}
.management-banner-section::before, .management-banner-section::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -36%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  z-index: -1;
}
.management-banner-section::before {
  background-color: var(--primary-100-transparent);
  max-width: 1648px;
  width: 100%;
}
.management-banner-section::after {
  background-color: var(--primary-100-transparent);
  max-width: 1578px;
  width: calc(100% - 70px);
}

.management-images {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 55px auto 0;
}
.management-images .management-img {
  position: relative;
  box-shadow: 0px 0px 10px 5px rgba(108, 117, 125, 0.15);
  border-radius: 12px;
}
.management-images .image-shape {
  position: absolute;
  z-index: 1;
}
.management-images .image-shape.shape-1 {
  top: -60px;
  left: -60px;
}
.management-images .image-shape.shape-2 {
  bottom: -60px;
  right: -60px;
}
.management-images .image-shape.shape-3 {
  top: 80px;
  left: -190px;
}
.management-images .image-shape.shape-4 {
  bottom: 35px;
  right: -200px;
}

.industry-section {
  margin: 2rem 0;
}

.industry-pill {
  background: var(--primary-100-transparent) !important;
  color: var(--common-primary) !important;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.8rem 2.2rem;
  border: none;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.industry-pill.active, .industry-pill:active {
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
}

.industry-box-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.industry-list-item {
  background: transparent;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
  padding: 15px;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
}
.industry-list-item:nth-child(even) {
  border-right: none;
}
.industry-list-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.industry-num {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 1px;
}

.industry-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
}

.industry-arrow i {
  font-size: 14px;
  color: var(--black);
}

.custom-tabs .tab-list {
  border-bottom: 1px solid var(--gray-100);
  gap: 2rem;
  margin-bottom: 0;
}
.custom-tabs .tab-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  padding: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.custom-tabs .tab-btn i {
  font-size: 1.5rem;
  color: var(--common-primary);
  transition: color 0.2s;
}
.custom-tabs .tab-btn.active {
  color: var(--common-primary);
  border-bottom: 2px solid var(--common-primary);
}
.custom-tabs .tab-btn.active i {
  color: var(--common-primary);
}
.custom-tabs .tab-content {
  margin-top: 1.5rem;
}
.custom-tabs .tab-content .tab-pane {
  display: none;
  animation: slideDown 0.4s;
}
.custom-tabs .tab-content .tab-pane.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-section .footer-text {
  color: var(--black) !important;
  text-decoration: none !important;
}
.footer-section .footer-title {
  font-size: 20px;
  color: var(--common-primary);
  font-weight: 400;
}
.footer-section .footer-link {
  color: var(--black) !important;
  text-decoration: none !important;
  transition: color 0.2s;
  margin-bottom: 15px !important;
  display: block;
}
.footer-section .footer-link:hover {
  color: var(--common-primary) !important;
}
.footer-section .footer-contact .footer-phone {
  border-color: var(--common-primary) !important;
  color: var(--common-primary);
  font-size: 22px;
  font-weight: 400;
}
.footer-section .footer-contact .footer-phone:hover {
  background-color: var(--common-primary);
  color: var(--common-white);
}
.footer-section .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--common-primary);
  border-radius: 50%;
  color: var(--common-primary);
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none !important;
}
.footer-section .footer-social:hover {
  background: var(--common-primary);
  color: var(--common-white);
  text-decoration: none;
}
.footer-section .footer-email {
  font-size: 22px;
}
.footer-section .footer-email a {
  font-size: 16px;
  color: var(--black) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.footer-section .footer-email a:hover {
  color: var(--common-primary) !important;
}
.footer-section .footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.collab-title {
  font-size: clamp(2.5rem, 10vw, 8rem);
  color: var(--black);
  text-align: center;
  line-height: 200px;
}

.collab-btn {
  position: absolute;
  left: 50%;
  top: 315px;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
  font-size: 16px;
  font-weight: 500;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2;
  text-align: center;
  text-decoration: none !important;
}
.collab-btn:hover {
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
}

.footer-work {
  background-image: url("../images/collaborate.png");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  position: relative;
}

.faq-section .faq-help-btn {
  border-radius: 30px;
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
  font-size: 22px;
  font-weight: 500;
  border: none;
  text-align: center;
  text-decoration: none !important;
  gap: 20px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.faq-section .faq-help-btn:hover {
  background: var(--common-primary) !important;
  color: var(--common-white) !important;
}
.faq-section .faq-images-2 {
  margin-top: -95px;
  aspect-ratio: 273/375;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.faq-section .faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.faq-section .faq-accordion .accordion-button {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  background: var(--gray-100);
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  padding-right: 48px;
}
.faq-section .faq-accordion .accordion-button.collapsed {
  background: var(--gray-100);
  color: var(--black);
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: var(--common-primary);
  color: var(--common-white);
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon {
  background: var(--common-white);
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon::after {
  background: var(--common-primary);
}
.faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button .faq-toggle-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--common-primary);
}
.faq-section .faq-accordion .accordion-button .faq-toggle-icon::before, .faq-section .faq-accordion .accordion-button .faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--common-white);
  transition: background 0.2s, transform 0.2s;
}
.faq-section .faq-accordion .accordion-button .faq-toggle-icon::before {
  left: 9px;
  top: 4px;
  width: 2px;
  height: 12px;
  border-radius: 1px;
}
.faq-section .faq-accordion .accordion-button .faq-toggle-icon::after {
  left: 4px;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 1px;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) .faq-toggle-icon::before {
  background: transparent;
}
.faq-section .faq-accordion .accordion-body {
  background: var(--gray-100);
  color: var(--black);
  font-size: 1rem;
}
.faq-section .faq-label-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 50px;
  letter-spacing: 10px;
  color: var(--black);
  display: inline-block;
  text-align: end;
}
.faq-section .faq-images-main-1 {
  display: grid;
  grid-template-columns: 1fr auto;
}
.faq-section .faq-images-main-2 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  position: relative;
  gap: 20px;
}
.faq-section .accordion-button::after {
  display: none;
}

.major-point-section {
  padding: 45px 0px 57px;
  border-top: 2px dashed var(--common-primary);
  border-bottom: 2px dashed var(--common-primary);
  background-color: var(--primary-100-transparent);
}
.major-point-section .major-point-box {
  position: relative;
}
.major-point-section .major-point-box img {
  aspect-ratio: 491/295;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: path("M470.289 0C481.727 0 491 9.27213 491 20.71V274.067C491 285.505 481.727 294.777 470.289 294.777H20.71C9.27212 294.777 0 285.505 0 274.067V73.1762C0 61.7382 9.27236 52.4658 20.7104 52.4658H73.8691C83.8103 52.4658 91.8691 44.4069 91.8691 34.4658V20.7104C91.8691 9.27236 101.141 0 112.58 0H470.289Z");
          clip-path: path("M470.289 0C481.727 0 491 9.27213 491 20.71V274.067C491 285.505 481.727 294.777 470.289 294.777H20.71C9.27212 294.777 0 285.505 0 274.067V73.1762C0 61.7382 9.27236 52.4658 20.7104 52.4658H73.8691C83.8103 52.4658 91.8691 44.4069 91.8691 34.4658V20.7104C91.8691 9.27236 101.141 0 112.58 0H470.289Z");
}
.major-point-section .major-point-box .major-point-text-warpper {
  padding: 14px;
  border-radius: 15px;
  background-color: var(--primary-200);
  margin-right: 12px;
  margin-left: 14px;
  margin-top: -60px;
  position: relative;
}
.major-point-section .major-point-box .major-point-text-warpper .btn-line-warpper {
  margin-bottom: 12px;
}
.major-point-section .major-point-box .major-point-text-warpper .btn-line-warpper .point-button {
  padding: 12px;
  display: block;
  font-size: 12px;
  background-color: var(--common-white);
  border-radius: 555px;
  color: var(--common-primary);
  line-height: 13px;
  width: -moz-fit-content;
  width: fit-content;
}
.major-point-section .major-point-box .major-point-text-warpper .btn-line-warpper::after {
  content: "";
  display: block;
  background-color: var(--common-white);
  width: 100%;
  height: 1px;
}
.major-point-section .major-point-box .major-point-text-warpper .description-text {
  font-size: 12px;
  line-height: 16px;
  padding: 2px 0;
  margin-bottom: 0;
}

.image-description-wrapper .img-wrapper {
  min-height: 472px;
}
.image-description-wrapper .img-wrapper .main-image {
  filter: drop-shadow(0px 0px 20px rgba(146, 144, 144, 0.25));
  margin-bottom: 50px;
}
.image-description-wrapper .img-wrapper .floated-image {
  position: absolute;
  bottom: 0;
  right: 0;
  filter: drop-shadow(0px 21.455px 51.491px rgba(146, 144, 144, 0.25));
  max-width: 300px;
}
.image-description-wrapper .img-wrapper .floated-line-shape {
  position: absolute;
  bottom: 0;
  left: -90px;
}
.image-description-wrapper .img-wrapper .floated-star {
  position: absolute;
  top: 0;
  right: 0;
}

.management-bg-shape {
  width: 600px;
  height: auto;
  max-width: 35%;
}
.management-bg-shape.top-shape {
  top: 0;
  left: 0;
}
.management-bg-shape.center-shape {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.management-bg-shape.bottom-shape {
  bottom: 0;
  left: 0;
}

.step-box-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 30px;
}
.step-box-grid.reverce-step-column {
  grid-template-columns: 1fr 1.5fr 1.5fr;
}
.step-box-grid .step-box {
  background-color: var(--white);
  min-height: 275px;
  border-radius: 40px;
  padding: 35px;
  height: 100%;
}
.step-box-grid .step-box.bordered-box {
  border: 5px solid var(--primary-100);
  padding: 30px;
}
.step-box-grid .step-box .step-box-title {
  font-size: 28px;
  line-height: 1.3;
}
.step-box-grid .step-box .number-text-warpper .number-text {
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, rgba(220, 42, 36, 0) 0%, rgb(211, 8, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.step-box-grid .step-box .number-text-warpper p {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

.background-image-section {
  padding: 100px 0;
}
.background-image-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}
.background-image-section h1 {
  font-size: 64px;
  color: var(--black);
}
.background-image-section .breadcrumb-list .breadcrumb-list-item {
  color: var(--black);
  transition: all 0.5s ease;
}
.background-image-section .breadcrumb-list .breadcrumb-list-item:hover {
  color: var(--common-primary);
}

.why-choose-box {
  background-color: var(--primary-100-transparent);
  border-radius: 20px;
  padding: 30px;
}
.why-choose-box .box-text {
  font-size: 20px;
}

.how-it-work-section .work-flow-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.how-it-work-section .work-flow-list .work-flow-list-item:not(:last-child) .icon-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: calc(100% - 130px);
  height: 100%;
  max-height: 45px;
  background-image: url(../images/work-flow-line.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--common-primary);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0px;
  background-color: var(--white);
  font-size: 20px;
  line-height: 1;
}
.how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .circle-icon {
  width: 120px;
  height: 120px;
  padding: 35px;
  border: 1px solid var(--common-primary);
  border-radius: 50%;
  margin-left: 20px;
}
.how-it-work-section .work-flow-list .work-flow-list-item .worl-flow-text-wrapper {
  padding-right: 30px;
}
.how-it-work-section .work-flow-list .work-flow-list-item .worl-flow-text-wrapper .work-flow-title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.contact-info-card {
  background-color: var(--primary-100-transparent);
  border-radius: 40px;
  overflow: hidden;
}
.contact-info-card .contact-socials {
  background-color: var(--common-primary);
  padding: 26px 45px;
}
.contact-info-card .contact-socials .social-icons .social-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--common-white);
  border: 1px solid var(--common-white);
  border-radius: 50%;
}
.contact-info-card .contact-socials .social-icons .social-icon:hover {
  color: var(--common-primary);
  background-color: var(--common-white);
}

.benefits-biz-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bbp-left,
.bbp-right {
  width: 31%;
  position: relative;
  z-index: 0;
}

.benefits-of-spendwell {
  background: linear-gradient(359deg, rgba(255, 255, 255, 0.0196078431), rgba(0, 126, 255, 0.0509803922), rgba(255, 255, 255, 0));
  transition: 0.2s linear;
  padding: 3rem 0 0;
}

.benefits-spendwell-data {
  background: var(--white);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  margin-bottom: 3rem;
  gap: 13px;
  box-shadow: 0 10px 15px 1px var(--primary-100-transparent);
  align-items: start;
  position: relative;
  z-index: 1;
  min-height: 157px;
}
.benefits-spendwell-data:last-child {
  margin-bottom: 0;
}

.bbd-image .number-text {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, rgba(220, 42, 36, 0) 0%, rgb(211, 8, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-border {
  border: 4px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to right, rgba(212, 8, 8, 0.4), rgba(255, 255, 255, 0)) border-box;
}

.bbd-data h3 {
  font-size: 18px;
  color: var(--black);
  overflow: hidden;
  height: 21px;
  -webkit-line-clamp: 1;
  margin-bottom: 10px;
}

.bbd-data p {
  font-size: 13px;
  color: #6D6D6D;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-height: 1.8;
  font-weight: 500;
}

.bot-animation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--common-primary);
  transition: 0.2s linear;
  border-radius: 100%;
  display: block;
}

.bot-animation:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: var(--common-primary);
  animation: 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite pulse-ring;
}

.bot-animation:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  animation: 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite pulse-dot;
}

.bbp-left .bot-animation {
  right: -8px;
}

.bbp-right .bot-animation {
  left: -8px;
}

.circle-ripple {
  background-color: var(--primary-100-transparent);
  width: 150px;
  height: 150px;
  border-radius: 100%;
  animation: 1s linear infinite ripple;
  position: relative;
  z-index: 1;
}

.animation-spendwell {
  position: relative;
  z-index: 99;
}
.animation-spendwell .spendwell-logo-animation {
  position: relative;
}
.animation-spendwell .spendwell-logo-animation img {
  position: relative;
  z-index: 1;
}
.animation-spendwell .spendwell-logo-animation::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--primary-300);
  border-radius: 50%;
  z-index: -1;
}

.mascot-border {
  position: absolute;
  z-index: -1;
}
.mascot-border.border-top-left {
  border-radius: 0 50px 0 0;
  top: 50%;
  transform: translateY(-1px);
  left: 100%;
  width: 10rem;
  height: 180px;
  border-top: 3px dashed var(--primary-100);
  border-right: 3px dashed var(--primary-100);
}
.mascot-border.border-top-right {
  border-radius: 50px 0 0 0;
  top: 50%;
  transform: translateY(-1px);
  right: 100%;
  width: 10rem;
  height: 180px;
  border-top: 3px dashed var(--primary-100);
  border-left: 3px dashed var(--primary-100);
}
.mascot-border.border-center-left, .mascot-border.border-center-right {
  top: 50%;
  transform: translateY(calc(50% - 3px));
  width: 10rem;
  height: 2px;
  border-top: 3px dashed var(--primary-100);
}
.mascot-border.border-center-left {
  left: 100%;
}
.mascot-border.border-center-right {
  right: 100%;
}
.mascot-border.border-bottom-left {
  border-radius: 0 0 50px 0;
  bottom: 50%;
  transform: translateY(3px);
  left: 100%;
  width: 10rem;
  height: 100%;
  border-bottom: 3px dashed var(--primary-100);
  border-right: 3px dashed var(--primary-100);
}
.mascot-border.border-bottom-right {
  border-radius: 0 0 0 50px;
  bottom: 50%;
  transform: translateY(3px);
  right: 100%;
  width: 10rem;
  height: 100%;
  border-bottom: 3px dashed var(--primary-100);
  border-left: 3px dashed var(--primary-100);
}

.bbp-center {
  position: relative;
  z-index: 1;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, to {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0%, to {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes scale {
  0%, 100% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(1);
  }
}
.smooth-bounce {
  animation-name: bounce;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: center bottom;
}

.smooth-scale {
  animation-name: scale;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  transform-origin: center;
}

.animation-delay-1 {
  animation-delay: 0.3s;
}

.animation-delay-2 {
  animation-delay: 0.6s;
}

.animation-delay-3 {
  animation-delay: 0.9s;
}

.custom-mega-menu {
  background: var(--white);
  padding: 32px 0px;
  min-width: 900px;
  display: flex;
  gap: 32px;
}

.mega-menu-left {
  min-width: 220px;
  border-right: 1px solid var(--gray-100);
  padding-right: 24px;
}
.mega-menu-left .mega-menu-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-left .mega-menu-categories .category-item {
  font-size: 1.1rem;
  color: var(--black);
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mega-menu-left .mega-menu-categories .category-item.active, .mega-menu-left .mega-menu-categories .category-item:hover {
  background: var(--primary-100-transparent);
  color: var(--common-primary);
  font-weight: 600;
}

.mega-menu-right {
  flex: 1;
}
.mega-menu-right .category-content {
  display: none;
}
.mega-menu-right .category-content.active {
  display: block;
}
.mega-menu-right .category-content .menu-box {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: block;
}
.mega-menu-right .category-content .menu-box.active, .mega-menu-right .category-content .menu-box:hover {
  color: var(--common-primary) !important;
  background: var(--primary-100-transparent);
  box-shadow: 0 2px 8px rgba(220, 0, 0, 0.08);
}
.mega-menu-right .category-content .menu-box:last-child {
  margin-bottom: 0;
}

@media (max-width: 1399.98px) {
  .main-title {
    font-size: 40px;
  }
  .major-point-section .major-point-box .img-fluid {
    width: 100%;
    aspect-ratio: 1.69;
  }
  .image-description-wrapper .management-bg-shape {
    width: 400px;
  }
  .step-box-grid {
    gap: 20px;
  }
  .step-box-grid .step-box {
    padding: 25px;
    min-height: 215px;
    border-radius: 20px;
  }
  .step-box-grid .step-box.bordered-box {
    padding: 20px;
  }
  .step-box-grid .step-box .step-box-title {
    font-size: 20px;
  }
  .step-box-grid .step-box .number-text-warpper .number-text {
    font-size: 70px;
  }
  .step-box-grid .step-box .number-text-warpper p {
    font-size: 14px;
    line-height: 1.4;
  }
  .management-banner-section .management-images {
    margin: 55px 70px 0;
  }
  .management-banner-section .management-images .image-shape.shape-1 {
    top: -50px;
    left: -50px;
  }
  .management-banner-section .management-images .image-shape.shape-2 {
    bottom: -50px;
    right: -50px;
  }
  .management-banner-section .management-images .image-shape svg {
    width: 50px;
    height: auto;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item:not(:last-child) .icon-wrapper::after {
    right: 0px;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .number-circle {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .circle-icon {
    width: 100px;
    height: 100px;
    padding: 30px;
    margin-left: 15px;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item .worl-flow-text-wrapper .work-flow-title {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    background-color: var(--white);
    z-index: 111;
    width: 100%;
    left: 0;
    top: 77px;
    padding: 0 20px;
    display: block;
    height: calc(100dvh - 77px);
    transform: translateX(-100%);
    transition: all 0.2s ease;
  }
  .navbar-collapse.show {
    transform: translateX(0%);
  }
  .navbar-toggler {
    color: var(--black);
  }
  .navbar-toggler:focus {
    box-shadow: 0px 0px 3px 5px var(--primary-300);
  }
  .background-image-section {
    padding: 80px 0px;
  }
  .background-image-section h1 {
    font-size: 45px;
  }
  .mega-menu-overlay {
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 77px);
    transform: translateX(-100%);
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
  }
  .mega-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    animation: none;
  }
  .custom-mega-menu {
    min-width: 100%;
    flex-direction: column;
    padding: 0;
    gap: 20px;
    height: 100%;
  }
  .mega-menu-left {
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding-right: 0;
    padding-bottom: 0;
  }
  .mega-menu-left .mega-menu-categories {
    display: flex;
    flex-direction: column;
  }
  .mega-menu-left .mega-menu-categories .category-item {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 400 !important;
  }
  .mega-menu-right {
    padding: 15px;
    background-color: var(--gray-100);
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .mega-menu-right .category-content .row {
    flex-direction: column;
  }
  .mega-menu-right .category-content .menu-box {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--white);
  }
  .mega-menu-right .category-content .col-4 {
    width: 100%;
  }
  .mega-menu-right .category-content .col-xxl-3 {
    display: none;
  }
  .home-about-images .home-about-img.img-1 {
    left: -80px;
    width: 280px;
  }
  .home-about-images .home-about-img.img-2 {
    top: -5px;
    left: 170px;
    width: 210px;
  }
  .home-about-images .home-about-img.img-3 {
    bottom: -20px;
    left: 165px;
    width: 190px;
  }
  .home-about-images .home-about-img.img-4 {
    width: 90px;
  }
  .gradient-border {
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to bottom, rgba(212, 8, 8, 0.4), rgba(255, 255, 255, 0)) border-box;
  }
  .key-points-section {
    padding: 60px 0;
  }
  .future-ready-section .future-ready-tabs {
    grid-template-columns: repeat(5, 200px);
    overflow: auto;
    margin-bottom: 30px;
  }
  .future-ready-section .future-ready-tabs .nav-item .nav-link {
    padding-bottom: 25px;
  }
  .future-ready-section .future-ready-tabs .nav-item .nav-link .solution-icon {
    margin-bottom: 8px;
  }
  .future-ready-section .future-ready-tabs .nav-item .nav-link .solution-label {
    font-size: 16px;
  }
  .step-box-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-box-grid.reverce-step-column {
    grid-template-columns: 1fr 1fr;
  }
  .step-box-grid.reverce-step-column .step-box:first-child {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  .step-box-grid:not(.reverce-step-column) .step-box:last-child {
    grid-column: 1/span 2;
    grid-row: 1;
  }
  .step-box-grid .step-box {
    min-height: 130px;
  }
  .main-title {
    font-size: 35px;
  }
  .faq-section .faq-title {
    font-size: 2rem;
  }
  .faq-section .faq-subtitle {
    font-size: 1.3rem;
  }
  .faq-section .faq-help-btn {
    font-size: 1rem;
  }
  .faq-section .faq-label-box {
    width: 60px;
    height: 60px;
  }
  .faq-section .faq-label-text {
    font-size: 1.2rem;
  }
  .faq-section .faq-images img {
    max-width: 120px;
  }
  .footer-copy {
    position: unset !important;
    width: auto !important;
  }
  .mega-menu {
    min-width: 100vw;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 18px 18px;
  }
  .mascot-border {
    display: none;
  }
  .how-it-work-section .work-flow-list {
    grid-template-columns: 1fr 1fr;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item:not(:last-child) .icon-wrapper::after {
    display: none;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .number-circle {
    top: 0;
  }
  .how-it-work-section .work-flow-list .work-flow-list-item .icon-wrapper .circle-icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
  .bbp-left,
  .bbp-right,
  .benefits-biz-panel {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bbp-left,
  .bbp-right {
    width: 100%;
    position: relative;
    display: flex;
    gap: 30px;
  }
  .benefits-biz-panel {
    max-width: 500px;
    margin: 1rem auto auto;
  }
  .bbp-left {
    order: 2;
  }
  .animation-spendwell .spendwell-logo-animation img {
    width: 150px;
  }
  .benefits-spendwell-data {
    min-height: unset;
    margin-bottom: 20px;
  }
  .bbp-center {
    order: 1;
    margin: 0 0 4rem;
  }
  .bbp-right {
    order: 2;
    margin-top: 30px;
  }
  .bbp-left:before,
  .bbp-right:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    border-left: 1px dashed #afafaf;
    left: auto;
    right: auto;
    top: -65px;
    margin-left: 2px;
  }
  .bot-animation {
    position: absolute;
    top: 0;
    left: 50% !important;
    right: unset !important;
    transform: translateX(-50%);
    z-index: 0;
  }
  .why-choose-box {
    border-radius: 14px;
    padding: 20px;
    height: 100%;
  }
  .why-choose-box img {
    width: 40px;
    height: auto;
  }
  .why-choose-box .box-text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .step-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-box-grid.reverce-step-column {
    grid-template-columns: 1fr;
  }
  .step-box-grid.reverce-step-column .step-box:first-child {
    grid-column: 1;
    grid-row: 3;
  }
  .step-box-grid:not(.reverce-step-column) .step-box:last-child {
    grid-column: 1;
    grid-row: 1;
  }
  .step-box-grid .step-box {
    min-height: 130px;
  }
  .step-box-grid .step-box .number-text-warpper .number-text {
    font-size: 50px;
  }
  .image-description-wrapper .img-wrapper {
    min-height: 350px;
  }
  .image-description-wrapper .img-wrapper .floated-image {
    max-width: 250px;
    max-height: 140px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center right;
       object-position: center right;
  }
  .image-description-wrapper .img-wrapper .floated-line-shape {
    left: -40px;
    width: 100px;
  }
  .image-description-wrapper .img-wrapper .floated-star {
    width: 40px;
  }
  .faq-section .faq-title {
    font-size: 1.3rem;
  }
  .faq-section .faq-subtitle {
    font-size: 1rem;
  }
  .faq-section .faq-help-btn {
    font-size: 0.8rem;
  }
  .faq-section .faq-label-box {
    width: 40px;
    height: 40px;
  }
  .faq-section .faq-label-text {
    font-size: 0.8rem;
  }
  .faq-section .faq-images img {
    max-width: 80px;
  }
  .footer-section .footer-list {
    grid-template-columns: 1fr;
  }
  .collab-btn {
    top: 260px;
    width: 100px;
    height: 100px;
  }
  .collab-title {
    line-height: 130px;
  }
  .industry-pill {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  .industry-list-item {
    font-size: 1.1rem;
  }
  .how-it-work-section .work-flow-list {
    grid-template-columns: 1fr;
  }
  .future-ready-section .future-ready-tabs {
    grid-template-columns: repeat(5, 175px);
  }
}
@media (max-width: 575.98px) {
  .main-title {
    font-size: 30px;
  }
  .navbar .navbar-brand img {
    height: 30px;
  }
  .toggle-switch,
  .toggle-icon {
    width: 50px;
    height: 26px;
  }
  .toggle-switch::before,
  .toggle-icon::before {
    top: 4px;
    left: 6px;
    width: 18px;
    height: 18px;
  }
  .management-images .image-shape.shape-1 {
    top: -50px;
    left: -20px;
  }
  .management-images .image-shape.shape-1 svg {
    width: 30px;
  }
  .management-images .image-shape.shape-2 {
    bottom: -50px;
    right: -20px;
  }
  .management-images .image-shape.shape-2 svg {
    width: 30px;
  }
  .management-images .image-shape.shape-3 {
    width: 90px;
    left: -8px;
  }
  .management-images .image-shape.shape-4 {
    width: 150px;
    right: -8px;
  }
  .home-about-images .home-about-img.img-1 {
    left: -25%;
    width: 220px;
  }
  .home-about-images .home-about-img.img-2 {
    top: -5px;
    left: 50%;
    width: 160px;
  }
  .home-about-images .home-about-img.img-3 {
    bottom: 0px;
    left: 69%;
    width: 130px;
  }
  .home-about-images .home-about-img.img-4 {
    width: 70px;
  }
  .image-description-wrapper .management-bg-shape {
    width: 250px;
  }
  .major-point-section .major-point-box .major-point-text-warpper {
    margin-top: -30px;
  }
  .major-point-section .major-point-box .major-point-text-warpper .btn-line-warpper .point-button {
    padding: 8px 14px;
  }
  .why-choose-box .box-text {
    font-size: 14px;
  }
  .management-banner-section {
    padding: 40px 0px;
  }
  .management-banner-section .management-images {
    margin: 40px 30px 0;
  }
  .management-banner-section .management-images .image-shape.shape-1 {
    top: -30px;
    left: -30px;
  }
  .management-banner-section .management-images .image-shape.shape-2 {
    bottom: -30px;
    right: -30px;
  }
  .management-banner-section .management-images .image-shape svg {
    width: 30px;
    height: auto;
  }
  .background-image-section h1 {
    font-size: 35px;
  }
}/*# sourceMappingURL=style.css.map */