.services-hero-section {
  width: 100%;
  height: 65vh;
  display: flex;
  /* background-color: #001034; */
  overflow: hidden;
  /* padding: 0px 60px; */
  border-bottom: 1px solid grey;
  /* margin-bottom: 20vh; */
}

.services-center-card {
  width: 75%;
  height: 100%;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
}

.services-center-card > img {
  border-radius: 20px;
  width: 90%;
  height: 100%;
}

.services-center-inner-card {
  position: absolute;
  width: calc(100% - 20%);
  height: calc(100% - 80px);
  /* border: 2px solid red; */
  top: 40px;
  left: calc(100% - 90%);
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  padding: 40px;
  color: #fff;
}

.services-center-inner-card > h1 {
  font-size: 42px;
  font-weight: 500;
}

.services-center-inner-card > p {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  /* line-height: 35px; */
  margin-top: 10px;
}

.services-center-inner-card > button {
  width: fit-content;
  margin-top: 16px;
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 10px;
  color: pink;
  border: none;
  outline: none;
  cursor: pointer;
}
.services-hero-first-card {
  height: 20px;
  width: 12.5%;
  position: relative;
}

.services-hero-curve-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 450px;
  background-color: grey;
  transform: rotate(30deg);
  transform-origin: top right;
}

.services-hero-curve-line-second {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 450px;
  background-color: grey;
  transform: rotate(-30deg);
  transform-origin: top left;
}

@media (max-width: 767px) {
  .services-hero-section {
    height: 58vh;
    /* margin-bottom: 10vh; */
  }
  .services-center-card {
    padding: 20px;
  }
  .services-center-inner-card {
    padding: 20px;
  }
  .services-center-inner-card > h1 {
    font-size: 22px;
  }
  .services-center-inner-card > p {
    font-size: 15px;
  }
}

.sub-survey-heading {
  text-align: center !important;
  margin: 1rem 0;
}

/* third card */

.services-third-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
.services-third-first {
  width: 100%;
  display: flex;
  height: 90px;
}
.services-third-first-first {
  width: 12.5%;
  height: 100%;
  position: relative;
}
.services-third-first-first > span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(-62.5deg);
  transform-origin: bottom right;
}
.services-third-first-third {
  width: 12.5%;
  height: 100%;
  position: relative;
}

.services-third-first-third > span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(62.5deg);
  transform-origin: bottom left;
}
.services-third-first-center {
  width: 75%;
  height: 100%;
  border-bottom: 1px solid grey;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-third-first-center > h1 {
  font-size: 48px;
  font-weight: 500;
}

.services-third-second-card {
  width: 100%;
  display: flex;
  height: 50px;
  align-items: center;
}

.services-third-second-first-card {
  width: 12.5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.services-third-second-first-card > span {
  width: 100%;
  height: 1px;
  background-color: grey;
}

.services-third-second-center-card {
  width: 75%;
  height: 100%;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
}

.services-third-third {
  width: 100%;
  display: flex;
}
.services-third-third-first {
  width: 12.5%;
}
.services-third-third-center {
  width: 75%;
  padding: 50px;
  display: flex;
  gap: 2rem;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  border-top: 1px solid grey;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.services-third-third-first-span {
  position: absolute;
  top: -1px;
  left: 0px;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(62.5deg);
  transform-origin: top left;
}

.services-third-third-second-span {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(-62.5deg);
  transform-origin: top right;
}

.services-third-third-center > img {
  width: 50%;
  height: 400px;
}
.services-third-third-cente-first-card {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.services-third-third-cente-first-card > h2 {
  font-size: 28px;
}

.services-third-third-cente-first-card > p {
  font-size: 17px;
  color: grey;
  letter-spacing: 1px;
  line-height: 22px;
}
.services-third-third-cente-first-card > button {
  background-color: #001034;
  color: #fff;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .services-third-first-center > h1 {
    font-size: 38px;
  }
  .services-third-third-center {
    flex-direction: column;
    padding: 30px;
  }

  .services-third-third-center > img {
    width: 100%;
  }
  .services-third-third-cente-first-card {
    width: 100%;
  }
  .services-third-first-center > h1 {
    font-size: 20px;
    text-align: center;
  }
}

/* fifth-card */

.fifth-card {
  border-top: 1px solid;
  background-color: #e0ff32;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.fifth-first {
  width: 100%;
  display: flex;
  height: 90px;
}
.fifth-first-spa {
  width: 12.5%;
}
.fifth-first-center {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.fifth-first-center > h1 {
  font-size: 38px;
  font-weight: 500;
}
.fifth-center-first-span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 200px;
  background-color: grey;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
.fifth-center-second-span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 200px;
  background-color: grey;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}

.fifth-second {
  width: 100%;
  display: flex;
}
.fifth-second-first {
  width: 12.5%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}
.fifth-second-center {
  width: 75%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid grey;
  overflow: hidden;
  gap: 2rem;
}

.fifth-second-center-first {
  width: 50%;
  position: relative;
  /* border: 2px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.fifth-second-center-first > img {
  width: 100%;
  height: 350px;
  /* object-fit: cover; */
}
.fifth-second-center-first-span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 200px;
  background-color: grey;
  transform: rotate(135.5deg);
  transform-origin: top left;
}

.fifth-second-center-second-span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(-135.5deg);
  transform-origin: bottom left;
}

.fifth-second-center-third-span {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 200px;
  background-color: grey;
  transform: rotate(-132.5deg);
  transform-origin: top right;
}

.fifth-second-center-fouth-span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 250px;
  background-color: grey;
  transform: rotate(-227deg);
  transform-origin: bottom right;
}

