@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap");
body {
  width: 100%;
  height: 100%;
  font-family: "General Sans" !important;
  color: #fff;
  overflow-x: hidden;
  background-color: #000000;
  letter-spacing: -0.03em;
  font-weight: 300;
  line-height: 1.3;
  font-style: normal;
}

* {
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

p {
  margin: 0;
  /* letter-spacing: -0.02em; */
}

h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

/* h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
} */

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
  border-radius: 10px;
}

.scrollbar-thumb {
  background: var(--primary-gradiant) !important;
  border-radius: 0 !important;
  border-radius: 10px;
}

.scrollbar-track {
  background-color: transparent !important;
  border-radius: 0 !important;
}

ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.header-section {
  padding: 20px 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s;
}

.header-section.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
  background-color: #000000;
}

/* .header-section:hover, */

.header-section.menu-open {
  background-color: #000000;
}

.blog-page-body .header-section.menu-open .logo .logo-white,
.blog-page-body .header-section .logo .logo-black,
.blog-page-body .header-section.sticky .logo .logo-white {
  display: block;
}

.blog-page-body .header-section.menu-open .logo .logo-black,
.blog-page-body .header-section .logo .logo-white,
.blog-page-body .header-section.sticky .logo .logo-black,
.logo-black {
  display: none;
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

.header-section .container {
  max-width: 1400px;
}

.toggle-menu-btn,
.close-menu,
.goBackBtn,
.mobile-right-menu {
  display: none;
}

.mega-menu {
  /* display: none; */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(31, 31, 31, 1);
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #3f3f3f;
  z-index: 5;
  color: #fff;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
  z-index: 5;
  color: #fff;
}

.mega-menu-header .text-btn {
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.mega-menu-header .text-btn svg {
  width: 30px;
  height: 30px;
}

/* .mega-menu.active {
    height: auto;
    visibility: visible;
    opacity: 1;
} */

.a3-navbar .menu-list .mega-menu a {
  font-weight: 300;
  line-height: 1.8;
}

.a3-navbar .menu-list .mega-menu .mega-column a:hover {
  text-decoration: underline;
}

.mega-detail {
  background-color: rgba(0, 0, 0, 1);
  padding: 64px 32px;
  position: relative;
}

.mega-detail:after {
  content: "";
  background-color: rgba(0, 0, 0, 1);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1;
}

.mega-detail .title {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mega-detail p {
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
}

.mega-detail .schudle-outline-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 16px;
  min-width: 175px;
  height: 41px;
  padding: 10px 16px;
}

.mega-column ul li {
  margin-bottom: 8px;
  margin-top: 8px;
}

.mega-column2 ul {
  column-count: 2;
}

.mega-column3 ul {
  column-count: 3;
}

.mega-column h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: rgba(122, 122, 122, 1);
}

.mega-column {
  font-size: 20px;
}

.container {
  max-width: 1304px;
}

.a3-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.a3-navbar .menu-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.a3-navbar .menu-list a {
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.a3-navbar .menu-list a:hover {
  color: var(--primaryColor);
}

.a3-navbar .menu-list a.btn {
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a3-navbar .menu-list a.btn:hover {
  background-color: var(--whiteColor);
  color: #000;
}

.btn {
  background-color: var(--primaryColor);
  color: #fff;
  line-height: 21.28px;
  letter-spacing: -0.03em;
}

.btn-white {
  background-color: var(--whiteColor);
  color: #08090b;
  min-width: 177px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

.main-banner-section {
  background-color: #2f3437;
  position: relative;
  overflow: hidden;
}

.main-banner-section .banner-slider-box {
  position: relative;
}

.main-banner-slider .swiper-slide {
  position: relative;
  transition: transform 0.3s ease-in-out;
  /* padding: 0 16px; */
}

.main-banner-section .banner-slider-box:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  transform: rotate(180deg);
  height: 440px;
  z-index: 0;
  pointer-events: none;
}

.main-banner-section .banner-slider-box img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease-in-out;
}

.main-banner-slider .swiper-slide-active img {
  transform: scale(1.4);
}

.home-slider-pagination {
  display: flex;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%) rotate(-180deg);
  flex-direction: column;
  gap: 16px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 200;
}

.home-slider-pagination .swiper-pagination {
  position: initial;
  width: unset;
}

.home-slider-pagination .swiper-pagination-fraction {
  display: flex;
  writing-mode: vertical-lr;
}

.home-slider-pagination .slider-pagination-label {
  writing-mode: vertical-lr;
}

.home-slider-pagination .swiper-pagination .swiper-pagination-current {
  color: #f05a29;
}

.main-banner-section .banner-slider-box .slider-content {
  position: absolute;
  bottom: 86px;
  right: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  text-align: right;
  padding: 0 16px;
}

.main-banner-section .slider-arrows {
  padding: 0 16px;
}

.main-banner-section .banner-slider-box h1 {
  font-size: 150px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.slider-arrows {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  gap: 10px;
}

.swiper-custom-next,
.swiper-custom-prev {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide {
  height: unset;
}

/* partners logo section */

.a3logics-marquee {
  width: 100%;
  padding: 10px 0;
  /* height: 90px; */
  margin-top: 30px;
  margin-bottom: 30px;
}

.a3logics-marquee .marquee {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.a3logics-marquee .marquee .slideInner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 140px;
  /* animation: scroll-left 50s linear infinite; */
}

.partners-section .a3logics-marquee .marquee .slideInner img {
  /* filter: grayscale(100%); */
  transition: 0.3s;
}

.partners-section .a3logics-marquee .marquee .slideInner img:hover {
  filter: unset;
}

.slideInner .slide {
  display: flex;
  align-items: center;
  gap: 76px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
  line-height: 1.31;
}

.section-title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.95;
}

.section-title h2 + p {
  margin-top: 8px;
  font-size: 14px;
}

.section-title .button-group {
  margin-top: 16px;
}

.section-title.text-center .button-group {
  justify-content: center;
}

.section-title.text-center {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.text-center .small-title {
  display: inline-flex;
}

.section-title-inline {
  display: flex;
}

.section-title-inline > * {
  flex: 1 1;
}

.section-title-inline .button-group {
  text-align: right;
  justify-content: flex-end;
}

.section-title-inline .button-group .white-btn {
  min-width: 200px;
}

.small-title {
  position: relative;
  padding-left: 26px;
  color: #838383;
  font-size: 15px;
  font-weight: 600;
}

.small-title a {
  color: #838383;
}

.small-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
  height: 6px;
  background-color: #f05a29;
  border-radius: 100px;
}

.cta-section .button-group {
  margin-top: 24px;
}

#mobile-slider-convert {
  position: relative;
}

.only-mobile-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: 0.3s;
}

