@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
html, body, div, span,
h1, h2, h3, h4, p,
a, img, var, ul, li, form, label, footer, header, section,
time, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

footer, header, section {
  display: block;
}

body {
  line-height: 1.25;
}

 ul {
  list-style: none;
}

div {
  box-sizing: border-box;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 300;
}

li::before {
  content: "■";
  color: #39BFE1;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

input,
textarea {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  font-weight: normal;
  color: #FFFFFF;
  font-size: 15px;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

a {
  color: #FFFFFF;
  font-size: 15px;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #FFFFFF;
  text-decoration: none;
  outline: none;
}

p {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 1rem;
}

.text-xxl {
  font-size: 30px;
}

.text-lg {
  font-size: 20px;
}

.text-md {
  font-size: 15px;
}

.text-sm {
  font-size: 13px;
}

.text-l {
  font-weight: 300;
}

.text-sb {
  font-weight: 600;
}

.text-b {
  font-weight: bold;
}

.text-blue {
  color: #39BFE1;
}

.text-white {
  color: #FFFFFF;
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 15px;
  }
  .text-xxl {
    font-size: 20px;
  }
  .text-lg {
    font-size: 15px;
  }
  .text-md {
    font-size: 13px;
  }
  .text-sm {
    font-size: 12px;
  }
}
header {
  position: relative;
}
header #top-nav {
  position: fixed;
  width: 100%;
  top: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: transparent;
  color: #fff;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}
header #top-nav.top-nav-regular {
  grid-template-columns: 1fr 4fr 1fr;
}
header #top-nav.top-nav-regular .close {
  text-align: right;
  padding-top: 30px;
  padding-right: 50px;
}
@media (max-width: 991px) {
  header #top-nav {
    display: none;
  }
}
header #top-nav .section.logo {
  padding-top: 30px;
  padding-left: 50px;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  header #top-nav .section.logo {
    padding-left: 30px;
  }
}
header #top-nav .section a.nav-item {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
header #top-nav .section a.nav-item span {
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 50px;
}
@media (max-width: 1199px) {
  header #top-nav .section a.nav-item span {
    left: 30px;
  }
}
header #top-nav .section a.nav-item::after {
  height: 100%;
  display: block;
  content: "";
  border-bottom: solid 1px #39BFE1;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 10% 50%;
}
header #top-nav .section a.nav-item:hover::after {
  transform: scaleX(1);
}
header #top-nav .section:last-of-type a.nav-item {
  color: #39BFE1;
}
header.scrolled #top-nav {
  background-color: #000;
}
header.scrolled #top-nav-mobile {
  background-color: #000;
}

#top-nav-mobile {
  position: fixed;
  width: 100%;
  justify-content: space-between;
  z-index: 3;
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 50px;
  transition: background-color 0.3s ease;
}
#top-nav-mobile .logo {
  height: 30px;
}
@media (max-width: 991px) {
  #top-nav-mobile {
    display: flex;
  }
}
#top-nav-mobile #mobile-nav-wrapper {
  position: fixed;
  display: none;
  top: 91px;
  left: 0;
  overflow: hidden;
  right: 0;
  bottom: 0;
  background-color: #000;
  text-align: center;
  padding-top: 14vh;
}
#top-nav-mobile #mobile-nav-wrapper .nav-item {
  margin-bottom: 70px;
}
#top-nav-mobile #mobile-nav-wrapper .nav-item a {
  font-size: 15px;
  font-weight: bold;
}
#top-nav-mobile #mobile-nav-wrapper .nav-item:last-of-type {
  margin-bottom: 0;
}
#top-nav-mobile #mobile-nav-wrapper .nav-item:last-of-type a {
  color: #39BFE1;
}
#top-nav-mobile.open {
  background-color: #000;
}
#top-nav-mobile.open #mobile-nav-wrapper {
  display: block;
}
#top-nav-mobile .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 32px;
}
#top-nav-mobile .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  transition: transform 0.1s ease-in-out;
}
#top-nav-mobile .hamburger-lines .line:first-of-type {
  transform-origin: 0% 0%;
  transition: transform 0.2s ease-in-out;
}
#top-nav-mobile .hamburger-lines .line:last-of-type {
  transform-origin: 0% 100%;
  transition: transform 0.2s ease-in-out;
}
#top-nav-mobile .hamburger-lines.open .line {
  transform: scaleY(0);
}
#top-nav-mobile .hamburger-lines.open .line:first-of-type {
  transform: rotate(45deg);
}
#top-nav-mobile .hamburger-lines.open .line:last-of-type {
  transform: rotate(-45deg);
}

.home-hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.home-hero video {
  position: fixed;
  min-width: 100%;
  top: 0;
  z-index: -999;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  filter: brightness(0.4);
}
.home-hero .header-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.home-hero .header-text span {
  color: #39BFE1;
}
@media (max-width: 991px) {
  .home-hero .header-text {
    bottom: 150px;
  }
}

