.needs {
  margin-top: 50px;
  height: fit-content;
  z-index: 2;
  overflow-x: hidden;
  width: 100%;
  /* padding-bottom: 200px; */
  position: relative;
}
.needs-vector {
  position: absolute;
  right: 0;
  top: 0;
  background: #f7f7f7;
  width: 70%;
  height: 75%;
}
.needs-container {
  width: 80%;
  margin: 80px auto 0;
  /* margin-left: 200px; */
  height: fit-content;
  /* background-color: lightblue; */
  display: grid;
  grid-template-columns: 1.5fr 2fr;
}
.needs-row-right {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  padding-left: 80px;
  z-index: 2;
}
.needs-content {
  width: 70%;
  padding-top: 50px;
}
.needs-content h2 {
  margin: 20px 0 40px;
  position: relative;
}
.needs-content h2::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -40px;
  width: 20px;
  height: 2px;
  background-color: var(--highlight-color);
}
.needs-row-right-image {
  margin-top: 100px;
  width: 100%;
}
.needs-row-right-image img {
  width: 100%;
  object-fit: contain;
}
.booking {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.booking h1 {
  font-size: 70px;
}
.booking-header {
  display: flex;
  align-item: start;
  flex-direction: column;
}
.booking-line {
  margin-top: 50px;
  height: 1px;
  width: 80%;
  background-color: var(--highlight-color);
}
.booking-links {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px 0 100px;
}
.booking-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 50px;
  color: rgba(16, 16, 16, 1);
  font-size: 24px;
}
@media (max-width: 1400px) {
  .needs-container {
    width: 85%;
  }
}
@media (max-width: 1200px) {
  .needs-container {
    width: 85%;
  }
  .booking h1 {
    font-size: 50px;
  }
  .booking-links a {
    font-size: 19px;
  }
  .booking-links svg {
    width: 30px !important;
  }
}
@media (max-width: 900px) {
  .needs-content {
    width: 90%;
  }
  .needs-vector {
    height: 65%;
  }
  .booking {
    grid-template-columns: 1fr;
  }
  .booking-header {
    text-align: center;
  }
  .booking h1 {
    font-size: 36px;
  }

  .booking-line {
    display: none;
  }
  .booking-links {
    text-align: center;
    padding: 100px 0 100px;
  }
  .booking-links a {
    width: fit-content;
    margin: auto;
    font-size: 16px;
    gap: 20px;
  }
  .booking-links svg {
    width: 20px !important;
  }
}

@media (max-width: 700px) {
  .needs {
    width: 90%;
    margin: auto;
  }
  .needs-vector {
    display: none;
  }
  .needs-container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    margin: 0;
    background-color: #fff;
  }
  .needs-row-right {
    padding-left: 0;
    width: 100%;
  }
  .needs-row-right-image {
    display: none;
  }
  .needs-content {
    width: 100%;
  }
}
