.extra-style {
  margin-top: -15px;
  padding: 8px 0;
}

.body-search {
  width: 65%;
  margin: 10px auto;
  padding: 16px;
  border-radius: 12px;
  background-color: #fff;
}

.search-by-expert {
  width: 55%;
  margin: 12px 16px;
  /* border-bottom: 1px solid #ccc;
  padding-bottom: 16px; */
}
.show-bottom-border {
  width: 95%;
  margin: 16px auto;
  height: 1px;
  background-color: #ccc;
}
.search-by-expert-div {
  width: 100%;
  border-radius: 120px;
  background-color: #95c2c8f0;
  display: flex;
  justify-content: space-between;
  padding: 10px 8px;
  align-items: center;
}

.search-by-expert-div h4 {
  font-size: 16px;
  font-weight: 400;
  color: #0056B3;
  padding-top: 6px;
}

.search-by-expert-div span {
  padding-top: 6px;
}

.search-by-expert-div span svg {
  width: 25px;
  height: 25px;
}

.body-search h2 {
  font-size: 16px;
  font-weight: 400;
  color: #181914;
  position: relative;
  margin-right: 36px;
}

.body-search h2::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  top: 9px;
  right: -15px;
}

.search-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  height: 110px;
}

.search-item img {
  width: 75px;
  height: 75px;
  border-radius: 10px;
}

.search-item span {
  font-size: 12px;
  font-weight: 400;
  line-height: 21.86px;
  text-align: center;
  color: #7f7f7f;
  /* white-space: nowrap; */
}
.search-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.search-expert-submenu {
  position: absolute;
  top: 60px;
  left: 12px;
  width: 95%;
  background-color: #fff;
  box-shadow: 0 0 70px 0px #c1bcbc;
  padding: 16px;
  border-radius: 12px;
  display: none;
  z-index: 1111;
}
.open-submenu {
  display: block;
}
.search-expert-submenu li {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  color: #181914;
}
.all-experts-profile {
  width: 70%;
  margin: 12px auto;
}
.search-expert-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1000px) {
  .search-expert-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .body-search {
    width: 95%;
  }

  .search-by-expert-div h4 {
    font-size: 12px;
    font-weight: 400;
    margin-right: 5px;
  }

  .search-by-expert-div span svg {
    width: 15px;
    height: 15px;
  }

  .body-search h2 {
    font-size: 14px;
    font-weight: 700;
    margin-right: 18px;
  }

  .body-search h2::before {
    top: 4px;
    right: -11px;
  }

  .search-item img {
    width: 65px;
    height: 65px;
  }

  .search-item span {
    font-size: 10px;
    font-weight: 700;
    width: 90px;
  }

  .search-expert-submenu {
    width: 90%;
  }
  .all-experts-profile {
    width: 95%;
  }
  .search-expert-form {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
  }
  .search-by-expert {
    width: 95%;
    margin: 12px auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
  }
  .show-bottom-border {
    display: none;
  }
}
