html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

* {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 1430px) {
  .container {
    max-width: 1400px;
  }
}
.container-fluid {
  max-width: 1440px;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .header {
    padding: 0.5rem 0;
  }
}
.header.sticky,
.header.inner {
  background-color: #fff;
}
.header.shadow {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header .navbar-brand {
  position: relative;
  z-index: 9999;
}
.header .navbar-brand .logo {
  width: 178px;
  height: 57px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .header .navbar-brand .logo {
    width: 140px;
    height: 45px;
  }
}
.header .navbar-brand .logo.white {
  display: none;
}
.header .navbar-brand.swap .logo.white {
  display: block;
}
.header .navbar-brand.swap .logo.dark {
  display: none;
}
.header .navbar-collapse span {
  display: block;
  text-align: center;
}
.header .navbar-collapse span a img {
  width: 170px;
  height: 50px;
  margin: 2px 0;
}
@media (min-width: 1199px) {
  .header .navbar-collapse span a img {
    width: 80px;
    height: 25px;
    margin: 0px 2px;
  }
}
@media (min-width: 1360px) {
  .header .navbar-collapse span a img {
    width: 120px;
    height: 35px;
    margin: 0px 3px;
  }
}
@media (max-width: 1199px) {
  .header .navbar {
    padding: 0;
  }
  .header .navbar .navbar-toggler {
    border: none;
    outline: none;
    background: transparent !important;
    padding: 0;
    position: relative;
    z-index: 9999;
  }
  .header .navbar .navbar-toggler .icon-bar {
    width: 36px;
    height: 4px;
    background-color: #fff;
    display: block;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 7px 0;
  }
  .header .navbar .navbar-toggler .top-bar {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 0%;
    transform-origin: 10% 0%;
  }
  .header .navbar .navbar-toggler .middle-bar {
    opacity: 0;
  }
  .header .navbar .navbar-toggler .bottom-bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0% 90%;
    transform-origin: 0% 90%;
  }
  .header .navbar .navbar-toggler.collapsed .icon-bar {
    background-color: #0c3d23;
  }
  .header .navbar .navbar-toggler.collapsed .top-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .header .navbar .navbar-toggler.collapsed .middle-bar {
    opacity: 1;
  }
  .header .navbar .navbar-toggler.collapsed .bottom-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .header .navbar-collapse {
    background-color: #32ad79;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 800;
    padding-top: 70px;
  }
  .header .collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
  }
}
.header .navbar-nav .nav-item {
  text-transform: uppercase;
  padding: 0 0.6rem;
  position: relative;
}
@media (max-width: 1199px) {
  .header .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}
@media (max-width: 1275px) {
  .header .navbar-nav .nav-item {
    padding: 0 0.3rem;
  }
}
@media (min-width: 1200px) {
  .header .navbar-nav .nav-item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 2px;
    width: 2px;
    border-radius: 50%;
    background: #9c9c9c;
  }
  .header .navbar-nav .nav-item:nth-last-child(-n + 1):after {
    display: none;
  }
}
.header .navbar-nav .nav-item.active .nav-link,
.header .navbar-nav .nav-item:hover .nav-link {
  color: #32ad79;
}
@media (max-width: 1199px) {
  .header .navbar-nav .nav-item.active .nav-link,
  .header .navbar-nav .nav-item:hover .nav-link {
    color: #fff;
  }
}
.header .navbar-nav .nav-item .nav-link {
  color: #848484;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
}
.header .navbar-nav .nav-item .nav-link.download {
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #32ad79;
  color: #fff;
  border: none;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .header .navbar-nav .nav-item .nav-link {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
  }
}

@media (max-width: 568px) {
  .header .navbar-nav .nav-item .nav-link {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
  }
}