.vertical-lines div {
  width: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.15);
}
.vertical-lines div:first-of-type {
  left: 16.6666666667%;
}
@media (max-width: 991px) {
  .vertical-lines div:first-of-type {
    left: 50px;
  }
}
.vertical-lines div:nth-of-type(2) {
  left: 33.3333333333%;
}
@media (max-width: 991px) {
  .vertical-lines div:nth-of-type(2) {
    left: 50%;
  }
}
.vertical-lines div:nth-of-type(3) {
  left: 50%;
}
@media (max-width: 991px) {
  .vertical-lines div:nth-of-type(3) {
    left: unset;
    right: 50px;
  }
}
.vertical-lines div:nth-of-type(4) {
  left: 66.6666666667%;
}
@media (max-width: 991px) {
  .vertical-lines div:nth-of-type(4) {
    display: none;
  }
}
.vertical-lines div:nth-of-type(5) {
  left: 83.3333333333%;
}
@media (max-width: 991px) {
  .vertical-lines div:nth-of-type(5) {
    display: none;
  }
}

.horizontal-line {
  position: fixed;
  bottom: 130px;
  height: 1px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.15);
}
.horizontal-line img {
  position: absolute;
  left: 83.3333333333%;
  top: 50%;
  transform: translateX(-50%) translateY(-42%);
}
@media (max-width: 991px) {
  .horizontal-line img {
    left: 50%;
  }
}

.regular-page-body .vertical-lines div:nth-of-type(2) {
  display: none;
}
.regular-page-body .vertical-lines div:nth-of-type(3) {
  display: none;
}
@media (max-width: 991px) {
  .regular-page-body .vertical-lines div:nth-of-type(3) {
    display: block;
    left: unset;
    right: 50px;
  }
}
.regular-page-body .vertical-lines div:nth-of-type(4) {
  display: none;
}
@media (max-width: 991px) {
  .regular-page-body .vertical-lines div:nth-of-type(4) {
    display: none;
  }
}

.regular-page-body .horizontal-line {
  display: none;
}