.fifth-second-center-second {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fifth-second-center-second > h1 {
  font-size: 48px;
  font-weight: 500;
}
.fifth-second-center-second > p {
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 20px;
}
.fifth-second-center-second > button {
  width: 150px;
  height: 40px;
  background-color: #e0ff32;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .fifth-first {
    height: 60px;
  }
  .fifth-first-center > h1 {
    font-size: 28px;
  }
  .fifth-second-center {
    flex-direction: column;
  }
  .fifth-second-center-first {
    width: 100%;
  }
  .fifth-second-center-second {
    width: 100%;
  }
  .fifth-second-center-second > h1 {
    font-size: 30px;
  }
  .fifth-second-center-first > img {
    height: 250px;
  }
  .fifth-first-center > h1 {
    font-size: 20px;
  }
}

/* second card */
.about-second-card {
  width: 100%;
  display: flex;
  height: 650px;
  /* border: 2px solid red; */
}

.about-second-center-card {
  width: 75%;
  height: 100%;
  /* border: 1px solid grey; */
  display: flex;
  /* margin: 0px 60px; */
  justify-content: center;
  align-items: center;
}

.about-second-first-card {
  width: 12.5%;
  height: 100%;
  border-right: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-second-second-card {
  width: 12.5%;
  height: 100%;
  border-left: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-second-first-card > div {
  width: 100%;
  height: 80%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.about-second-second-card > div {
  width: 100%;
  height: 80%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.about-econd-center-inner-card {
  width: 100%;
  height: 80%;
  display: flex;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.about-second-center-inner-first-card {
  width: 50%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: 1px solid grey;
  justify-content: center;
  align-items: center;
}

.about-second-center-inner-first-card > h1 {
  color: #e0ff32;
  font-weight: 500;
  font-size: 48px;
}

.about-second-center-inner-first-card > span {
  font-size: 15px;
  color: grey;
}

.about-second-center-inner-first-card > p {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
}

.about-second-center-inner-first-card-btn {
  width: 180px;
  background-color: #e0ff32;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;

  position: relative;
}

.about-second-center-inner-first-card-btn > button {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
}

.about-second-center-inner-first-card-btn > div {
  width: 35px;
  position: absolute;
  right: 0;
  top: 0;
}

.about-second-center-inner-second-card {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-second-center-inner-second-img-card {
  width: 50%;
  height: 80%;
  position: relative;
}

.about-second-center-inner-second-img-card > img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.about-second-center-inner-second-img-card > div {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .about-second-first-card {
    height: 100%;
  }
  .about-second-card {
    height: fit-content;
  }
  .about-second-center-card {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
  }
  .about-econd-center-inner-card {
    flex-direction: column;
    height: 100%;
  }
  .about-second-center-inner-first-card {
    width: 100%;
    border: none;
  }
  .about-second-center-inner-second-card {
    width: 100%;
    padding: 20px;
  }
  .about-second-center-inner-first-card > h1 {
    font-size: 30px;
    text-align: center;
  }
  .about-second-center-inner-first-card > span {
    text-align: center;
  }
  .about-second-center-inner-second-img-card {
    width: 100%;
  }
}

/* second */

.contact-second-card {
  width: 100%;
  display: flex;
  height: 650px;
  /* border: 2px solid red; */
}

.contact-second-center-card {
  width: 75%;
  height: 100%;
  /* border: 1px solid grey; */
  display: flex;
  /* margin: 0px 60px; */
  justify-content: center;
  align-items: center;
}

.contact-second-first-card {
  width: 12.5%;
  height: 100%;
  /* border-right: 1px solid grey; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-second-second-card {
  width: 12.5%;
  height: 100%;
  /* border-left: 1px solid grey; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-second-first-card > div {
  width: 100%;
  height: 80%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.contact-second-second-card > div {
  width: 100%;
  height: 80%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.contact-econd-center-inner-card {
  width: 100%;
  height: 80%;
  display: flex;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
}

.contact-second-center-inner-first-card {
  width: 50%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  justify-content: center;
  align-items: center;
}

.contact-second-center-inner-first-card > h1 {
  color: #e0ff32;
  font-weight: 500;
  font-size: 48px;
}

.contact-second-center-inner-first-card > span {
  font-size: 15px;
  color: grey;
}

.contact-second-center-inner-first-card > p {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
}

.contact-second-center-inner-first-card-btn {
  width: 180px;
  background-color: #e0ff32;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;

  position: relative;
}

.contact-second-center-inner-first-card-btn > button {
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
}

.contact-second-center-inner-first-card-btn > div {
  width: 35px;
  position: absolute;
  right: 0;
  top: 0;
}

.contact-second-center-inner-second-card {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid grey;
}

.contact-second-center-inner-second-img-card {
  width: 100%;
  height: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-second-center-inner-second-img-card > img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.contact-second-center-inner-second-img-card > div {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 767px) {
  .contact-second-first-card {
    height: 100%;
  }
  .contact-second-card {
    height: fit-content;
  }
  .contact-second-center-card {
    border-left: 1px solid grey;
    border-right: 1px solid grey;
  }
  .contact-econd-center-inner-card {
    flex-direction: column;
    height: 100%;
  }
  .contact-second-center-inner-first-card {
    width: 100%;
    border: none;
  }
  .contact-second-center-inner-second-card {
    width: 100%;
    padding: 20px;
  }
  .contact-second-center-inner-first-card > h1 {
    font-size: 30px;
    text-align: center;
  }
  .contact-second-center-inner-first-card > span {
    text-align: center;
  }
  .contact-second-center-inner-second-img-card {
    width: 100%;
  }
}

/* second card */

.second {
  width: 100%;
  display: flex;
  height: 200px;
}

.second > span {
  width: 12.5%;
  height: 100%;
  position: relative;
}
.second > span > span {
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50px;
  left: 0px;
  background-color: yellow;
}
.second-center {
  width: 75%;
  height: 100%;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 40px;
}
.second-center-new {
  width: 75%;
  height: 100%;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 40px;
}

.second-center > h1 {
  font-size: 40px;
  font-weight: 500;
}

.second-center > img {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 100px;
}

.second-center > span {
  width: 100%;
  height: 3px;
  position: absolute;
  top: 50px;
  left: 0px;
  background-color: #e0ff32;
}

.second-center-new > img {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 100px;
}

@media (max-width: 768px) {
  .second-center > h1 {
    font-size: 28px;
  }
  .second-center-new > h2 {
    font-size: 20px;
  }
}

/* third card */
.third {
  display: flex;
  width: 100%;
  background-color: #e0ff32;
}

.third > span {
  width: 12.5%;
  height: 100%;
}

.third-center {
  width: 75%;
  border-left: 1px solid grey;
  border-right: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

.third-center-inner {
  width: 100%;
  padding: 40px;
  display: flex;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  gap: 2rem;
}

.third-center-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.third-center-left > p {
  font-size: 20px;
  font-weight: 500;
}

.third-center-left > h1 {
  font-size: 40px;
  font-weight: 500;
}

.third-center-left > span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 22px;
}

.third-center-left > button {
  width: 190px;
  height: 40px;
  background-color: #001034;
  color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 10px;
  margin-top: 10px;
}

.third-center-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100%; */
  background-color: red;
}

.third-center-right > img {
  width: 85%;
}

@media (max-width: 768px) {
  .third-center-inner {
    flex-direction: column;
  }
  .third-center-left {
    width: 100%;
  }
  .third-center-right {
    width: 100%;
  }
}

.surveying-list {
  list-style: none;
}
