@charset "UTF-8";
/** Colors **/
/** FONTS **/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
h1 {
  font-size: 52px;
  line-height: 65px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 40px;
  }
}

h1 span {
  color: #0C84FF;
}

/** Button & Links **/
.custom-btndark {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  font-weight: bold;
  padding: 14px 38px;
  background: #0C84FF;
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.custom-btndark:hover {
  background: linear-gradient(31.09deg, #0C84FF, #143961);
}

@media (max-width: 1200px) {
  .custom-btndark {
    padding: 8px 14px;
  }
}

.custom-btnlight {
  font-size: 16px;
  line-height: 25px;
  color: #646464;
  font-weight: bold;
  padding: 14px 38px;
  background: #fff;
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #646464;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.custom-btnlight:hover {
  border-color: #000;
  color: #000;
}

@media (max-width: 1200px) {
  .custom-btnlight {
    padding: 8px 14px;
  }
}

.custom-list {
  padding: 0;
  margin-bottom: 40px;
}

.custom-list li {
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  max-width: 540px;
  font-size: 16px;
  line-height: 24px;
  color: #646464;
}

.custom-list li:not(:last-child) {
  margin-bottom: 20px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0;
  height: 18px;
  width: 11px;
  border-bottom: 4px solid #0FD23D;
  border-right: 4px solid #0FD23D;
}

/** Bootstrap Reset **/
body {
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

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

/** Animation **/
@-webkit-keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(10px, 0);
            transform: translate(10px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.sub-contain {
  font-size: 20px;
  line-height: 30px;
  color: #646464;
}

@media (max-width: 1200px) {
  .sub-contain {
    font-size: 17px;
    line-height: 25px;
  }
}

h2 {
  font-size: 32px;
  line-height: 48px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

/**** HEADER ****/
.sticky {
  position: fixed;
  z-index: 9;
  width: 100%;
  top: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 10px #0000001A;
          box-shadow: 0px 3px 10px #0000001A;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .navbar-brand {
  padding: 0;
  margin: 0;
}

header .navbar-brand img {
  max-width: 200px;
  max-height: 52px;
}

@media (max-width: 1200px) {
  header .navbar-brand img {
    max-width: 170px;
  }
}

@media (max-width: 420px) {
  header .navbar-brand img {
    max-width: 105px;
  }
}

header .nav-item .nav-link {
  font-size: 16px;
  line-height: 25px;
  color: #143961;
  font-weight: 500;
  position: relative;
}

@media (min-width: 991px) {
  header .nav-item .nav-link {
    padding: 0 0 8px 0 !important;
  }
}

header .nav-item .nav-link:hover {
  color: #0C84FF;
}

header .nav-item .nav-link:hover::after {
  background: #0C84FF;
}

@media (min-width: 991px) {
  header .nav-item .nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 20px;
    background: transparent;
    bottom: 0;
    left: calc(50% - 13px);
  }
}

header .nav-item.active a {
  color: #0C84FF;
  font-weight: bold;
}

header .nav-item.active a::after {
  background: #0C84FF;
}

@media (min-width: 991px) {
  header .nav-item:not(:first-child) {
    margin-left: 38px;
  }
}

@media (min-width: 992px) {
  header .navbar-expand-lg {
    padding: 0;
    height: 110px;
    width: 100%;
  }
  header .navbar-expand-lg .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-right: 50px;
  }
}

@media (max-width: 1200px) {
  header .navbar-expand-lg {
    height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  header .navbar-expand-lg .navbar-nav {
    padding-top: 20px;
  }
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 0;
  }
}

@media (max-width: 991px) {
  header .custom-btndark {
    position: absolute;
    right: 90px;
    top: 20px;
  }
}

@media (max-width: 480px) {
  header .custom-btndark {
    right: 70px;
  }
}

header .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero-wrapper {
  margin: 60px 0 140px 0;
}

.hero-wrapper.version-2 {
  text-align: center;
}

.hero-wrapper.version-2 h1 {
  max-width: 1108px;
  margin: 0 auto 18px auto;
}

.hero-wrapper.version-2 .sub-contain {
  max-width: 896px;
  margin: 0 auto 60px auto;
}

.hero-wrapper.version-2 img {
  width: 100%;
  max-width: 1004px;
}

.hero-wrapper.version-3 h1 {
  text-align: center;
}

.hero-wrapper.version-3 .sub-contain {
  max-width: 100%;
  margin-bottom: 30px;
}

.hero-wrapper.version-3 a {
  text-decoration: none;
  color: #0C84FF;
}

.hero-wrapper.version-3 h4 {
  line-height: 40px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .hero-wrapper {
    margin: 60px 0;
  }
}

.hero-wrapper .hero-contain {
  margin-top: 25px;
}

.hero-wrapper h1 {
  color: #143961;
  margin-bottom: 18px;
}

.hero-wrapper .sub-contain {
  margin-bottom: 50px;
}

@media (min-width: 1200px) {
  .hero-wrapper .sub-contain {
    max-width: 480px;
  }
}

.hero-wrapper .custom-btnlight {
  margin-left: 20px;
}

.hero-wrapper .hero-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
  .hero-wrapper .hero-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.hero-wrapper .hero-img img {
  max-width: 585px;
}

@media (max-width: 1200px) {
  .hero-wrapper .hero-img img {
    max-width: 485px;
  }
}

@media (max-width: 900px) {
  .hero-wrapper .hero-img img {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-wrapper .hero-img img {
    max-width: 60%;
    margin-bottom: 30px;
  }
}

.brands-slider {
  margin: 140px 0 120px 0;
}

@media (max-width: 767px) {
  .brands-slider {
    margin: 70px 0 100px 0;
  }
}

.brands-slider .brands-title {
  font-size: 20px;
  line-height: 30px;
  color: #143961;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

.brands-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brands-slider .owl-carousel .owl-item img {
  max-width: 75%;
  margin: 0 auto;
}

footer {
  padding: 81px 0;
  background-color: #143961;
}

@media (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}

footer p, footer div, footer a {
  color: #fff;
  text-decoration: none;
}

footer .footer-content img {
  margin-bottom: 25px;
}

@media (min-width: 1200px) {
  footer .footer-content p {
    max-width: 284px;
  }
}

footer .footer-links .links-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  footer .footer-links .links-title {
    margin-bottom: 20px;
  }
}

footer .footer-links a {
  display: block;
}

footer .footer-links a:not(:last-child) {
  margin-bottom: 13px;
}

@media (max-width: 767px) {
  footer .footer-links {
    margin-top: 35px;
  }
}

footer .footer-copyrights {
  padding-top: 35px;
  margin-top: 53px;
  position: relative;
}

@media (max-width: 767px) {
  footer .footer-copyrights p {
    margin-top: 20px;
  }
}

footer .footer-copyrights::before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: calc(100% - 30px);
  background-color: #fff;
  left: 15px;
  right: 15px;
}

.map-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .map-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .map-wrapper {
    margin-bottom: 120px;
  }
}

@media (max-width: 420px) {
  .map-wrapper {
    margin-bottom: 180px;
  }
}

.map-wrapper .country-img {
  max-width: 788px;
}

@media (max-width: 991px) {
  .map-wrapper .country-img {
    max-width: 100%;
  }
}

.map-wrapper .container {
  position: relative;
}

.map-wrapper .container .map-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  .map-wrapper .container .map-content {
    left: 0;
    right: 0;
  }
}

@media (max-width: 420px) {
  .map-wrapper .container .map-content {
    top: 40px;
  }
}

.map-wrapper .container .map-content .row {
  width: 100%;
}

@media (max-width: 767px) {
  .map-wrapper .container .map-content .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .map-wrapper .container .map-content .row .col-6 {
    margin-bottom: 30px;
  }
}

.map-wrapper .container .map-content h2 {
  max-width: 620px;
  color: #143961;
  font-weight: 600;
  text-align: center;
  margin-bottom: 78px;
}

@media (max-width: 767px) {
  .map-wrapper .container .map-content h2 {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 35px;
  }
}

.map-wrapper .container .map-content h2 span {
  color: #0C84FF;
}

.map-wrapper .container .map-content .content-title {
  font-size: 52px;
  line-height: 78px;
  font-weight: bold;
  color: #0C84FF;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .map-wrapper .container .map-content .content-title {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 7px;
  }
}