.text-btn:hover {
  background: linear-gradient(92.25deg, #ffffff 1.89%, #ffffff 30.54%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-btn {
  min-width: 142px;
  min-height: 42px;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.white-btn:hover {
  background-color: #f05a29;
  color: #fff;
}

.button-group {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.text-btn svg {
  background-color: #f05a29;
  color: #ffff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.trusted-it-partner-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 10px 0 35px;
  background-color: #000;
  border-right: 1px solid #5e5e5e;
}

.trusted-it-partner-section .cutting-circle {
  position: absolute;
  bottom: 0;
  right: 15px;
}

.trusted-it-partner-section .cutting-circle + .icon img:nth-child(1) {
  opacity: 0;
  bottom: -30px;
  right: 2px;
}

.trusted-it-partner-section .section-title {
  max-width: 546px;
}

.trusted-it-partner-box:hover .cutting-circle + .icon img:nth-child(1) {
  opacity: 1;
}

.trusted-it-partner-box:hover .cutting-circle {
  opacity: 0;
}

.trusted-it-partner-box .count {
  font-size: 42px;
  font-weight: 500;
  color: #f05a29;
  line-height: 1.35;
  margin-bottom: 8px;
}

.trusted-it-partner-box h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}

.trusted-it-partner-box p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  max-width: 324px;
}

.trusted-it-partner-box .icon {
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
  margin-top: 80px;
}

.trusted-it-partner-box .icon img {
  transition: 0.3s;
  z-index: 1;
  position: relative;
  max-width: 100%;
}

.trusted-it-partner-box .icon img:nth-child(2) {
  position: absolute;
  bottom: 74px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 0;
}

@media (min-width: 1199px) {
  .trusted-it-partner-box:hover .icon img:nth-child(2) {
    transform: translate(-50%, 0) translateY(105%);
  }
}

.d-flex:not(:first-child) .trusted-it-partner-box .icon img:nth-child(2) {
  bottom: 0;
}

.only-max-1199-show-img {
  display: none;
}

.trusted-it-partner-section .trusted-it-partner-box {
  display: flex;
  flex-direction: column;
}

.trusted-it-partner-section .trusted-it-partner-box:hover {
  background-color: #0b0b0b;
}

.trusted-it-partner-section .trusted-it-partner-box .icon {
  margin-top: auto;
  padding-top: 80px;
}

.accordion-button {
  padding: 17px 13px;
  background-color: #08090b;
  color: #fff;
  border-radius: 4px;
  border: 0;
  border-radius: 0 !important;
  overflow: hidden;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  min-height: 64px;
}

.accordion-item:not(:last-child) {
  margin-bottom: 8px;
}

.accordion-item {
  border: 1px solid #212121 !important;
  border-radius: 4px !important;
  overflow: hidden;
  color: #fff;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: #08090b;
  box-shadow: none;
  border: 0;
  border-radius: 0 !important;
  color: #fff;
}

.accordion-button[aria-expanded="true"] {
  color: #f05a29;
}

.accordion {
  background-color: transparent;
}

.bc-service-limg-section .accordion {
  padding-left: 45px;
}

.bc-service-rimg-section .accordion {
  padding-right: 45px;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 width%3D%2214%22 height%3D%228%22 viewBox%3D%220 0 14 8%22%3E%3Cpath id%3D%22Path_419%22 data-name%3D%22Path 419%22 d%3D%22M7.5%2C8a1%2C1%2C0%2C0%2C1-.707-.293l-6-6A1%2C1%2C0%2C0%2C1%2C2.207.293L7.5%2C5.586%2C12.793.293a1%2C1%2C0%2C0%2C1%2C1.414%2C1.414l-6%2C6A1%2C1%2C0%2C0%2C1%2C7.5%2C8Z%22 transform%3D%22translate(-0.5)%22 fill%3D%22%23FFF%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2214%22 height%3D%228%22 viewBox%3D%220 0 14 8%22%3E%3Cpath id%3D%22Path_419%22 data-name%3D%22Path 419%22 d%3D%22M7.5%2C8a1%2C1%2C0%2C0%2C1-.707-.293l-6-6A1%2C1%2C0%2C0%2C1%2C2.207.293L7.5%2C5.586%2C12.793.293a1%2C1%2C0%2C0%2C1%2C1.414%2C1.414l-6%2C6A1%2C1%2C0%2C0%2C1%2C7.5%2C8Z%22 transform%3D%22translate(-0.5)%22 fill%3D%22%23f05a29%22/%3E%3C/svg%3E");
}

/* .accordion-button:not(.collapsed)::after[aria-expanded="true"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 width%3D%2214%22 height%3D%228%22 viewBox%3D%220 0 14 8%22%3E%3Cpath id%3D%22Path_419%22 data-name%3D%22Path 419%22 d%3D%22M7.5%2C8a1%2C1%2C0%2C0%2C1-.707-.293l-6-6A1%2C1%2C0%2C0%2C1%2C2.207.293L7.5%2C5.586%2C12.793.293a1%2C1%2C0%2C0%2C1%2C1.414%2C1.414l-6%2C6A1%2C1%2C0%2C0%2C1%2C7.5%2C8Z%22 transform%3D%22translate(-0.5)%22 fill%3D%22%23f05a29%22/%3E%3C/svg%3E");
} */

.accordion-body {
  padding: 0 13px 17px 13px;
  background-color: #08090b;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #fff;
}

.accordion-body p + p {
  margin-top: 32px;
}

.accordion-button:focus,
.accordion-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.margin-top-88 {
  margin-top: 128px;
}

.margin-top-128 {
  margin-top: 128px;
}

.vertical-slide-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.vertical-slider-box {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
  position: sticky;
  bottom: 5vh;
  transition: 0.3s;
  overflow: hidden;
}

.vertical-slider-box:not(:last-child) {
  margin-bottom: 32px;
}

.vertical-slider-box:nth-child(1) {
  z-index: 10;
  /* background-image: url(../../../images/slide-bg-1.jpg); */
  background-image: url(../jpg/blockchain-development-services-bg.jpg);
  background-size: cover;
}

.vertical-slider-box:nth-child(2) {
  z-index: 9;
  background-image: url(../jpg/slide-bg-2.jpg);
  bottom: 18vh;
  width: calc(100% - 2vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(3) {
  z-index: 8;
  background-image: url(../jpg/slide-bg-3.jpg);
  bottom: 16vh;
  width: calc(100% - 4vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(4) {
  z-index: 7;
  background-image: url(../jpg/slide-bg-4.jpg);
  bottom: 14vh;
  width: calc(100% - 6vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(5) {
  z-index: 6;
  background-image: url(../jpg/slide-bg-5.jpg);
  bottom: 12vh;
  width: calc(100% - 8vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(6) {
  z-index: 5;
  background-image: url(../jpg/slide-bg-6.jpg);
  bottom: 10vh;
  width: calc(100% - 10vw);
  margin: 0 auto;
  background-size: cover;
}

.vertical-slider-box:nth-child(7) {
  z-index: 4;
  background-image: url(../jpg/blockchain-development-services-bg.jpg);
  bottom: 8vh;
  width: calc(100% - 12vw);
  margin: 0 auto;
  background-size: cover;
}

.vertical-slider-box:nth-child(8) {
  z-index: 3;
  background-image: url(../jpg/slide-bg-2.jpg);
  bottom: 6vh;
  width: calc(100% - 14vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(9) {
  z-index: 2;
  background-image: url(../jpg/slide-bg-3.jpg);
  bottom: 4vh;
  width: calc(100% - 16vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box:nth-child(10) {
  z-index: 1;
  background-image: url(../jpg/slide-bg-4.jpg);
  bottom: 2vh;
  width: calc(100% - 18vw);
  margin: 0 auto 32px;
  background-size: cover;
}

.vertical-slider-box .button-group .white-btn {
  min-width: 170px;
}

.vertical-slider-box video {
  mix-blend-mode: lighten;
}

.vertical-slider-box .content {
  padding: 64px 0 64px 64px;
  max-width: 597px;
}

.vertical-slider-box .content h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}

.vertical-slider-box .content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.91;
}

.vertical-slider-box .image-box {
  max-width: 48%;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 64px;
}

.mt-64 {
  margin-top: 64px;
}

.mt-88 {
  margin-top: 88px;
}

.mt-128 {
  margin-top: 128px;
}

.mt-256 {
  margin-top: 256px;
}

.contact-form-section {
  background-color: rgba(23, 23, 23, 1);
  position: relative;
  overflow: hidden;
}

.contact-form-section::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background-color: rgba(33, 33, 33, 1);
  background-color: rgb(20 20 20);
  z-index: 0;
  pointer-events: none;
}

.form-box {
  background-color: rgba(33, 33, 33, 1);
  background-color: #141414;
  padding: 28px 28px 28px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-form-section .section-title h2 {
  font-size: 28px;
  color: #fff;
}

.wpcf7-list-item {
  margin: 0 !important;
  font-weight: 300 !important;
  color: #b7b7b7;
}

.recap .wpcf7-form-control-wrap label {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.codedropz-upload-inner h3 {
  font-size: 18px !important;
  margin: 0 !important;
  line-height: initial !important;
  font-weight: unset !important;
}

.codedropz-upload-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  font-size: 18px;
}

.codedropz-upload-handler {
  border: 2px dashed rgba(71, 71, 71, 1) !important;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
  color: rgba(240, 90, 41, 1);
  text-decoration: underline !important;
}

.wpcf7-not-valid-tip {
  font-size: 13px !important;
  margin-top: 2px !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 12px 0 !important;
  text-align: center;
  font-size: 15px !important;
  padding: 8px !important;
}

.dnd-upload-status .dnd-upload-details .name {
  padding: 0 0 2px !important;
  justify-content: space-between;
}

.dnd-upload-status .dnd-upload-image span.file {
  filter: invert(1) !important;
}

.dnd-upload-status .dnd-upload-details .name em,
.dnd-upload-status .dnd-upload-details .name {
  color: #fff !important;
  font-weight: 300 !important;
  font-size: 15px !important;
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
  background: #f05b29 !important;
}

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(71, 71, 71, 1);
  padding: 0 4px 8px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.form-control::placeholder {
  color: rgba(131, 131, 131, 1);
}

.form-control:focus {
  background-color: transparent;
  outline: none;
  color: #fff;
  box-shadow: none;
  border-color: #f05a29;
}

.attechment-file {
  display: flex;
  flex-direction: column;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: rgba(131, 131, 131, 1);
}

.attechment-file .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.attechment-file span {
  font-size: 12px;
}

.recap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 500;
  color: rgba(131, 131, 131, 1);
}

.recap input {
  width: 78px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid rgba(72, 72, 72, 1);
  font-size: 16px;
  font-weight: 300;
}

.recap input:focus {
  outline: none;
}

.submit-btn {
  background-color: rgba(240, 90, 41, 1);
  border: 1px solid rgba(240, 90, 41, 1);
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  border-radius: 8px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.book-a-call {
  width: 100%;
  padding: 32px 0;
}

.book-a-call .profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-a-call .profile .image {
  width: 128px;
  height: 128px;
  border-radius: 100%;
  border: 2px solid #f05a29;
  padding: 4px;
  margin-bottom: 16px;
}

.book-a-call .profile img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.book-a-call .profile h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.book-a-call .profile p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(131, 131, 131, 1);
}

.schedule-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schudle-outline-btn {
  min-width: 250px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 90, 41, 1);
  border-radius: 8px;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}

.schudle-outline-btn:hover {
  background: var(--primaryColor);
  color: var(--whiteColor) !important;
}

.a3-logics-step {
  border-top: 1px solid rgba(64, 63, 70, 1);
  padding-top: 32px;
}

.a3-logics-step h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.5;
  color: rgba(196, 196, 196, 1);
}

.a3-logics-step ul li {
  font-size: 14px;
  font-weight: 300;
  padding-left: 20px;
  color: rgba(196, 196, 196, 1);
}

.a3-logics-step ul li:not(:last-child) {
  margin-bottom: 24px;
}

.a3-logics-step ul li:before {
  content: "";
  background: none;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: rgba(196, 196, 196, 1);
}

.footer-section {
  background-color: rgba(19, 18, 21, 1);
  padding: 32px 0;
}

.footer-all-cols {
  display: flex;
  flex-wrap: wrap;
}

.footer-all-cols .footer-col {
  flex: 1 1;
}

.footer-all-cols .footer-col:not(:last-child) {
  padding-right: 10px;
}

.footer-col h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  color: rgba(196, 196, 196, 1);
}

.footer-col a {
  color: rgba(196, 196, 196, 1);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--primaryColor);
}

.footer-col .list-design li:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="5.5" height="10" viewBox="0 0 5.5 10"><path id="Path_466" data-name="Path 466" d="M.75,10.345A.5.5,0,0,1,.4,9.491L4.543,5.345.4,1.2A.5.5,0,1,1,1.1.491l4.5,4.5a.5.5,0,0,1,0,.707L1.1,10.2A.5.5,0,0,1,.75,10.345Z" transform="translate(-0.25 -0.345)" fill="%23c4c4c4"/></svg>');
  background-size: contain;
  background-position: center;
}

.footer-partners {
  background-color: rgba(24, 24, 28, 1);
  margin: 32px 0;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(196, 196, 196, 1);
}

.copyright .left-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.copyright .left-details a {
  color: rgba(196, 196, 196, 1);
}

.copyright .left-details a + a {
  margin-left: 8px;
  position: relative;
}

.copyright .left-details a + a::before {
  content: "|";
  position: absolute;
  left: -9px;
  top: 0;
  bottom: 0;
}

.copyright .social-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
}

.copyright .social-links .social-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copyright .social-links .social-list a {
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 196, 196, 1);
}

.backToTop {
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: grid;
  place-content: center;
  background: var(--primaryColor);
  color: var(--whiteColor);
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 50%;
  transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 90;
  cursor: pointer;
  border: 0;
}

.home-services-section .section-title {
  position: sticky;
  top: 30vh;
  max-width: 422px;
}

.home-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.home-services-box {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 10px 20px 26px;
  width: calc(100% / 2 - 12px);
  border-top: 4px solid #f05a29;
  overflow: hidden;
}

.home-services-box h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.home-services-box p {
  font-size: 20px;
  font-weight: 300;
  margin-top: 16px;
  opacity: 0;
  transition: 0.3s;
  line-height: 1.34;
}

.home-services-box .text-btn {
  margin-top: 32px;
  opacity: 0;
  transition: 0.3s;
}

.home-services-box .bg-image {
  position: absolute;
  user-select: none;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: -1;
  margin: -20px -10px -20px -26px;
}

.home-services-box .bg-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-services-box:hover .bg-image {
  filter: blur(75px);
  opacity: 0.5;
  width: 800px;
}

.home-services-box:hover .text-btn,
.home-services-box:hover p {
  opacity: 1;
}

/* Career page css start ----------------------------------- */

.career-banner-section {
  position: relative;
  overflow: hidden;
}

.career-banner-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: -128px;
  right: 0;
  bottom: -97px;
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}

.career-banner-section .content {
  position: absolute;
  left: 50%;
  top: 144px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 1;
}

.career-banner-section .content h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 0.6;
  text-transform: uppercase;
  margin: 0;
}

.career-banner-section .content p {
  font-size: 32px;
  margin-top: 16px;
  font-weight: 300;
}

.career-banner-section .bg-image {
  width: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

.career-banner-section .bg-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.job-hiring-section {
  position: relative;
}

.job-hiring-section .accordion-item {
  border-color: #403f46 !important;
  border-radius: 0 !important;
}

.job-hiring-section .accordion-button {
  padding: 38px 90px 38px 50px;
  font-size: 20px;
  font-weight: 500;
  flex-wrap: wrap;
  transition: 0.3s;
}

.job-hiring-section .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}

.job-hiring-section .accordion-button span {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  display: block;
  width: 100%;
  margin-top: 4px;
}

.job-hiring-section .accordion-body {
  padding: 0 50px 38px;
}

.job-hiring-section .accordion-button[aria-expanded="true"] {
  color: #fff;
}

.job-hiring-section .accordion-button[aria-expanded="true"] span {
  color: #c4c4c4;
}

.job-hiring-section .accordion-toggle-btn {
  width: 30px;
  height: 30px;
  background-color: #f05a29;
  border: 1px solid #f05a29;
  border-radius: 4px;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s;
}

.job-hiring-section .accordion-toggle-btn::before,
.job-hiring-section .accordion-toggle-btn::after {
  content: "";
  background: #fff;
  width: 14px;
  height: 2px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/* Rotates the before element to make it a vertical bar (plus sign) */

.job-hiring-section .accordion-toggle-btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Open state: Remove before (vertical bar), leaving only after (horizontal bar) */

.job-hiring-section
  .accordion-button:not(.collapsed)
  .accordion-toggle-btn::before {
  content: none;
}

.job-hiring-section
  .accordion-button:not(.collapsed)
  .accordion-toggle-btn::after {
  background-color: #f05a29;
}

.job-hiring-section .accordion-button:not(.collapsed) .accordion-toggle-btn {
  background-color: transparent;
}

.job-hiring-section .accordion-button::after {
  display: none !important;
}

.job-hiring-section .accordion-button:not(.collapsed) {
  padding-bottom: 18px;
}

.job-hiring-section .accordion-body {
  font-size: 16px;
  font-weight: 300;
}

.job-hiring-section .accordion-body label {
  color: #c4c4c4;
}

.job-hiring-section .button-group {
  margin-top: 18px;
}

.job-hiring-detail-section .job-detail {
  max-width: 995px;
}

.job-detail .job-position {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}

.job-detail .job-type-location {
  font-size: 14px;
  color: #c4c4c4;
  font-weight: 500;
}

.job-experience,
.work-type {
  font-size: 16px;
  font-weight: 300;
  margin-top: 8px;
}

.job-experience span,
.work-type span {
  color: #c4c4c4;
}

.job-detail-col {
  max-width: 995px;
}

.job-detail-col h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 24px;
}

.job-detail-col p {
  font-size: 22px;
  line-height: 1.72;
  font-weight: 300;
}

.job-detail-col ul {
  padding-left: 16px;
  margin: 0;
  list-style: none;
}

.job-detail-col ul li {
  position: relative;
  padding-left: 32px;
  font-size: 22px;
  line-height: 1.72;
  font-weight: 300;
  text-transform: capitalize;
}

.job-detail-col ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #403f46;
  position: absolute;
  left: 0;
  top: 12px;
}

.job-detail-col ul li:not(:last-child) {
  margin-bottom: 24px;
}

.job-detail-col h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 32px;
  padding-left: 16px;
}

.job-detail-col ul + h3,
.job-detail-col ul + h2 {
  margin-top: 32px;
}

.job-apply-form h2 {
  font-size: 30px;
  margin-bottom: 4px;
}

.job-apply-form p {
  font-size: 18px;
  font-weight: 200;
}

.job-apply-form {
  max-width: 790px;
}

.job-apply-form .codedropz-upload-inner h3 {
  font-size: 18px;
  margin: 0;
  line-height: unset;
  padding: 0;
}

.job-apply-form .codedropz-upload-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}

.job-apply-form .codedropz-upload-inner a {
  color: #fff;
}

/* Case Study page css ---------------------------------*/

.case-study-banner-section {
  position: relative;
  overflow: hidden;
}

.case-study-banner-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: -128px;
  right: 0;
  bottom: -97px;
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 0;
}

.case-study-banner-section .content {
  position: absolute;
  left: 50%;
  top: 107px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 1;
}

.case-study-banner-section .content h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.case-study-banner-section .content p {
  font-size: 32px;
  margin-top: 0 !important;
  font-weight: 300;
}

.case-study-banner-section .bg-image {
  width: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

.case-study-banner-section .bg-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.filter-section {
  margin-top: 4px;
}

.all-filter-box {
  display: flex;
  flex-wrap: wrap;
}

.all-filter-box .filter-col {
  flex: 1 1;
  position: relative;
}

.all-filter-box .filter-col:not(:last-child) {
  border-right: 1px solid #484848;
}

.filter-select {
  background-color: #000;
  border: 0;
  color: #fff;
  padding: 24px 40px 24px 24px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  color: #c4c4c4;
}

.all-filter-box .filter-col::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath id='Path_491' data-name='Path 491' d='M7,8.149a1,1,0,0,1-.707-.293l-6-6A1,1,0,0,1,1.707.442L7,5.735,12.293.442a1,1,0,1,1,1.414,1.414l-6,6A1,1,0,0,1,7,8.149Z' transform='translate(0 -0.149)' fill='%23c4c4c4'/%3E%3C/svg%3E")
    no-repeat center;
  pointer-events: none;
}

.filter-select:focus {
  outline: none;
  border: none;
}

.all-filter-box {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #484848;
  border-left: 0;
  border-right: 0;
  transition: 0.3s;
}

.case-study-section {
  margin-top: 50px;
}

.case-study-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 33px;
}

.case-study-box {
  width: calc(100% / 3 - 22px);
  position: relative;
  overflow: hidden;
}

.case-study-box:hover .text-btn {
  background: linear-gradient(92.25deg, #ffffff 1.89%, #ffffff 30.54%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-study-box .bg-image {
  width: 100%;
  overflow: hidden;
  max-height: 600px;
}

.case-study-box .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.case-study-box:hover .bg-image img {
  filter: blur(30px);
  opacity: 0.6;
  width: 500px;
}

.case-study-box .case-study-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 44px 40px 34px;
}

.case-study-box h2 {
  font-size: 26px;
  font-weight: 500;
  margin: 4px 0 8px;
  color: #fff;
}

/* Blog page css ---------------------------------------------*/

.publish-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-top: 16px;
}

body.blog-page-body {
  background-color: #fff !important;
  color: #000;
}

.blog-detail-page-body {
  background-color: #f5f5f5 !important;
  color: #000;
}

/* .blog-page-body .header-section {
  position: initial;
} */

.blog-page-body .a3-navbar .menu-list a:not(.btn) {
  color: #484848;
}

.blog-page-body.menu-opened .a3-navbar .menu-list a:not(.btn) {
  color: var(--whiteColor);
}

