/* @import url('//fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* ---style guide start---- */

:root {

  /* spacing */
  --xxxs: 5px;
  --xxs: 10px;
  --xs: 15px;
  --s: 20px;
  --m: 30px;
  --l: 40px;
  --xl: 60px;
  --xxl: 80px;
  --xxxl: 120px;
  --xxxxl: 180px;

  /* colors */
  --orange: #ff6000;
  --black: #1b1b1a;
  --grey900: #262625;
  --grey800: #323231;
  --grey700: #494949;
  --grey600: #828281;
  --grey500: #A3A3A1;
  --grey400: #C6C6C4;
  --grey300: #DFDFDD;
  --grey200: #F0F0F0;
  --grey100: #F2F2F2;
  --grey50: #F7F7F7;

  --font-l: 17px;
  --font-m: 16px;
  --font-s: 15px;
  --font-xs: 14px;
  --font-xxs: 13px;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: var(--font-l);
  font-weight: 400;
  background: #fff;
  letter-spacing: -.002em;
  color: var(--black);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

p {
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: var(--xs);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

label {
  margin-bottom: 0;
}
section, footer {
  position: relative;
  margin-top: -1px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000000s ease-in-out 0s;
}

.container {
  max-width: 1440px;
  padding: 0px var(--l);
  margin: auto;
}

h1 {
  font-size: 58px;
  font-style: normal;
  font-weight: 800;
  line-height: 108%;
  letter-spacing: -.01em;
  margin-bottom: var(--m);
  text-transform: uppercase;
}

h2 {
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%;
  letter-spacing: -.01em;
  margin-bottom: var(--m);
  text-transform: uppercase;
}

h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 118%;
  letter-spacing: -.007em;
  margin-bottom: var(--s);
}

h4 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -.005em;
  margin-bottom: var(--s);
}

h5 {
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: -.005em;
}

h6 {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 132%;
  text-transform: uppercase;
  margin-bottom: var(--s);
  letter-spacing: .015em;
}

.button,
input.hs-button,
input[type=submit] {
  height: 54px;
  padding: 0px var(--m);
  font-size: 13px;
  color: white;
  background-color: var(--black);
  border-radius: 2px !important;
  border: none;


  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: .005em;
  text-transform: uppercase;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;

  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.hs-button {
  width: 100%;
  cursor: pointer;
  margin-top: var(--s);
}

.button.btn--lg,
input.hs-button.large {
  height: 58px;
  padding: 0px var(--l);
  font-size: 14px;
}

.button.btn--sm {
  height: 40px;
  padding: 0px var(--s);
  font-size: 12px;
}

.button.btn--primary {
  color: white;
  border-color: var(--orange);
  background-color: var(--orange);
}

.button.btn--inverted {
  color: var(--black);
  border-color: white;
  background-color: white;
}

.button.btn--clear {
  color: var(--black);
  border: 1px solid var(--black);
  background-color: transparent;
}

.button.btn--clear.btn--inverted {
  color: white;
  border-color: white;
}

.button:after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  z-index: -1;
  transition: all 0.2s ease;
}

.button.btn--clear:after {
  background: var(--black);
}

.button.btn--clear.btn--inverted:after  {
  background: white;
}

.angle_cut {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 15%;
}

.bg {
  background: url('../assets/hero-bg-2x-q6-w3000.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  background-color: : var(--black);
  height: 100vh;
  width: 100vw;
}
.content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

/* ---style guide end---- */

/* -- header area start -- */
.hero_section {
  /* background: url('../assets/hero-bg-2x-q6-w3000.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow-y: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% 89%, 0% 100%); */
}

.hero_section .angle_cut {
  bottom: -1px;
  background-color: #fff;
  clip-path: polygon(0 98%, 100% 0, 100% 100%, 0% 100%);
}

.header_logo a img {
  display: inline-block;
  width: 194.793px;
}

.header_link {
  display: flex;
  align-items: center;
  gap: var(--xs);
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header {
  padding: var(--m) 0px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#header .btn--inverted {
  display: none;
}

#header .btn--clear {
  display: inline-flex;
}

/* -- header area end -- */

/* -- hero area start -- */
.hero_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: var(--l);
  /* gap: var(--xl); */
}