.map-wrapper .container .map-content .content-disc {
  font-size: 16px;
  line-height: 25px;
  color: #000000;
  max-width: 195px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .map-wrapper .container .map-content .content-disc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.workcycle-wrapper {
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .workcycle-wrapper {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .workcycle-wrapper .row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.workcycle-wrapper .col-lg {
  position: relative;
}

.workcycle-wrapper .col-lg .cycle-item {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1099px) {
  .workcycle-wrapper .col-lg .cycle-item {
    max-width: 90%;
    margin: 0 auto;
  }
}

.workcycle-wrapper img {
  width: 100%;
}

@media (max-width: 991px) {
  .workcycle-wrapper img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-bottom: 30px;
  }
}

.workcycle-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  margin-bottom: 12px;
}

.workcycle-wrapper h2 {
  color: #143961;
  font-weight: 600;
  margin-bottom: 50px;
}

.workcycle-wrapper .cycle-item {
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 1200px) {
  .workcycle-wrapper .cycle-item:hover {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

.workcycle-wrapper .cycle-item .number {
  font-size: 105px;
  line-height: 90px;
  margin-bottom: 35px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1200px) {
  .workcycle-wrapper .cycle-item .number {
    font-size: 85px;
    line-height: 80px;
    margin-bottom: 20px;
  }
}

.workcycle-wrapper .cycle-item.first .number {
  color: #B4C7F6;
}

.workcycle-wrapper .cycle-item.second .number {
  color: #FFCDCD;
}

.workcycle-wrapper .cycle-item.third .number {
  color: #CDE671;
}

.workcycle-wrapper .cycle-item .cycle-title {
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.workcycle-wrapper .cycle-item .cycle-subdisc {
  font-size: 16px;
  line-height: 24px;
  color: #646464;
  max-width: 280px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.revenue-wrapper {
  background-color: #F5F8FF;
  padding: 100px 0;
  /*Range style*/
  /*Range black thumb*/
  /*On hover change colour of black thumb into green 🟢 and scale size*/
  /*Range current value*/
}

.revenue-wrapper .action2 .custom-btndark {
  padding: 14px 20px;
  margin: 0 auto;
}

.revenue-wrapper .custom-btndark {
  margin: 80px auto 0 auto;
  padding: 14px 55px;
  display: block;
}

.revenue-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.revenue-wrapper h2 {
  color: #143961;
  font-weight: 600;
  margin-bottom: 50px;
  text-align: center;
}

.revenue-wrapper .progressbar-item {
  max-width: 505px;
  margin: 0 auto 65px auto;
}

.revenue-wrapper .progressbar-item .item-title {
  font-size: 20px;
  line-height: 30px;
  color: #143961;
  font-weight: 600;
  margin-bottom: 7px;
}

.revenue-wrapper .progressbar-item .item-content {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 19px;
  color: #143961;
}

.revenue-wrapper .progressbar-item .range-options {
  position: relative;
}

.revenue-wrapper .progressbar-item .range-options span {
  font-size: 12px;
  line-height: 18px;
  color: #143961;
  position: absolute;
}

.revenue-wrapper .progressbar-item .range-options span.option-1 {
  left: 0%;
}

.revenue-wrapper .progressbar-item .range-options span.option-2 {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}

.revenue-wrapper .progressbar-item .range-options span.option-3 {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 100%;
}

.revenue-wrapper .progressbar-1 .range-options span.option-2 {
  left: 50%;
}

/* .revenue-wrapper .progressbar-2 .range-options span.option-2 {
  left: 45%;
}
.revenue-wrapper .progressbar-3 .range-options span.option-2 {
  left: 45%;
}
.revenue-wrapper .progressbar-4 .range-options span.option-2 {
  left: 45%;
} */

@media (max-width: 767px) {
  /* .revenue-wrapper .progressbar-2 .range-options span.option-3 {
    left: 94%;
  }
  .revenue-wrapper .progressbar-3 .range-options span.option-2 {
    left: 94%;
  }
  .revenue-wrapper .progressbar-4 .range-options span.option-2 {
    left: 94%;
  } */
}

.revenue-wrapper #range-slider__range, .revenue-wrapper #range-slider__range1, .revenue-wrapper #range-slider__range2,.revenue-wrapper #range-slider__range3,.revenue-wrapper #range-slider__range4,
.revenue-wrapper #capital_required, .revenue-wrapper #m_a_online_revenue, .revenue-wrapper #gross_margin,.revenue-wrapper #m_a_expenditure_on_digital_marketing,.revenue-wrapper #cash,.revenue-wrapper #monthly_loss  {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: #d7dcdf;
  outline: none;
  display: block;
  padding: 0;
  margin: 10px 0 7px 0;
}

.revenue-wrapper #range-slider__range::-webkit-slider-thumb, .revenue-wrapper #range-slider__range1::-webkit-slider-thumb, .revenue-wrapper #range-slider__range2::-webkit-slider-thumb,
.revenue-wrapper #range-slider__range3::-webkit-slider-thumb.revenue-wrapper #range-slider__range4::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #fff;
  border: 4px solid #0C84FF;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  position: relative;
}

.revenue-wrapper #range-slider__range::-webkit-slider-thumb:hover, .revenue-wrapper #range-slider__range1::-webkit-slider-thumb:hover, .revenue-wrapper #range-slider__range2::-webkit-slider-thumb:hover,
.revenue-wrapper #range-slider__range3::-webkit-slider-thumb:hover,.revenue-wrapper #range-slider__range4::-webkit-slider-thumb:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.revenue-wrapper #range-slider__range:active::-webkit-slider-thumb, .revenue-wrapper #range-slider__range1:active::-webkit-slider-thumb, .revenue-wrapper #range-slider__range2:active::-webkit-slider-thumb,
.revenue-wrapper #range-slider__range3:active::-webkit-slider-thumb,.revenue-wrapper #range-slider__range4:active::-webkit-slider-thumb {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.revenue-wrapper #range-slider__value, .revenue-wrapper #range-slider__value1, .revenue-wrapper #range-slider__value2,
.revenue-wrapper #range-slider__value3,.revenue-wrapper #range-slider__value4, .revenue-wrapper .value-item {
  font-size: 16px;
  line-height: 25px;
  font-weight: 600;
  color: #143961;
  margin-bottom: 6px;
}

.keybenefits-wrapper {
  text-align: center;
  margin: 120px 0;
}

@media (max-width: 767px) {
  .keybenefits-wrapper {
    margin: 60px 0;
  }
}

.keybenefits-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  margin-bottom: 12px;
}

.keybenefits-wrapper h2 {
  color: #143961;
  font-weight: 600;
  margin-bottom: 50px;
}

.keybenefits-wrapper .benefits-item {
  -webkit-box-shadow: 0px 0px 30px #00000012;
          box-shadow: 0px 0px 30px #00000012;
  min-height: 361px;
  padding: 55px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 991px) {
  .keybenefits-wrapper .benefits-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .keybenefits-wrapper .benefits-item {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

@media (min-width: 1200px) {
  .keybenefits-wrapper .benefits-item:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.keybenefits-wrapper .benefits-item img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 22px;
}

.keybenefits-wrapper .benefits-item .item-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
  margin: 0 auto 15px auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.keybenefits-wrapper .benefits-item p {
  font-size: 16px;
  line-height: 24px;
  color: #646464;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .keybenefits-wrapper .benefits-item p {
    max-width: 192px;
  }
}

.integrations-wrapper {
  margin: 120px 0;
}

@media (max-width: 767px) {
  .integrations-wrapper {
    margin: 60px 0;
  }
}

.integrations-wrapper.version-2 .integrations-box h2 {
  max-width: 1052px;
}

.integrations-wrapper .integrations-box {
  background-color: #0C84FF0D;
  padding: 100px 50px;
  text-align: center;
}

@media (max-width: 767px) {
  .integrations-wrapper .integrations-box {
    padding: 50px;
  }
}

.integrations-wrapper .integrations-box .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 12px auto;
}

.integrations-wrapper .integrations-box h2 {
  color: #143961;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 50px auto;
}

.integrations-wrapper .integrations-box img {
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 1200px) {
  .integrations-wrapper .integrations-box img:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

.customers-wrapper {
  margin: 120px 0;
}

@media (max-width: 767px) {
  .customers-wrapper {
    text-align: center;
    margin: 60px 0;
  }
}

.customers-wrapper .items-row {
  margin-top: 66px;
}

@media (max-width: 767px) {
  .customers-wrapper .items-row {
    margin-top: 35px;
  }
}

.customers-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 8px auto;
}

.customers-wrapper h2 {
  color: #143961;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 50px auto;
}

@media (max-width: 767px) {
  .customers-wrapper h2 {
    margin: 0 auto 25px auto;
  }
}

.customers-wrapper p {
  font-size: 16px;
  line-height: 28px;
  color: #646464;
  margin-bottom: 0;
}

.customers-wrapper .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customers-wrapper .customers-item {
  -webkit-box-shadow: 0px 0px 30px #00000012;
          box-shadow: 0px 0px 30px #00000012;
  border-radius: 16px;
  text-align: center;
  padding: 50px;
  margin-bottom: 20px;
  min-height: 229px;
}

.customers-wrapper .customers-item img {
  margin-bottom: 24px;
}

.customers-wrapper .customers-item .item-title {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  max-width: 185px;
  margin: 0 auto;
  font-weight: 500;
}

/**** FAQ COLLAPS ****/
.faq-wrapper {
  margin: 120px 0;
}

@media (max-width: 767px) {
  .faq-wrapper {
    margin: 60px 0;
  }
}

.faq-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 12px auto;
  text-align: center;
}