.hero-banner.home {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#ffffff),
    to(#dff2f7)
  );
  background-image: linear-gradient(to top, #ffffff, #dff2f7);
  position: relative;
  height: 600px;
}
@media (min-width: 360px) {
  .hero-banner.home {
    height: 870px;
  }
}
@media (min-width: 425px) {
  .hero-banner.home {
    height: 910px;
  }
}
@media (min-width: 500px) {
  .hero-banner.home {
    height: 950px;
  }
}
@media (min-width: 650px) {
  .hero-banner.home {
    height: 1070px;
  }
}
@media (min-width: 768px) and (max-width: 799px) {
  .hero-banner.home {
    min-height: 1115px;
  }
}
@media (min-width: 800px) {
  .hero-banner.home {
    height: 660px;
  }
}
@media screen and (min-width: 1199px) {
  .hero-banner.home {
    height: 800px;
  }
}
@media screen and (min-width: 1281px) {
  .hero-banner.home {
    height: 860px;
  }
}
.hero-banner.home::before {
  z-index: 0;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../newimg/hero-banner/home/farm.svg) no-repeat;
  background-size: auto 15%;
  background-position: bottom center;
}
@media (min-width: 768px) {
  .hero-banner.home::before {
    background: url(../newimg/hero-banner/home/farm.svg) no-repeat;
    background-size: auto 40%;
    background-position: bottom center;
  }
}
.hero-banner.home::after {
  z-index: 1;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../newimg/hero-banner/home/bijak-app-mob.svg) no-repeat;
  background-size: 90%;
  background-position: 25% 115%;
}
@media (min-width: 576px) {
  .hero-banner.home::after {
    background-size: 85%;
    background-position: 40% 130%;
  }
}
@media (min-width: 800px) {
  .hero-banner.home::after {
    background: url(../newimg/hero-banner/home/bijak-app.svg) no-repeat;
    background-size: 60%;
    background-position: 90% 80%;
  }
}
@media (min-width: 1199px) {
  .hero-banner.home::after {
    background-size: 55%;
    background-position: 75% 80%;
  }
}
@media (min-width: 1281px) {
  .hero-banner.home::after {
    background-size: auto;
    background-position: 75% 80%;
  }
}
.hero-banner .hero-text {
  margin-top: 4rem;
  padding-left: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 576px) and (max-width: 768px) {
  .hero-banner .hero-text {
    margin-top: 2rem;
  }
}
@media (min-width: 800px) {
  .hero-banner .hero-text {
    margin-top: 7rem;
    text-align: left;
    width: 500px;
  }
  .hero-banner .hero-text h1 {
    font-size: 36px;
  }
}
@media (min-width: 1280px) {
  .hero-banner .hero-text {
    margin-top: 10rem;
    text-align: left;
  }
  .hero-banner .hero-text h1 {
    font-size: 52px;
  }
}
.hero-banner .hero-text h1 {
  line-height: 1.2;
}

.play-app-store img {
  width: 170px;
  height: 50px;
  margin-right: 7px;
  margin-top: 7px;
}
@media (max-width: 576px) {
  .play-app-store img {
    width: 150px;
    height: 45px;
  }
}

@media (max-width: 568px) {
  .play-app-store img {
    width: 120px;
    height: 35px;
  }
}

section {
  padding-bottom: 5rem;
}
section.bg-green {
  background-color: #32ad79;
}
section.bg-grey {
  background-color: #f5f5f5;
}
section .section-heading {
  font-family: Roboto;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.8px;
  padding: 5rem 0 2rem 0;
}

.heading-wrapper {
  font-size: 1.75em;
  padding-top: 20px;
  padding-bottom: 0px;
}

.career-heading-subtitle {
  padding: 5rem 0 0rem 0
}

.career-heading-content {
  margin: 0px auto 10px;
}

.li-padding {
  padding-left:1% !important;
}

