.about-us-section {
  --primary: var(--primary-black);
  --secondary: var(--secondary-grey);
  --border: var(--border-light);
  --theme: var(--main-color);
  --black: var(--primary-black);
  --black-2: var(--black-soft);
  --white: var(--white-color);
  --white-2: var(--grey-light);
  --action: var(--main-color);
  position: relative;
  width: 100%;
}

.about-us-section {
  --primary: var(--primary-black);
  --secondary: var(--secondary-grey);
  --border: var(--border-light);
  --theme: var(--main-color);
  --black: var(--primary-black);
  --black-2: var(--black-soft);
  --white: var(--white-color);
  --white-2: var(--grey-light);
  --action: var(--main-color);
}

.about-us-section {
  --font_inter: var(--font-body);
  --font_generalsanssemibold: var(--font-heading);
  --font_generalsansmedium: var(--font-heading);
  --font_generalsansitalic: var(--font-body);
  --font_awesome: "Font Awesome 6 pro";
}

.about-us-section * {
  margin: 0;
  padding: 0;
}

.about-us-section {
  /* font-family: var(--font_inter); */
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary);
}

.about-us-section {
  scroll-behavior: smooth;
}

.about-us-section h1,
.about-us-section h2,
.about-us-section h3,
.about-us-section h4,
.about-us-section h5,
.about-us-section h6 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.22;
  font-family: var(--font_generalsanssemibold);
  font-weight: 600;
}

.about-us-section ul,
.about-us-section ol {
  padding: 0;
  margin: 0;
}

.about-us-section a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

.about-us-section a:hover {
  color: var(--primary);
}

.about-us-section button {
  background-color: transparent;
  border: 0;
}

.about-us-section p {
  padding: 0;
  margin: 0;
}

.about-us-section strong {
  font-weight: 500;
}

.about-us-section video,
.about-us-section iframe,
.about-us-section img {
  margin: 0;
  padding: 0;
}

.about-us-section img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .about-us-section br {
    display: none;
  }
}

.about-us-section main {
  display: inline-block;
  width: 100%;
}

.about-us-section h1 {
  font-size: 48px;
}

.about-us-section h2 {
  font-size: 36px;
}

.about-us-section h3 {
  font-size: 32px;
}

.about-us-section h4 {
  font-size: 24px;
}

.about-us-section h5 {
  font-size: 20px;
}

.about-us-section h6 {
  font-size: 18px;
}

/* animation css */
.about-us-section .t_parallax_image {
  overflow: hidden;
}

@keyframes t-Bubble {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.5;
  }

  100% {
    scale: 1;
  }
}

@keyframes t-Zoom {
  0% {
    scale: 1;
  }

  50% {
    scale: 0.5;
  }

  100% {
    scale: 1;
  }
}

@keyframes t-Zoom_2 {
  0% {
    scale: 1;
  }

  50% {
    scale: 0.9;
  }

  100% {
    scale: 1;
  }
}

@keyframes t-SlideBottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes t-reveal {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes t-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes t-spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes t-characters {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes t-sheen {
  50% {
    transform: translateY(-20px);
    color: var(--primary);
  }
}

@keyframes t-slide {
  from {
    transform: translateX(0);
  }

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

/* common css */
/* common css */
/* Scrollbar styling */
.about-us-section ::-webkit-scrollbar {
  width: 5px;
}

.about-us-section ::-webkit-scrollbar-track {
  background: #d6d6d6;
}

.about-us-section ::-webkit-scrollbar-thumb {
  background: #888;
}

.about-us-section ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Utility classes for positioning */
.about-us-section .rr-pos-rel {
  position: relative;
}

.about-us-section .rr-pos-abs {
  position: absolute;
}

.about-us-section .rr-ov-hidden {
  overflow: hidden;
}

.about-us-section .rr-container-1350 {
  max-width: 1350px;
  margin: 0 auto;
}

.about-us-section .rr-container-1410 {
  max-width: 1410px;
  margin: 0 auto;
}

/* Background color classes */
.about-us-section .rr-bg-primary {
  background-color: var(--primary);
  /* Primary background color */
}

.about-us-section .rr-bg-white {
  background-color: var(--white);
  /* White background color */
}

.about-us-section .rr-bg-black {
  background-color: var(--black);
}

.about-us-section .dark .rr-bg-black {
  background-color: #171717;
}

.about-us-section .rr-bg-light-gray {
  background-color: #F0F0F0;
}

.about-us-section .dark .rr-bg-light-gray {
  background-color: #212121;
}

.about-us-section .rr-bg-light {
  background-color: #F8F2EF;
}

.about-us-section .dark .rr-bg-light {
  background-color: #111111;
  --primary: #F8F2EF;
}

.about-us-section .rr-text-white {
  color: var(--white);
}

.about-us-section .rr-text-primary {
  color: var(--primary);
}

.about-us-section .text-gray {
  color: #555555;
}

.about-us-section .dark .text-gray {
  color: #999999;
}

.about-us-section .rr-light {
  color: #F8F2EF;
}


/* Parallax view styling */
.about-us-section .parallax-view {
  overflow: hidden;
}

.about-us-section .section-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 8px 20px;
  position: relative;
  border-radius: 50px;
  color: var(--theme);
  display: inline-flex;
  border: 1px solid var(--border);
  text-transform: uppercase;
  background-color: var(--white);
  letter-spacing: 0.05em;
}

.about-us-section .section-subtitle .start-shape {
  display: inline-flex;
  align-items: center;
}

.about-us-section .section-subtitle .start-shape:before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 50%;
}

.about-us-section .section-subtitle .start-shape:after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 50%;
  margin: 0 7px;
}

