/* MAIN WRAPPER */
.search-engine {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  overflow: hidden;
  font-family: Helvetica, sans-serif;
}

/* BACKGROUND IMAGE */
.search-engine .cubitrek-UI {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* TOP LEFT ARROW */
.search-engine .top-left {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 5;
}
.search-engine .top-left .left-arrow {
  width: 36px;
  height: 36px;
}

/* TOP RIGHT COMPANY FAVICON */
.search-engine .top-right {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 5;
}
.search-engine .top-right .company-favicon {
  width: 36px;
  height: 36px;
}

/* BOTTOM RIGHT LEFT-ARROW */
.search-engine .bottom-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
}
.search-engine .bottom-right .left-arrow {
  width: 36px;
  height: 36px;
}

/* MAIN CONTENT GRID */
.search-engine .content {
  position: relative;
  z-index: 2;
  padding: 80px 5%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
}

/* LEFT IMAGE */
.search-engine .element {
  width: 100%;
  max-width: 620px;
  mix-blend-mode: lighten;
  margin: auto;
  background: none;
}

/* RIGHT TEXT CONTENT */
.search-engine .text-content {
  color: #fff;
}

/* HEADER TEXT */
.search-engine .staff-augmentation {
  font-family: "Unbounded-Medium", Helvetica;
  font-size: clamp(32px, 6vw, 55px);
  background: linear-gradient(180deg, #fff 43%, rgba(153,153,202,0.79) 81%);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.search-engine .div {
  font-family: "Unbounded-Light", Helvetica;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 28px;
  margin-bottom: 20px;
}

/* DIVIDER */
.search-engine .div-user-select-none {
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(52,255,157,1) 50%,
    rgba(0,0,0,0) 100%
  );
  margin: 20px 0;
}

/* ICON + TEXT BOTTOM */
.search-engine .frame {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 25px;
}

.search-engine .scale-your-team {
  font-family: "Unbounded-Medium", Helvetica;
  font-size: 20px;
}

.search-engine .fluent-app-span {
  width: 45px;
  height: 45px;
}

/* EXPAND ICON */
.search-engine .si-expand-more {
  position: absolute;
  bottom: 40px;
  right: 100px; /* offset from bottom-right arrow */
  width: 58px;
  height: 58px;
}

.search-engine .si-expand-more .vector {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* RESPONSIVE: TABLET */
@media (max-width: 900px) {
  .search-engine .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-engine .element {
    order: 2;
    margin-top: 30px;
  }

  .search-engine .text-content {
    order: 1;
  }

  .search-engine .frame {
    justify-content: center;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 600px) {
  .search-engine .staff-augmentation {
    font-size: 36px;
  }

  .search-engine .fluent-app-span {
    width: 38px;
    height: 38px;
  }
}
    