* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', sans-serif;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== SECTION BASE ===== */
.about-section {
  position: relative;
  overflow: hidden;
}

/* ===== LAYOUT ===== */
.about-content-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.about-content-warp {
  width: 50%;
}

.about-image-warp {
  width: 45%;
  position: relative;
  height: 80vh;
}

/* ===== LEFT TITLE ===== */
.about-scroll-title {
  margin-bottom: 40px;
}

.about-scroll-title h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
}

/* ===== TEXT PARAGRAPHS ===== */
.about-text-outer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-text-warp {
  opacity: 0.4;
  transition: opacity 0.3s ease;
  will-change: opacity;
  height: 65px;
  overflow: hidden;
}

.about-text-warp.active {
  opacity: 1;
}

.about-text h4 {
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* ===== IMAGE STACK ===== */
.about-img-box {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.about-img-box.active {
  opacity: 1;
  z-index: 2;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== BUTTON ===== */
.about-btn {
  margin-top: 40px;
}

/* ===== PREVENT TEXT SELECTION DURING SCROLL ===== */
.about-section {
  user-select: none;
}

/* ===== SMOOTH PERFORMANCE ===== */
.about-text-warp,
.about-img-box {
  will-change: opacity;
}

/* Header Styles */
header {
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.header-container {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center flex-start;
  align-items: center;
  gap: 0;
  width: 1px;
  max-width: 1640px;
  height: min-content;
  padding: 20px 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-header {
  --selection-background-color: #0099ff26;
  --selection-color: #09f;
  z-index: 1;
  flex-flow: row;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 5px;
  width: 1px;
  height: min-content;
  padding: 16px 20px 16px 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-header::before {
  content: '';
  border-width: 1px;
  border-color: #0b0b0b;
  border-style: solid;
  box-sizing: border-box;
  border-radius: inherit;
  corner-shape: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.logo {
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: min-content;
  height: 29px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.logo a {
  height: 61px;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  padding: 0 17px;
  text-decoration: none;
  display: flex;
  position: relative;
  border-bottom-width: 1px;
  border-color: #0b0b0b;
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-top-width: 1px;
  width: auto;
  aspect-ratio: 3.33333 / 1;
  will-change: auto;
  opacity: 1;
}

nav.nav-menu {
  height: min-content;
  flex-flow: wrap;
  flex: 1 0 0;
  place-content: center flex-end;
  align-items: center;
  gap: 10px 40px;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.3s;
  line-height: 19.2px;
  font-variation-settings: normal;
  font-family: 'Inter', sans-serif;
}

.contact-btn {
  background-color: #1a1a1a;
  color: white;
  padding: 0 19.5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  flex: none;
  width: auto;
  height: 61px;
  position: relative;
  border: 1px solid rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  transition: color 0.3s;
  line-height: 19px;
  font-variation-settings: normal;
  font-family: 'Inter', sans-serif;
}

.logo a img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center;
  object-fit: contain;
}

.contact-btn:hover {
  background-color: #333;
  color: white;
}

/* Main Content Area */
main.custom-blog-single {
  place-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 31px;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 160px 0px 84px;
  position: relative;
  width: 100%;
}

.single-blog-inner {
  place-content: center;
  align-items: start;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 40px;
  height: min-content;
  max-width: 1640px;
  overflow: visible;
  padding: 0px 30px;
  position: relative;
  width: 100%;
}

.blog-feature-image img {
  width: 100%;
  border-radius: 20px;
  height: 711px;
  object-fit: cover;
}

.blog-feature-image {
  width: 100%;
}

.blog-content-inner p {
  font-size: 16px;
  color: #0b0b0b;
  font-weight: 400;
  line-height: 29px;
  font-family: 'Inter', sans-serif;
}

.blog-hero-inner .blog-date {
  border-bottom-width: 1px;
  border-color: #0b0b0b;
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  padding: 3px 13px;
  display: flex;
  position: relative;
  width: fit-content;
  margin: 0 0 10px;
  color: #0b0b0b;
}

.blog-hero-inner h1.blog-title {
  font-size: 50px;
  line-height: 54px;
  color: #0b0b0b;
  font-weight: 500;
  letter-spacing: 0.6px;
  font-family: 'Inter', sans-serif;
  padding-right: 0;
  margin-bottom: 0;
}

.error-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 80px 60px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.error-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.back-btn {
  background-color: #c8e6c9;
  color: #000;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}

.back-btn:hover {
  background-color: #a5d6a7;
  color: #000;
}

.after-main-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(514px, 1fr));
}

/* =================== Footer ===================== */

.footer-dark-inner {
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 100px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: rgb(26, 26, 26);
}

.footer-wrapper {
  display: contents;
}

.footer-side-image {
  z-index: 1;
  flex: none;
  width: 584px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.footer-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center center;
  object-fit: cover;
}

.footer-image {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  inset: 0px;
}

.footer-overlay {
  flex: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: linear-gradient(
    rgba(26, 26, 26, 0.19) 0%,
    rgba(26, 26, 26, 0.73) 57.6577%,
    rgb(26, 26, 26) 100%
  );
  opacity: 1;
}

.footer-content {
  z-index: 1;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-end center;
  align-items: flex-end;
  gap: 72px;
  width: auto;
  max-width: 1360px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-content-top {
  flex-flow: column;
  flex: none;
  place-content: flex-end flex-start;
  align-items: flex-end;
  gap: 56px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-top-title {
  flex-flow: column;
  flex: none;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 73%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.top-title-one {
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-title h1 span {
  color: #2b8552;
}

.top-title-two {
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: 96%;
  max-width: 1070px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.top-title-description {
  z-index: 1;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  max-width: 367px;
  height: min-content;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 153px;
  left: 680px;
  right: 0;
  overflow: visible;
}

.footer-title h1 {
  font-size: 100px;
  color: #f2f2f2;
  line-height: 115.5px;
  letter-spacing: -3.5px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.top-title-description p {
  font-size: 18px;
  color: #d1d1d1;
  line-height: 27.36px;
  vertical-align: baseline;
  letter-spacing: -0.1px;
  font-weight: 300;
}

a.footer-contact-btn {
  border-bottom-width: 0px;
  --border-color: rgba(0, 0, 0, 0);
  --border-left-width: 0px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 0px;
  background-color: #2b8552;
  opacity: 1;
  padding: 10px 16px;
  cursor: unset;
  height: min-content;
  overflow: clip;
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  text-decoration: none;
  display: flex;
  position: relative;
  color: #0b0b0b;
  font-weight: 500;
}

.footer-content-bottom {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1018px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-top-nav {
  flex-flow: row;
  flex: none;
  place-content: center space-between;
  align-items: center;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-social-icon {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center space-between;
  align-items: center;
  width: 1px;
  max-width: 189px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-social-icon span {
  flex: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.footer-top-btn a.footer-contact-btn span {
  flex: none;
  width: auto;
  height: auto;
  position: relative;
  white-space: pre;
  font-size: 16px;
  line-height: 20.8px;
  font-feature-settings: 'blwf', 'cv03', 'cv04', 'cv09', 'cv11';
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.footer-social-icon span a {
  cursor: pointer;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-social-icon span a .linked-in {
  aspect-ratio: 1;
  height: 14px;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 14px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
  transform: none;
  transform-origin: 50% 50% 0px;
}

.corner {
  --border-bottom-width: 0px;
  --border-color: rgba(0, 0, 0, 0);
  --border-left-width: 0px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 0px;
  border-radius: 0px;
  opacity: 1;
  will-change: auto;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0;
  overflow: visible;
}

/* .corner span {
    z-index: 1;
    flex-flow: row;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 10px;
    width: 20%;
    height: 20%;
    padding: 0;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
} */

.corner span:nth-child(1) {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 20%;
  height: 20%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  --border-bottom-width: 0px;
  --border-color: rgb(109, 109, 109);
  --border-left-width: 1px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 1px;
  opacity: 1;
  will-change: auto;
}

.corner span:nth-child(2) {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 19%;
  height: 19%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 81.25%;
  overflow: visible;
  --border-bottom-width: 0px;
  --border-color: rgb(109, 109, 109);
  --border-left-width: 1px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 1px;
  transform: rotate(90deg);
  opacity: 1;
  will-change: auto;
}

.corner span:nth-child(3) {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 19%;
  height: 19%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 26px;
  left: 81.25%;
  overflow: visible;
  --border-bottom-width: 0px;
  --border-color: rgb(109, 109, 109);
  --border-left-width: 1px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 1px;
  transform: rotate(-180deg);
  opacity: 1;
  will-change: auto;
}

.corner span:nth-child(4) {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 19%;
  height: 19%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 26px;
  left: 0%;
  overflow: visible;
  --border-bottom-width: 0px;
  --border-color: rgb(109, 109, 109);
  --border-left-width: 1px;
  --border-right-width: 0px;
  --border-style: solid;
  --border-top-width: 1px;
  transform: rotate(-90deg);
  opacity: 1;
  will-change: auto;
}

.corner span:before {
  content: '';
  border-width: 1px 0 0 1px;
  border-color: rgb(109, 109, 109);
  border-style: solid;
  box-sizing: border-box;
  border-radius: inherit;
  corner-shape: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-top-nav .footer-nav-list {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center flex-start;
  align-items: center;
  gap: 24px;
  width: 1px;
  max-width: 421px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
  justify-content: space-between;
}

.footer-top-nav .footer-nav-list a {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.1px;
  line-height: 27.36px;
  color: #fff;
  text-decoration: none;
  font-family: 'Spline Sans', 'Spline Sans Placeholder', sans-serif;
}

.footer-social-icon span a .linked-in svg {
  fill: #f2f2f2;
}

.footer-bottom-nav {
  /* border-bottom-width: 1px;
  border-color: rgb(61, 61, 61);
  border-left-width: 0px;
  border-right-width: 0px;
  border-style: solid;
  border-top-width: 1px; */
  opacity: 1;
  flex-flow: row;
  flex: none;
  place-content: center space-between;
  align-items: center;
  width: 100%;
  height: min-content;
  padding: 20px 0 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-bottom-nav .footer-nav-list {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center flex-start;
  align-items: center;
  gap: 12px;
  width: 1px;
  max-width: 282px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-bottom-nav .footer-nav-list a {
  white-space: pre;
  flex: none;
  width: auto;
  height: auto;
  position: relative;
  font-size: 16.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 19.2px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-stretch: 100%;
  font-variant: no-common-ligatures;
}

.footer-nav-list span.dot {
  flex: none;
  width: 5px;
  height: 5px;
  position: relative;
  overflow: visible;
  background-color: rgb(242, 242, 242);
  border-radius: 50px;
}

.footer-copyright {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center flex-end;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.footer-copyright span {
  color: #d1d1d1;
  font-size: 18px;
  line-height: 27.36px;
  letter-spacing: -0.1px;
  font-weight: 300;
  font-family: 'Spline Sans', 'Spline Sans Placeholder', sans-serif;
}

.main-header {
  z-index: 9;
  flex: none;
  order: -1000;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* ==== Hero Banner CSS Start ==== */
.hero-section {
  height: min-content;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 250px 0 30px;
  display: flex;
  position: relative;
}

.hero-section .video-banner {
  height: 100%;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
}

.hero-section .video-sec {
  z-index: 0;
  flex: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -0.056624%;
  left: 0%;
}

.video-sec video {
  cursor: auto;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  display: block;
  object-fit: cover;
  background-color: #0b0b0b;
  object-position: 50% 50%;
}

.video-overlay {
  -webkit-user-select: none;
  user-select: none;
  background-color: #0b0b0b;
  opacity: 0.6;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  flex: none;
  width: 100%;
  position: absolute;
  top: -0.0566244%;
  left: 0%;
}

.hero-banner-content {
  max-width: 1640px;
  height: min-content;
  z-index: 2;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 1px;
  padding: 0 30px 20px;
  display: flex;
  position: relative;
}

.banner-content-wrap {
  flex-flow: row;
  flex: none;
  place-content: flex-end flex-start;
  align-items: flex-end;
  gap: 47px;
  width: 100%;
  height: min-content;
  padding: 0 0 135px;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-banner-content {
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start flex-end;
  align-items: flex-start;
  gap: 40px;
  width: 1px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.banner-main-content {
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.hero-title h1 {
  color: #fff;
  font-size: 80px;
  line-height: 88px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.hero-title h1 span:nth-child(2) {
  color: #2b8552;
}

.hero-sub-title p {
  color: #fff;
  font-size: 22px;
  line-height: 24.2px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.hero-btn a {
  place-content: center;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  background-color: #2b8552;
  border: 1px solid transparent;
  color: #fff;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
}

.hero-btn a:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

/* ==== Hero Banner CSS End ==== */

/* ==== Process Section CSS Start ==== */
.process-section {
  background-color: #fff;
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
  padding: 80px 30px 0;
  display: flex;
  position: relative;
}

.container-box {
  max-width: 1200px;
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.inner-process-warp {
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.top-title-sec {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  height: min-content;
  padding: 20px 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.small-box-title-outer {
  /* aspect-ratio: 9.4; */
  height: auto;
  flex: none;
  min-width: 235px;
  position: relative;
}

.small-box-title {
  border: 1px solid #2b8552;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  opacity: 1;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  padding: 4px 14px;
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}

.inner-small-box-title {
  white-space: pre;
  flex: none;
  width: auto;
  height: auto;
  position: relative;
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
}

.inner-small-box-title p {
  margin: 0;
  color: #636363;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.title-outer {
  height: min-content;
  flex-flow: column;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 30px;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.title {
  z-index: 1;
  flex: none;
  width: 765px;
  height: auto;
  position: relative;
}

.title h2 {
  color: #0b0b0b;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
  letter-spacing: 1px;
  /* line-height: 1.05; */
}

.counter-section .title h2 {
  text-align: center;
}

.title h2 span {
  color: #2b8552;
}

.text p {
  color: #0b0b0b;
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.text p:last-child {
  margin-bottom: 0;
}

.card-boxes-warp {
  height: min-content;
  z-index: 1;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 30px 0 0;
  display: flex;
  position: relative;
}

.card-boxes {
  flex: none;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  height: min-content;
  padding: 0;
  display: grid;
  position: relative;
  overflow: visible;
}

.card-box .inner-card-box {
  flex-flow: column;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.card-content {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 269px;
  padding: 40px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.inner-process-warp .card-content {
  border: 1px solid transparent;
  transition: 0.3s;
}

.inner-process-warp .card-content:hover {
  border: 1px solid #2b8552;
  transition: 0.3s;
}

.card-icon {
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 66px;
  height: 65px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #2b8552;
  border-radius: 150px;
}

.icon-box {
  mix-blend-mode: luminosity;
  flex: none;
  width: 38px;
  height: 38px;
  position: relative;
  overflow: visible;
}

.icon-box img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center;
  object-fit: cover;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(327deg) brightness(104%) contrast(102%);
}

.card-box-content-outer {
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 25px;
  width: 300px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-box-content {
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-title h6 {
  color: #0b0b0b;
  font-size: 22px;
  line-height: 24.2px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.card-text p {
  margin: 0;
  color: #636363;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.card-text {
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
  max-width: 300px;
  position: relative;
  text-align: center;
}

.common-btn-outer {
  z-index: 1;
  flex: none;
  width: auto;
  height: auto;
  position: absolute;
  bottom: 23px;
  left: 49%;
  transform: translate(-50%);
}

.common-btn a {
  place-content: center;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  display: flex;
  text-transform: uppercase;
  position: relative;
  background-color: #2b8552;
  border: 1px solid transparent;
  color: #fff;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: 0.3s;
}

.common-btn a:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

/* ==== Process Section CSS End ==== */

/* ==== Approch CSS Start ==== */
.approch-section {
  background-color: #fff;
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
  padding: 40px 30px 50px;
  display: flex;
  position: relative;
}

.inner-approch-warp {
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.steps-boxes {
  height: auto;
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: sticky;
  top: 180px;
}

.blank-box {
  flex-flow: column;
  flex: 1 0 0;
  place-content: center flex-end;
  align-items: center;
  gap: 8px;
  width: 1px;
  height: 100%;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.step-box-content-outer {
  flex: 1 0 0;
  width: 1px;
  height: 100%;
  position: relative;
}

.step-box-content {
  flex-flow: column;
  place-content: flex-start space-between;
  align-items: flex-start;
  width: 250px;
  height: 394px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
  background-color: #f7f7f7;
  height: 100%;
  width: 100%;
  will-change: transform;
  opacity: 1;
  transform: none;
}

.step-content {
  /* flex-flow: column; */
  /* flex: 1 0 0; */
  place-content: center space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 16px;
  /* display: flex; */
  position: relative;
  overflow: hidden;
  background-color: #2b8552;
}

.step-number-box {
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 0;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.step-number {
  flex: none;
  width: auto;
  height: auto;
  position: relative;
}

.step-number p {
  color: #fff;
  font-size: 118px;
  line-height: 141.6px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.inner-step-box {
  display: contents;
}

.step-content-box {
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.step-title h4 {
  color: #fff;
  font-size: 22px;
  line-height: 26.5px;
  font-weight: 500;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.step-text p {
  color: rgb(255 255 255 / 70%);
  font-size: 16px;
  line-height: 17.6px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  min-height: 135px;
}

.step-content-box .step-text p {
  min-height: 135px;
}

.approch-section .top-title-sec {
  position: sticky;
  top: 0;
  padding: 60px 0 30px;
}

/* ==== Approch CSS End ==== */

/* ==== About Section CSS Start ==== */
.about-section {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 16px;
  /* width: 100%; */
  max-width: 100% !important;
  /* width: 100vw !important; */
  /* transform: translateX(-50%); */
  /* height: 350vh; */
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
  background-color: #fff;
}

section.expanded {
  height: 350vh;
}

.about-outer {
  display: contents;
}

.content-clear {
  display: contents;
}

.about-container {
  z-index: 1;
  flex: none;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.about-content-outer {
  height: 100vh;
  padding: 30px;
  z-index: 1;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start flex-end;
  align-items: flex-start;
  gap: 16px;
  width: 1px;
  display: flex;
  position: relative;
  overflow: visible;
}

.about-content-warp {
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
  height: 1px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.about-content {
  z-index: 3;
  flex: none;
  width: 1060px;
  height: auto;
  position: relative;
}

.about-warp {
  height: min-content;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 16px;
  width: 1200px;
  padding: 0;
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
}

.about-content-divide {
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 16px;
  width: 700px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
  width: 100%;
}

.about-scroll-title {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-self: stretch;
  align-items: center;
  gap: 16px;
  width: min-content;
  height: auto;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.scroll-title {
  width: 340px;
}

.scroll-title h2,
.scroll-title-mob h2 {
  color: #2b8552;
  font-size: 49px;
  line-height: 49px;
  letter-spacing: -2.45px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.about-text-outer {
  height: min-content;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 8px;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.about-text h4 {
  color: #fff;
  font-size: 23px;
  line-height: 32.3px;
  letter-spacing: -0.92px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.common-rounded-btn a {
  cursor: pointer;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #f7f5f2;
  border-radius: 26px;
  transform-origin: 50% 50% 0px;
  transform: none;
  will-change: auto;
  opacity: 1;
  color: #0a0a0a;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: -0.64px;
  font-family: 'Inter', sans-serif;
}

.about-image-warp {
  z-index: 1;
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 16px;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: visible;
  filter: brightness(0.6);
  will-change: transform;
  opacity: 1;
  width: 100%;
  height: 100%;
  transform: none;
}

.about-img-box {
  z-index: 3;
  flex: none;
  position: absolute;
  inset: 0;
  filter: brightness(0.6);
  opacity: 1;
  will-change: transform;
}

.about-img {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center;
  object-fit: cover;
}

.about-btn {
  z-index: 2;
  flex: none;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ==== About Section CSS End ==== */

/* ==== Counter Section CSS Start ==== */
.counter-section {
  background-color: #fff;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: min-content;
  padding: 120px 0 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.counter-section .container-box {
  z-index: 2;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 1px;
  max-width: 1250px;
  height: min-content;
  padding: 0 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.counter-box-warp {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 55px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.counter-box-warp .top-title-sec {
  z-index: 1;
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 80%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.counter-box-warp .small-box-title-outer {
  aspect-ratio: unset;
  height: auto;
  flex: none;
  width: auto;
  position: relative;
}

.counter-box-warp .title-outer {
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
  width: 100%;
}

.counter-box-warp .title {
  width: auto;
}

.counter-box-outer {
  height: min-content;
  border-radius: 0;
  flex-flow: wrap;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 30px 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
  border: 1px solid #d3d3d3;
}

.counter-box-content {
  display: contents;
}

.c-box-content {
  flex: 1 0 0;
  width: 1px;
  height: auto;
  position: relative;
}

.inner-c-box {
  height: min-content;
  flex-flow: column;
  place-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.box-content-warp {
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: min-content;
  padding: 12px 0 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.counter-icon {
  height: 28px;
  flex: none;
  position: relative;
  width: 50px;
  transform: rotate(-35deg);
}

.c-image-icon {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-image-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center;
  object-fit: contain;
}

.inner-number span {
  font-size: 40px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  line-height: 40px;
  color: #0b0b0b;
}

.counter-text {
  flex: none;
  width: 164px;
  height: auto;
  position: relative;
}

.counter-text p {
  color: #636363;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin: 0 auto;
  max-width: 95%;
}

.counter-divider-line {
  user-select: none;
  height: auto;
  pointer-events: none;
  flex: none;
  align-self: stretch;
  width: 1px;
  position: relative;
  border: 1px solid #d3d3d3;
}

.rutate-none {
  transform: rotate(0);
}

.number-circle p {
  color: #fff;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* ==== Counter Section CSS End ==== */

/* ==== Steps Section CSS Start ==== */
.steps-section {
  background-color: #fff;
  height: min-content;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.inner-step-box {
  height: auto;
  flex-flow: row;
  flex: 1 0 0;
  place-content: center;
  /* align-items: center; */
  gap: 0;
  width: 1px;
  padding: 0 30px;
  display: flex;
  position: relative;
}

.approch-section .inner-step-box {
  padding: 0;
  background-color: #2b8552;
}

.step-left-content {
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 10px;
  width: 40%;
  padding: 55px 0 0 40px;
  display: flex;
  position: relative;
}

.step-left-content .title {
  z-index: 1;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: auto;
  height: auto;
  position: relative;
}

.step-left-content .step-text {
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 382px;
  height: auto;
  position: relative;
}

.step-right-content {
  flex-flow: row;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 14px;
  width: 64%;
  height: min-content;
  padding: 55px 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.step-left-content .common-btn-outer {
  position: relative;
  bottom: auto;
  left: 0;
  transform: none;
}

.step-content-image-outer {
  height: 439px;
  flex-flow: column;
  flex: none;
  place-content: flex-start;
  align-items: flex-start;
  gap: 0;
  width: 695px;
  padding: 0;
  display: flex;
  position: relative;
  justify-content: center;
}

.step-left-content .step-text p {
  color: #636363;
  font-size: 20px;
  line-height: 24px;
  min-height: auto;
}

.step-content-image-warp {
  display: contents;
}

.inner-sc-img {
  height: 480px;
  flex: revert;
  width: 510px;
  position: relative;
  margin: 8px 0 0;
}

.sc-img {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sc-img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center;
  object-fit: cover;
}

.s-step {
  display: contents;
}

.s-step-content-box {
  z-index: 1;
  flex: none;
  /* width: 294px; */
  /* height: 125px; */
  position: absolute;
  top: 60px;
  left: 400px;
}

.top-step-box {
  flex-flow: row;
  flex: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.number-circle {
  display: flex;
  background-color: #2b8552;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50px;
}

.step-box-title p {
  color: #636363;
  font-size: 20px;
  line-height: 22px;
  margin: 0;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.step-list-box p {
  margin: 0;
  color: #636363;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  display: flex;
}

.step-list-box p .step-list-text {
  margin-left: 5px;
}


.step-list-box p .step-list-icon {
  color: #2b8552;
  /* width: 13px;
  height: 13px; */
  /* display: inline-block; */
  /* padding: 0 6px 0 0; */
  position: relative;
  top: 1px;
}

.step-list-box p .step-list-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(76%) sepia(15%) saturate(488%)
    hue-rotate(70deg) brightness(101%) contrast(97%);
}

.step-list-box-outer {
  padding: 2px 0 0 27px;
}

.s-step-2 .s-step-content-box {
  top: calc(51.4735% - 62.5px);
  left: 474px;
}

.s-step-3 .s-step-content-box {
  top: inherit;
  bottom: 90px;
  left: 444px;
}

.s-step-4 .s-step-content-box {
  top: inherit;
  bottom: 80px;
  left: -200px;
  margin: auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==== Steps Section CSS End ==== */

/* ==== Contact Section CSS Start ==== */
.contact-section {
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  height: min-content;
  padding: 100px 0;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #111;
  width: 100%;
}

.contact-section .container-box {
  flex: 1 0 0;
  grid-template-rows: repeat(1, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  justify-content: center;
  gap: 0;
  width: 1px;
  max-width: 1200px;
  height: min-content;
  padding: 0 30px;
  display: grid;
  position: relative;
  overflow: visible;
}

.contact-left-content .top-title-sec {
  flex-flow: column;
  flex: none;
  place-content: flex-start center;
  place-self: start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 640px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-left-content .top-title-sec .small-box-title {
  height: 100%;
  width: fit-content;
}

.contact-left-content .top-title-sec .inner-small-box-title p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.contact-left-content .top-title-sec .title-outer {
  width: fit-content;
}

.contact-left-content .top-title-sec .title {
  z-index: 1;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
  max-width: 325px;
  height: auto;
  position: relative;
}

.contact-left-content .top-title-sec .title h2 {
  color: #fff;
  line-height: 52.8px;
  font-size: 44px;
  letter-spacing: -1.32px;
  margin-bottom: 20px;
}

.rate-stars {
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  /* width: min-content; */
  /* height: min-content; */
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rate-stars .star-icon {
  display: flex;
  width: 22px;
  height: 22px;
  position: relative;
}

.contact-right-form .common-btn-outer {
  position: revert;
  transform: none;
}

.contact-right-form .common-btn a {
  display: inline-flex;
}

.contact-right-form {
  flex-flow: column;
  flex: none;
  grid-column: span 2;
  place-content: flex-start;
  place-self: start;
  align-items: flex-start;
  gap: 44px;
  width: 100%;
  height: min-content;
  padding: 0 0 0 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-right-form form {
  flex-flow: column;
  flex: none;
  grid-column: span 2;
  place-content: flex-start;
  place-self: start;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  height: min-content;
  padding: 0 0 0px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-right-form form .form-box {
  flex: none;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  grid-auto-rows: min-content;
  justify-content: center;
  gap: 30px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: grid;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.contact-right-form form .form-box .form-group:nth-child(1),
.contact-right-form form .form-box .form-group:nth-child(6) {
  flex-flow: column;
  flex: none;
  grid-column: span 2;
  place-content: flex-start;
  place-self: start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
}

.contact-right-form form .form-box .form-group input {
  width: 100%;
  height: 54px;
  position: relative;
  border-radius: 0 !important;
  border: 1px solid transparent;
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
  outline: none;
  padding: 10px;
  font-size: 15px;
  line-height: 19.2px;
  letter-spacing: -0.48px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.contact-right-form form .form-box .form-group textarea {
  width: 100%;
  height: auto;
  min-height: 150px;
  position: relative;
  border-radius: 0 !important;
  border: 1px solid transparent;
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
  outline: none;
  padding: 10px;
  font-size: 16px;
  height: 150px;
  line-height: 19.2px;
  letter-spacing: -0.48px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.contact-right-form form .form-box .form-group input::placeholder,
.contact-right-form form .form-box .form-group textarea::placeholder {
  color: #fff;
}

.contact-right-form form .form-box .form-group input:focus,
.contact-right-form form .form-box .form-group textarea:focus {
  border: 1px solid #fff;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0) !important;
}

.form-box .form-group p {
  width: 100%;
  margin: 0;
}

.form-box .form-group {
  margin-bottom: 0;
}

.common-btn-outer .common-btn p input {
  cursor: pointer;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  padding: 14px 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  border-radius: 0;
  background-color: #2b8552;
  border: 1px solid #2b8552;
  font-size: 16px;
  color: #fff;
  line-height: 20.8px;
  font-family: 'Inter', sans-serif;
}

.common-btn-outer .common-btn p input:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.common-btn-outer .common-btn p span.wpcf7-spinner {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -40px;
}

.common-btn-outer .common-btn p {
  margin: 0;
  position: relative;
}

.contact-right-form .common-btn-outer {
  margin: 0px 0 0;
}

.contact-left-content {
  flex-flow: column;
  flex: none;
  place-content: flex-start center;
  place-self: start;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  max-width: 640px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* ==== Contact Section CSS End ==== */

/* ==== FAQ Section CSS Start ==== */

.faq-left-accordion-outer .accordion-item {
  background-color: transparent;
}

.faq-section {
  height: min-content;
  background-color: #fff;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 50px 0;
  display: flex;
  position: relative;
}

.faq-section .container-box {
  z-index: 2;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 1px;
  max-width: 1640px;
  height: min-content;
  padding: 0 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-faq {
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-faq .small-box-title {
  width: min-content !important;
}

.heading-box {
  flex-flow: row;
  flex: none;
  place-content: center space-between;
  /* align-items: center; */
  width: 100%;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.heading-box .top-title-sec {
  z-index: 1;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.heading-box .top-title-sec .title-outer {
  width: fit-content;
}

.empty-box {
  height: min-content;
  min-height: 49px;
  flex-flow: row;
  flex: 1 0 0;
  place-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.faq-content-outer {
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 20px 0 0;
  display: flex;
  position: relative;
}

.faq-left-accordion-outer {
  flex: 1 0 0;
  width: 1px;
  height: auto;
  position: relative;
}

.faq-accordion {
  flex-flow: column;
  place-content: center;
  align-items: center;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
  gap: 11px;
  width: 100%;
}

.faq-accordion .bottom-line {
  flex: none;
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
  background-color: #bfbfbf;
}

.faq-accordion .accordion-item {
  width: 100%;
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.faq-accordion .accordion-button::after {
  content: none !important;
}

.faq-accordion .accordion-item .accordion-header button {
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  color: #636363;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.faq-accordion .accordion-item .accordion-header button .accordion-head-wrap {
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  width: 98%;
}

.faq-accordion .accordion-item .accordion-header button .accordion-number {
  display: flex;
  background-color: #2b8552;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  line-height: 29px;
  border-radius: 50px;
}

.faq-accordion .accordion-item .accordion-header button .accordion-number p {
  color: #fff;
  font-size: 16px;
  line-height: 22.2px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.accordion-head-icons {
  display: flex;
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #101010;
  border-radius: 50px;
}

.accordion-head-icons span {
  display: flex;
  width: 14px;
  height: 14px;
  position: relative;
}

.accordion-button.collapsed .accordion-head-icons .minus-icon {
  display: none;
}

.accordion-button .accordion-head-icons .plus-icon {
  display: none;
}

.accordion-button.collapsed .accordion-head-icons .plus-icon {
  display: inline-flex;
}

.accordion-button .accordion-head-icons {
  background-color: #101010;
}

.accordion-button.collapsed .accordion-head-icons {
  background-color: transparent;
}

.accordion-button {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-body {
  padding: 4px 0 0;
  color: #636363;
  font-size: 16px;
  line-height: 17.6px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-align: start;
  padding: 7px 10px 0 0px !important;
}

.faq-right-image-outer {
  height: 100%;
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-end flex-start;
  align-items: flex-end;
  gap: 0;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.top-right-outer {
  flex-flow: row;
  flex: none;
  place-content: flex-start;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
  height: 700px;
}

.inner-right-content-wrap {
  height: min-content;
  flex-flow: column;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.rc-outer {
  height: 100%;
  z-index: 1;
  border-radius: 0;
  flex-flow: column;
  flex: none;
  place-content: center flex-end;
  align-items: center;
  gap: 2px;
  width: 97%;
  padding: 20px 0;
  display: flex;
  position: relative;
  border: 1px solid #d3d3d3;
}

.rc-small-text {
  outline: none;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
  height: auto;
  position: relative;
}

.rc-small-text p {
  color: #7b7b7b;
  font-size: 14px;
  line-height: 16.8px;
  padding-left: 15px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.rc-boxes-content-outer {
  height: min-content;
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 19px;
  width: 100%;
  padding: 0 0 0 15px;
  display: flex;
  position: relative;
}

.rc-box-content {
  flex-flow: row;
  flex: 1 0 0;
  place-content: flex-start;
  align-items: flex-start;
  gap: 0;
  width: 1px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.rc-box {
  display: contents;
}

.rc-box-wrap {
  flex: none;
  width: 173px;
  height: auto;
  position: relative;
}

.inner-rc-box-content {
  height: min-content;
  flex-flow: row;
  place-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.rc-box-number p {
  color: #2b8552;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.rc-box-text p {
  color: #000;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.rc-box-content:nth-child(2) .rc-box-text p {
  color: #000;
  font-weight: bold;
}

.rc-box-number {
  flex-flow: row;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.inner-rc-box-number {
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
  flex: none;
  width: auto;
  height: auto;
  position: relative;
}

.testimonial-section .container-fluid.testimonial-content {
  padding: 0;
}

.testimonial-section {
  background: url('https://framerusercontent.com/images/nX96g0CuAExorzUDh8oCjPpiBHM.jpg?scale-down-to=2048&width=6106&height=2534');
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 120px 0;
  display: flex;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 50%;
}

.testimonial-section::before {
  content: '';
  background: rgba(0, 0, 0, 0.55);
  user-select: none;
  background-color: #0b0b0b;
  opacity: 0.7;
  height: 100%;
  overflow: var(--overflow-clip-fallback, clip);
  pointer-events: none;
  z-index: 2;
  flex: none;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.section-title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
}

.testimonial-section h2.section-title {
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 44px;
  font-weight: 500;
}

/* Marquee Wrapper */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.logo-section .marquee-wrapper {
  overflow: hidden;
  position: relative;
  background: #efefef;
  padding: 40px 50px;
}

.logo-section {
  padding: 130px 0 78px;
  background-color: #fff;
}

.testimonial-section .marquee-track {
  gap: 30px;
  animation: scroll 55s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 180px;
  width: max-content;
  animation: scroll 25s linear infinite;
  align-items: center;
}

.testimonial-card {
  min-width: 300px;
  min-height: 280px;
  max-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-section .container {
  flex-flow: row;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: 1640px;
  height: min-content;
  padding: 0 30px;
  display: flex;
  position: relative;
  overflow: visible;
}

.testimonial-card-inner {
  text-align: left;
}

.testimonial-card:before {
  background-image: url(https://framerusercontent.com/images/7ioaHGLUgIutmTDXHfljUxmO1Y.svg?width=32&height=50);
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  transform: translate(149px, 0);
  top: 36%;
  background-size: 32px;
}

.sm-title-blog-inner span.tag {
  width: 100%;
  text-align: center;
  color: #636363;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 400;
  padding: 2px 0;
  border: 1px solid #2b8552;
}

.blog-main-title-outer {
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: column;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 32px;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.testimonial-card h5 {
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: #0b0b0b;
}

.testimonial-card small {
  color: #636363;
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 16.8px;
}

.testimonial-card p {
  font-size: 16px;
  color: #636363;
  line-height: 20.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-item {
  font-size: 28px;
  font-weight: 600;
  transition: 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.logo-item {
  flex: 0 0 3%;
  text-align: center;
  width: 30px;
  font-weight: 600;
  color: #f2f2f2;
  white-space: nowrap;
}

.divided-image-sec {
  z-index: 1;
  flex: none;
  width: 100%;
  position: absolute;
  top: 144px;
  bottom: 0;
  left: 0.0860602%;
}

.inner-divided-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.inner-divided-image .divided-img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.inner-divided-image .divided-img2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  clip-path: inset(0px 92.7585% 0px 0px);
  pointer-events: none;
}

.inner-divided-image .divided-line {
  position: absolute;
  top: 0px;
  left: 7.24152%;
  width: 2px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 5px;
  transform: translateX(-1px);
  cursor: ew-resize;
  z-index: 2;
}

/* ==== FAQ Section CSS End ==== */

.news-header {
  height: min-content;
  flex-flow: column;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.tag {
  display: inline-block;
  border: 1px solid #cfd8d3;
  padding: 6px 18px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #6c7c73;
  margin-bottom: 30px;
}

.header-content {
  z-index: 1;
  flex-flow: row;
  flex: none;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: min-content;
  padding: 20px 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.sm-title-blog {
  display: contents;
}

.sm-title-blog-inner {
  /* aspect-ratio: 9.4; */
  height: auto;
  flex: none;
  min-width: 235px;
  position: relative;
}

.blog-main-title {
  z-index: 1;
  flex: none;
  width: 765px;
  height: auto;
  position: relative;
}

.header-content h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.8px;
  margin: 0;
}

.header-content h1 span {
  color: #2b8552;
}

.news-header a.btn-all {
  cursor: pointer;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  padding: 14px 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  border-bottom-width: 0px;
  border-color: rgba(0, 0, 0, 0);
  border-left-width: 0px;
  border-right-width: 0px;
  border-style: solid;
  border-top-width: 0px;
  background-color: #2b8552;
  opacity: 1;
  will-change: auto;
  border-radius: 0;
  width: auto;
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  border: 1px solid #2b8552;
}

.news-header a.btn-all:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.news-header .text-end {
  height: min-content;
  flex-flow: row;
  flex: none;
  place-content: center flex-end;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

/* Grid Layout */

.news-grid {
  display: grid;
  grid-template-columns: 48% 49%;
  gap: 35px;
}

/* Featured Card */

.featured-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.featured-card img {
  width: 100%;
  height: 417.59px;
  object-fit: cover;
  display: block;
}

.card-content-blog {
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  height: min-content;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #111111;
  color: #fff;
}

.card-content-blog .date,
.side-content .date {
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 0;
  line-height: 14.4px;
  font-weight: 500;
  font-family: 'Figtree', sans-serif;
}

.card-content-blog h3,
.side-content h4 {
  font-size: 22px;
  margin-bottom: 0;
  line-height: 30.8px;
  font-weight: 600;
  color: #fff;
  font-family: 'Figtree', sans-serif;
}

.blog-b-date {
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
}

.blog-b-title {
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
}

.blog-b-btn {
  outline: none;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  display: flex;
}

section.news-section {
  background-color: #fff;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 30px 30px 0;
  display: flex;
  position: relative;
}

.news-section .container {
  max-width: 1200px;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: column;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.blog-b-date,
.blog-b-title,
.blog-b-btn {
  white-space: pre-wrap;
  word-break: break-word;
  word-wrap: break-word;
  flex: none;
  width: 100%;
  height: auto;
  position: relative;
}

.read-more {
  color: #fcfcfc;
  font-size: 16px;
  text-decoration: none;
  line-height: 30.4px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
}

.read-more:hover {
  color: #fcfcfc;
}

/* Side Articles */

.side-articles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.side-card {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  height: 287px;
}

.side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-content {
  flex-flow: column;
  flex: 1 0 0;
  place-content: flex-start center;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: #111111;
  color: #fff;
}

/* =================== Contant ========================== */

/* GLOBAL */
body {
  background: #f4f4f4;
  font-family: 'Inter', sans-serif;
  color: #111;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.contact-hero {
  position: relative;
  height: 681.78px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-hero-overlay {
  user-select: none;
  /* background: linear-gradient(180deg, #0b0b0b 0%, #0000 100%); */
  height: 100%;
  overflow: var(--overflow-clip-fallback, clip);
  pointer-events: none;
  flex: none;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

.contact-hero-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 87px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.contact-hero p {
  font-size: 16px;
  opacity: 1;
  max-width: 56.5%;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  line-height: 20.8px;
  font-weight: 400;
}

/* INFO BAR */
.contact-info {
  margin-top: -126px;
  margin-bottom: 100px;
  position: relative;
}

.contact-info .info-item {
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: column;
  flex: 1 0 0;
  place-content: center;
  align-items: center;
  gap: 0;
  width: 1px;
  padding: 0;
  display: flex;
  position: relative;
}

.info-wrapper {
  background-color: #f2f2f2;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-radius: 10px 10px 0 0;
  flex-flow: wrap;
  flex: none;
  place-content: center;
  align-items: center;
  gap: 50px;
  width: 91.9%;
  margin: 0 auto;
  height: min-content;
  padding: 30px 30px 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.contact-detail-box::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  border: 5px solid #f2f2f2;
  bottom: 8px;
  left: -13px;
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 50px;
}

.contact-detail-box::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  border: 5px solid #f2f2f2;
  bottom: 8px;
  right: -13px;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 50px;
}

.contact-hero .container {
  margin-top: 192px;
}

.info-item h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 24.2px;
  color: #0b0b0b;
}

.contact-form-section h2.section-title {
  color: #0b0b0b;
  font-weight: 500;
  font-size: 43px;
  line-height: 44px;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  margin-bottom: 40px;
}

.info-item p {
  color: #636363;
  font-size: 16px;
  margin: 4px 0 5px;
  line-height: 20.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.info-item p a {
  color: #636363;
  text-decoration: none;
}

.divider {
  width: 1px;
  height: 60px;
  background: #e5e5e5;
}

.contact-form-section .form-wrapper {
  width: 91.9%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
}

/* FORM */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.section-title span {
  color: #2b8552;
}

.form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
}

.form-group {
  margin-bottom: 25px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.contact-form-section .form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #0b0b0b;
  line-height: 20.8px;
  font-weight: 400;
  font-family: 'Inter';
}

.contact-form-section .form-wrapper span input {
  padding: 10px 20px !important;
  height: 54px;
  border: 1px dashed #d3d3d3;
  border-radius: 10px;
}

.contact-form-section .form-wrapper span textarea {
  border: 1px dashed #d3d3d3;
  height: 130px;
  padding: 16px 19px;
  font-family: 'Inter', sans-serif;
  border-radius: 12px;
}

.contact-form-section .form-wrapper p br {
  display: none;
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form-section button.btn-submit {
  border-bottom-width: 0px;
  border-color: rgba(0, 0, 0, 0);
  border-left-width: 0px;
  border-right-width: 0px;
  border-style: solid;
  border-top-width: 0px;
  background-color: #2b8552;
  border-radius: 0;
  opacity: 1;
  will-change: transform;
  cursor: pointer;
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 0;
  width: min-content;
  height: min-content;
  padding: 14px 20px;
  display: flex;
  position: relative;
  overflow: visible;
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #fff;
  border: 1px solid #2b8552;
  margin-top: 0;
}

.contact-form-section button.btn-submit:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.contact-form-section .form-wrapper > p {
  margin: 0;
}

input:focus,
textarea:focus {
  border-color: #c5d4c9;
  background: #fff;
}

.full {
  width: 100%;
}

.btn-submit {
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  background: #c5d4c9;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #b2c3b7;
}

/* FAQ contact */
.faq-section-contact {
  padding: 120px 0;
  text-align: center;
  background-color: #f4f4f4;
}

.faq-tag {
  border-bottom-width: 1px;
  border-color: #d3d3d3;
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-top-width: 1px;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: row;
  place-content: center;
  align-items: center;
  gap: 10px;
  width: min-content;
  padding: 3px 13px;
  display: flex;
  position: relative;
  font-size: 14px;
  color: #636363;
  line-height: 16.8px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.faq-title {
  font-size: 42px;
  margin-bottom: 50px;
  font-family: 'Inter', sans-serif;
  color: #0b0b0b;
  line-height: 44px;
  font-weight: 500;
}

.faq-title span {
  color: #999;
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

.faq-section-contact .faq-wrapper {
  max-width: 100% !important;
  width: 760px;
  flex-flow: column;
  place-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  height: min-content;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.faq-item {
  border-bottom-width: 1px;
  border-color: #d3d3d3;
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: dashed;
  border-top-width: 1px;
  background-color: #fff;
  width: 100%;
  border-radius: 20px;
  transform: none;
  transform-origin: 50% 50% 0px;
  cursor: pointer;
  place-content: center;
  align-items: center;
  width: 100%;
  height: min-content;
  padding: 20px;
}

.faq-question span {
  font-weight: 100;
  font-size: 40px;
  position: relative;
  color: #7b7b7b;
  top: -2px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #0b0b0b;
  font-family: 'Inter', sans-serif;
}

.faq-answer {
  margin-top: 20px;
  font-size: 16px;
  color: #636363;
  text-align: start;
  font-family: 'Inter', sans-serif;
  line-height: 20.8px;
  font-weight: 400;
}

.faq-item:not(.active) .faq-answer {
  display: none;
}

.inner-process-warp h2 {
  max-width: 93%;
}

.faq-left-accordion-outer .accordion-head-title {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  line-height: 28px;
  font-weight: 500;
  width: 94%;
}

.faq-section-contact .container {
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.contact-form-section .form-wrapper .full {
  margin-bottom: 30px;
}

.contact-form-section .form-wrapper .form-row .form-group {
  margin-bottom: 17px;
}

.inner-process-warp .text p {
  color: rgb(115, 115, 115);
}
.inner-process-warp .animate-letters p {
  color: #0b0b0b;
}

.linked-in a i {
  color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
  }

  .logo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-menu {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    border: none;
    padding: 20px 0;
  }

  .contact-btn {
    width: 100%;
    border-radius: 0;
  }

  .error-container {
    padding: 50px 30px;
  }

  .error-code {
    font-size: 80px;
  }

  .error-title {
    font-size: 28px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}