@media (max-width: 768px) {
  section .section-heading {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  section .section-heading {
    padding: 3rem 0 2rem 0;
  }
}
section .section-heading.white {
  color: #fff;
}
section .section-heading.dark {
  color: #292929;
}
section .section-heading.green {
  color: #32ad79;
}
section .section-sub-heading {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  margin: -30px auto 60px;
  padding: 0 1rem;
  max-width: 640px;
}
section .section-sub-heading.white {
  color: #e8fff5;
}
section .section-sub-heading.grey {
  color: #7a7a7a;
}

.features {
  position: relative;
  z-index: 1;
}
.features .app-screen {
  text-align: center;
}
.features .app-screen img {
  width: 100%;
}

@media (max-width: 991px) {
  .feature-order-mobile .col-lg-4:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .feature-order-mobile .col-lg-4:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .feature-order-mobile .col-lg-4:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .feature-order-mobile .col-6 {
    margin-top: -50px;
    z-index: 9999;
  }
}
.feature {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.32px;
  margin: 0 0 4rem 0;
}
@media (min-width: 1200px) {
  .feature {
    margin: 6rem 0;
  }
}
@media (max-width: 576px) {
  .feature {
    display: block;
    margin: 0;
  }
}
.feature h3 {
  font-family: Roboto;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: -0.48px;
}
@media (max-width: 576px) {
  .feature h3 {
    font-size: 20px;
  }
}
.feature .media-body {
  min-height: 100px;
}
@media (max-width: 576px) {
  .feature .media-body {
    min-height: 220px;
  }
}
.feature .icon {
  width: 72px;
  height: 72px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .feature .icon.mr-5 {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 576px) {
  .feature .icon {
    margin: 0 0 1rem !important;
  }
}

@media (min-width: 1024px) {
  .reverse-on-desktop .feature {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .reverse-on-desktop .feature .mr-5 {
    margin-right: 0 !important;
    margin-left: 3rem !important;
  }
}
@media (max-width: 1199px) {
  .reverse-on-desktop .feature .mr-5 {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 576px) {
  .reverse-on-desktop .feature .mr-5 {
    margin: 0 0 1rem !important;
  }
}

@media (max-width: 991px) {
  .app-screen {
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .app-screen img {
    margin-bottom: -60px;
  }
  .app-screen:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 100px;
    width: 100%;
    background: #32ad79;
  }
  .app-screen::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 20%;
    height: 100px;
    width: 80%;
    margin-left: -10%;
    background: #32ad79;
    -webkit-box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.05);
  }
}
.testimonial-bg {
  background-image: url(../newimg/testimonials/bg-img-desktop.svg);
  background-repeat: no-repeat;
  background-position: 100% -15%;
  background-size: cover;
}

.testimonials .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.testimonials .testimonial {
  background: #e2fff2 url(../newimg/testimonials/comma.svg) no-repeat 28px 28px;
  border-radius: 24px;
  width: 100%;
}
.testimonials .testimonial.slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  float: none;
}
@media (max-width: 1199px) {
  .testimonials .testimonial {
    margin-bottom: 2rem;
  }
}
.testimonials .testimonial .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 70px 28px 28px 28px;
  width: 100%;
}
.testimonials .testimonial .content p {
  color: #474747;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.testimonials .testimonial .content .date {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 5.33;
  letter-spacing: -0.24px;
  color: #9c9c9c;
  border-bottom: solid 2px #d1ebdf;
}
.testimonials .testimonial .content .media {
  margin-top: 22px;
}
.testimonials .testimonial .content .media img {
  border-radius: 50%;
}
.testimonials .testimonial .content .media h5 {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  color: #474747;
}
.testimonials .testimonial .content .media .buyer {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  color: #292929;
}
.testimonials .testimonial .content .media .location {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  color: #9c9c9c;
}
#ratings{
  border-radius: 0%;
  margin-bottom: 1vh;
}

.view-all {
  text-align: center;
}
.view-all a {
  height: 40px;
  padding: 0 3rem;
  border-radius: 20px;
  border: solid 2px #ffffff;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 40px;
  color: #fff;
  margin-top: 3rem;
}
.view-all a:hover {
  background-color: #fff;
  border: solid 2px #ffffff;
  color: #32ad79;
}