.main-wrapper {
  padding-left: 16.66667vw;
  background-color: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .main-wrapper {
    padding-left: 50px;
  }
}
.main-wrapper section {
  margin-top: 300px;
  position: relative;
}
.main-wrapper section .anchor {
  position: absolute;
  top: -110px;
}
.main-wrapper section .section-header {
  border-bottom: 1px solid #39BFE1;
  position: relative;
  padding-left: 50px;
  padding-bottom: 12px;
}
.main-wrapper section .section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px; /* Adjust the size of the square as needed */
  height: 5px; /* Adjust the size of the square as needed */
  background-color: #39BFE1;
}
.main-wrapper section .section-content {
  padding-left: 50px;
  padding-top: 50px;
  padding-right: 16.66667vw;
}
.main-wrapper section .section-content.sm-top {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .main-wrapper section .section-content {
    padding-left: 0;
    padding-right: 51px;
  }
}
.main-wrapper section .section-content .section-description-large {
  margin-top: 30px;
  font-size: 40px;
  line-height: 54px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .main-wrapper section .section-content .section-description-large {
    font-size: 30px;
    line-height: 36px;
  }
}
.main-wrapper section .section-content .section-description {
  margin-top: 80px;
  width: 73%;
}
@media (max-width: 991px) {
  .main-wrapper section .section-content .section-description {
    width: 100%;
  }
}
.main-wrapper section .sub-section {
  margin-top: 130px;
}
.main-wrapper section .sub-section .clients {
  padding-top: 80px;
}
.main-wrapper section .sub-section .clients a {
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  margin-right: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .main-wrapper section .sub-section .clients a {
    display: block;
    margin-right: 0;
  }
}
.main-wrapper section .sub-section .clients a img {
  max-width: 100%;
  height: auto;
}
.main-wrapper section .industry {
  position: relative;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
@media (max-width: 991px) {
  .main-wrapper section .industry {
    background-size: contain;
    background-position: top;
  }
}
.main-wrapper section .industry.iot {
  background-image: url("/assets/images/IoT.webp");
}
.main-wrapper section .industry.automotive {
  background-image: url("/assets/images/Automotive.webp");
}
.main-wrapper section .industry.transportation {
  background-image: url("/assets/images/Train.webp");
}
.main-wrapper section .industry.marine {
  background-image: url("/assets/images/Marine.webp");
}
.main-wrapper section .industry img {
  width: 100%;
}
.main-wrapper section .industry .industry-details {
  padding-top: 180px;
  padding-left: 50px;
  padding-right: 16.66667vw;
  padding-bottom: 180px;
}
@media (max-width: 991px) {
  .main-wrapper section .industry .industry-details {
    padding-top: 150px;
    padding-bottom: 80px;
    padding-right: 51px;
    padding-left: 0;
  }
}
.main-wrapper section .industry .industry-details h2 {
  margin-bottom: 30px;
}
.main-wrapper section .industry .industry-details .section-description {
  width: 73%;
}
@media (max-width: 991px) {
  .main-wrapper section .industry .industry-details .section-description {
    width: 100%;
  }
}
.main-wrapper section .industry .industry-details .industry-description {
  width: 73%;
}
@media (max-width: 1199px) {
  .main-wrapper section .industry .industry-details .industry-description {
    width: 100%;
  }
}
.main-wrapper section .industry .industry-details .industry-description p {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .main-wrapper section .industry .industry-details .industry-description p {
    font-size: 20px;
  }
}
.main-wrapper section .industry .industry-details .industry-list {
  width: 47%;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .main-wrapper section .industry .industry-details .industry-list {
    width: 73%;
  }
}
@media (max-width: 911px) {
  .main-wrapper section .industry .industry-details .industry-list {
    width: 100%;
  }
}
.main-wrapper section .industry .industry-details .industry-list .list-item {
  display: flex;
  margin-bottom: 30px;
}
.main-wrapper section .industry .industry-details .industry-list .list-item:last-of-type {
  margin-bottom: 0;
}
.main-wrapper section .industry .industry-details .industry-list .list-item .icon {
  margin-right: 30px;
}
.main-wrapper section .industry .industry-details .industry-list .list-item .icon img {
  width: 18px;
  height: auto;
  margin-top: 5px;
}
.main-wrapper section .industry .industry-details .industry-list .list-item .item-detail h4 {
  margin-bottom: 10px;
}
.main-wrapper section.stack .stack-items {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-row-gap: 50px;
}
@media (max-width: 1199px) {
  .main-wrapper section.stack .stack-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .main-wrapper section.stack .stack-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-wrapper section.stack .stack-items .item {
  text-align: center;
}
.main-wrapper section.stack .stack-items .item .label {
  margin-top: 30px;
}
.main-wrapper section.careers .open-positions {
  margin-top: 50px;
}
.main-wrapper section.careers .open-positions .position {
  padding: 30px 50px;
  background-color: rgba(57, 191, 255, 0.2);
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.main-wrapper section.careers .open-positions .position:last-of-type {
  margin-bottom: 0;
}
.main-wrapper section.careers .open-positions .position:hover {
  background-color: rgba(57, 191, 255, 0.3);
}
.main-wrapper section.contact .contact-wrapper {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .main-wrapper section.contact .contact-wrapper {
    flex-direction: column;
  }
}
.main-wrapper section.contact .contact-wrapper .contact-form {
  width: 50%;
}
@media (max-width: 767px) {
  .main-wrapper section.contact .contact-wrapper .contact-form {
    width: 100%;
  }
}
.main-wrapper section.contact .contact-wrapper .contact-details-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .main-wrapper section.contact .contact-wrapper .contact-details-wrapper {
    justify-content: flex-start;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .main-wrapper section.contact .contact-wrapper .contact-details-wrapper {
    width: 100%;
  }
}
.main-wrapper section.contact .contact-wrapper .contact-details-wrapper .contact-details .item {
  display: flex;
  margin-bottom: 50px;
}
.main-wrapper section.contact .contact-wrapper .contact-details-wrapper .contact-details .item:last-of-type {
  margin-bottom: 0;
}
.main-wrapper section.contact .contact-wrapper .contact-details-wrapper .contact-details .item a {
  color: #FFFFFF;
}
.main-wrapper section.contact .contact-wrapper .contact-details-wrapper .contact-details .item img {
  margin-right: 15px;
}

input,
textarea {
  padding: 15px 50px;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Montserrat";
  font-size: 15px;
  width: 100%;
}
input:hover,
textarea:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

input[type=button],
input[type=submit] {
  width: unset;
  color: #000;
  background-color: #39BFE1;
}
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.9;
}

input[type=file] {
  display: none;
}

.custom-file-upload {
  padding: 15px 50px;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Montserrat";
  font-size: 15px;
  display: block;
  cursor: pointer;
}
.custom-file-upload:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

footer {
  margin-top: 130px;
  display: flex;
  justify-content: space-between;
  margin-right: 16.66667vw;
  align-items: center;
  margin-bottom: 100px;
}
footer .copyright {
  margin-top: 60px;
  margin-bottom: 60px;
}

.regular-page-body footer {
  margin-right: unset;
}

.regular-page {
  position: relative;
  padding-top: 130px;
  background-color: #000;
  background-image: url(/assets/images/BG\ -\ Gradinet.webp);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100%;
  padding-right: 16.66667vw;
}
@media (max-width: 991px) {
  .regular-page {
    background-position: center;
    padding-right: 51px;
  }
}
.regular-page .page-title {
  margin-left: 50px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .regular-page .page-title {
    margin-left: 10px;
  }
}
.regular-page .job-section {
  width: 50%;
  margin-bottom: 50px;
}
.regular-page .job-section:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .regular-page .job-section {
    width: 100%;
  }
}
.regular-page .job-section h3 {
  margin-left: 50px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .regular-page .job-section h3 {
    margin-left: 10px;
  }
}
.regular-page .career-form {
  width: 50%;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .regular-page .career-form {
    width: 100%;
  }
}
.regular-page .thanks {
  margin-left: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .regular-page .thanks {
    margin-left: 10px;
  }
}
.regular-page .thanks h3 {
  margin-bottom: 10px;
}
.regular-page .thanks div {
  margin-bottom: 80px;
}
.regular-page .thanks a img {
  margin-right: 30px;
}