.hero_left {
  max-width: 530px;
  padding-top: var(--s);
}

.hero_left p {
  max-width: 480px;
  color: var(--grey500);
  margin-bottom: var(--l);
}

.hero_left h6 {
  color: var(--grey500);
  margin-bottom: var(--m);
}

.hero_left h1 {
  color: #fff;
}

.hero_right img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  position: relative;
  bottom: -10px;
}

.hero_section {
  padding-top: calc(80px + var(--l));
}
/* -- hero area end -- */

/* -- logo area start -- */
.logo_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.logo_left {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--xxxs);
}

.logo_box {
  display: block;
  width: 100%;
}

.logo_right {
  margin-left: auto;
  max-width: 480px;
}

.logo_right p {
  color: var(--grey800);
}

#logo {
  padding-top: 60px;
  padding-bottom: var(--xxxl);
  background-color: white;
}
/* -- logo area end -- */

/* -- solution area start -- */
#solution {
  padding: var(--xxxl) 0px;
  background-color: var(--grey100);
}

.solution_heading {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.globe_top_left h2 {
  color: #fff;
}
.globe_top_left h2 span{
  color: #ff6000;
}

.solution_heading p {
  color: var(--grey800);
}

.solution_tab {
  margin-top: var(--xxl);
}

.solution_tab_heading ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey400);
  gap: var(--s);
}

.solution_tab_heading ul li {
  display: flex;
  width: 100%;
  height: 92px;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  color: var(--grey600);
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 126%;
  letter-spacing: -.005em;
  cursor: pointer;

}

.solution_tab_heading ul li:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0%;
  /* transition: all 0.5s ease; */
}

.solution_tab_heading ul li:hover {
  color: var(--grey800);
}

.solution_tab_heading ul li.activeItem {
  width: 100%;
  color: var(--black);
}

.solution_tab_heading ul li.activeItem:after {
  background: var(--orange);
}

.solution_tab_heading ul li.activeItem:after {
  width: 100%;
}

.solution_tab_cnt {
  max-width: 1140px;
  margin: auto;
  position: relative;
  height: 580px;
}

.solution_tab_cnt_one {
}

.solution_tab_cnt_one_left {
  max-width: 440px;
  padding-top: var(--xxl);
}

.solution_tab_cnt_one_left h6 {
  color: var(--orange);
}

.solution_tab_cnt_one_left p {
  color: var(--grey800);
  margin-bottom: var(--l);
}

.solution_tab_cnt_one {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: var(--xl);
  padding-left: var(--l);
  padding-right: var(--l);
  transition: all .4s;
  opacity: 0;
  position: absolute;
}

.solution_tab_cnt_one_right img.sub_img {
  display: block;
  height: 540px;
  margin-left: auto;
}

.solution_tab_cnt_one_right img.main_img {
  display: block;
  width: 271px;
  position: absolute;
  left: 12%;
  top: 23%;
}

.solution_tab_cnt_one.activeTab {
  opacity: 1;
  z-index: 1;
}

/* -- solution area end -- */

/* -- globe area start -- */
#globe {
  padding-bottom: calc(var(--xxxl)*2.25);
  padding-top: calc(var(--xxxl)*3.25);
  /* clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%); */
  /* background: url('../assets/figures-bg-2x-q60-w3000.webp'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#globe .angle_cut {
  top: -1px;
  background-color: var(--grey100);
  clip-path: polygon(0 0%, 102% 0%, 0% 100%, 0% 100%);
}

.globe_wrapper {
  max-width: 1140px;
  margin: auto;
}

.globe_top {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.globe_top_left p {
  color: var(--grey500);
  max-width: 600px;
  margin: auto;
}

.globe_top_right img {
  display: block;
  width: 400px;
  margin-left: auto;
}

.globe_top_left {
  margin-top: 35px;
}

.globe_bottom {
  margin-top: var(--xxxl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: var(--xs);
  row-gap: var(--xl);
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.globe_bottom_one {
  display: flex;
  align-items: center;
}

.globe_one_left {
  display: flex;
  text-align: center;
  width: 120px;
}

.globe_one_left img {
  display: block;
  margin: auto;
  height: 60px;
}

.globe_one_right span {
  display: block;
  color: var(--grey100);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  letter-spacing: -0.2px;
  margin-bottom: var(--xxxs);
}

.globe_one_right p {
  color: var(--grey500);
  margin-bottom: 0;
}

.globe_one_right span, .globe_one_right p {
  white-space: nowrap;
}

.solutionWrapper {
  background-color: var(--grey100);
}
/* -- globe area end -- */

