@media (min-width: 768px) {
  .doctors-container {
    display: flex;
    flex-direction: row;
    height: 90vh;
    background-color: #d7e6f4;
    overflow-y: hidden;
    border-bottom: 5px solid #b80500;
    position: relative;
    z-index: 0;
    width: 100vw;
    overflow-x: hidden;
  }
  .doctors-container .left {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 2;
  }
  .doctors-container .left img {
    height: 80%;
    -webkit-filter: drop-shadow(-15px 25px 5px rgb(0, 0, 0, 0.3))
      brightness(1.15);
    filter: drop-shadow(-15px 25px 5px rgb(0, 0, 0, 0.3)) brightness(1.15);
  }
  .doctors-container .right {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  .doctors-container .right label {
    font-size: 2rem;
    color: rgb(184, 5, 0);
    padding-left: 50px;
  }
  .doctors-container .right p {
    width: 75%;
    /* background-color: rgba(255, 255, 255, 0.5);
     */
    /* background: rgb(40, 76, 123);
    background: linear-gradient(
      202deg,
      rgba(40, 76, 123, 0.5) 0%,
      rgba(58, 109, 176, 0.5) 20%,
      rgba(215, 230, 244, 0.5) 100%
    ); */
    padding: 0px 50px;
    border-radius: 25px;
    color: black;
    line-height: 1.75rem;
  }
  .doctors-container svg {
    position: absolute;
    bottom: -100px;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .doctors-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: #d7e6f4;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
  }
  .doctors-container .left {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    overflow-y: hidden;
    background: none;
    position: relative;
    z-index: 2;
  }
  .doctors-container .left img {
    width: 100%;
    -webkit-filter: drop-shadow(-15px 25px 5px rgb(0, 0, 0, 0.3))
      brightness(1.15);
    filter: drop-shadow(-15px 25px 5px rgb(0, 0, 0, 0.3)) brightness(1.15);
    border-bottom: 5px solid #b80500;
  }
  .doctors-container .right {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 100px;
    -webkit-box-shadow: inset 0px 0px 11px 1px #000000;
    box-shadow: inset 0px 0px 11px 1px #000000;
    position: relative;
    z-index: 2;
    background-color: white;
  }
  .doctors-container .right label {
    color: #b80500;
    font-size: 2rem;
  }
  .doctors-container .right p {
    width: 80%;
    text-align: center;
  }
  .doctors-container svg {
    position: absolute;
    bottom: 250px;
    z-index: 1;
    height: 35vh;
  }
}