.blog-page-body .header-section.sticky .a3-navbar .menu-list a:not(.btn),
.blog-page-body .header-section.menu-open .a3-navbar .menu-list a:not(.btn) {
  color: var(--whiteColor);
}

.pad-header-transparent-108 {
  padding-top: 108px;
}

.blog-banner-box {
  border-radius: 8px;
  overflow: hidden;
  padding: 64px;
  background: #000000 url(../jpg/blog-banner-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.blog-banner-box h1 {
  font-size: 69px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.blog-banner-box p {
  font-size: 28px;
}

.featured-post {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}

.featured-post .blog-image {
  border-radius: 8px;
  overflow: hidden;
  width: 57.5%;
}

.featured-post .blog-image img {
  min-height: 386px;
  object-fit: cover;
}

.featured-post .blog-content {
  width: calc(100% - 57.5% - 64px);
}

.featured-title {
  font-size: 30px;
  font-weight: 500;
  margin: 44px 0;
}

.blog-category,
.blog-category a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #08090b;
  margin-bottom: 8px;
}

.blog-category a {
  margin-bottom: 0;
}

.blog-category a:hover {
  color: var(--primaryColor);
}

.post-box h3,
.blog-list-item h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}

.post-box h3 a,
.blog-list-item h3 a {
  color: #000;
  transition: all 0.3s ease-in-out;
}

.post-box h3 a:hover,
.blog-list-item h3 a:hover {
  color: #f05a29;
}

.post-box p,
.blog-list-item p {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.34;
  color: #403f46;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.orange-text-btn {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f05a29;
  margin-top: 32px;
}

.orange-text-btn svg {
  background-color: #f05a29;
  color: #ffff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.blog-saprator {
  margin: 128px 0;
  height: 1px;
  width: 100%;
  background-color: #d9d9d9;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.blog-list .blog-list-item {
  width: calc(100% / 3 - 64px / 3);
}

.blog-list .blog-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-list .blog-image img {
  min-height: 256px;
  object-fit: cover;
}

.blog-list .blog-list-item h3 {
  margin-bottom: 16px;
  line-height: 1.36;
}

.blog-list .blog-list-item p {
  font-size: 24px;
  color: #403f46;
}

.blog-cta-box {
  background: #000000 url(../jpg/blog-cta-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 47.5px 40px;
  gap: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-cta-box h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.56;
}

.blog-cta-box .btn {
  min-width: 324px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f05a29;
  font-size: 24px;
  font-weight: 600;
}

.blog-section-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 24px;
}

.all-categoery-blog-section {
  background-color: #f0f0f0;
  padding: 88px 0;
}

.all-categoery-blogs {
  display: flex;
  gap: 64px;
}

.all-categoery-blogs .all-categoery-blogs-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: calc(100% - 294px - 64px);
}

.all-categoery-blogs .blog-list-item {
  display: flex;
  align-items: center;
  gap: 64px;
}

.all-categoery-blogs .blog-list-item .blog-image {
  width: 369px;
  border-radius: 8px;
  overflow: hidden;
}

.all-categoery-blogs .blog-list-item .blog-image img {
  min-height: 256px;
  object-fit: cover;
}

.all-categoery-blogs .blog-list-item .blog-content {
  width: calc(100% - 369px - 64px);
}

.all-categoery-blog-section .cta-image {
  width: 294px;
}

.all-categoery-blog-section .cta-image img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.blog-tab-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-tab-filter button {
  border: 1.2px solid #838383;
  padding: 10px 29px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #484848;
}

.blog-tab-filter button.active {
  background-color: #f05a29;
  border-color: #f05a29;
  color: #fff;
}

.all-categoery-blogs .all-categoery-blogs-list h3 {
  margin-bottom: 4px;
}

.voices-box {
  display: flex;
  background-color: #000;
  padding: 40px 60px;
  border-radius: 8px;
  overflow: hidden;
  gap: 64px;
}

.voices-box .voices-item {
  flex: 1 1;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 16px;
}

.voices-box .voices-item:not(:last-child) {
  border-right: 1px solid #676767;
}

.voices-box .profile-image {
  width: 123px;
}

.voices-box .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 100%;
  border: 2px solid #f05a29;
}

.voices-box .details {
  width: calc(100% - 123px - 16px);
}

.voices-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.voices-box p {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.enterprise-development-services-section .col-lg-7 .ser-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.enterprise-development-services-section
  .col-lg-7
  .ser-list-item:not(:last-child) {
  margin-bottom: 40px;
}

.ser-list-item .blog-image {
  border-radius: 8px;
  overflow: hidden;
}

.ser-list-item .blog-image img {
  width: 100%;
  object-fit: cover;
  min-height: 230px;
}

.ser-list-item h3 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 0;
}

.ser-list-item h3 a {
  color: #000;
  transition: all 0.3s ease-in-out;
}

.ser-list-item h3 a:hover {
  color: #f05a29;
}

.ser-list-item p {
  font-size: 26px;
  font-weight: 500;
  margin-top: 4px;
  color: #403f46;
}

.mt-16 {
  margin-top: 16px;
}

.enterprise-development-services-section .col-lg-7 .ser-list-item .blog-image {
  width: 303px;
}

.enterprise-development-services-section
  .col-lg-7
  .ser-list-item
  .blog-content {
  width: calc(100% - 303px - 24px);
}

.saprator-with-view-all-btn {
  display: block;
  margin-top: 64px;
  position: relative;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #f05a29;
}

.saprator-with-view-all-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 86px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: #c4c4c4;
}

.mt-88 {
  margin-top: 88px;
}

.insurance-section .col-lg-5 .ser-list-item .blog-image img {
  height: 230px;
  object-fit: cover;
}

.insurance-section .ser-list-item .blog-image {
  margin-bottom: 16px;
}

.blog-detail-banner-section {
  position: relative;
  background: #000000 url(../jpg/blog-detail-banner-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 470px;
  padding-top: 135px;
}

.blog-detail-banner-section .blog-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-banner-section .blog-category {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.blog-detail-banner-section .content {
  background-color: #fff;
  color: #08090b;
  border-top: 10px solid #f05a29;
  max-width: 620px;
  padding: 55px 25px 40px;
  margin-bottom: 25px;
  text-align: left;
}

.blog-detail-banner-section .content h1 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
  line-height: 1.33;
}

.blog-detail-banner-section .blog-info > div {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 14px;
}

.blog-detail-banner-section .blog-info > div a {
  font-size: 14px;
}

.blog-detail-banner-section .blog-info .author-name {
  max-width: 140px;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-detail-banner-section .blog-info .author-name svg {
  margin-right: 4px;
}

.bg-F5F5F5 {
  background-color: #f5f5f5;
}

.text-color-000 {
  color: #000000;
}

.blog-detail-desc {
  display: flex;
  gap: 64px;
  padding: 88px 0;
}

.blog-detail-desc .toc {
  width: 400px;
  /* position: sticky;
  top: 120px; */
}

.blog-detail-desc .details {
  width: calc(100% - 400px - 64px);
}

.blog-detail-desc .details * {
  letter-spacing: initial;
}

/* .blog-detail-desc .details h2, .blog-detail-desc .details h3, .blog-detail-desc .details h4, .blog-detail-desc .details h5{
    margin-bottom: 20px;
} */

.blog-detail-desc .details #ez-toc-container {
  display: none;
}

blockquote {
  border-color: #f05a29;
  border-style: solid;
  border-width: 0 0 0 2px;
  margin: 25px 0;
  padding: 5px 0 5px 20px;
}

.blog-detail-desc .details ul {
  list-style: initial;
}

.blog-detail-desc .details ul,
.blog-detail-desc .details ol {
  /* color: #000; */
  font-size: 20px;
  padding-left: 18px;
  /* font-weight: 500;
      margin-bottom: 64px; */
}

/* .blog-detail-desc .details ul li:not(:last-child) {
      margin-bottom: 10px;
  } */

.blog-detail-desc .details ul li,
.blog-detail-desc .details ol li {
  /* padding-left: 28px;
      position: relative; */
  /* font-weight: 500; */
  margin-bottom: 10px;
}

.blog-detail-desc p {
  font-size: 20px;
  /* font-weight: 500; */
  line-height: 1.6;
  /* margin-bottom: 30px; */
}

.blog-detail-desc p:last-child {
  margin-bottom: 0;
}

p.first-letter-design::first-letter {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}

.blog-detail-desc a {
  color: #f05a29;
  text-decoration: underline;
}

.blog-detail-desc h2 {
  font-size: 36px;
}

.blog-detail-desc h3 {
  font-size: 30px;
}

.blog-detail-desc h4 {
  font-size: 24px;
}

.blog-detail-desc h5 {
  font-size: 20px;
}

/* .blog-detail-desc h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 16px;
} */

/* .blog-detail-desc h3 {
    font-size: 37px;
    font-weight: 500;
    line-height: 1.9;
    color: #f05a29;
} */

.blog-detail-desc .list-design {
  color: #000;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 64px;
}

.blog-detail-desc .list-design li:before {
  background-image: url('data:image/svg+xml,<svg width="8" height="15" viewBox="0 0 8 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.11365 13.5703L7.11365 7.57031L1.11365 1.57031" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  top: 11px;
}

.blog-detail-desc img {
  border-radius: 8px;
  /* margin-bottom: 64px; */
  max-width: 100%;
}

.white-box {
  background-color: #fff;
  padding: 32px 22px;
  margin-bottom: 64px;
}

.white-box a {
  color: #000;
}

.sticky-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-call-to-action {
  border-radius: 20px;
  box-shadow: 0 1px 7px #cfcece;
  padding: 32px 16px;
  background-color: #fff;
  text-align: center;
}

.sidebar-call-to-action h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
}

.sidebar-call-to-action p {
  margin-bottom: 16px;
}

.sidebar-call-to-action .btn {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: 1px solid var(--primaryColor);
  text-decoration: none;
}

.sidebar-call-to-action .btn:hover {
  background-color: transparent;
  color: var(--primaryColor);
}

.toc-box + .sidebar-call-to-action {
  margin-top: 32px;
}

.toc-box + .cta-image + .sidebar-call-to-action {
  margin-top: 32px;
}

.toc .cta-image img {
  margin: 0;
}

.toc-box {
  background-color: #fff;
  border-top: 8px solid #f05a29;
  padding: 24px;
}

.toc-box + .cta-image {
  margin-top: 32px;
  display: block;
}

.toc-box h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 34.58px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.toc-links {
  font-size: 20px !important;
  margin-bottom: 8px !important;
  color: #484848;
  font-weight: 500;
  line-height: 1.77;
  cursor: pointer;
}

.toc-links.active {
  color: #000000;
  border-left: 4px solid #f05a29;
  padding-left: 10px !important;
}

.toc-box ul {
  padding-left: 8px !important;
}

.toc-box ul li {
  position: relative;
  padding-left: 24px !important;
}

.toc-box ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #484848;
  border-radius: 100%;
}

#ez-toc-container ul ul,
.ez-toc div.ez-toc-widget-container ul ul {
  margin-left: 0 !important;
}

div#ez-toc-container nav ul ul li a {
  font-size: 16px !important;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #313c47;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 32px 16px;
  color: #fff;
}