/* -- work area start -- */
.work_heading {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.work_img {
  margin-top: var(--xxxl);
  position: relative;
}

.work_img img {
  max-width: 800px;
  margin: auto;
}

.work_img img.img_modules_labels {
  display: block;
}

.work_img img.img_modules_arrows {
  display: none;
}

#work {
  padding: var(--xxxl) 0px var(--xxl);
  background-color: var(--grey200);
}
/* -- work area end -- */

/* -- drive area start -- */
.drive_wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--s);
  align-items: center;
}

.drive_right {
  margin-left: -80px;
}

.drive_right img {
  display: none !important;
  width: 100%;
}

.drive_left {
  max-width: 530px;
}

.drive_left h6 {
  display: block;
  color: var(--orange);
}

.drive_left p {
  color: var(--grey800);
}

.drive_item {
  padding-bottom: var(--s);
}

.drive_item ul li {
  display: inline-flex;
  align-items: center;
  gap: var(--xxs);
  color: var(--black);
  font-weight: 500;
  padding: 14px var(--l) 13px var(--s);
  position: relative;
  border-radius: 1px;
  margin-bottom: 15px;
  /* cursor: pointer;
  transition: all 0.3s ease; */
  background-color: #fff;
}


.drive_item ul li:after {
  content: "" !important;
  display: block !important;
  width: 5px !important;
  height: 100% !important;
  background-color: var(--orange) !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  border-radius: 1px 0px 0px 1px !important;
}

.drive_item ul li img {
  display: inline-block;
  width: 18px;
}

#drive {
  background-color: var(--grey200);
  padding: var(--xxxxl) 0px;
}

.drive_item {
  margin: var(--l) 0px 0px;
}

.feature_btn {
  padding-top: var(--xs);
}

.drive_right img.driveImgActive {
  display: block;
}

.driveTwo .drive_right,
.driveFour .drive_right {
  margin-left: 0;
  margin-right: -80px;
}


.driveTwo .drive_left,
.driveFour .drive_left {
  margin-left: auto;
}

.driveTwo,
.driveFour {
  background-color: var(--grey300) !important;
}

.driveFour {
  padding-bottom: 200px !important;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
}
/* -- drive area end -- */

/* -- testimonial area start -- */
#testimonial .angle_cut {
  top: -1px;
  background-color: var(--grey300);
  clip-path: polygon(0 0%, 102% 0%, 0% 100%, 0% 100%);
}

.testimonial_wrapper {
  max-width: 600px;
  margin: auto;
}

.testimonial_wrapper blockquote {
  color: var(--grey700);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
}

.testimonial_wrapper .divider_sm {
  width: 100px;
  height: 2px;
  background-color: var(--orange);
  margin: 50px auto;
  display: block;
}

.testiman {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: var(--m);
}

.testiman_left {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border: 1px solid var(--grey700);
  border-radius: 50%;
}

.testiman_left img {
  display: block;
  width: 100%;
  height: 100%;
}

.testiman_right {
  text-align: left !important;
  font-size: 20px;
  color: var(--black);
}

.testiman_right .customer_name {
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: var(--xxxs);
}

#testimonial {
  background-color: white;
  padding-bottom: var(--xl);
  padding-top: 200px;
  margin-top: -90px;
}
/* -- testimonial area end -- */

/* -- demo area start -- */
#demo {
  background-color: white;
  padding-bottom: var(--xxxl);
}

#demo h2 {
  text-transform: none;
}

.hs-form {
  padding: var(--s) 0;
}