.about-us-section .section-subtitle .end-shape {
  display: inline-flex;
  align-items: center;
}

.about-us-section .section-subtitle .end-shape:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 50%;
  margin: 0 7px;
}

.about-us-section .section-subtitle .end-shape:after {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--theme);
  display: inline-block;
  border-radius: 50%;
}

.about-us-section .section-subtitle.subtitle-white {
  color: var(--white);
  border-color: var(--white);
  font-weight: 400;
}

.about-us-section .section-subtitle.subtitle-white::before {
  background-color: var(--white);
}

/* about css */
/* about area style  */


/* about-process-group style  */
.about-us-section .about-process-group {
  position: relative;
  z-index: 1;
}

.about-us-section .about-process-group-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: var(--custom-color-67);
  z-index: -1;
}

.about-us-section .about-process-group-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-us-section .about-process-group-bg .area-shape-1 {
  width: 28%;
  position: absolute;
  top: 180px;
  left: -200px;
  z-index: -1;
}

.about-us-section .about-process-group-bg .area-shape-1 img {
  animation: t-SlideBottom 6s infinite;
}

.about-us-section .about-process-group-bg .area-shape-2 {
  width: 100;
  position: absolute;
  bottom: 35px;
  right: 0;
}

.about-us-section .about-process-group-bg .area-shape-2 img {
  animation: t-SlideBottom 6s infinite;
}