.author-profile .profile-desc {
  width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.author-profile .detail {
  width: calc(100% - 280px - 32px);
  z-index: 1;
}

.author-profile .image {
  width: 180px;
  height: 180px;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid #f05a29;
  margin-bottom: 16px;
}

.author-profile .profile-desc h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.author-profile .profile-desc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.author-profile .detail p {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.77;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.social-links .item {
  background-color: #2a353f;
  width: 46px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.quote-icon {
  position: absolute;
  right: 8px;
  bottom: -50px;
  pointer-events: none;
  z-index: 0;
}

.related-post-list {
  display: flex;
  gap: 32px;
}

.related-post-list .blog-card {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  flex: 1 1;
}

.related-post-list .blog-card h3 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 16px;
}

.related-post-list .blog-card h3 a {
  color: #000;
}

.related-post-list .blog-card .text-btn {
  color: #f05a29;
  background: transparent;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.related-post-list .blog-card p {
  font-size: 24px;
  color: #403f46;
  line-height: 1.3;
  margin-bottom: 32px;
}

/* Blog Listing css start -------------- */

.blog-listing-banner-section {
  padding-bottom: 32px;
}

.blog-listing-banner-section h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-listing-banner-section p {
  font-size: 14px;
  color: #403f46;
  font-weight: 500;
  line-height: 1.85;
}

.blog-listing-tab-filter {
  width: 100%;
  border: 1px solid var(--lightBlack);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-listing-tab-filter .category-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  padding: 22px;
  background-color: #eeeeee;
}

.blog-listing-tab-filter .filters {
  display: flex;
  flex-direction: column;
}

.blog-listing-tab-filter .filters .cate-btn {
  padding: 18px 22px 18px 35px;
  border: 0;
  background-color: #fff;
  color: #09090b;
  width: 100%;
  text-align: left;
  position: relative;
  display: block;
}

.blog-listing-tab-filter .filters .cate-btn:after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="5.75" height="10" viewBox="0 0 5.75 10"><path id="Path_491" data-name="Path 491" d="M1.072,10.3A.5.5,0,0,1,.728,9.44L5.095,5.3.728,1.166A.5.5,0,1,1,1.416.44l4.75,4.5a.5.5,0,0,1,0,.726l-4.75,4.5A.5.5,0,0,1,1.072,10.3Z" transform="translate(-0.572 -0.303)" fill="%231a1a1a"/></svg>');
  background-size: contain;
  background-position: center;
  width: 6px;
  height: 12px;
}

.blog-listing-tab-filter .filters .cate-btn:not(:last-child) {
  border-bottom: 1px solid var(--lightBlack);
}

.blog-listing-tab-filter .filters .cate-btn:hover,
.blog-listing-tab-filter .filters .cate-btn.active {
  color: #fff;
  background-color: var(--primaryColor);
}

.blog-listing-tab-filter .filters .cate-btn:hover::after,
.blog-listing-tab-filter .filters .cate-btn.active::after {
  filter: brightness(0) invert(1);
}

.cta-image {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.cta-image a,
.cta-image img {
  width: 100%;
}

.blog-listing-filter-result-section {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-listing-filter-result-section .blog-list-item {
  width: calc(100% / 2 - 16px);
}

.blog-listing-filter-result-section .blog-list-item .blog-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-listing-filter-result-section .blog-list-item h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.blog-listing-filter-result-section .blog-list-item p {
  font-size: 18px;
}

.blog-listing-filter-result-section .blog-list-item .orange-text-btn {
  margin-top: 16px;
}

.nav-links > .page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  gap: 11px;
  margin-top: 88px;
}

.nav-links > .page-numbers li {
  margin: 0;
}

.nav-links > .page-numbers a,
.nav-links > .page-numbers li > .page-numbers {
  display: block;
  padding: 5px;
  text-decoration: none;
  color: var(--lightBlack);
  border: 1px solid #c4c4c4;
  background: #fff;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
}

.nav-links > .page-numbers a:hover,
.nav-links > .page-numbers li > .page-numbers:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}

.nav-links > .page-numbers a.active,
.nav-links > .page-numbers li > .page-numbers.active,
.nav-links > .page-numbers .current,
.nav-links > .page-numbers li > .page-numbers.current {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}

.nav-links > .page-numbers a.disabled,
.nav-links > .page-numbers li > .page-numbers.disabled {
  color: #bbb;
  pointer-events: none;
  background-color: #f9f9f9;
}

.nav-links > .page-numbers li:last-child a,
.nav-links > .page-numbers li:first-child a {
  border: 0;
}

.page-not-found-section .box {
  display: flex;
  align-items: center;
  gap: 111px;
  margin: 0 auto;
  max-width: 945px;
  padding-top: 180px;
}

.page-not-found-section .content-detail {
  width: 330px;
}

.page-not-found-section .content-detail h1 {
  font-size: 189px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.page-not-found-section .content-detail h1::after {
  content: "";
  background-color: #5a5a5a;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-not-found-section .saprator {
  background-color: #5a5a5a;
  height: 1px;
  width: 100%;
  margin-bottom: 16px;
}

.page-not-found-section .content-detail p {
  font-size: 18px;
  font-weight: 500;
  max-width: 264px;
}

.page-not-found-section .btn {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
}

.page-not-found-section .btn:hover,
.page-not-found-section .btn:focus {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
}

.page-not-found-section .image {
  width: calc(100% - 330px - 111px);
  text-align: center;
}

.page-not-found-section .image img {
  max-width: 100%;
}

.less-more-btn {
  display: none;
}

/* Case Study Details css start ---------------------------*/

.case-study-detail-banner-section .bg-box {
  background-image: url(../jpg/case-study-detail-banner-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 45px 118px 45px 80px;
  margin-bottom: 70px;
}

.pt-94 {
  padding-top: 94px;
}

.case-study-detail-banner-section h1 {
  position: relative;
  padding-left: 24px;
  border-left: 12px solid var(--primaryColor);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

.case-study-intro-section {
  position: relative;
  min-height: 592px;
  display: flex;
  align-items: center;
}

.case-study-intro-section .left-image {
  position: absolute;
  left: -15px;
}

.case-study-intro-section .left-image img {
  width: 100%;
  max-height: 592px;
  object-fit: cover;
}

.case-study-intro-section .right-text {
  margin-left: auto;
}

.case-study-intro-section h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 29.26px;
  margin-bottom: 20px;
}

.case-study-intro-section p {
  font-weight: 500;
  line-height: 30.72px;
}

.case-study-intro-section p + p {
  margin-top: 20px;
}

.stats-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stats-list .stats-item {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.stats-list .stats-item .content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primaryColor);
}

.stats-list .stats-item .content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.36;
}

.cs-section-title h2 {
  font-size: 35px;
}

.cs-section-title p,
.cs-section-title h2 + p {
  font-size: 16px;
  margin-top: 16px;
  font-weight: 300;
}

.count-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.count-list .count-list-item {
  display: flex;
  gap: 16px;
}

.count-list .count-list-item .count {
  width: 34px;
  height: 34px;
  background-color: var(--primaryColor);
  border-radius: 2px;
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.count-list .count-list-item .content {
  width: calc(100% - 50px);
}

.count-list .count-list-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.count-list .count-list-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.mt-60 {
  margin-top: 60px;
}

.cs-vision-section {
  padding-bottom: 60px;
}

.cs-approach-section {
  background-color: #0c0c0c;
  padding: 77px 0 100px;
}

.cs-approach-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1215px;
}

.cs-approach-list .cs-approach-item {
  display: flex;
  gap: 32px;
}

.cs-approach-list .cs-approach-item .count {
  width: 130px;
  height: 130px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

.cs-approach-list .cs-approach-item .details {
  width: calc(100% - 130px - 32px);
}

.approach-header {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.approach-header h3 {
  font-size: 22px;
  font-weight: 500;
}

.approach-header p {
  font-size: 18px;
  font-weight: 600;
}

.tech-deployed {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tech-deployed h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.tech-deployed p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.tech-deployed .image {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-deployed .image img {
  border-radius: 4px;
}

.cs-approach-section .bg-box {
  background-color: #000;
  margin-top: 30px;
}

.cs-approach-section .top-circle-list {
  display: flex;
  gap: 70px;
  border-top: 1px solid #484848;
  padding-right: 20px;
}

.cs-approach-section .top-circle-list .top-circle-list-item {
  flex: 1 1;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  padding-left: 28px;
  padding-top: 30px;
}

.cs-approach-section .top-circle-list .top-circle-list-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 28px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid var(--primaryColor);
}

.left-icon-list {
  display: flex;
  padding: 40px 28px;
  gap: 16px;
}

.left-icon-list-item {
  display: flex;
  gap: 16px;
  flex: 1 1;
}

.left-icon-list-item .icon {
  width: 65px;
}

.left-icon-list-item .details {
  width: calc(100% - 65px - 16px);
}

.left-icon-list-item h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.left-icon-list-item p,
.left-icon-list-item ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.92;
}

.top-circle-list2-design > * {
  flex: unset !important;
}

.top-circle-list2-design .top-circle-list-item:first-child {
  width: 25%;
}

.top-circle-list2-design .top-circle-list-item:last-child {
  width: 75%;
}

.small-bg-title {
  background: #313c47;
  padding: 10px 17px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.breakthrough-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
}

.breakthrough-list .breakthrough-list-item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 2);
  padding: 24px 24px 64px;
  text-align: center;
  position: relative;
}

.breakthrough-list .breakthrough-list-item:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, #ffffff 70%);
}

.breakthrough-list .breakthrough-list-item:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 30%, #ffffff 70%);
}

.breakthrough-list .breakthrough-list-item:nth-child(2)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 1px;
  background: linear-gradient(rgba(0, 0, 0, 0) 30%, #ffffff 70%);
}

.breakthrough-list .breakthrough-list-item:nth-child(4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 1px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, #ffffff 70%);
}

.breakthrough-list .breakthrough-list-item .count {
  font-size: 62px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--primaryColor);
}

.breakthrough-list .breakthrough-list-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.breakthrough-list .breakthrough-list-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.inner-section-title {
  margin-bottom: 64px;
}

.inner-section-title h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 16px;
}

.inner-section-title p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.cs-cta-tag-section .box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #08090b;
  border-radius: 8px;
  overflow: hidden;
  padding: 25px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.cs-cta-tag-section .box.plr-80 {
  padding: 25px 25px 25px 80px;
}

.cs-cta-tag-section .box .image {
  padding: 5px;
  border: 3px solid var(--primaryColor);
  border-radius: 100%;
  width: 154px;
  height: 154px;
}

.cs-cta-tag-section .box .image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.cs-cta-tag-section .box .content {
  width: calc(100% - 154px - 20px);
}

.cs-cta-tag-section .content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.cs-cta-tag-section .content span {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  display: block;
}

.data-points-box {
  padding: 40px 50px;
  display: block;
  position: relative;
  width: 100%;
  /* border-left: 1px solid #313c47;
  border-bottom: 1px solid #313c47; */
}

.data-points-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #313c47;
}

.data-points-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: -50px;
  bottom: 0;
  height: 1px;
  background-color: #313c47;
}

.data-points-box .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.data-points-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.data-points-box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.data-points-section .d-flex:nth-child(1) .data-points-box,
.data-points-section .d-flex:nth-child(4) .data-points-box {
  padding-left: 0;
}

.data-points-section .d-flex:nth-child(1) .data-points-box::after,
.data-points-section .d-flex:nth-child(4) .data-points-box::after {
  display: none;
}

.data-points-section .d-flex:nth-child(3) .data-points-box::before {
  right: 0;
}

.data-points-section .d-flex:nth-child(4) .data-points-box::before,
.data-points-section .d-flex:nth-child(5) .data-points-box::before,
.data-points-section .d-flex:nth-child(6) .data-points-box::before {
  display: none;
}

.ripple-section .ripple-box {
  background-color: var(--primaryColor);
  padding: 52px 36px;
}

.ripple-box h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 12px;
}

.ripple-box .black-box {
  width: 100%;
  display: block;
  background-color: #000;
  margin: 12.5px 0;
  padding: 30px 20px;
  display: flex;
  gap: 25px;
}

/* .ripple-box .black-box .icon {
  width: 50px;
  height: 50px;
} */

.ripple-box .black-box .content {
  width: calc(100% - 50px - 25px);
}

.ripple-box .black-box h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.ripple-box .black-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.highlight-himler-box {
  background-color: #171717;
  border-radius: 8px;
  overflow: hidden;
  padding: 45px 70px;
  max-width: 987px;
  margin: 32px auto 0;
  display: flex;
  gap: 32px;
}

.highlight-himler-box h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}

.highlight-himler-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.box-style-3 {
  width: 100%;
  position: relative;
  display: block;
  padding: 40px 13px;
}

.d-flex:not(:first-child) .box-style-3::after {
  content: "";
  width: 1px;
  position: absolute;
  left: -25px;
  top: 20%;
  bottom: 5%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #ffffff 47%,
    rgba(0, 0, 0, 0) 100%
  );
}

.box-style-3 .icon {
  margin-bottom: 8px;
}

.box-style-3 h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}

.box-style-3 p,
.box-style-3 .source-ft {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.box-style-3 .source-ft {
  display: flex;
  gap: 3px;
}

.box-style-3 .source-ft span {
  color: var(--primaryColor);
}

.cs-why-box {
  width: 100%;
  border: 1px solid #313c47;
  padding: 48px 16px;
  margin: 15px 0;
}

.cs-why-box .icon {
  margin-bottom: 32px;
}

.cs-why-box h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.cs-why-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.conclusion-section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.conclusion-section p + p {
  margin-top: 16px;
}

.conclusion-section .section-title {
  max-width: 490px;
}

.orange-fill-btn {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  border-radius: 6px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  color: var(--whiteColor);
}

.white-text-link {
  color: var(--whiteColor);
}

.cta-box {
  display: flex;
  align-items: center;
  background-color: #171717;
  border-radius: 8px;
  padding: 10px 28px 0;
}

.cta-box h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
}

.cta-box .detail {
  max-width: 440px;
}

.cta-box .detail p {
  line-height: 1.9;
}

.disclaimer-section h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 16px;
}

.disclaimer-section p {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

.disclaimer-section {
  position: relative;
}

.disclaimer-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12.25%, #000000 68.71%);
}

.disclaimer-section.active::after,
.disclaimer-section.active .down-arrow-btn {
  display: none;
}

.down-arrow-btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  color: var(--lightBlack);
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, 0%);
  z-index: 9;
}

.down-arrow-btn:hover {
  color: var(--primaryColor);
}

.case-study-sticky-head {
  padding: 10px 0;
  background: #212121;
}

.case-study-sticky-head.sticky {
  position: fixed;
  top: 99px;
  left: 0;
  right: 0;
  z-index: 99;
  animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
}

.case-study-sticky-head .box {
  max-width: 945px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-link-item {
  height: 15px;
}

.case-study-sticky-head .section-link-item a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.case-study-sticky-head .section-link-item a:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #000000;
}

.case-study-sticky-head .section-link-item a span {
  max-width: 0;
  color: var(--whiteColor);
  transition: 1s;
  display: inline-flex;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.5s ease-in-out;
}

.case-study-sticky-head .section-link-item a:hover span {
  max-width: fit-content;
  transition-delay: 0.3s;
}

.case-study-sticky-head .section-link-item a:hover::before {
  background-color: var(--whiteColor);
}

.box-style-4 {
  width: 100%;
  position: relative;
  display: block;
  padding: 32px;
}

.box-style-4 .icon {
  margin-bottom: 16px;
}

.box-style-4 h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.box-style-4 p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.brand-story-banner-section {
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.brand-story-banner-section .bg-image img {
  max-width: 100%;
}

.brand-story-banner-section .bg-image {
  width: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

.brand-story-banner-section .bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  transform: rotate(180deg);
  pointer-events: none;
}

.brand-story-banner-section .content {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.brand-story-banner-section h1 {
  font-size: 74px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
}

.brand-story-drives-section {
  position: relative;
  text-align: center;
}

.brand-story-drives-section h2 {
  max-width: 875px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 auto 32px;
  text-transform: uppercase;
}

.brand-story-drives-section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 3.2;
}

.brand-story-drives-section .small-title {
  display: inline-flex;
  align-items: center;
}

.brand-story-drives-section br {
  display: block;
}

/* Modal Design */

.a3-modal-design .modal-dialog .modal-content {
  backdrop-filter: blur(20px);
  box-shadow: 0px 4px 40px 20px #00000033;
  background-color: #151515;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 46px;
}

.a3-modal-design .modal-dialog {
  margin: 0 auto;
  margin-top: 64px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 1168px;
  padding: 0 20px;
}

.a3-modal-design .section-title h2 {
  font-size: 28px;
  color: #fff;
}

.a3-modal-design .small-title {
  color: var(--whiteColor);
}

/* .a3-modal-design .form-control {
    border-bottom: 1px solid #838383;
    color: var(--whiteColor);
    font-weight: 300;
} */

/* .a3-modal-design .form-control::placeholder {
    color: var(--whiteColor);
} */

/* .a3-modal-design .recap {
    color: var(--whiteColor);
} */

.a3-modal-design .modal-right-form {
  padding: 18px 18px 18px;
  width: calc(100% - 386px - 46px);
}

.a3-modal-design .modal-left-image {
  width: 386px;
}

.modal-backdrop {
  background-color: rgb(0 0 0 / 80%);
}

.modal-backdrop.show {
  opacity: 1;
}

.send-nda {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #838383;
  margin-bottom: 20px;
}

.send-nda .form-checkbox-label {
  position: relative;
  padding-left: 25px;
}

.send-nda .form-checkbox-label::after,
.send-nda .form-checkbox-label::before {
  content: "";
  position: absolute;
  border-radius: 5px;
  top: 2px;
  line-height: normal;
}

.send-nda .form-checkbox-label::after {
  height: 17px;
  width: 17px;
  border: 1px solid #484848;
  background: #fff;
  left: 0;
}

.send-nda input:checked ~ .form-checkbox-label:after {
  border-color: #f05a29;
  background: #f05a29;
}

.send-nda input:checked ~ .form-checkbox-label::before {
  content: "✔";
  z-index: 8;
  left: 2px;
  color: #fff;
  font-size: 16px;
  top: 1px;
}

.close-modal-btn {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--whiteColor);
  z-index: 2;
  border-radius: 100%;
  cursor: pointer;
}

