:root {
  --active-btn: #535e6f;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.doctors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.doctors .grid-container {
  width: 80%;
  display: grid;
  margin: auto;
  /* grid-template-columns: auto auto; */
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.doctors .grid-item {
  height: 100%;
  display: flex;
  gap: 2rem;
  border-radius: 1rem;
}

@media all and (max-width: 1200px) {
  .doctors .grid-container {
    width: 100%;
  }
}

@media all and (max-width: 900px) {
  .doctors .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media all and (max-width: 450px) {
  .doctors .grid-container {
    gap: 1rem;
  }
  .doctors .grid-item {
    gap: 0.5rem;
  }
  .doctors .grid-item img {
    height: 5rem;
  }
}

.doctors .about {
  display: flex;
  flex-direction: column;
}

.doctors .filter {
  /* gap: 0.5rem; */
  /* background-color: #333; */
  /* overflow: auto; */
  /* white-space: nowrap; */
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.doctors .filter::-webkit-scrollbar {
  /* height: 2rem; */
  /* width: 5rem; */
  display: none;
}

.doctors .btn {
  border-radius: 50rem;
  display: inline-block;
  /* color: white; */
  text-align: center;
  /* padding: 14px; */
  text-decoration: none;
}

.doctors .btn:hover,
.doctors .btn:active {
  background-color: var(--active-btn);
  color: white;
}

.doctors .btn.active {
  background-color: var(--active-btn);
  color: white;
}

.doctors .location a {
  border-radius: 50rem;
}

.doctors .searchBar .input-box {
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50rem;
  width: 30rem;
}

@media all and (max-width: 768px) {
  .doctors .searchBar .input-box {
    width: 100%;
  }
}

.doctors .searchBar input {
  border-radius: 50rem;
  border: none;
  outline: none;
}

.doctors .searchBar input:focus {
  border: none;
  outline: none;
}