/* about-2 area style  */
.about-us-section .about-2-area-inner {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: auto 675px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .about-2-area-inner {
    grid-template-columns: auto 525px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us-section .about-2-area-inner {
    grid-template-columns: auto;
  }
}

/* Section spacing with responsive padding */
.about-us-section .section-spacing {
  padding-top: 120px;
  padding-bottom: 0;
}

@media only screen and (max-width: 1919px) {
  .about-us-section .section-spacing {
    padding-top: 100px;
  padding-bottom: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-section .section-spacing {
    padding-top: 80px;
  padding-bottom: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-section .section-spacing {
    padding-top: 60px;
  padding-bottom: 0;
  }
}

.about-us-section .section-spacing-top {
  padding-top: 120px;
}

@media only screen and (max-width: 1919px) {
  .about-us-section .section-spacing-top {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-section .section-spacing-top {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-section .section-spacing-top {
    padding-top: 60px;
  }
}

.about-us-section .section-spacing-bottom {
  padding-bottom: 120px;
}

@media only screen and (max-width: 1919px) {
  .about-us-section .section-spacing-bottom {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-section .section-spacing-bottom {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-section .section-spacing-bottom {
    padding-bottom: 60px;
  }
}

/* Container styling with full HD support */
.about-us-section .container {
  --bs-gutter-x: 30px;
}

@media (min-width: 1600px) {
  .about-us-section .container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.about-us-section .about-2-thumb-wrapper {
  width: 100%;
  max-width: 648px;
  position: relative;
}

.about-us-section .about-2-thumb-wrapper .main-img {
  margin-left: 75px;
  border-radius: 9px;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .about-2-thumb-wrapper .main-img {
    margin-left: 25px;
  }
}

.about-us-section .about-2-thumb-wrapper .main-img img {
  width: 100%;
}

.about-us-section .about-2-thumb-wrapper .info-text {
  background-color: var(--theme);
  padding: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 75px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .about-us-section .about-2-thumb-wrapper .info-text {
    bottom: 25px;
    margin-right: 20px;
  }
}

.about-us-section .about-2-thumb-wrapper .info-text:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #002366;
  top: 99%;
  left: 51px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

@media only screen and (max-width: 1199px) {
  .about-us-section .about-2-thumb-wrapper .info-text:before {
    left: 11px;
    width: 15px;
    height: 15px;
  }
}

.about-us-section .about-2-thumb-wrapper .info-text .number {
  font-family: var(--font_inter);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.91;
  color: var(--white);
}

.about-us-section .about-2-thumb-wrapper .info-text .text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-left: 15px;
  padding-left: 16px;
  position: relative;
}

.about-us-section .about-2-thumb-wrapper .info-text .text:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: var(--white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .about-us-section .about-2-content {
    padding:20px;
  }
}
.about-us-section .about-2-content .title-wrapper {
  margin-top: 19px;
}

.about-us-section .about-2-content .text-wrapper {
  margin-top: 31px;
}

.about-us-section .about-2-content .feature-list {
  margin-top: 24px;
}

.about-us-section .about-2-content .feature-list ul {
  -moz-column-count: 2;
  column-count: 2;
  display: inline-block;
  -moz-column-gap: 94px;
  column-gap: 94px;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .about-2-content .feature-list ul {
    -moz-column-gap: 44px;
    column-gap: 44px;
  }
}

@media (max-width: 575px) {
  .about-us-section .about-2-content .feature-list ul {
    -moz-column-count: auto;
    column-count: auto;
  }
}

.about-us-section .about-2-content .feature-list li {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: var(--primary);
  display: flex;
  gap: 15px;
  align-items: center;
}

.about-us-section .about-2-content .feature-list li i {
  color: var(--theme);
}

.about-us-section .about-2-content .btn-wrapper {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  gap: 20px 47px;
  align-items: center;
}

@media (max-width: 575px) {
  .about-us-section .about-2-content .btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-us-section .about-2-content .review-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-us-section .about-2-content .review-box .clients {
  display: flex;
}

.about-us-section .about-2-content .review-box .clients img {
  width: 70px;
  height: 70px;
  border: 5px solid var(--white);
  border-radius: 100%;
  box-shadow: 0px 9px 18px 0px var(--custom-color-104);
}

.about-us-section .about-2-content .review-box .clients img:not(:first-child) {
  margin-left: -27px;
}

.about-us-section .about-2-content .review-box .number {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
  display: inline-block;
}

.about-us-section .about-2-content .review-box .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-top: 5px;
  color: var(--theme);
}

/* process css */
/* process-2 area style  */
.about-us-section .process-2-header {
  text-align: center;
}

.about-us-section .process-2-header .title-wrapper {
  margin-top: 19px;
}

.about-us-section .process-2-wrapper-box {
  margin-top: 59px;
}

/* Product Card Description Height Fix */
.about-us-section .process-2-box .content p {
  min-height: 85px; /* Approx 3 lines (26px line-height * 3) */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 1919px) {
  .about-us-section .process-2-wrapper-box {
    margin-top: 49px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-section .process-2-wrapper-box {
    margin-top: 39px;
  }
}

.about-us-section .process-2-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 991px) {
  .about-us-section .process-2-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-us-section .process-2-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-us-section .process-2-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  padding: 30px 30px;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .process-2-box {
    padding: 20px 15px;
  }
}

.about-us-section .process-2-box .number {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--theme);
  padding: 8px 20px;
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 30px;
}

.about-us-section .process-2-box .content {
  margin-top: 18px;
}

.about-us-section .process-2-box .title {
  font-family: var(--font_inter);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.45;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .process-2-box .title {
    font-size: 20px;
  }
}

.about-us-section .process-2-box .thumb {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .process-2-box .thumb {
    margin-top: 14px;
  }
}

.about-us-section .process-2-box .thumb img {
  width: 100%;
}

.about-us-section .process-2-box .btn-wrapper {
  margin-top: 30px;
}

@media only screen and (max-width: 1199px) {
  .about-us-section .process-2-box .btn-wrapper {
    margin-top: 20px;
  }
}