.company {
  position: relative;
  background-image: url("../assets/startedbg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.customContainer {
  margin-top: 100px;
}

.companyLine {
  width: 10vw;
  margin-bottom: 13vw;
}

.companyHeading {
  margin-top: 6vw;
}

.companyRight {
  margin-top: 17vw;
}

.companySpan1 {
  position: relative;
  font-size: 0.9rem;
}

.companySpan1 span {
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.companySpan2 span {
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.companySpan2 {
  margin-top: 4vw;
  position: relative;
}

.companySpan1::before {
  content: "";
  position: absolute;
  border: 1px solid var(--buttonColor);
  height: 2.5rem;
  left: -1vw;
  top: 50%; /* Position the border in the middle of the container */
  transform: translateY(-50%); /* Adjust to vertically center the border */
  align-items: center;
  justify-content: center;
}

.companySpan2::before {
  content: "";
  position: absolute;
  border: 1px solid var(--buttonColor);
  height: 4rem;
  left: -1vw;
  top: 50%; /* Position the border in the middle of the container */
  transform: translateY(-50%); /* Adjust to vertically center the border */
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .companyRight {
    margin-left: 10vw;
  }

  .companyLine {
    margin-bottom: 18vw;
  }
}
