.overline {
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
}
footer .inners .top h1 {
  font-size: 70px;
}
.tech-stack .content-gr .item.item4 p, .heads {
  font-size: 32px;
  line-height: 40px;
}
.tech-stack .content-gr .item p, .mind-d .board-mem-w .board-mem-el .name, .board-d .board-mem-w .board-mem-el .name {
  font-size: 20px;
  line-height: 28px;
}
.mind-d .board-mem-w .board-mem-el .desg, .board-d .board-mem-w .board-mem-el .desg, header .inner .navbar .nav-link {
  font-size: 16px;
  line-height: 24px;
}
.desg-small {
  font-size: 13px;
  line-height: 20px;
}
header .inner .navbar .nav-link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
header .inner .navbar .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
header .inner .navbar .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
header .inner .navbar .nav-link:after {
  transform: scaleX(0);
  transform-origin: center right;
}
header .inner .navbar .nav-link {
  display: inline-block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html, body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
  scroll-padding: 40px;
}
:root {
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}
main {
  padding: 16px 16px;
}
section {
  margin: 16px 0;
}
/*common css start here*/
body {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Host Grotesk", sans-serif, "sans-serif";
  color: #272726;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-width: 300px;
}
/*css change*/
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
/*Global wrapper classes*/
@media only screen and (max-width: 991px) {
  .heads {
    font-size: 20px;
    line-height: 28px;
  }
}
.cta-w {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  justify-content: center;
}
.cta-w a {
  display: flex;
  padding: 12px 36px;
  border: #B2A89C solid 1px;
  text-decoration: none;
  color: #716B63;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 991px) {
  .cta-w a {
    padding: 4px 12px;
  }
}
.cta-w a:hover {
  border: #000000 solid 1px;
  color: #000;
}
.desktopOnly {
  display: block;
}
@media only screen and (max-width: 991px) {
  .desktopOnly {
    display: none;
  }
}
.mobileOnly {
  display: none;
}
@media only screen and (max-width: 991px) {
  .mobileOnly {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 100%;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
/*reset variables*/
.noDisplay {
  display: none;
}
/* iPad portrait mode */
/* Tablet Portrait size to standard 960 (devices and browsers) */
/* Mobile layout css */
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
[data-animation=opacity-up] {
  transition: all 1.5s var(--ease-out-expo);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10%);
}
[data-animation=opacity-up].in-view {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
}
[data-animation=opacity] {
  transition: opacity 1.5s var(--ease-out-expo);
  opacity: 0;
  visibility: hidden;
}
[data-animation=opacity].in-view {
  opacity: 1;
  visibility: visible;
}
[data-opacity] {
  transition: all 1.5s var(--ease-out-expo);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
[data-opacity].in-view {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
header {
  z-index: 1;
  background-color: #f5f1eb;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 25px 25px;
}
header .inner {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 991px) {
  header .inner {
    flex-direction: column;
  }
}
header .inner .mobilenav {
  display: none;
}
@media only screen and (max-width: 991px) {
  header .inner .mobilenav {
    display: flex;
    justify-content: center;
    position: relative;
  }
}
header .inner .mobilenav .logo img {
  width: 90px;
  display: block;
}
header .inner .mobilenav .hamburger {
  position: absolute;
  right: 0;
  width: 24px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
header .inner .mobilenav .hamburger span {
  width: 24px;
  height: 2px;
  background: #282828;
  display: block;
  transition: all 0.3s ease-in-out;
  position: absolute;
  border-radius: 10px;
  left: 0;
}
header .inner .mobilenav .hamburger span:nth-child(1) {
  top: 0px;
}
header .inner .mobilenav .hamburger span:nth-child(2) {
  top: 8px;
}
header .inner .mobilenav .hamburger span:nth-child(3) {
  top: 16px;
}
header .inner .mobilenav .hamburger.isopen span:nth-child(1) {
  top: calc(50% - 2px);
  transform: rotate(45deg);
}
header .inner .mobilenav .hamburger.isopen span:nth-child(2) {
  opacity: 0;
}
header .inner .mobilenav .hamburger.isopen span:nth-child(3) {
  top: calc(50% - 2px);
  transform: rotate(-45deg);
}
header .inner .navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  header .inner .navbar {
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 0px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
}
header .inner .navbar .nav-left, header .inner .navbar .nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .inner .navbar .nav-left, header .inner .navbar .nav-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }
}
header .inner .navbar .nav-link {
  color: #272726;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  header .inner .navbar .logo {
    display: none;
  }
}
header .inner .navbar .logo img {
  width: 90px;
  display: block;
}
footer {
  width: 100%;
  padding: 32px 100px;
  background-color: #A7ABA2;
}
@media only screen and (max-width: 991px) {
  footer {
    padding: 52px 16px 16px 16px;
  }
}
footer .inners .top {
  text-align: center;
}
footer .inners .top h1 {
  font-weight: 100;
}
@media only screen and (max-width: 991px) {
  footer .inners .top h1 {
    font-size: 56px;
  }
}
footer .inners .top .emails {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 991px) {
  footer .inners .top .emails {
    margin: 24px 0;
    gap: 5px;
  }
}
footer .inners .top .emails .ems a {
  font-weight: 100;
  text-decoration: underline;
  font-size: 22px;
  color: #272726;
}
@media only screen and (max-width: 991px) {
  footer .inners .top .emails .ems a {
    font-size: 14px;
  }
}
footer .inners .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 56px;
  border-top: #272726 solid 1px;
}
footer .inners .bottom .lf img {
  width: 65px;
}
footer .inners .bottom .cn {
  font-size: 14px;
}
@media only screen and (max-width: 991px) {
  footer .inners .bottom .cn {
    display: none;
  }
}
footer .inners .bottom .rg .soc {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  footer .inners .bottom .rg .soc {
    gap: 16px;
  }
}
footer .inners .bottom .rg .soc .sc a img {
  width: 24px;
}
.prop-w {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
@media only screen and (max-width: 991px) {
  .prop-w {
    padding: 32px 16px;
  }
}
.prop-w .heads {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .prop-w .heads {
    font-size: 25px;
    line-height: 30px;
  }
}
.prop-w .subs {
  font-size: 16px;
  line-height: 24px;
  color: #6D6C69;
}
.about-w {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 24px;
  text-align: center;
  padding: 80px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .about-w {
    padding: 32px 16px;
    gap: 16px;
  }
}
.vid-cta {
  margin-top: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.vid-cta:hover {
  transform: scale(1.02);
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  display: block;
  opacity: 1;
}
.video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background-color: #000;
  padding: 20px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.video-modal.active .video-modal-content {
  transform: translate(-50%, -50%) scale(1);
}
.video-close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.video-close:hover, .video-close:focus {
  color: #ccc;
  text-decoration: none;
}
#videoPlayer {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .video-modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 15px;
  }
  .video-close {
    font-size: 24px;
  }
}
.leading-agency {
  background-color: #f5f1eb;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
.BACKED {
  background-color: #f5f1eb;
  padding: 0px 0px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .leading-agency {
    padding: 32px 16px;
  }
}
.leading-agency .heads {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .leading-agency .heads {
    font-size: 25px;
    line-height: 30px;
  }
}
.leading-agency .subs {
  font-size: 16px;
  line-height: 24px;
  color: #6D6C69;
}
.leading-agency .ag-w {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}
.leading-agency .ag-w .ag-e {
  display: flex;
  justify-content: center;
  align-items: center;
}
.leading-agency .ag-w .ag-e.one {
  width: 116px;
}
.leading-agency .ag-w .ag-e.two {
  width: 154px;
}
.leading-agency .ag-w .ag-e.three {
  width: 73px;
}
.leading-agency .ag-w .ag-e img {
  width: 100%;
}
.awards-w {
  background-color: #fff;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .awards-w {
    padding: 32px 16px;
  }
}
.awards-w .heads {
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .awards-w .heads {
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 30px;
  }
}
.awards-w .awd-w {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 991px) {
  .awards-w .awd-w {
    justify-content: flex-start;
    overflow-x: scroll;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .awards-w .awd-w::-webkit-scrollbar {
    display: none;
  }
}
.awards-w .awd-w .awd {
  display: flex;
  min-width: 115px;
  width: 115px;
}
@media only screen and (max-width: 991px) {
  .awards-w .awd-w .awd {
    min-width: 120px;
    width: 120px;
  }
}
.awards-w .awd-w .awd img {
  display: flex;
  width: 100%;
  filter: grayscale(1);
}
.board-d {
  background-color: #f5f1eb;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .board-d {
    padding: 32px 16px;
  }
}
.board-d .heads {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .board-d .heads {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 30px;
  }
}
.board-d .board-mem-w {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .board-d .board-mem-w {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.board-d .board-mem-w a {
  text-decoration: none;
}
.board-d .board-mem-w a .name {
  color: #272726;
}
.board-d .board-mem-w .board-mem-el {
  display: flex;
  flex-direction: column;
}
.board-d .board-mem-w .board-mem-el .img {
  display: flex;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .board-d .board-mem-w .board-mem-el .img {
    margin-bottom: 16px;
  }
}
.board-d .board-mem-w .board-mem-el .img img {
  width: 100%;
  display: flex;
}
.board-d .board-mem-w .board-mem-el .name {
  margin-bottom: 4px;
}
.board-d .board-mem-w .board-mem-el .desg {
  color: #6D6C69;
}
.mind-d {
  background-color: #fff;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .mind-d {
    padding: 32px 16px;
  }
}
.mind-d .heads {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .mind-d .heads {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 30px;
  }
}
.mind-d .board-mem-w {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .mind-d .board-mem-w {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.mind-d .board-mem-w .board-mem-el {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .mind-d .board-mem-w .board-mem-el {
    overflow: hidden;
  }
}
.mind-d .board-mem-w .board-mem-el .img {
  display: flex;
  margin-bottom: 24px;
  aspect-ratio: 1;
}
@media only screen and (max-width: 991px) {
  .mind-d .board-mem-w .board-mem-el .img {
    height: auto;
    margin-bottom: 16px;
    aspect-ratio: 1;
  }
}
.mind-d .board-mem-w .board-mem-el .img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: flex;
}
.mind-d .board-mem-w .board-mem-el .name {
  margin-bottom: 4px;
}
.mind-d .board-mem-w .board-mem-el .desg {
  color: #6D6C69;
}
.mind-d .board-mem-w .board-mem-el .email a {
  color: #6D6C69;
  text-decoration: underline;
}
.comm-w {
  width: 100%;
  background-color: #f5f1eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 80px 100px;
}
@media only screen and (max-width: 991px) {
  .comm-w {
    padding: 32px 16px;
  }
}
.comm-w .heads {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .comm-w .heads {
    font-size: 25px;
    line-height: 30px;
  }
}
.comm-w .subs {
  font-size: 16px;
  line-height: 24px;
  color: #6D6C69;
}
.comm-w .tiles-w {
  width: 100%;
  margin: 32px 0 0 0;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .comm-w .tiles-w {
    gap: 16px;
    margin: 24px 0;
  }
}
@media only screen and (max-width: 767px) {
  .comm-w .tiles-w {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .comm-w .tiles-w::-webkit-scrollbar {
    display: none;
  }
}
.comm-w .tiles-w .tile-w {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .comm-w .tiles-w .tile-w {
    min-width: 280px;
  }
}
.comm-w .tiles-w .tile-w .img-w {
  margin-bottom: 24px;
}
.comm-w .tiles-w .tile-w .img-w img {
  width: 100%;
}
.comm-w .tiles-w .tile-w .nam {
  color: #696E64;
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 12px;
}
.comm-w .tiles-w .tile-w .desc {
  color: #696E64;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.card-q {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding: 80px 100px;
}
@media only screen and (max-width: 991px) {
  .card-q {
    padding: 32px 16px;
  }
}
.card-q .heads {
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .card-q .heads {
    font-size: 25px;
    line-height: 30px;
  }
}
.card-q .subs {
  font-size: 16px;
  line-height: 24px;
  color: #6D6C69;
}
.card-q .card-container {
  display: flex;
  gap: 24px;
  margin: 32px 0 16px 0;
}
@media only screen and (max-width: 991px) {
  .card-q .card-container {
    gap: 16px;
    margin: 24px 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-q .card-container {
    flex-wrap: wrap;
  }
}
.card-q .card-container .card-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #272726;
  aspect-ratio: 282/423;
}
@media only screen and (max-width: 767px) {
  .card-q .card-container .card-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
.card-q .card-container .card-item:hover .top {
  padding: 8px;
  padding-bottom: 0;
}
.card-q .card-container .card-item:hover .top .card-image {
  border-radius: 16px;
}
.card-q .card-container .card-item:hover .btm {
  opacity: 1;
}
.card-q .card-container .card-item .top {
  position: absolute;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card-q .card-container .card-item .top .card-image {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.card-q .card-container .card-item .top .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-q .card-container .card-item .top .card-text {
  position: absolute;
  bottom: 34px;
  left: 24px;
  color: #ffffff;
  font-size: 25px;
  line-height: 30px;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .card-q .card-container .card-item .top .card-text {
    font-size: 16px;
    line-height: 24px;
    bottom: 24px;
    left: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .card-q .card-container .card-item .top .card-text {
    width: 60%;
  }
}
.card-q .card-container .card-item .btm {
  position: absolute;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  padding: 16px;
  text-align: left;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.2s ease-in;
}
.prop-w .property-tabs {
  margin: 32px 0 24px 0;
  border-bottom: 1px solid #deddd7;
}
@media only screen and (max-width: 767px) {
  .prop-w .property-tabs {
    margin: 24px 0;
    display: flex;
    overflow-x: scroll;
  }
  .prop-w .property-tabs::-webkit-scrollbar {
    display: none;
  }
}
.prop-w .property-tabs button {
  padding-bottom: 8px;
  margin-right: 24px;
  border: none;
  background: none;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  color: #716B63;
  border-bottom: 2px solid transparent;
}
.prop-w .property-tabs button.active {
  border-bottom: 2px solid #B2A89C;
}
.prop-w .property-tabs button:last-child {
  margin-right: 1rem;
}
@media only screen and (max-width: 767px) {
  .prop-w .property-tabs button {
    margin-right: 24px;
    font-size: 1rem;
    text-wrap: nowrap;
  }
}
.prop-w .property-card {
  display: none;
}
.prop-w .property-card.active {
  display: block;
}
.prop-w .cards-w {
  overflow: scroll;
  display: flex;
}
.prop-w .cards-w::-webkit-scrollbar {
  display: none;
}
.prop-w .cards-w h6 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 300;
  margin-top: 24px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .prop-w .cards-w h6 {
    font-size: 20px;
    line-height: 28px;
  }
}
.prop-w .cards-w .cards-ul {
  display: flex;
}
.prop-w .cards-w .cards-ul .cards {
  width: 300px;
  margin-right: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .prop-w .cards-w .cards-ul .cards {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
.prop-w .cards-w .cards-ul .cards .image {
  aspect-ratio: 1;
  width: 100%;
  display: flex;
}
.prop-w .cards-w .cards-ul .cards .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.prop-w .cards-w .cards-ul .cards .card-body .name-w {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prop-w .cards-w .cards-ul .cards .card-body .desc {
  color: #6D6C69;
  font-size: 16px;
  line-height: 24px;
}
.tech-stack {
  width: 100%;
  padding: 80px 100px;
  background: #F1F1F0;
}
@media only screen and (max-width: 991px) {
  .tech-stack {
    padding: 32px 16px;
  }
}
.tech-stack .overline, .tech-stack .heads {
  text-align: center;
}
.tech-stack .mediabox {
  margin-top: 40px;
}
.tech-stack .mediabox .mediacontainer {
  padding-top: calc(568 / 1200 * 100%);
  position: relative;
  overflow: hidden;
}
.tech-stack .mediabox .mediacontainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.tech-stack .dta {
  position: relative;
}
.tech-stack .dta::before {
  content: "";
  position: absolute;
  top: -155px;
  left: 0;
  width: 100%;
  height: 300px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0));
  z-index: 0;
  transform: rotate(180deg);
}
.tech-stack .content-gr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  margin-top: -96px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    margin-top: -24px;
  }
}
.tech-stack .content-gr .item {
  background: #fff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1350px) {
  .tech-stack .content-gr .item {
    padding: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.tech-stack .content-gr .item.item1 {
  grid-row: span 2/span 2;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item1 {
    grid-row: auto;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
.tech-stack .content-gr .item.item2 {
  grid-row: span 3/span 3;
  grid-column-start: 1;
  grid-row-start: 3;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item2 {
    grid-column-start: 1;
    grid-row-start: 3;
  }
}
.tech-stack .content-gr .item.item3 {
  grid-row: span 5/span 5;
  grid-column-start: 2;
  grid-row-start: 1;
  padding: 0;
  position: relative;
  padding-top: 136.2068965517%;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item3 {
    display: none;
  }
}
.tech-stack .content-gr .item.item3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.tech-stack .content-gr .item.item4 {
  grid-column: span 2/span 2;
  grid-row: span 5/span 5;
  grid-column-start: 3;
  grid-row-start: 1;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item4 p {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item4 {
    align-items: flex-start;
    grid-row: span 2/span 2;
    grid-column: auto;
    grid-column-start: 2;
    grid-row-start: 1;
  }
}
.tech-stack .content-gr .item.item5 {
  grid-row: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 1;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item5 {
    grid-row: auto;
    grid-column-start: 1;
    grid-row-start: 2;
  }
}
.tech-stack .content-gr .item.item6 {
  grid-row: span 3/span 3;
  grid-column-start: 5;
  grid-row-start: 3;
}
@media only screen and (max-width: 991px) {
  .tech-stack .content-gr .item.item6 {
    grid-column-start: 2;
    grid-row-start: 3;
  }
}
.message {
  padding: 80px 100px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .message {
    padding: 32px 16px;
  }
}
.message .cont {
  max-width: 960px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .message .cont {
    gap: 16px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .message .cont .quotes {
    width: 40px;
    flex-shrink: 0;
  }
  .message .cont .quotes svg {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.message .cont .cta {
  margin-top: 24px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 22px;
  color: #716B63;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.message .cont .cta:hover {
  color: #282828;
}
.message .cont .founder {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}
.message .cont .founder .media {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #F5F5F5;
}
@media only screen and (max-width: 991px) {
  .message .cont .founder .media {
    height: 64px;
    width: 64px;
  }
}
.message .cont .founder .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.message .cont .founder .other {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.message .cont .founder .other p {
  font-size: 16px;
  line-height: 24px;
  color: #282828;
}
.message .cont .founder .other p.title {
  font-size: 24px;
  line-height: 24px;
}
@media only screen and (max-width: 991px) {
  .message .cont .founder .other p.title {
    font-size: 20px;
  }
}
.life {
  padding: 80px 100px;
  background: #F1F1F0;
}
@media only screen and (max-width: 991px) {
  .life {
    padding: 32px 16px;
  }
}
.life .cont-w {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .life .cont-w {
    grid-template-columns: repeat(1, 1fr);
  }
}
.life .cont-w .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .life .cont-w .left .top {
    text-align: center;
  }
}
.life .cont-w .left .top .subs {
  margin-top: 8px;
  color: #6D6C69;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 991px) {
  .life .cont-w .left .top .subs {
    display: none;
  }
}
.life .cont-w .left .bottom {
  padding-top: 47.9795918367%;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .life .cont-w .left .bottom {
    display: none;
  }
}
.life .cont-w .left .bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.life .cont-w .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .life .cont-w .right {
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.life .cont-w .right .item {
  padding: 32px 70px 70px 32px;
  background: #fff;
}
@media only screen and (max-width: 1350px) {
  .life .cont-w .right .item {
    padding: 32px 40px 40px 32px;
  }
}
@media only screen and (max-width: 991px) {
  .life .cont-w .right .item {
    min-width: 234px;
    padding: 24px;
  }
}
.life .cont-w .right .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.life .cont-w .right .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.life .cont-w .right .item .cont p {
  font-size: 14px;
  line-height: 22px;
  color: #696E64;
}
.life .cont-w .right .item .cont p.title {
  font-size: 20px;
  line-height: 28px;
}
.future {
  padding: 80px 100px;
}
@media only screen and (max-width: 991px) {
  .future {
    padding: 32px 16px;
  }
}
.future .media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media only screen and (max-width: 1350px) {
  .future .media-grid {
    gap: 16px;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .future .media-grid {
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.future .media-grid .card {
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card {
    min-width: 200px;
  }
}
.future .media-grid .card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.future .media-grid .card:nth-child(1) .mediabx {
  padding-top: 85.3741496599%;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card:nth-child(1) .mediabx {
    padding-top: 82%;
  }
}
.future .media-grid .card:nth-child(1) .cont {
  margin-top: 24px;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card:nth-child(1) .cont {
    margin-top: 12px;
  }
}
.future .media-grid .card:nth-child(1) .cont p.title {
  font-size: 32px;
  line-height: 40px;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card:nth-child(1) .cont p.title {
    font-size: 16px;
    line-height: 24px;
  }
}
.future .media-grid .card .mediabx {
  padding-top: 75.8865248227%;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card .mediabx {
    padding-top: 82%;
  }
}
.future .media-grid .card .mediabx img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease-out;
}
.future .media-grid .card .cont {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.future .media-grid .card .cont p {
  font-size: 14px;
  color: #6D6C69;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card .cont p {
    font-size: 12px;
    line-height: 16px;
  }
}
.future .media-grid .card .cont p.title {
  font-size: 20px;
  line-height: 28px;
  color: #272726;
}
@media only screen and (max-width: 991px) {
  .future .media-grid .card .cont p.title {
    font-size: 16px;
    line-height: 24px;
  }
}
.future .media-grid .card:hover .mediabx img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.investors {
  padding: 20px 100px;
  background: #F3F1EB;
}
@media only screen and (max-width: 991px) {
  .investors {
    padding: 32px 16px;
  }
}
.investors .cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .investors .cont {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 16px;
  }
}
.investors .cont .item.bx {
  background: #fff;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1350px) {
  .investors .cont .item.bx {
    padding: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.bx {
    padding: 16px;
  }
}
.investors .cont .item.bx p {
  font-size: 14px;
  line-height: 22px;
  color: #696E64;
}
.investors .cont .item.bx p.title {
  font-size: 20px;
  line-height: 28px;
  color: #272726;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.bx p.title {
    font-size: 16px;
    line-height: 24px;
  }
}
.investors .cont .item.bx p.title.num {
  font-size: 18px;
}
.investors .cont .item.bx .btm {
  min-height: 92px;
  padding-top: 20px;
  border-top: 1px dotted #DEDDD7;
}
.investors .cont .item.item1 {
  grid-column: span 2/span 2;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item1 {
    grid-column: span 2/span 2;
  }
}
.investors .cont .item.item1 .imagelayer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.investors .cont .item.item1 .imagelayer img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.investors .cont .item.item1 .textlayer {
  position: absolute;
  top: 40px;
  left: 24px;
  max-width: 328px;
}
.investors .cont .item.item1 .textlayer .subtitle {
  font-size: 12px;
  color: #fff;
  line-height: 16px;
  text-transform: uppercase;
}
.investors .cont .item.item1 .textlayer .content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.investors .cont .item.item1 .textlayer .content p.title {
  font-size: 32px;
  line-height: 40px;
  margin-top: 4px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item1 .textlayer .content p.title {
    font-size: 24px;
    line-height: 30px;
  }
}
.investors .cont .item.item2 {
  grid-column-start: 3;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item2 {
    grid-column-start: auto;
    grid-row-start: 2;
  }
}
.investors .cont .item.item3 {
  grid-column-start: 4;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item3 {
    grid-column-start: auto;
    grid-row-start: 2;
  }
}
.investors .cont .item.item4 {
  grid-column-start: 3;
  grid-row-start: 2;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item4 {
    grid-column-start: auto;
    grid-row-start: 3;
  }
}
.investors .cont .item.item5 {
  grid-column-start: 4;
  grid-row-start: 2;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item5 {
    grid-column-start: auto;
    grid-row-start: 3;
  }
}
.investors .cont .item.item6 {
  grid-column: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 2;
  display: flex;
  background: #fff;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item6 {
    grid-column-start: auto;
    grid-row-start: auto;
    flex-direction: column;
  }
}
.investors .cont .item.item6 .left {
  width: 50%;
  aspect-ratio: 277/286;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item6 .left {
    width: 100%;
    aspect-ratio: 295/110;
  }
}
.investors .cont .item.item6 .left img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.investors .cont .item.item6 .right {
  width: 50%;
  padding: 32px 24px;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item6 .right {
    width: 100%;
  }
}
.investors .cont .item.item6 .right a {
  text-decoration: none;
  color: #272726;
}
.investors .cont .item.item6 .right .subtitle {
  font-size: 12px;
  color: #6D6C69;
  line-height: 16px;
  text-transform: uppercase;
}
.investors .cont .item.item6 .right .content p {
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item6 .right .content p {
    font-size: 16px;
    line-height: 24px;
    color: #6D6C69;
  }
}
.investors .cont .item.item6 .right .content p.title {
  font-size: 24px;
  line-height: 30px;
  margin-top: 4px;
  margin-bottom: 16px;
  color: #272726;
}
@media only screen and (max-width: 991px) {
  .investors .cont .item.item6 .right .content p.title {
    font-size: 20px;
    line-height: 28px;
  }
}
.journey {
  position: relative;
}
.journey .toplayer {
  background: radial-gradient(61.14% 332.06% at 38.86% 50.06%, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 80px 100px;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .journey .toplayer {
    padding: 32px 16px;
    background: radial-gradient(61.14% 332.06% at 38.86% 50.06%, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
  }
}
.journey .toplayer .overline {
  color: #ABAAA6;
}
.journey .toplayer .heads {
  color: #F3F1EB;
}
.journey .toplayer ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  width: -moz-max-content;
  width: max-content;
  float: right;
  align-items: flex-end;
}
.journey .toplayer ul li {
  width: -moz-max-content;
  width: max-content;
  color: #F3F1EB;
  font-size: 24px;
  line-height: 30px;
  opacity: 0.5;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .journey .toplayer ul li {
    font-size: 18px;
    line-height: 20px;
  }
}
.journey .toplayer ul li.act {
  opacity: 1;
  padding: 0 16px;
  border-left: 2px solid #696E64;
}
.journey .mainlayer {
  padding-top: 50.7509386733%;
  position: relative;
  background: #1D1D1D;
}
@media only screen and (max-width: 991px) {
  .journey .mainlayer {
    padding-top: 161.2804878049%;
  }
}
.journey .mainlayer .y-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.journey .mainlayer .y-cont.act {
  opacity: 1;
}
.journey .mainlayer .y-cont .image {
  width: 100%;
  height: 100%;
}
.journey .mainlayer .y-cont .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.journey .mainlayer .y-cont .text {
  position: absolute;
  z-index: 2;
  bottom: 80px;
  left: 100px;
  max-width: 900px;
  color: #F3F1EB;
  font-size: 50px;
  line-height: 60px;
}
@media only screen and (max-width: 991px) {
  .journey .mainlayer .y-cont .text {
    max-width: 182px;
    font-size: 20px;
    line-height: 28px;
    left: 16px;
    bottom: 32px;
  }
}
.hero .bl {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #F1F1F0;
}
@media only screen and (max-width: 991px) {
  .hero .bl {
    height: 80vh;
  }
}
.hero .bl #globeWrapper {
  position: absolute;
  bottom: -75%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translateX(-50%);
  overflow: hidden;
}
.hero .bl #globeContainer {
  width: 100%;
  height: 100%;
}
.hero .bl #fadeBottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35vh;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, #fff 90%);
}
.hero .fl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .hero .fl {
    pointer-events: inherit;
  }
}
.hero .fl .content {
  max-width: 600px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .hero .fl .content {
    padding: 0 24px;
  }
}
.hero .fl .content h1 {
  font-size: 50px;
  line-height: 60px;
  color: #272726;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .hero .fl .content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero .fl .content p {
  font-size: 16px;
  line-height: 24px;
  color: #272726;
  margin-top: 12px;
}
@media only screen and (max-width: 991px) {
  .hero .fl .content p {
    font-size: 10px;
    line-height: 16px;
  }
  @media only screen and (max-width:767px) {
    .hero .fl .content h1 {
      font-size: 28px;
      line-height: 27px;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      pointer-events: none;
      padding-top: 100px;
    }
  }
} /*# sourceMappingURL=main.css.map */
.partnerreviewsSection {
  margin: 0;
}
.testimonialWidget {
  background-color: #F8F6F0;
  border-radius: 6px;
  padding: 24px 48px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
  display: flex;
}
.testimonialWidget__quoteIcon {
  fill: #A7ABA2;
  margin-right: 24px;
}
.testimonialWidget__quoteText {
  font-size: 18px;
  color: #272726;
  line-height: 26px;
}
.testimonialWidget__author {
  margin-top: 4px;
  font-size: 12px;
  color: #6D6C69;
  font-weight: 400;
}
.employeeWidgetSlider {
  max-width: 600px;
}
.employeeWidget {
  padding: 0;
  background: none;
  display: flex;
  gap: 28px;
  margin-top: 24px;
  text-align: left;
}
.employeeWidget__quoteIcon {
  fill: #A7ABA2;
  margin-right: 24px;
}
.employeeWidget__quoteText {
  font-size: 14px;
  line-height: 22px;
  color: #6D6C69;
}
.employeeWidget__author {
  margin-top: 4px;
  font-size: 12px;
  color: #6D6C69;
  font-weight: 400;
}
.email_button {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #6f6761;
  text-decoration: none;
  padding: 12px 32px;
  border: 1px solid #a99d93;
  border-radius: 4px;
}
.email_button_2 {
  text-align: center;
  margin: 20px 0;
}
.slider_image .media {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #F5F5F5;
  display: flex;
}
.slider_image .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main_image {
  display: flex;
  column-gap: 20px;
}
.crores {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media all and (max-width: 800px) {
  .slick-list {
    max-width: 85vw;
    padding: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .testimonialWidget {
    padding: 16px 8px;
  }
  .testimonialWidget__quoteText {
    font-size: 14px;
    line-height: 18px;
  }
}