.doctorsSection .content .header .controls {
  display: none;
}
.doctorsSection .content .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  row-gap: 50px;
}
.doctorsSection .content .owl-carousel {
  display: none;
}
.doctorsSection .content .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(33.33% - 13.3333333333px);
}
.doctorsSection .content .item img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--secondary-color);
}
.doctorsSection .content .item p {
  color: var(--primary-color);
}
.doctorsSection .content .item p span {
  color: var(--base-color);
}

@media (max-width: 800px) {
  .doctorsSection .content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .doctorsSection .content .header .controls {
    display: flex;
    gap: 10px;
  }
  .doctorsSection .content .header .controls button {
    width: 25px;
    height: 25px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
  }
  .doctorsSection .content .header .controls button svg {
    width: 100%;
    height: 100%;
  }
  .doctorsSection .content .header .controls button.next svg {
    transform: rotateZ(180deg);
  }
  .doctorsSection .content .list {
    display: none;
  }
  .doctorsSection .content .owl-carousel {
    display: inherit;
  }
  .doctorsSection .content .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
  }
  .doctorsSection .content .item img {
    height: auto;
    aspect-ratio: 335/400;
  }
}/*# sourceMappingURL=doctorsSection.css.map */