.close-modal-btn svg {
  position: relative;
  z-index: 1;
}

.close-modal-btn::after {
  content: "";
  background: linear-gradient(
    107.27deg,
    rgba(255, 255, 255, 0.6) 0.82%,
    rgba(153, 153, 153, 0.6) 100%
  );
  backdrop-filter: blur(20px);
  box-shadow: 0px 4px 40px 20px #00000033;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.close-modal-btn::before {
  content: "";
  background: linear-gradient(
    107.85deg,
    rgba(255, 255, 255, 0.5) 0.01%,
    rgba(255, 255, 255, 0.2) 59%
  );
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.thank-you-banner-section {
  padding: 180px 0 0;
}

.thank-you-banner-section .container {
  max-width: 920px;
}

.thank-you-banner-section .content-detail h1 {
  font-size: 75px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.thank-you-banner-section .content-detail .sub-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin: -6px 0 0 0;
}

.thank-you-banner-section .content-detail p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 24px;
}

.thank-you-banner-section .content-detail .btn {
  min-width: 144px;
  height: 41px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primaryColor);
}

.thank-you-banner-section .content-detail .btn:focus,
.thank-you-banner-section .content-detail .btn.active {
  outline: none;
  border-color: var(--primaryColor);
}

.step-section .container {
  max-width: 966px;
}

.step-section .step-list {
  display: flex;
  flex-wrap: wrap;
}

.step-section .step-list li {
  flex: 1 1;
  /* padding-top: 45px; */
  position: relative;
  padding: 45px 64px 0 0;
}

.step-section .step-list li:last-child {
  padding-right: 0;
}

.step-section .step-list li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 0;
  top: 17.5px;
  right: 0;
  height: 1px;
  background-color: var(--primaryColor);
}

.step-section .step-list li .check-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #000;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-section .step-list li h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.step-section .step-list li p {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
}

/* Toc Css */

#ez-toc-container {
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
}

div#ez-toc-container .ez-toc-title {
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
  display: block !important;
}

.ez-toc-counter nav ul li a::before {
  display: none !important;
}

#ez-toc-container a {
  font-size: 16px !important;
  margin-bottom: 8px !important;
  color: #0d0d0d !important;
}

#ez-toc-container a:hover {
  text-decoration: none !important;
}

#ez-toc-container a:visited {
  color: #000000;
  border-left: 4px solid #f05a29;
  padding-left: 10px;
}

div#ez-toc-container ul li {
  position: relative !important;
  padding-left: 24px !important;
}

/* About Us css */

.about-us-banner-section {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.about-us-banner-section .bg-image img {
  max-width: 100%;
}

.about-us-banner-section .bg-image {
  width: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

/* .about-us-banner-section .bg-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  transform: rotate(180deg);
  pointer-events: none;
} */

.about-us-banner-section .content {
  position: absolute;
  left: 50%;
  top: 104px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.about-us-banner-section h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}

.about-us-banner-section p {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin-top: 24px;
  font-weight: 300;
}

.who-we-are-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 498px;
}

.who-we-are-section .left-text {
  margin-right: 50%;
  z-index: 1;
  max-width: 608px;
  margin-left: auto;
}

.who-we-are-section .full-size-right-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 50%;
}

.who-we-are-section .full-size-right-image img {
  width: 100%;
  object-fit: cover;
  height: 498px;
}

.who-we-are-section .section-title h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.45;
}

.core-value-box {
  width: 100%;
  border: 2px solid #382e2e;
  border-radius: 8px;
  overflow: hidden;
  padding: 8px;
}

.core-value-box img {
  width: 100%;
  border-radius: 10px;
  max-height: 216px;
  object-fit: cover;
}

.core-value-box .content {
  padding: 16px 8px 8px;
}

.core-value-box h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 8px;
}

.research-development-section {
  position: relative;
}

.research-development-section .bg-effect {
  width: 100%;
  position: relative;
  padding: 64px 16px 0;
}

.research-development-section .bg-effect::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background: url(../png/research-development-bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 447px;
  z-index: -1;
  pointer-events: none;
}

.research-development-section .section-title {
  max-width: 632px;
  margin-left: auto;
  margin-right: auto;
}

.research-development-box {
  width: 100%;
  border: 1px solid #313c47;
  background-color: #212121;
  padding: 24px 16px;
  border-radius: 8px;
  overflow: hidden;
}

.research-development-box .image {
  max-height: 240px;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.research-development-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-development-box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 2.1;
}

.research-development-box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.about-page-client-section {
  background-color: #131313;
  padding-top: 64px;
  padding-bottom: 128px;
}

.about-page-client-section .client-logos-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 42px;
  max-width: 1093px;
  width: 100%;
  margin: 0 auto;
}

.about-page-client-section .client-logos-list .client-logos-item {
  width: calc(100% / 5);
  text-align: center;
}

.about-page-client-section .client-logos-list .client-logos-item img {
  max-width: 100%;
}

.about-award-section .about-award-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 84px;
  row-gap: 64px;
  max-width: 1052px;
  margin: 0 auto;
}

.about-award-section .about-award-list .about-award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--whiteColor);
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 calc((100% - (3 * 84px)) / 4);
}

.about-page-client-testiomails-section .testimonials-card {
  padding: 55px 128px 100px 33px;
  border: 1px solid #484848;
}

.ai-solution-box {
  background-color: #131313;
  padding: 32px 24px 24px;
  width: 100%;
}

.ai-solution-box h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 16px;
}

.ai-solution-box p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.ai-solution-box .image {
  margin-bottom: 32px;
}

.ai-solution-box2 {
  padding: 64px;
}

.ai-solution-box2 p {
  font-size: 12px;
}

.about-company-slider {
  height: 100vh;
}

/* Contact US page css */

.country-code-mobile-form-group {
  display: flex;
}

.country-code-mobile-form-group select {
  background-color: #212121;
  border: none;
  border-bottom: 1px solid rgba(71, 71, 71, 1);
  padding: 0 15px 8px 4px;
  padding: 0 4px 8px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(131, 131, 131, 1);
}

.country-code-mobile-form-group select::placeholder {
  color: rgba(131, 131, 131, 1);
}

.country-code-mobile-form-group select:focus-visible {
  outline: none;
}

.country-code-mobile-form-group .form-control {
  padding-left: 15px;
}

.a3-modal-design .country-code-mobile-form-group select {
  background-color: #151515;
  border-bottom: 1px solid #838383;
  color: #fff;
}

.contact-us-step-section .container {
  max-width: 1304px;
}

.press-relase-section {
  padding-bottom: 20vh;
}

.press-relase-section .research-development-box h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.press-relase-section .section-title {
  max-width: 1000px;
}

.contact-us-page-form-section .form-box {
  padding: 40px 30px;
}

.contact-us-page-form-section {
  background: #000 url(../png/worldmap-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-us-page-form-section::after {
  content: "";
  pointer-events: none;
  background: linear-gradient(0, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 60%;
  z-index: 0;
}

.contact-us-page-form-section::before {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 60%;
  z-index: 0;
}

.country-address-list {
  /* width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative; */
  z-index: 1;
  row-gap: 24px;
}

.country-address-list .country-address-item {
  padding: 16px 20px 8px 198px;
  background: url(../jpg/india-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  min-height: 138px;
  display: flex;
  flex-direction: column;
}

.country-address-list .country-address-item.usa-address {
  background: url(../jpg/usa-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.country-address-list .country-address-item.singapore-address {
  background: url(../jpg/singanpore-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.country-address-list .country-address-item.uk-address {
  background: url(../jpg/uk-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.country-address-list .country-address-item .country-name {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.country-address-list .country-address-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-info {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

.contact-info a {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--whiteColor);
}

.contact-us-page-form-section .section-title h2 {
  font-size: 28px;
}

.contact-us-page-form-section .section-title h2 .orange-text {
  color: var(--primaryColor);
}

.contact-us-page-form-section .section-title h2 .normal-text {
  font-weight: 300;
}

/* Career Page 2 css */

.current-opening-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.current-opening-list .current-opening-item {
  width: calc((100% / 3) - (32px * (3 - 1) / 3));
  background: #212121;
  padding: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.current-opening-list .current-opening-item .image {
  border-radius: 8px;
  overflow: hidden;
}

.current-opening-list .current-opening-item .image img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.current-opening-list .current-opening-item .detail {
  padding: 20px 10px;
}

.current-opening-list .current-opening-item h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
}

.current-opening-list .current-opening-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 18.62px;
  color: #c4c4c4;
  margin-bottom: 16px;
}

.current-opening-list .current-opening-item label {
  font-size: 16px;
  color: #c4c4c4;
  line-height: 1.9;
}

.bg-212121 {
  background-color: #212121;
}

.why-join-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.why-join-tabs .nav {
  width: 390px;
}

.why-join-tabs .tab-content {
  width: calc(100% - 390px - 32px);
  max-height: unset;
  overflow: unset;
  padding: 32px;
}

.why-join-tabs .nav-pills .nav-link {
  background-color: #0c0c0c;
  border-radius: 0;
  padding: 16px 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  color: var(--whiteColor);
  position: relative;
}

.why-join-tabs .nav-pills .nav-link:not(.active) img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(0%) saturate(0%)
    hue-rotate(180deg) brightness(80%) contrast(90%);
}

.why-join-tabs .nav-pills .nav-link svg {
  fill: #707070;
}

.why-join-tabs .nav-pills .nav-link.active svg {
  fill: var(--primaryColor);
}

.why-join-tabs .nav-pills .nav-link:not(:first-child) {
  border-top: 1px solid #3a3a3a;
}

.why-join-tabs .nav-pills .nav-link.active::after {
  content: "";
  position: absolute;
  left: -100vw;
  bottom: 0;
  background-color: #212121;
  width: 100vw;
  height: calc(100% + 1px);
  pointer-events: none;
}

.why-join-tabs .nav-pills .nav-link::after {
  content: "";
  position: absolute;
  left: -100vw;
  bottom: 0;
  background-color: #0c0c0c;
  width: 100vw;
  height: calc(100% + 1px);
  pointer-events: none;
}

.why-join-tabs .nav-pills .nav-link:not(:first-child)::after {
  border-top: 1px solid #3a3a3a;
}

.why-join-tabs .nav-pills .nav-link.active,
.why-join-tabs .nav-pills .show > .nav-link {
  background-color: #212121;
  color: var(--primaryColor);
}

.icon-left-text-right:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 20%;
  top: 10%;
  bottom: 0;
  width: 1px;
  background-color: #3a3a3a;
}

.why-join-tabs .tab-content h3 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}

.why-join-tabs .tab-content p {
  font-size: 16px;
  line-height: 1.7;
}

.career-list-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
  justify-content: center;
}

.career-list-stats .icon-left-text-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.career-list-stats .icon-left-text-right .icon {
  width: 69px;
  height: 80px;
}

.career-list-stats .icon-left-text-right .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.career-list-stats .icon-left-text-right .detail {
  width: calc(100% - 69px - 16px);
}

.career-list-stats .icon-left-text-right .detail h4 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--primaryColor);
}

.career-list-stats .icon-left-text-right .detail p {
  font-weight: 500;
  line-height: 1.35;
}

.carrer-image-box {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.carrer-image-box img {
  width: 100%;
  object-fit: cover;
  max-height: 348px;
}

.career-perks-benifits-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.career-perks-benifits-box-list .career-perks-benifits-box-item {
  width: calc(100% / 5 - 32px);
  padding: 32px 16px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background-color: #000;
  border: 1px solid #403f46;
}

.career-perks-benifits-box-list .career-perks-benifits-box-item img {
  width: 25px;
  height: 22px;
  object-fit: contain;
}

.carrer-employee-testiomanils-section {
  background-color: #262626;
  padding: 32px 0;
  overflow: hidden;
}

.employeeTestimonails {
  clip-path: inset(0 -100vw 0 0px);
}

.employee-testimonail-box {
  background-color: #000;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 15px 0;
}

.employee-testimonail-box .employee-image {
  width: 150px;
  height: 150px;
  border: 1px solid var(--primaryColor);
}

.employee-testimonail-box .employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-testimonail-box .message {
  width: calc(100% - 150px - 32px);
  display: flex;
  flex-direction: column;
}

.employee-testimonail-box .message p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  margin-bottom: 16px;
}

.employee-testimonail-box .message .employee-detail {
  margin-top: auto;
  position: relative;
  padding-left: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.employee-testimonail-box .message .employee-detail span {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  display: block;
}

.employee-testimonail-box .message .employee-detail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  border-radius: 10px;
  background-color: var(--primaryColor);
  pointer-events: none;
}

.career-first-company-section {
  position: relative;
}

.career-first-company-section .full-size-right-image {
  position: absolute;
  /* top: 0; */
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 50%;
}

.career-first-company-section .full-size-right-image img {
  width: 100%;
  object-fit: cover;
  height: 580px;
}

.career-first-company-section .left-text {
  margin-left: 50%;
  margin-right: auto;
  z-index: 1;
  max-width: 720px;
}

.career-first-company-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.career-first-company-list .career-first-company-item {
  padding: 64px 32px;
}

.career-first-company-list .career-first-company-item:nth-child(1),
.career-first-company-list .career-first-company-item:nth-child(3) {
  border-right: 1px solid #403f46;
}

.career-first-company-list .career-first-company-item:nth-child(1),
.career-first-company-list .career-first-company-item:nth-child(2) {
  border-bottom: 1px solid #403f46;
}

.career-first-company-list .career-first-company-item .icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.career-first-company-list .career-first-company-item .icon-title .icon {
  max-width: 50px;
}

.career-first-company-list .career-first-company-item .icon-title .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.career-first-company-list .career-first-company-item .icon-title h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.career-first-company-list .career-first-company-item .list-design li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
}

.career-first-company-list .career-first-company-item .list-design li::before {
  background-image: url('data:image/svg+xml,<svg width="6" height="11" viewBox="0 0 6 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.05762 9.66797L4.80762 5.66797L1.05762 1.66797" stroke="%23F05A29" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-position: center;
}

.career-office-photos-section {
  background-color: #262626;
  padding: 32px 0;
}

.career-office-photos-box + .career-office-photos-box {
  margin-top: 16px;
}

.career-office-photos-box {
  width: 100%;
  height: 100%;
}

.career-office-photos-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrer-cta-bg-box {
  background: linear-gradient(
    344.54deg,
    #00efa9 -39.9%,
    #04e2aa -12.92%,
    #0ebead 25.6%,
    #1e85b1 83.49%,
    #3537b7 153.64%,
    #3f13ba 183.67%
  );
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  gap: 90px;
  padding: 0 50px 0 100px;
}

.carrer-cta-bg-box .cta-image {
  max-width: 540px;
  position: relative;
}

.carrer-cta-bg-box .cta-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  right: 0;
  width: 544px;
  height: 544px;
  background-color: #d9d9d9;
  border-radius: 100%;
  mix-blend-mode: color-burn;
  z-index: 0;
  pointer-events: none;
}

.carrer-cta-bg-box .cta-image img {
  max-height: 340px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.carrer-cta-bg-box .content {
  width: calc(100% - 540px - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 482px;
  padding: 16px 0;
}

.carrer-cta-bg-box .small-title {
  color: var(--whiteColor);
  font-size: 13px;
  font-weight: 300;
}

.carrer-cta-bg-box .small-title:before {
  background-color: var(--whiteColor);
}

.carrer-cta-bg-box h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
}

.carrer-cta-bg-box p {
  font-size: 16px;
  line-height: 1.85;
}

.carrer-cta-bg-box .btn {
  background-color: var(--whiteColor);
  color: #000;
  margin-top: 20px;
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}

.meet-the-team-about-section .section-title h2 {
  position: relative;
  line-height: 1.6;
  padding-left: 20px;
  border-left: 4px solid var(--primaryColor);
}

.leadership-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.leadership-list .leadership-item {
  position: relative;
}

.leadership-list .leadership-item::after {
  content: "";
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 72.41%);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.leadership-list .leadership-item > img {
  width: 100%;
}

.leadership-list .leadership-item .overlay-text {
  position: absolute;
  left: 24px;
  bottom: 16px;
  z-index: 1;
}

.leadership-list .leadership-item p {
  font-family: "Work Sans", serif;
  font-size: 37px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.leadership-list .leadership-item .linkedin-btn {
  font-family: "Work Sans", serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--whiteColor);
}

.leadership-list .leadership-item .linkedin-btn img {
  border-radius: 4px;
}

.leadership-stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.leadership-stats-list .leadership-stats-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(64, 63, 70, 1);
}

.leadership-stats-list .leadership-stats-item:nth-child(1),
.leadership-stats-list .leadership-stats-item:nth-child(5) {
  padding-left: 0;
}

.leadership-stats-list .leadership-stats-item:nth-child(1),
.leadership-stats-list .leadership-stats-item:nth-child(2),
.leadership-stats-list .leadership-stats-item:nth-child(3),
.leadership-stats-list .leadership-stats-item:nth-child(4) {
  border-bottom: 1px solid rgba(64, 63, 70, 1);
}

.leadership-stats-list .leadership-stats-item:nth-child(4),
.leadership-stats-list .leadership-stats-item:nth-child(8) {
  border-right: 0;
}

.leadership-stats-list .leadership-stats-item .count {
  font-size: 62px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--primaryColor);
  margin-bottom: 8px;
}