.faq-wrapper h2 {
  color: #143961;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.faq-wrapper .faq-items {
  text-align: left;
}

.faq-wrapper .faq-items .faq-title {
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  color: #262626;
  margin-bottom: 10px;
  font-weight: 600;
  max-width: 849px;
}

@media (max-width: 767px) {
  .faq-wrapper .faq-items .faq-title {
    max-width: calc(100% - 100px);
    font-size: 18px;
    line-height: 30px;
  }
}

.faq-wrapper .faq-items .faq-title img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.faq-wrapper .faq-items .faq-title img {
  display: none;
}

.faq-wrapper .faq-items .faq-title[aria-expanded="false"] .close {
  display: block;
}

.faq-wrapper .faq-items .faq-title[aria-expanded="true"] .open {
  display: block;
}

.faq-wrapper .faq-items .card-body {
  padding: 0;
}

.faq-wrapper .faq-items .card-body p {
  max-width: 1015px;
}

.faq-wrapper .faq-items .accordion, .faq-wrapper .faq-items .card, .faq-wrapper .faq-items .card-header {
  border: 0px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.faq-wrapper .faq-items .card {
  padding-bottom: 30px;
  margin-top: 30px;
  border-bottom: 1px solid #D9D9D9;
}

.reportcard-wrapper {
  margin: 120px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.reportcard-wrapper .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reportcard-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  max-width: 500px;
  margin-bottom: 12px;
}

.reportcard-wrapper h2 {
  color: #143961;
  font-weight: 600;
  max-width: 500px;
  margin-bottom: 25px;
}

@media (min-width: 1200px) {
  .reportcard-wrapper:hover img {
    -webkit-animation: shake-animation 4.72s ease infinite;
            animation: shake-animation 4.72s ease infinite;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
}

@media (max-width: 767px) {
  .reportcard-wrapper img {
    max-width: 70%;
    margin: 0 auto 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contactus-wrapper {
  margin: 80px auto 120px auto;
}

@media (max-width: 767px) {
  .contactus-wrapper {
    margin: 80px auto 60px auto;
  }
}

.contactus-wrapper .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contactus-wrapper .contact-address h1 {
  color: #143961;
  margin-bottom: 30px;
}

.contactus-wrapper .contact-address .address, .contactus-wrapper .contact-address .number, .contactus-wrapper .contact-address a {
  font-size: 24px;
  line-height: 35px;
  color: #646464;
  text-decoration: none;
}

.contactus-wrapper .contact-address a {
  text-decoration: underline;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .contactus-wrapper .contact-address {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .contactus-wrapper .offset-lg-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .contactus-wrapper iframe {
    width: 440px;
    height: 440px;
  }
}

@media (min-width: 1200px) {
  .contactus-wrapper iframe {
    width: 585px;
    height: 585px;
  }
}

@media (max-width: 767px) {
  .contactus-wrapper iframe {
    height: 350px;
    width: 100%;
  }
}

.contactform-wrapper {
  text-align: center;
  margin: 120px auto;
}

@media (max-width: 767px) {
  .contactform-wrapper {
    margin: 60px auto;
  }
}

.contactform-wrapper .title-subcontent {
  font-size: 18px;
  line-height: 27px;
  color: #0C84FF;
  font-weight: 600;
  margin: 0 auto 12px auto;
}

.contactform-wrapper h2 {
  color: #143961;
  font-weight: 600;
  max-width: 500px;
  margin: 0 auto 64px auto;
  max-width: 860px;
}

@media (min-width: 768px) {
  .contactform-wrapper iframe, .contactform-wrapper img {
    max-width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 1200px) {
  .contactform-wrapper iframe, .contactform-wrapper img {
    max-width: 475px;
  }
}

@media (max-width: 767px) {
  .contactform-wrapper iframe, .contactform-wrapper img {
    margin: 0 auto 20px auto;
    max-width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 520px) {
  .contactform-wrapper iframe, .contactform-wrapper img {
    max-width: 80%;
  }
}

.contactform-wrapper .row {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contactform-wrapper form {
  text-align: left;
  max-width: 400px;
}

@media (max-width: 767px) {
  .contactform-wrapper form {
    margin: 30px auto 0 auto;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .contactform-wrapper form {
    margin-left: 15px;
  }
}

.contactform-wrapper form .form-item {
  margin-bottom: 40px;
}

.contactform-wrapper form .form-item label {
  font-size: 20px;
  line-height: 30px;
  color: #262626;
  font-weight: 600;
  margin-bottom: 10px;
}

.contactform-wrapper form .form-item .form-control {
  font-size: 16px;
  line-height: 28px;
  color: #646464;
  padding: 0 0 20px 0;
  border: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
  border-bottom: 1px solid #D9D9D9;
}

.contactform-wrapper form .custom-btndark {
  margin-top: 20px;
  padding: 14px 68px;
}

.infoContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
}

.summary {
  margin-top: 30px !important;
  width: 513px;
  margin: auto;
  background-color: #fbfbfb;
  padding: 10px;
  display: none;
}

.actionContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.action2, .action {
  width: 33.33%;
}

.graphSummaryLabel {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
  color: #808699;
}

.graphSummaryValue {
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  color: #0f48e3;
}

.buttonGreen {
  background: #2bd65b !important;
  color: #fff;
  border-radius: 4px;
  padding: 15px;
  min-width: 160px;
  line-height: 20px;
  font-weight: 700;
  border: none;
  height: 50px;
}

.ant-btn > span {
  display: inline-block;
}

.ant-btn {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-size: 14px;
}

.ant-btn:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
  display: none;
  background: #fff;
  border-radius: inherit;
  opacity: .35;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  pointer-events: none;
}
/*# sourceMappingURL=main.css.map */

.form-step{padding: 50px 0;border-bottom: 1px solid #D9D9D9;margin-bottom: 40px;}
.form-step button{max-width: 25%;width: 100%;list-style: none;background-color: transparent;border: none;padding: 0;}
.form-step button.active .step-number{border-color: #143961;background-color: #143961;color: #fff;}
.form-step button.completed .step-number{border-color: #0C84FF;background-color: #0C84FF;background-image: url(../assets/images/check.svg);background-position: center;color: transparent;background-repeat: no-repeat;background-size: 16px;}
.step-number{width: 40px;height: 40px;border-radius: 100%;border: 1px solid #646464;display: flex;align-items: center;justify-content: center;margin-bottom: 10px;}
.step-text{text-align: center;}
.step-1 .customers-item{cursor: pointer;transition:all 0.5s ease;border: 1px solid transparent;}
.step-1 .customers-item:hover{box-shadow: 0 0 5px rgba(0,0, 0,0.3);border-color: #0C84FF;}
.step-detail{padding: 0px 0px 40px 0px !important; background-color: #fff !important;}
.contactform-wrapper.step-2 form{max-width: 100%;}
.revenue-wrapper.step-3{background-color: transparent;}
.active-item {
  box-shadow: 0 0 5px rgba(0,0, 0,0.3) !important;
  border-color: #0C84FF !important;
}
.form-item label.error {
  font-size: 14px !important;
  display: block;
  color: #f00 !important;
  font-weight: 400 !important;
}

.page-error {
  background: url(assets/images/bg/error.html);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.page-error .error-not-found {
  position: relative;
  background: #cfd0ef;
  width: 650px;
  padding: 50px;
  height: 650px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
.page-error .error-not-found .error-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-error .error-not-found .title {
  font-size: 35px;
  line-height: 52px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 30px;
}
.page-error .error-not-found .title span {
  font-size: 251px;
  line-height: 171px;
  font-weight: 700;
  color: #101010;
  display: block;
  padding-bottom: 70px;
}
.loader {
  color: #0C84FF;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0);
}
.overlay{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0, 0,0.5);
  z-index: 111;
  display: none;
  align-items: center;
  justify-content: center;
}

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 
    2em -2em 0 0em, 3em 0 0 -1em, 
    2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 
    3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 
    2em -2em 0 0, 3em 0 0 0.2em, 
    2em 2em 0 0, 0 3em 0 -1em, 
    -2em 2em 0 -1em, -3em 0 0 -1em, 
    -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, 
     -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, 
     -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
     3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, 
     -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 
    3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 
    3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
    -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
  