#why-choose {
  margin-top: -15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;

  position: relative;
}

h1 {
  max-width: 700px;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5rem;

  max-width: 1400px;
  margin-top: 4rem;

  position: relative;
}

.whycard {
  width: 320px;
  height: 400px;

  background: #000000;
  border: 1px solid #2c2c2c;
  border-radius: 34px 11px 34px 21px;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.why-card-img {
  position: absolute;
  top: 0;
  left: 0;
}

.why-card-title,
.why-card-des {
  z-index: 1;
  margin: 0;
}

.why-card-title {
  margin-top: 15rem;

  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.05em;
}

.why-card-des {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.05em;

  color: rgba(255, 255, 255, 0.8);
}

.pink-v-1,
.pink-v-2,
.blue-v-1,
.yellow-v-1 {
  position: absolute;
  z-index: -1;
}

.pink-v-1 {
  top: 6.5rem;
  left: 0;
}

.pink-v-2 {
  top: 14rem;
  right: 0;
}

.blue-v-1 {
  top: 29rem;
  left: 8rem;
}

.yellow-v-1 {
  bottom: 0;
  right: 5rem;
}

.about-us-quote {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: end;
  position: relative;

  margin: 9rem 0;
}

.green-tri {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  z-index: -1;
}

.quote-card {
  max-width: 980px;

  background: #010507;
  border: 1px solid #29B6F6;
  border-radius: 27px 9px 27px 12px;
  margin-top: 11vh;
  margin-right: 8rem;
  margin-bottom: 6rem;
  padding: 2rem 2rem;
}

.quote-text {
  max-width: 900px;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.05em;
  margin: 0;

  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 768px) {
  .pink-v-1 {
    top: 3rem;
  }

  .pink-v-2 {
    display: none;
  }

  .yellow-v-1 {
    bottom: 15rem;
    right: 0;
  }

  .quote-card{
    margin: 0 1rem;
  }

}