.leadership-stats-list .leadership-stats-item h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}

.leadership-stats-list .leadership-stats-item p {
  font-size: 16px;
  line-height: 1.9;
}

.leadership-bg-gredient {
  background: linear-gradient(
    0.67deg,
    #d21312 10.56%,
    #d72010 34.45%,
    #e3440b 79.05%,
    #f67c04 139.1%,
    #ff9700 165.01%
  );
  padding: 42px 75px;
}

.leadership-bg-gredient .small-title {
  color: var(--whiteColor);
  padding: 0;
}

.leadership-bg-gredient .small-title::before {
  display: none;
}

.leadership-bg-gredient .nav-pills {
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 16px;
}

.leadership-bg-gredient .nav-pills .nav-link {
  text-transform: uppercase;
  color: var(--whiteColor);
  font-size: 24px;
  line-height: 1.6;
  padding: 0;
  border-radius: 0;
}

.leadership-bg-gredient .nav-pills .nav-link.active {
  color: var(--whiteColor);
  background-color: transparent;
}

.leadership-bg-gredient .box {
  display: flex;
  align-items: center;
  gap: 40px;
}

.leadership-bg-gredient .carrer-image-box {
  width: 35%;
}

.leadership-bg-gredient .content {
  width: calc(100% - 35% - 40px);
}

.leadership-bg-gredient .box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.leadership-bg-gredient .box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.meet-the-team-cta-section h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 24px;
}

.meet-the-team-cta-section {
  position: relative;
  padding: 88px 0 0;
  z-index: 1;
  /* background: url(../../../images/meet-the-team/circle-effect.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%; */
}

.meet-the-team-cta-section > * {
  z-index: 1;
  position: relative;
}

.meet-the-team-cta-section::after {
  content: "";
  position: absolute;
  background: url(../png/circle-effect-2.png);
  background-repeat: no-repeat;
  background-position: top 65% center;
  background-size: 40%;
  top: 0;
  left: 0;
  right: 0;
  height: 180%;
  z-index: 0;
  pointer-events: none;
}

.only-mobile-pagination {
  display: none;
}

.csr-banner-section {
  min-height: 253px;
  position: relative;
  position: relative;
}

.csr-banner-section .bg-image {
  width: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

.csr-banner-section .bg-image::before {
  content: "";
  background: linear-gradient(2.11deg, rgba(0, 0, 0, 0) 8.41%, #000000 85.49%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(180deg);
}

.csr-banner-section .content {
  position: absolute;
  left: 50%;
  top: 144px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 1;
}

.csr-banner-section .content h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 0.6;
  text-transform: uppercase;
  margin: 0;
}

.csr-banner-section .content p {
  font-size: 32px;
  margin-top: 16px;
  font-weight: 300;
}

.csr-about-section .section-title {
  max-width: 472px;
  margin-left: auto;
}

.csr-about-section .section-title p {
  font-size: 16px;
  margin-top: 16px;
}

.poor-help-section .box {
  background: url(../poor-help-bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 75px;
}

.poor-help-section .box .content {
  max-width: 645px;
  margin-left: auto;
  text-align: center;
}

.poor-help-section h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.poor-help-section p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.education-section {
  background-color: #171717;
  padding-bottom: 64px;
}

.education-box {
  background-color: #212121;
  padding: 46px 78px;
  max-width: 895px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.education-box .education-image {
  width: 195px;
  border: 2px solid var(--whiteColor);
  border-radius: 8px;
  overflow: hidden;
}

.education-box .education-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-box p {
  width: calc(100% - 95px - 16px);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.65;
}

.education-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.education-services-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 32px;
  border-bottom: 1px solid #313131;
}

.education-services-item .icon {
  min-width: 50px;
}

.education-services-item:not(:nth-child(3n + 3)) {
  border-right: 1px solid #313131;
}

.education-services-item:nth-child(7),
.education-services-item:nth-child(8),
.education-services-item:nth-child(9) {
  border-bottom: 0;
}

.education-services-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.education-box-section {
  position: relative;
}

.education-box-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  height: 100%;
  background-color: #171717;
  z-index: -1;
}

.young-woman-box {
  max-width: 1178px;
  margin: 0 auto;
  text-align: center;
}

.young-woman-box p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
}

.woman-image {
  text-align: center;
}

.woman-highlight-box {
  max-width: 1036px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  padding: 32px;
  gap: 16px;
  background-color: #171717;
  border-radius: 8px;
  text-align: left;
}

.woman-highlight-box .image {
  width: 130px;
  border-radius: 8px;
  border: 2px solid var(--whiteColor);
  overflow: hidden;
}

.woman-highlight-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woman-highlight-box p {
  width: calc(100% - 130px - 16px);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
}

.bg-section-with-text-box {
  background: url(../bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  padding: 127px 0;
}

.bg-section-with-text-box .text-box {
  background-color: #000000;
  padding: 50px 40px;
  border-radius: 8px;
  max-width: 557px;
  margin-left: auto;
}

.bg-section-with-text-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.bg-section-with-text-box p + p {
  margin-top: 16px;
}

.white-box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  width: 100%;
  margin-top: 16px;
}

.white-box-item {
  background-color: var(--whiteColor);
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
}

.orange-box {
  background-color: var(--primaryColor);
  border-radius: 8px;
  padding: 40px 80px;
  max-width: 890px;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.65;
}

.orange-box span {
  font-size: 20px;
  display: block;
  margin-top: 8px;
}

.overlap-section {
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

.solar-power-section .section-title {
  max-width: 495px;
}

.solar-power-section .section-title p {
  font-size: 16px;
  line-height: 1.95;
}

.solar-power-section .section-title p + p {
  margin-top: 16px;
}

.solar-power-section .image {
  width: 100%;
}

.solar-power-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 746px;
}

.solar-power-section .black-box {
  background-color: #171717;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  margin-top: 16px;
}

.field-section {
  background: url(../field-bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  padding: 64px 0;
}

.field-section .black-box {
  background-color: #000000;
  padding: 50px 40px;
  border-radius: 8px;
  max-width: 557px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.csr-cta-section .button-group {
  justify-content: center;
}

.brand-story-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.brand-story-content p + p {
  margin-top: 16px;
}

.brand-story-box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: url(../brand-story-bg.html);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.brand-story-box .brand-story-content {
  width: 485px;
  text-align: center;
  padding: 16px;
}

.brand-story-box .brand-story-content h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--whiteColor);
  margin-bottom: 24px;
}

.brand-story-box .brand-story-image {
  width: calc(100% - 485px - 16px);
  display: flex;
  align-items: center;
}

.contact-us-page-form-section .form-box .section-title.mb-0 {
  display: none;
}

.contact-us-page-form-section .form-box iframe {
  height: 530px !important;
}

.award-slider-section {
  position: relative;
}

.awardSlider {
  position: relative;
  overflow: hidden;
}

.awardSlider .swiper-button-prev,
.awardSlider .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
}

.awardSlider .swiper-button-prev svg,
.awardSlider .swiper-button-next svg {
  width: 8px;
  padding-top: 15px;
}

.awardSlider .swiper-button-disabled {
  background-color: var(--whiteColor);
  color: #1a1a1a;
  opacity: 1;
}

.awardSlider .swiper-button-prev::after,
.awardSlider .swiper-button-next::after {
  display: none;
}

.awardSlider .swiper-button-prev {
  left: 10px;
  right: unset;
}

.awardSlider .swiper-button-next {
  right: 10px;
  left: unset;
}

.award-slide-box {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.award-slide-box .content-box {
  position: absolute;
  left: 20px;
  bottom: 10px;
  max-width: 568px;
  background-color: #000;
  padding: 26px;
  width: 100%;
}

.award-slide-box .content-box h2 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
}

.award-slide-box .content-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.95;
}

.award-slide-box img {
  width: 100%;
}

.certificate-logos-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.certificate-logos-list img {
  width: 100%;
}

.award-section-title {
  margin-bottom: 32px;
}

.award-section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  line-height: 1.31;
}

.award-section-title h2 + p {
  margin-top: 8px;
  font-size: 13px;
}

.bg-image img {
  max-width: 100%;
}

.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: lightgray;
  border-bottom: 2px solid #000;
}

/* Sticky Parent Section */

.sticky-parent {
  position: relative;
  height: 400vh;
  /* Ensures enough scrolling space */
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Child Container */

.child-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

/* Child Boxes */

.child {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  padding: 20px;
  color: white;
  font-weight: bold;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* opacity: 0;
    transition: opacity 0.5s ease-in-out;
    */
}

.child:nth-child(1) {
  background: #ffcc00;
  color: black;
}

.child:nth-child(2) {
  background: #ff6600;
}

.child:nth-child(3) {
  background: #ff3366;
}

.child:nth-child(4) {
  background: #66ccff;
}

.child:nth-child(5) {
  background: green;
}

/* Show active child */

/* .child.active {
    z-index: 9;
}
.child:first-child {
    z-index: 9;
}
*/

.child {
  transform: translateY(200px);
  transition: all 1s ease-out;
  position: absolute;
  visibility: hidden;
}

.child:first-child {
  visibility: visible;
}

.child.active {
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.21, 0.69, 0.39, 0.96);
  visibility: visible;
}

.child.past .scrsl-slide-image-wrapper {
  transform: translateX(-150%);
  transition: all 1s ease-out;
}

.child.past .scrsl-slide-content-description {
  opacity: 0;
  transform: translateX(150%);
}

/* Service pages css */

.service-page-banner-section {
  background: #000 url(../jpg/service-banner-bg.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 0;
  min-height: 700px;
}