.hs-form fieldset {
  max-width: none !important;
}

.hs-form fieldset .hs-form-field div.input {
  margin-bottom: var(--s) !important;
}

.hs-form .hs-input.hs-fieldtype-intl-phone {
   width: 100% !important;
   display: grid;
   grid-template-columns: 90px auto;
   gap: var(--xs);
   margin: 0 auto;
   height: 48px;
}

.submitted-message.hs-main-font-element {
  background-color: white;
  border-radius: 1px;
  padding: var(--xs);
}

.submitted-message.hs-main-font-element p {
  margin-bottom: 0;
}

.hs-form .hs-form-field,
.hs-form .hs-fieldtype-intl-phone.hs-input select {
  width: 100% !important;
  float: none !important;
}

.hs-form .hs-form-field > label {
  display: block;
  font-size: var(--font-xs);
  margin-bottom: var(--xs);
  text-transform: uppercase;
  font-weight: 500;
}
ul.hs-error-msgs {
  padding: 0 0 var(--xs);
}
ul.hs-error-msgs li {
  background: rgba(255,255,255,0.2);
  padding: var(--xs) var(--xxs);;
  font-size: var(--font-s);
  position: relative;
  border-radius: 1px;
}

ul.hs-error-msgs li:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid rgba(255,255,255,0.2);
  top: -13px;
  left: 15px;
  z-index: 5;
}

.hs-phone ul.hs-error-msgs {
  width: calc(50% - 7.5px);
  float: right;
}

.hs_error_rollup {
  display: none;
}

.hs-form .hs-form-field div.input {
  margin: 0 !important;
}

.hs-form .hs-form-field input,
.hs-form .hs-form-field input.hs-input,
.hs-form .hs-form-field select {
  font-family: "Rubik", sans-serif;
  width: 100% !important;
  height: 48px;
  padding: 0 var(--xxs);
  font-size: 15px;
  font-weight: 400;
  background-color: white;
  border: none;
  border-radius: 1px;
  color: var(--black);
}

.hs-form .hs-form-field select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 100% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
    padding-right: 22px;
}

.hs-form .hs-form-field input.invalid,
.hs-form .hs-form-field input.hs-input.invalid,
.hs-form .hs-form-field select.invalid {
  outline: none;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
}

.hs-form .hs-form-field input::placeholder,
.hs-form .hs-form-field select::placeholder {
  color: var(--grey400);
  font-weight: 400;
}
.hs-form .hs-form-field input:focus,
.hs-form .hs-form-field select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--black);
}

.demo_wrapper {
  min-height: 963px;
  padding: 0 var(--xxl) 0 var(--xl);
  background-color: var(--orange);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--xl);
  padding-bottom: var(--xxl);
  padding-top: calc(var(--xxxl)*2);
  align-items: center;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
}

.demo_left {
  padding-top: var(--l);
}

.demo_left img {
  display: block;
  width: 100%;
}

.demo_right p {
  color: var(--black);
}

.demo_right a {
  background-color: var(--black);
  color: #fff;
}

.demo_right {
  max-width: 500px;
  padding: var(--xxxl) 0 var(--m);
}

.demobtn {
  padding-top: var(--s);
}
/* -- demo area end -- */

/* -- footer area start -- */
footer {
  padding: var(--xl) 0;
  background: var(--grey100);
}

.footer_wrapper {
  text-align: center;
}

.footer_logo img {
  display: inline-block;
  width: 194px;
}

.footer_logo p {
  color: var(--black);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 152%;
  margin-top: var(--s);
}

.footer_social ul {
  padding: var(--m) 0px;
}

.footer_social ul li {
  display: inline-block;
  margin: 0px var(--xs);
}

.footer_social ul li img {
  display: inline-block;
  width: 24px;
  transition: all 0.2s ease;
}

.footer_social ul li:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(40%) sepia(91%) saturate(2781%)
    hue-rotate(2deg) brightness(105%) contrast(103%);
}

.footer_social p {
  color: var(--grey600);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}

.header_logo img.stickylogo {
  display: none;
}

.drive_right img.driveImgActive {
  display: block !important;
}

/* -- footer area end -- */