.statistics {
  text-align: center;
}
.statistics figure {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .statistics figure img {
    width: 4rem;
  }
}
.statistics h3 {
  font-size: 30px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  color: #32ad79;
}
@media (max-width: 768px) {
  .statistics h3 {
    font-size: 24px;
  }
}
.statistics h3 span {
  font-weight: bold;
}
.statistics div {
  margin-bottom: 3rem;
}
.statistics div:last-child {
  margin-bottom: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before {
  display: table;
  content: '';
}
.slick-track:after {
  display: table;
  content: '';
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  margin: 0 1rem;
}
.slick-slide img {
  display: block;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  list-style-type: none;
  text-align: center;
  padding: 0;
  margin: 1rem 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  line-height: 16px;
  width: 16px;
  height: 16px;
}
.slick-dots li button {
  padding: 0;
  -webkit-appearance: none;
  margin: 0;
  float: left;
  width: 12px !important;
  height: 12px !important;
  opacity: 0.32;
  background-color: #ffffff;
  border: none !important;
  border-radius: 50%;
  outline: none !important;
  margin-top: 2px;
}
.slick-dots li.slick-active button {
  width: 16px !important;
  height: 16px !important;
  opacity: 1;
  margin-top: 0;
}

.coverage {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .media-coverage-carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 2rem;
  }
}
@media (max-width: 1023px) {
  .media-coverage-carousel {
    margin: 0 -2rem;
  }
}
.media-coverage-carousel .slick-track {
  display: flex;
  padding-left: 2rem;
}
.media-coverage-carousel .slick-list {
  padding: 15px 0 15px 32px;
}
.media-coverage-carousel .slick-dots {
  margin-top: 50px;
}
.media-coverage-carousel .slick-dots li button {
  background-color: #9c9c9c;
}
.media-coverage-carousel .slick-dots li.slick-active button {
  background-color: #32ad79;
}