.service-page-banner-section h1 {
  max-width: 432px;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.service-page-banner-section p {
  max-width: 432px;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.95;
}

.service-page-banner-section .banner-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 21.6px;
  line-height: 1.35;
  background-color: var(--primaryColor);
  border-radius: 6px;
  min-height: 42px;
  padding: 8px 24px;
  min-width: 213px;
  color: var(--whiteColor);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner-company-stats {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.banner-company-stats .banner-company-stats-item {
  display: flex;
  align-items: center;
  position: relative;
  gap: 16px;
}

.banner-company-stats .banner-company-stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="1" height="98" viewBox="0 0 1 98" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="0.5" y1="-2.18557e-08" x2="0.500004" y2="98" stroke="url(%23paint0_linear_1453_12121)"/><defs><linearGradient id="paint0_linear_1453_12121" x1="-0.5" y1="2.18557e-08" x2="-0.499996" y2="98" gradientUnits="userSpaceOnUse"><stop stop-opacity="0"/><stop offset="0.47" stop-color="white"/><stop offset="1" stop-opacity="0"/></linearGradient></defs></svg>');
}

.banner-company-stats .banner-company-stats-item .count {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.35;
  color: var(--primaryColor);
}

.banner-company-stats .banner-company-stats-item p {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.75;
  text-align: left;
}

.service-about-section .section-title p {
  font-size: 14px;
}

.service-about-section .col-md-5 .section-title {
  max-width: 414px;
}

.service-page-development-services-section .section-title {
  max-width: 100%;
}

.service-page-development-services-section .section-title p {
  max-width: 984px;
  margin-left: auto;
  margin-right: auto;
}

.service-box {
  width: 100%;
  display: flex;
  gap: 22px;
  background: radial-gradient(
    82% 83.44% at 9.81% 9.24%,
    #363636 0%,
    rgb(26 26 26) 100%
  );
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  height: 100%;
}

.service-box-bg {
  width: 100%;
  background: linear-gradient(
    104.59deg,
    #ffffff 0.76%,
    rgba(255, 255, 255, 0.256139) 32.78%,
    rgba(255, 255, 255, 0.735087) 69.11%,
    rgba(255, 255, 255, 0.07) 99%
  );
  border-radius: 16px;
  padding: 1px;
  margin: 14.5px 0;
}

.service-box .icon {
  width: 110px;
  height: 110px;
  background-color: var(--primaryColor);
  border-radius: 8px;
  padding: 24px;
}

.service-box h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.95;
  margin-bottom: 4px;
}

.service-box p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.95;
}

.service-page-btn-white {
  font-weight: 500;
  font-size: 16px;
  line-height: 21.6px;
  line-height: 1.35;
  background-color: var(--whiteColor);
  border-radius: 6px;
  min-height: 42px;
  padding: 8px 24px;
  min-width: 213px;
  color: #000000;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-page-btn-white:hover {
  background-color: #000;
  color: var(--whiteColor);
}

.service-page-cta-design {
  background: linear-gradient(90deg, #f02929 0%, #f0a429 100%);
  position: relative;
}

.services-page-cta-box {
  display: flex;
  align-items: center;
}

.services-page-cta-box .services-page-cta-image {
  width: 555px;
  margin: -40px 0;
}

.services-page-cta-box .services-page-content-detail {
  padding: 60px 0;
  width: calc(100% - 555px);
}

.services-page-cta-box .services-page-content-detail h2 {
  font-weight: 500;
  font-size: 39px;
  line-height: 62.01px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.services-page-cta-box .services-page-content-detail p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.75;
}

.icon-title-box {
  width: 100%;
  background: radial-gradient(
    82% 83.44% at 9.81% 9.24%,
    #363636 0%,
    rgb(26 26 26) 100%
  );
  padding: 24px 16px;
  border-radius: 8px;
  height: 100%;
}

.icon-title-box .icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.icon-title-box .icon-title .icon {
  background-color: var(--primaryColor);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  min-width: 85px;
  min-height: 85px;
}

.icon-title-box .icon-title h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  margin: 0;
  line-height: 1.3;
}

.icon-title-box p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.95;
}

.service-page-services-section2 .service-box-bg {
  border-radius: 8px;
}

.services-box-design {
  width: 100%;
  background: linear-gradient(
    104.59deg,
    #ffffff 0.76%,
    rgba(255, 255, 255, 0.256139) 32.78%,
    rgba(255, 255, 255, 0.735087) 69.11%,
    rgba(255, 255, 255, 0.07) 99%
  );
  border-radius: 8px;
  padding: 1px;
  margin: 14.5px 0;
}

.services-box-bg {
  width: 100%;
  background: radial-gradient(
    82% 83.44% at 9.81% 9.24%,
    #363636 0%,
    rgb(26 26 26) 100%
  );
  padding: 24px 16px;
  border-radius: 8px;
}

.service-tab-detail-box {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.service-tab-detail-box .image-box {
  width: 480px;
}

.service-tab-detail-box .content {
  width: calc(100% - 480px - 40px);
  padding: 24px 0 44px;
}

.service-tab-detail-box .content h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.service-tab-detail-box .content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
}

.features-tab-services-page {
  padding: 38px 33px 0;
}

.features-tab-services-page .nav-tabs {
  border: 1px solid #ededed;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.features-tab-services-page .nav-item {
  flex: 1 1;
}

.features-tab-services-page .nav-item .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  min-height: 60px;
  height: 100%;
  display: block;
  border-radius: 0;
  color: var(--whiteColor);
  border: 0;
  width: 100%;
}

.features-tab-services-page .nav-item .nav-link.active {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.features-tab-services-page .list-design li:before {
  top: 5px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="12" viewBox="0 0 7 12"><path id="Path_5710" data-name="Path 5710" d="M1.5,12a1,1,0,0,1-.707-1.707L5.086,6,.793,1.707A1,1,0,0,1,2.207.293l5,5a1,1,0,0,1,0,1.414l-5,5A1,1,0,0,1,1.5,12Z" transform="translate(-0.5)" fill="%23f05a29"/></svg>');
}

.features-tab-services-page .btn {
  min-width: 213px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-solution-box {
  background-color: #2f2f31;
  width: 100%;
  padding: 35px 0 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-solution-box h3 {
  font-weight: 500;
  font-size: 29px;
  line-height: 1.35;
  margin-bottom: 5px;
  padding: 0 20px;
}

.service-solution-box p {
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.95;
}

.service-solution-box .solution-image {
  margin-top: auto;
}

.service-solution-box img {
  margin-top: 16px;
  width: 100%;
}

.serives-page-solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bestModelAppsSlider {
  clip-path: inset(0 -100vw 0 0px);
}

.apps-model-card {
  width: 100%;
  position: relative;
}

.apps-model-card .apps-model-card-image,
.apps-model-card .apps-model-card-image img {
  width: 100%;
}

.apps-model-card .apps-model-card-image {
  position: relative;
}

.apps-model-card .apps-model-body {
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;
  padding: 18px 13px;
  border-radius: 8px;
  overflow: hidden;
}

.apps-model-card h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
}

.apps-model-card p {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.95;
  transition: 0.3s;
  display: none;
}

.apps-model-card:hover .apps-model-body {
  background-color: #000000;
}

.apps-model-card:hover p {
  display: block;
}

.services-cta-section {
  background: linear-gradient(90deg, #f02929 0%, #f0a429 100%);
  /* background: linear-gradient(90deg, #f02929 0%, #f0a429 100%) url(../../../images/service-pages/dating/cta.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    */
  padding: 24px 0;
  position: relative;
}

.services-cta-section .cta-content img {
  filter: brightness(0) invert(1);
}

.services-cta-section .cta-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.services-cta-section .container {
  position: relative;
  z-index: 1;
}

.services-cta-section .cta-bg-image img {
  width: 100%;
}

.services-cta-section h2 {
  font-weight: 500;
  font-size: 39px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.services-cta-section .cta-content {
  max-width: 704px;
}

.services-cta-section .btn-white {
  min-width: 213px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 6px;
  overflow: hidden;
}

.min-w-213 {
  min-width: 213px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 6px;
  overflow: hidden;
}

.features-custom-app-development-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.features-custom-app-development-list .features-custom-app-development-item {
  display: flex;
  gap: 24px;
  background-color: #0d0c11;
  border-radius: 4px;
  overflow: hidden;
}

.features-custom-app-development-list
  .features-custom-app-development-item
  .image {
  width: 214px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.orange-arrow-list li:before {
  top: 5px !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="12" viewBox="0 0 7 12"><path id="Path_5710" data-name="Path 5710" d="M1.5,12a1,1,0,0,1-.707-1.707L5.086,6,.793,1.707A1,1,0,0,1,2.207.293l5,5a1,1,0,0,1,0,1.414l-5,5A1,1,0,0,1,1.5,12Z" transform="translate(-0.5)" fill="%23f05a29"/></svg>') !important;
}

.features-custom-app-development-list
  .features-custom-app-development-item
  .content {
  width: calc(100% - 214px - 24px);
  padding: 17px 10px;
}

.features-custom-app-development-list .features-custom-app-development-item h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
}

.features-custom-app-development-list
  .features-custom-app-development-item
  .list-design
  li {
  font-size: 12px;
}

.features-custom-app-development-list
  .features-custom-app-development-item
  .list-design
  li:before {
  top: 2px !important;
}

.generative-revenue-box {
  display: flex;
  position: relative;
  padding: 30px 30px 0 0;
}

.generative-revenue-box::after {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  border-radius: 8px;
  z-index: -1;
}

.generative-revenue-box .image-box {
  width: 480px;
}

.generative-revenue-box .image-box img {
  width: calc(100% + 40px);
  margin-top: -60px;
  margin-right: -50px;
}

.generative-revenue-box .content {
  width: calc(100% - 480px);
}

.generative-revenue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.generative-revenue-list .icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.generative-revenue-list .icon-title h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
}

.generative-revenue-list p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.95;
}

.generative-revenue-section .btn-white {
  padding: 10px 50px;
}

.generative-revenue-section .btn-white:hover {
  background-color: #000;
  color: var(--whiteColor);
}

.orange-text {
  color: var(--primaryColor);
}

.why-a3-service-page-section .section-title h2 {
  font-weight: 500;
  font-size: 22px;
}

.why-a3-service-page-section .section-title h2 + p {
  font-size: 16px;
}

.why-a3-service-page-section {
  min-height: 817px;
  position: relative;
}

.why-a3-service-page-section img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 40%;
}

.tech-stack-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tech-stack-list .tech-stack-item {
  background-color: #171717;
  min-height: 66px;
  display: flex;
  gap: 40px;
}

.tech-stack-list .tech-stack-item .tech-stack-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  padding: 10px 20px;
  background-color: var(--primaryColor);
  width: 220px;
  display: flex;
  align-items: center;
}

.tech-stack-list .tech-stack-item .tech-stack-label {
  width: calc(100% - 220px - 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.car-rental-bg-new,
.job-portal-background,
.loan-develp-ewallet,
.loan-develp-bg,
.elearning-mobile-bg,
.tele-medicine-bg,
.real-estate-bg,
.food-grocery,
.advanced-dating,
.advanced-stock,
.advanced-fantasy,
.advanced-features-for-services-section,
.advance-features-ms {  
  position: relative;
  padding: 30px 0 48px;
}

.advanced-features-for-services-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../jpg/advance-features-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}



.loan-develp-ewallet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/backgroud-image-e-wallet.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.car-rental-bg-new::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/backgroud-image-car-rental.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.job-portal-background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/backgroud-image-job-portal.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.loan-develp-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/backgroud-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.elearning-mobile-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/e-larning-mobile-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.real-estate-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/real-estate-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.tele-medicine-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/tele-medicinie-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.advanced-dating::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/fantasy-background-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.advanced-stock::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/stock-background-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.advanced-grocery::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/grcoery-background-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.food-grocery::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../png/food-grocery.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}


.advance-features-ms::after {
  content: "";
   position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../jpg/microsoft-consulting-fix-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  pointer-events: none;
}



.advanced-features-for-services-section .section-title {
  background-color: var(--primaryColor);
  padding: 20px;
  position: sticky;
  top: 100px;
  margin-bottom: 0;
}

.advanced-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.advanced-features-list .advanced-features-item {
  background-color: #383838;
  padding: 24px 24px 50px;
}

.advanced-features-list .advanced-features-item .icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.advanced-features-list .advanced-features-item .icon-title h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
}

.advanced-features-list .advanced-features-item p {
  font-size: 16px;
  line-height: 1.95;
}

.best-model-apps-section {
  overflow: hidden;
}

/* New css 01 Apr 2025 */

.new-banner-section {
  position: relative;
  background: #000 url(../jpg/banner-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 64px;
}

.custom-software-bgpage {
  position: relative;
  background: #000
    url(../png/custom-software-bgpage.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 64px;
}

.new-banner-section h1 {
  font-weight: 500;
  font-size: 49px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.new-banner-section p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.95;
}

.new-banner-section .btn,
.new-banner-section .white-btn {
  min-width: 142px;
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 16px;
}

.section-title-withcta-btn-slider-arrows {
  display: flex;
  flex-wrap: wrap;
}

.section-title-withcta-btn-slider-arrows h2,
.section-title-withcta-btn-slider-arrows .cta-btn-with-arrows {
  flex: 1;
}

.section-title-withcta-btn-slider-arrows .cta-btn-with-arrows {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.section-title-withcta-btn-slider-arrows .cta-btn-with-arrows .slider-arrows {
  position: initial;
  width: 94px;
  margin: 0;
  flex-direction: row-reverse;
  height: 42px;
}

.section-title-withcta-btn-slider-arrows
  .cta-btn-with-arrows
  .slider-arrows
  .swiper-button-next,
.section-title-withcta-btn-slider-arrows
  .cta-btn-with-arrows
  .slider-arrows
  .swiper-button-prev {
  position: initial;
  margin: 0;
}

.hlp-slider-box {
  display: flex;
  flex-wrap: wrap;
  background-color: #171717;
  position: relative;
}

.hlp-slider-box::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 30%;
  pointer-events: none;
  z-index: 0;
  background-color: #000000;
}

.hlp-slider-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 50%;
  z-index: 1;
}

.hlp-slider-tabs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 30px;
  border: 1px solid #484848;
  background-color: #08090b;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.35;
  transition: 0.3s;
  cursor: pointer;
}

.hlp-slider-tabs-item img {
  width: 37px;
  transition: 0.3s;
}

.hlp-slider-tabs-item.active {
  background-color: #f05a29;
}

.hlp-slider-tabs-item.active img {
  filter: brightness(0) invert(1);
}

.hlp-slider-box .slider-box {
  width: 50%;
  position: relative;
}

.hlp-slider-box .hlp-slide-card {
  padding: 34px 48px;
  height: 100%;
}

.hlp-slider-box .hlp-slide-card h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.hlp-slider-box .hlp-slide-card p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.95;
}

.hlp-slider-box .hlp-slide-card p + p {
  margin-top: 12px;
}

.hlp-slider-box .hlp-slide-card .list-design {
  margin-top: 16px;
}

.hlp-slider-box .hlp-slide-card .list-design li::before {
  background-image: url('data:image/svg+xml,<svg width="6" height="11" viewBox="0 0 6 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.05762 9.66797L4.80762 5.66797L1.05762 1.66797" stroke="%23F05A29" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.hlp-slider-box .swiper-slide .hlp-slide-card {
  background: transparent url(../png/slider-bg-image01.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(2) .hlp-slide-card {
  background: transparent
    url(../png/melt234.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(3) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image03.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(4) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image04.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(5) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image05.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(6) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image06.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(7) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image07.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.hlp-slider-box .swiper-slide:nth-child(8) .hlp-slide-card {
  background: transparent url(../png/slider-bg-image08.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: initial;
}

.blockchain3-cta-section .cta-box.background-1 {
  padding: 16px 46px;
  background-image: url(../jpg/cta-bg.jpg);
}

.blockchain3-cta-section .cta-box.background-2 {
  padding: 40px 46px;
  background-image: url(../jpg/cta-bg-2.jpg);
}

.blockchain3-cta-section .cta-box.background-3 {
  padding: 40px 46px;
  background-image: url(../png/cta-bg-3.png);
}

.blockchain3-cta-section .cta-box.background-4 {
  padding: 40px 46px;
  background-image: url(../jpg/cta-bg-4.jpg);
}

.blockchain3-cta-section .cta-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #944c9e;
  display: flex;
  align-items: center;
  gap: 40px;
}

.blockchain3-cta-section .cta-box .content {
  width: calc(100% - 40px - 314px);
}

.blockchain3-cta-section .cta-box .content h2 {
  font-weight: 500;
  font-size: 32px;
}

.blockchain3-cta-section .cta-box .content p {
  font-size: 20px;
  line-height: 1.6;
}

.blockchain3-cta-section .cta-box .cta-button {
  width: 268px;
}

.blockchain3-cta-section .cta-box .cta-button .btn {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}

.blockchain3-cta-section .cta-box .cta-button .btn:hover {
  background-color: #fff;
  color: #000;
}

.blockchain-portfolio-section .button-group {
  margin-top: 32px;
}

.blockchain-portfolio-section .slider-arrows {
  position: initial;
  margin: 0;
  flex-direction: row-reverse;
  width: fit-content;
}

.blockchain-portfolio-section .slider-arrows .swiper-button-next,
.blockchain-portfolio-section .slider-arrows .swiper-button-prev {
  position: initial;
  margin: 0;
}

.btn-h-42 {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background-color: var(--primaryColor);
}

.btn-h-42:hover {
  background-color: var(--whiteColor);
  color: #000;
}

.blockchain-portfolio-slider .swiper-slide .blockchain-portfolio-card {
  display: flex;
  flex-direction: column;
  background: #000 url(../jpg/e-and-money.jpg) no-repeat
    center / cover;
}

.blockchain-portfolio-slider {
  clip-path: inset(0 -100vw 0 0px);
}

.blockchain-portfolio-slider
  .blockchain-portfolio-card
  .blockchain-portfolio-card-body {
  padding: 12px 15px;
}

.blockchain-portfolio-slider .blockchain-portfolio-card .logo-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 8px;
}

.blockchain-portfolio-slider .blockchain-portfolio-card .logo-title img {
  width: 67px;
  border-radius: 4px;
}

.blockchain-portfolio-slider .blockchain-portfolio-card p {
  font-weight: 500;
  font-size: 13px;
  line-height: 133%;
  line-height: 1.3;
}

.platforms-links {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

.platforms-links .platforms-links-item {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--whiteColor);
  cursor: pointer;
  transition: 0.3s;
}

.platforms-links .platforms-links-item img {
  transition: 0.3s;
}

.platforms-links .platforms-links-item:hover {
  background-color: var(--whiteColor);
}

.platforms-links .platforms-links-item:hover img {
  filter: invert(1);
}

.new-project-portfolio-section {
  position: relative;
  background: #000 url(../jpg/portfolio-project-bg.jpg)
    no-repeat center / cover;
  position: relative;
}

.new-project-portfolio-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 90px;
  background-color: #000;
  pointer-events: none;
}

.new-project-portfolio-slider {
  overflow: hidden;
}

.new-project-portfolio-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 90px 0 0;
  position: relative;
}

.new-project-portfolio-card .new-project-portfolio-body {
  width: calc(100% / 2 - 24px);
  padding-bottom: 180px;
}

.new-project-portfolio-card .new-project-portfolio-card-image {
  width: calc(100% / 2);
}

.new-project-portfolio-card .new-project-portfolio-body > img {
  border-radius: 4px;
  max-height: 55px;
  margin-bottom: 15px;
}

.new-project-portfolio-card .new-project-portfolio-body .title {
  font-weight: 600;
  font-size: 39px;
  line-height: 1.45;
  margin-bottom: 4px;
}

.new-project-portfolio-card .new-project-portfolio-body p {
  font-size: 16px;
  line-height: 1.6;
}

.new-project-portfolio-card .new-project-portfolio-body .btn {
  width: 100%;
  max-width: 250px;
  margin-top: 16px;
}

.new-project-portfolio-section .swiper-button-next:after,
.new-project-portfolio-section .swiper-button-prev:after {
  display: none;
}

.new-project-portfolio-section .swiper-button-next,
.new-project-portfolio-section .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-color: #000;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #838383;
  color: var(--whiteColor);
}

.new-project-portfolio-section .swiper-button-next:hover,
.new-project-portfolio-section .swiper-button-prev:hover {
  border-color: var(--primaryColor);
}

.new-project-portfolio-section .swiper-button-next svg,
.new-project-portfolio-section .swiper-button-prev svg {
  width: 8px;
  height: 14px;
}

.new-project-portfolio-section .navigation-arrows {
  max-width: 1405px;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* pointer-events: none; */
}

/* Timeline CSS */

.timeline-banner-section {
  position: relative;
  overflow: hidden;
}

.timeline-banner-section .content {
  position: absolute;
  left: 50%;
  top: 107px;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 1;
}

.timeline-banner-section .content h1 {
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

.timeline-banner-section .content p {
  font-size: 21px;
}

.timeline-banner-section .bg-image img {
  height: 205px;
  min-height: unset;
}

.timeline-sticky-head {
  min-height: 62px;
  display: flex;
  align-items: center;
}

.timeline-sticky-head .box {
  width: 100%;
  max-width: 720px;
}

.events-achievement-tabs .nav-tabs {
  display: flex;
  border-top: 1px solid var(--primaryColor);
  border-bottom: 1px solid var(--primaryColor);
}

.events-achievement-tabs .nav-tabs .nav-item {
  flex: 1 1;
}

.events-achievement-tabs .nav-tabs .nav-item:not(:last-child) {
  border-right: 1px solid var(--primaryColor);
}

.events-achievement-tabs .nav-tabs .nav-item .nav-link {
  width: 100%;
  text-align: center;
  border-radius: 0;
  border: 0;
  background-color: transparent;
  color: var(--primaryColor);
  font-weight: 500;
  font-size: 18px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-achievement-tabs .tab-content {
  max-height: unset;
}

.timeline-content-box .timeline-item {
  background: #000 url(../png/line-curve-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  max-width: 1304px;
  margin: 0 auto;
  padding: 280px 15px;
}

.timeline-left-box {
  width: 32%;
  z-index: 2;
  position: relative;
}

.timeline-right-box {
  width: 35%;
}

.timeline-center-box {
  width: 33%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-year-title {
  font-size: 112px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 64px;
}

.timeline-item .list-design li {
  line-height: 1.92;
}

.timeline-item .list-design li:not(:last-child) {
  margin-bottom: 38px;
}

.timeline-item .list-icon-design li .icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primaryColor);
  margin-bottom: 14px;
}

.timeline-item .list-icon-design li h3 {
  font-weight: 400;
  font-size: 19px;
  margin-bottom: 4px;
}

.timeline-item .list-icon-design li p {
  font-weight: 400;
  font-size: 13px;
}

.timeline-item .list-icon-design li:not(:last-child) {
  margin-bottom: 78px;
}

.timeline-item .left-icon-1 {
  position: absolute;
  left: 0;
  top: 6%;
  pointer-events: none;
}

.timeline-item .left-icon-2 {
  position: absolute;
  left: 0;
  bottom: 14%;
  pointer-events: none;
}

.timeline-full-width-box {
  position: relative;
}

.timeline-right-box .list-icon-design li {
  max-width: 436px;
}

.timeline-right-box .list-icon-design {
  margin-left: -28px;
}

.timeline-right-box .list-icon-design li:nth-child(2) {
  margin-left: 58px;
}

.timeline-right-box .list-icon-design li:nth-child(3) {
  margin-left: -58px;
}

.timeline-left-box .list-design {
  position: relative;
}

.timeline-left-box img {
  position: absolute;
  pointer-events: none;
}

.timeline-left-box .icon-1 {
  right: 8%;
  top: 20%;
}

.timeline-left-box .icon-2 {
  right: 3%;
  top: 50%;
}

.timeline-left-box .icon-3 {
  right: 7%;
  bottom: 10%;
}

.timeline-content-box .timeline-item.image-none {
  padding: 0 15px;
  background: none;
}

.background-gre {
  background: linear-gradient(180deg, #000000 30.12%, #121212 100%);
  padding-bottom: 18px;
}

.timeline-2023 .timeline-left-box .icon-1 {
  right: -2%;
  top: 7%;
}

.timeline-2023 .timeline-left-box .icon-2 {
  right: -3%;
  top: 43%;
}

.timeline-2023 .timeline-right-box .list-icon-design {
  margin-left: -130px;
}

.timeline-2023 .timeline-right-box .list-icon-design li:nth-child(2) {
  margin-left: 130px;
}

.timeline-2023 .timeline-right-box .list-icon-design li:nth-child(3) {
  margin-left: 160px;
}

.timeline-2023 .timeline-right-box .list-icon-design li:nth-child(4) {
  margin-left: 30px;
}

.timeline-2023 .timeline-item .left-icon-2 {
  bottom: 0;
}

.timeline-2023 .timeline-item .left-icon-1 {
  top: -6%;
}

.timeline-2023 .outline-font {
  position: absolute;
  left: 15%;
  bottom: -7%;
  font-weight: 500;
  font-size: 275px;
  color: transparent;
  -webkit-text-stroke: 2px #000;
}

.timeline-item .list-icon-design.left-icon-right-content li {
  padding-left: 113px;
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.timeline-item .list-icon-design.left-icon-right-content li .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.timeline-2023 .timeline-year-title {
  margin-top: -130px;
  margin-bottom: 180px;
}

.timeline-2022 .timeline-left-box .icon-1 {
  right: 0%;
  top: 35%;
}

.timeline-2022 .timeline-left-box .icon-2 {
  right: 6%;
  top: 65%;
}

.timeline-2022 .timeline-left-box .icon-3 {
  right: 15%;
  bottom: 0%;
}

.great-place-award {
  display: block;
  margin-top: 77px;
}

.great-place-award img {
  position: initial;
}

.timeline-2022 .timeline-left-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.timeline-2022 .image-box img {
  max-width: 360px;
  margin-left: 60px;
}

.timeline-2021 .timeline-item .list-design li:not(:last-child) {
  margin-bottom: 58px;
}

.timeline-2021 .timeline-left-box .icon-1 {
  right: 8%;
  top: 10%;
}

.timeline-2021 .timeline-left-box .icon-2 {
  right: 20%;
  top: 40%;
}

.timeline-2021 .timeline-left-box .list-design {
  position: relative;
}

.timeline-2021 .timeline-center-box img {
  max-width: 460px;
}

.timeline-2021 .timeline-center-box {
  align-items: flex-start;
}

.timeline-2021 ul.list-icon-design {
  display: flex;
}

.timeline-2021 .timeline-item .left-icon-2 {
  bottom: 0;
}

.timeline-2021 .timeline-left-box {
  margin-top: -10%;
}

.timeline-2021 .timeline-item .list-icon-design.left-icon-right-content li {
  max-width: 370px;
  margin: 0 auto 78px;
}

.timeline-2021 .timeline-item.image-none {
  padding-top: 40px;
}

.timeline-2020 .timeline-right-box .list-icon-design {
  margin-left: 50px;
}

.timeline-2020 .timeline-left-box .icon-1 {
  right: -4%;
  top: 35%;
}

.timeline-2020 .timeline-left-box {
  display: flex;
  align-items: center;
}

.timeline-2020 .timeline-left-box .list-design {
  width: 100%;
}

.timeline-2020 .timeline-item .left-icon-1 {
  top: 0%;
}

.timeline-2019 .timeline-year-title {
  position: absolute;
  top: -250px;
}

.timeline-2019 .timeline-item .left-icon-1 {
  top: -50%;
}

.timeline-2019 .timeline-item .left-icon-1 img {
  height: 50vh;
}

.timeline-2019 .timeline-item .left-icon-2 {
  bottom: 0;
}

.timeline-2019 .timeline-right-box .list-icon-design li:nth-child(3) {
  margin-left: 0;
}

.timeline-2019 .timeline-right-box .list-icon-design {
  margin-left: 40px;
}

.timeline-2019 .timeline-left-box .icon-1 {
  right: 18%;
  top: 40%;
}

.timeline-2019 .timeline-left-box .icon-2 {
  right: 27%;
  top: 65%;
}

.timeline-2018 {
  background: #000 url(../png/line-art-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1117px;
  padding: 500px 0 0;
}

.timeline-2018 .timeline-left-box .icon-1 {
  right: unset;
  top: -80px;
  left: 0;
}

.timeline-2018 .timeline-left-box .icon-2 {
  right: 40%;
  top: unset;
  bottom: 22%;
}

.timeline-2018 .timeline-year-title {
  position: absolute;
  top: -50%;
  right: 0;
}

.timeline-2018 .timeline-right-box {
  position: relative;
}

.timeline-2018 .timeline-right-box .list-icon-design li:nth-child(3) {
  margin-left: 0;
}

.timeline-content-box .timeline-2018 .timeline-item {
  background: transparent url(../png/center-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 660px;
}

.timeline-2018 .timeline-right-box .list-icon-design {
  margin-left: 80px;
}

.timeline-2018 .timeline-item .list-icon-design li:not(:last-child) {
  margin-bottom: 130px;
}

.footer-rocket-image + .margin-top-88 {
  margin-top: 0;
}

.rocket-icon {
  text-align: center;
}

.rocket-icon img {
  margin-left: -4.7%;
  margin-bottom: -10px;
}


.technology-img-sm {border: solid 1px #444444;  border-radius: 4px;  
  min-height: 70px;  text-align: center;  vertical-align: middle;  padding-top: 12px; margin-bottom: 15px;
display: inline-flex; width: 100%; text-align: left; padding-left: 15px;}

  .technology-img-sm img { margin:8px ; height:100% }
  .technology-img-sm p {   }