.media-coverage {
  padding: 38px 20px;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  width: 75vw;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media-coverage.slick-slide {
  margin: 0 10px;
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (min-width: 575px) {
  .media-coverage {
    width: 55vw;
  }
}
@media (min-width: 768px) {
  .media-coverage {
    width: 40vw;
  }
}
@media (min-width: 1024px) {
  .media-coverage {
    display: flex;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 33%;
    text-align: center;
    padding: 38px 50px;
  }
}
@media (min-width: 1280px) {
  .media-coverage {
    width: 25%;
  }
}
.media-coverage .content {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.media-coverage .content figure {
  height: 72px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .media-coverage .content figure {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.media-coverage .content .media-name {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  color: #9c9c9c;
  margin-bottom: 1rem;
}
.media-coverage .content .story {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: 1.5;
  color: #292929;
  margin-bottom: 3rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.media-coverage .content .read-more a {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  color: #32ad79;
}

@media screen and (min-width: 768px) {
  .investors-partners {
    padding: 0 2rem;
  }
}
.investors-partners .icon:first-child {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .investors-partners .icon:first-child {
    padding-right: 2rem;
    margin: 0;
  }
  .investors-partners .icon:last-child {
    padding-left: 2rem;
  }
}
@media (min-width: 1199px) {
  .investors-partners .icon:first-child {
    padding-right: 3rem;
  }
  .investors-partners .icon:last-child {
    padding-left: 3rem;
  }
}
.investors-partners .icon h4 {
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}
.investors-partners .icon figure {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
}
.investors-partners .icon figure img {
  max-width: 100%;
}

.learn-more a {
  display: inline-block;
  height: 40px;
  border-radius: 20px;
  border: solid 2px #32ad79;
  padding: 0 3rem;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 40px;
  color: #32ad79;
  transition: all 0.2s 0.3s ease-in;
}
.learn-more a:hover {
  background-color: #32ad79;
  border: solid 2px #32ad79;
  color: #fff;
}

.join-the-team {
  padding: 5rem 2rem 1rem 2rem;
}
@media (min-width: 768px) {
  .join-the-team .section-heading {
    padding: 3rem 0 2rem 0;
  }
}
@media (min-width: 1199px) {
  .join-the-team .section-heading {
    margin-top: 3rem;
    padding: 5rem 0 2rem 0;
  }
}
.join-the-team .section-sub-heading {
  padding: 0;
  margin: -20px 0 90px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .join-the-team {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .join-the-team .section-sub-heading {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .join-the-team figure {
    margin-bottom: 3rem;
  }
}

.footer {
  background-image: url(../newimg/footer/bg-img-desktop.svg);
  background-repeat: no-repeat;
  background-position: -15% 100%;
  background-size: cover;
}
@media (min-width: 768px) {
  .footer .container-fluid {
    padding: 0 2rem;
  }
}
.footer .section-sub-heading {
  max-width: 768px;
}
@media (min-width: 768px) {
  .footer .footer-col-links > div:first-child {
    padding-right: 3rem;
  }
}
@media (min-width: 1199px) {
  .footer .footer-col-links > div:first-child {
    padding-right: 6rem;
  }
}
@media (min-width: 768px) {
  .footer .footer-col-links > div:nth-child(2) {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1199px) {
  .footer .footer-col-links > div:nth-child(2) {
    padding: 0 3rem;
  }
}
@media (max-width: 767px) {
  .footer .footer-col-links > div:nth-child(2) h4 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .footer .footer-col-links > div:nth-child(2) .links li {
    display: inline-block;
  }
  .footer .footer-col-links > div:nth-child(2) .links li:last-child {
    margin-left: 2rem;
  }
}
@media (max-width: 568px) {
  .footer .footer-col-links > div:nth-child(2) .links li {
    display: flex;
  }
  .footer .footer-col-links > div:nth-child(2) .links li:last-child {
    display: flex;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .footer .footer-col-links > div:last-child {
    padding-left: 3rem;
  }
}
@media (min-width: 1199px) {
  .footer .footer-col-links > div:last-child {
    padding-left: 6rem;
  }
}
.footer .footer-extra-info {
  margin-top: 2rem;
  color: #fff;
}
.footer .footer-extra-info > div:last-child {
  padding-left: 6rem;
}
.footer h4 {
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  text-align: left;
  color: #ffffff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.footer .links li {
  padding: 22px 0;
}
.footer .links li a {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .links li a i {
  display: inline-block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: #ffffff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 20px;
}
.footer .links li a span {
  margin-top: 11px;
}
.footer .links li.location span {
  margin: 0;
}
.footer .links.quick-links {
  padding-top: 24px;
}
.footer .links.quick-links li {
  padding: 8px 0;
}

.intuitive-app {
  padding: 5rem 5rem;
}
@media (max-width: 991px) {
  .intuitive-app {
    text-align: center;
    padding: 5rem 5rem;
  }
  .intuitive-app .play-icon {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1199px) {
  .intuitive-app {
    padding: 5rem 5rem;
  }
}
.intuitive-app .learn-more {
  margin-top: 2rem;
}

#intuitiveApp {
  margin: 0 -2rem;
}
#intuitiveApp .slick-list {
  padding-left: 2rem;
}
#intuitiveApp .slick-slide {
  border-radius: 10px;
  max-width: 270px;
  height: auto;
}
@media (max-width: 991px) {
  #intuitiveApp .slick-dots {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }
}
#intuitiveApp .slick-dots li button {
  background-color: #c0c0c0;
}
#intuitiveApp .slick-dots li.slick-active button {
  background-color: #32ad79;
}

@media (min-width: 991px) {
  #intuitiveApp {
    margin: 0 -150px 0 -50px;
  }
  #intuitiveApp:before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    z-index: 1;
    width: 15%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,ffffff+100&1+0,0+100 */
    background: -moz-linear-gradient(
      left,
      whitesmoke 0%,
      rgba(255, 255, 255, 0) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      whitesmoke 0%,
      rgba(255, 255, 255, 0) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to right,
      whitesmoke 0%,
      rgba(255, 255, 255, 0) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5f5f5", endColorstr="#00ffffff", GradientType=1);
    /* IE6-9 */
  }
  #intuitiveApp::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f5f5f5+100&0+0,1+100 */
    background: -moz-linear-gradient(
      left,
      rgba(255, 255, 255, 0) 0%,
      whitesmoke 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(255, 255, 255, 0) 0%,
      whitesmoke 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      whitesmoke 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#f5f5f5", GradientType=1);
    /* IE6-9 */
  }
  #intuitiveApp .slick-slide {
    margin: 0 12px;
  }
  #intuitiveApp .slick-slide img {
    width: 100%;
  }
  #intuitiveApp .slick-slide:not(.slick-current) {
    opacity: 0.2;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #intuitiveApp .slick-slide.slick-active {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #intuitiveApp .slick-slide.slick-center.slick-active {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 1;
  }
  #intuitiveApp .slick-list {
    padding: 45px 0 45px 0 !important;
  }
}
.career {
  margin-top: 82px;
  background: url(../newimg/hero-banner/careers/careers-mobile.webp) no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding-top: 1rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .career {
    background: url(../newimg/hero-banner/careers/careers.webp) no-repeat;
    background-size: cover;
    background-position: center left;
    background-attachment: fixed;
  }
}
@media (min-width: 1199px) {
  .career {
    background-size: 100% auto;
  }
}
.career .career-banner {
  padding: 0 2rem;
}
.career .career-banner .career-text {
  text-align: center;
}
@media (min-width: 768px) {
  .career .career-banner .career-text {
    text-align: left;
  }
}
.career .career-banner .career-text > h2 {
  line-height: 1.2;
}
.career .career-banner .career-text > p {
  margin: 0;
  padding: 0;
  opacity: 0.88;
}
.career .career-banner .career-text .stats {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .career .career-banner .career-text .stats {
    margin-top: 5rem;
  }
}
.career .career-banner .career-text .stats div {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .career .career-banner .career-text .stats div {
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
.career .career-banner .career-text .stats h2 {
  color: #32ad79;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.46;
}
@media (min-width: 768px) {
  .career .career-banner .career-text .stats h2 {
    font-size: 56px;
    border-bottom: solid 2px #32ad79;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }
}
.career .career-banner .career-text .stats h2 sub {
  bottom: 0;
  padding-left: 5px;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
}
.career .career-banner .career-text .stats p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  padding: 0 20%;
}
@media (min-width: 768px) {
  .career .career-banner .career-text .stats p {
    text-align: left;
    padding: 0;
  }
}

.journey {
  padding-bottom: 0;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .journey {
    padding-top: 6rem;
  }
}
@media (min-width: 1281px) {
  .journey .container-fluid {
    max-width: 1280px;
  }
}
.journey:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background-image: url(../newimg/journey/grass-rpt.webp);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.journey .india-map {
  margin: 1rem 0 2rem;
}
.journey .india-map img {
  width: 100%;
}
@media (min-width: 1024px) {
  .journey .india-map img {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .journey .desktop-text-left {
    text-align: left;
  }
  .journey .desktop-text-left p {
    padding: 0;
    margin-left: 0;
  }
  .journey .hyper-growth {
    padding: 15rem 2rem;
  }
}
.journey h2.hyper-growth {
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1.23;
}
@media (min-width: 1024px) {
  .journey h2.hyper-growth {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.journey .journey-progress {
  padding: 0 2rem;
  margin-top: 3rem;
}
.journey .journey-progress ul {
  border-left: solid 3px #32ad79;
  padding-bottom: 10rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .journey .journey-progress ul {
    margin-top: -10rem;
  }
}
@media (min-width: 1281px) {
  .journey .journey-progress ul {
    margin-top: -15rem;
  }
}
.journey .journey-progress ul li {
  text-align: left;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 70px;
}
.journey .journey-progress ul li:after {
  content: '';
  position: absolute;
  top: 0;
  left: -9px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: solid 3px #32ad79;
  border-radius: 50%;
  background-image: url(../newimg/journey/grass-rpt.webp);
  background-repeat: repeat-x;
  background-position: left bottom;
  z-index: 1;
}
.journey .journey-progress ul li label {
  height: 28px;
  border-radius: 4px;
  background-color: #fad374;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 28px;
  letter-spacing: normal;
  text-align: center;
  color: #616161;
  padding: 0 1rem;
}
.journey .journey-progress ul li p {
  font-family: Roboto;
  font-size: 21px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #32ad79;
}

@media (min-width: 1024px) {
  .reverse-flex-desktop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.ourvalue-bg {
  background-image: url(../newimg/testimonials/bg-img-desktop.svg);
  background-repeat: no-repeat;
  background-position: 100% 0%;
  background-size: cover;
}
.ourvalue-bg h2.max-width {
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.3;
  padding-left: 2rem;
  padding-right: 2rem;
}
.ourvalue-bg .col-md-6 {
  padding: 0 2rem;
  margin-bottom: 3.75rem;
}
.ourvalue-bg .col-md-6:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .ourvalue-bg .col-md-6 {
    margin: 0;
  }
}
.ourvalue-bg h4 {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #e2fff2;
  margin-bottom: 1.6rem;
}
.ourvalue-bg p {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  color: #e2fff2;
}

.culture {
  padding-bottom: 2rem;
}
.culture h2.max-width {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.3;
}
.culture .image-pop {
  text-align: center;
  position: relative;
}
@media (min-width: 1280px) {
  .culture .image-pop {
    margin: auto;
    max-width: 710px;
  }
}
.culture .image-pop img {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .culture .image-pop img {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .culture .image-pop .pop-info-container {
    display: inline-block;
  }
}
@media (min-width: 1280px) {
  .culture .image-pop .pop-info-container {
    padding-bottom: 2rem;
  }
}
.culture .image-pop .pop-info-container .pop-info {
  border-radius: 8px;
  background-color: #ffe6c4;
  padding: 11px 20px 11px 70px;
  height: 70px;
  width: 100%;
  text-align: left;
  background-image: url(../newimg/culture/check.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  color: #525252;
  margin: 10px 0;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .culture .image-pop .pop-info-container .pop-info {
    width: 46%;
    float: left;
    margin: 10px 2%;
  }
}
@media (min-width: 1024px) {
  .culture .image-pop .pop-info-container .pop-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .culture .image-pop .pop-info-container .pop-info {
    position: absolute;
    width: 310px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(1) {
    left: -195px;
    top: 40px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(2) {
    left: -255px;
    top: 160px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(3) {
    left: -195px;
    top: 280px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(4) {
    right: -195px;
    top: 40px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(5) {
    right: -255px;
    top: 160px;
  }
  .culture .image-pop .pop-info-container .pop-info:nth-child(6) {
    right: -195px;
    top: 280px;
  }
}

.transform {
  padding: 3rem 2rem 0;
  text-align: center;
}

.transform-wrapper {
  padding: 1rem 2rem 0;
}

@media (min-width: 1024px) {
  .transform {
    text-align: left;
  }
}
.transform h2 {
  padding-top: 1rem;
}
@media (min-width: 1024px) {
  .transform p {
    padding: 0;
    margin-bottom: 3rem;
  }
  .transform figure {
    text-align: center;
  }
}

#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.4s ease-in;
  transition: opacity 0.2s 0.4s ease-in;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
#backToTop.active {
  opacity: 1;
}
#backToTop svg {
  fill: rgba(0, 0, 0, 0.5);
  transition: fill 0.4s ease-in;
}
#backToTop svg:hover {
  fill: rgba(0, 0, 0, 0.8);
}

#terms {
  margin-top: 100px;
}
@media (min-width: 1024px) {
  #terms {
    margin-top: 150px;
  }
}

.terms {
  word-wrap: break-word;
}
.terms h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 42px;
  color: #292929;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .terms h2 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 3rem;
  }
}
.terms ol {
  counter-reset: item;
  padding: 0;
  margin: 0;
}
.self {
  list-style-type: lower-greek;
}
.terms li {
  padding: 0;
  display: block;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.terms li:before {
  position: absolute;
  left: -4rem;
  content: counters(item, '.') '.';
  counter-increment: item;
}
.terms a {
  color: #32ad79;
}
.terms .terms-ol {
  padding-left: 4rem;
}
.terms .terms-ol > li {
  margin-bottom: 4rem;
}
.blogs {
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.badge-new:after {
  content: 'New';
  position: absolute;
  background: #31ae79;
  top: -12px;
  text-align: center;
  font-size: 12px;
  border-radius: 2px;
  color: #ffff;
  width: max-content;
  padding: 2px;
}
@media (max-width: 1199px) {
  .badge-new:after {
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
    margin-left: 39px;
    color: #31ae79;
    background: rgb(255 255 255);
  }
}

.show {
  display: block;
}

.hide {
  display: none;
}

.position_link {
  margin: 0 auto;
  color: #32ad79;
  text-align: center;
}

.position_link:hover {
  color: #9D9C9C;
}
.mandi-link {
  background: #46A072;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  color: #ffffff;
  font: 500 16px "Roboto";
  text-decoration: none;
  cursor: pointer;
  display: none;
  text-align: center;
  grid-column-start: 1;
  grid-column-end: 3;
}

.mandi-link:hover {
  color: #ffffff;
}

.mandi-link img {
  margin-left: 8px;
}

@media (max-width: 799px) {
  .btn-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 370px;
    margin: 0 auto;
    row-gap: 10px;
  }
  .mandi-link {
    padding: 16px 0;
    display: block;
    margin: 0 12px 0 6px;
  }
}

@media (max-width: 568px) {
  .btn-wrapper{
    max-width: 320px;
  }
  .mandi-link {
    padding: 12px 0;
  }
}

@media (max-width:473px) {
  .btn-wrapper{
    max-width: 270px;
  }
}



