/*
* ============================
*     ClicheCode Template
* ============================
* Auther : Saran
* https://www.clichecode.com
*
*/

#doctors-view {
  background: #f8f8f8;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 50px;
}

#doctors-view .doctor-container {
  background: white;
  padding: 50px 30px;
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2);
  margin-top: 50px;
  position: relative;
  min-height: 500px;
}

#doctors-view .doctor-container h1,
#doctors-view .doctor-container h2,
#doctors-view .doctor-container h3,
#doctors-view .doctor-container h4,
#doctors-view .doctor-container h5 {
  margin: 20px 0px;
}

#doctors-view .doctor-container::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 500px;
  background: #3ecbd3;
  top: -25px;
  right: -25px;
  z-index: -1;
  border-radius: 80px 0 80px;
}

#doctors-view .doctor-container .doc-sec {
  padding: 0;
  margin-left: -75px;
}

#doctors-view .doctor-container .doc-sec .img-box img {
  width: 185px;
  height: 195px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 2px 3px 2px -1px rgba(62, 203, 211, 0.5215686275);
}

#doctors-view .doctor-container .cont-top {
  margin: auto 0;
}

#doctors-view .doctor-container .cont-top h1 {
  text-transform: capitalize;
  color: #f56756;
}

#doctors-view .doctor-container .cont-top h3 {
  color: #4ab2b0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
}

#doctors-view .doctor-container .cont-btm {
  position: relative;
  margin-top: 20px;
  padding-top: 40px;
  padding-left: 90px;
}

#doctors-view .doctor-container .cont-btm::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background: #efefef;
  top: 0;
  right: 0;
}

#doctors-view .doctor-container .cont-btm h4 {
  position: relative;
  font-weight: 700;
}

#doctors-view .doctor-container .cont-btm h4::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #4ab2b0;
  bottom: -2px;
  left: 2px;
}

#doctors-view .otherSection {
  margin-top: 50px;
  background: white;
  padding: 50px 30px;
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2);
}

#doctors-view .otherSection h1 {
  margin: auto;
  display: table;
  margin-bottom: 60px;
  position: relative;
}

#doctors-view .otherSection h1::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 3px;
  background: #f56756;
  bottom: -2px;
  left: 2px;
}

#doctors-view .otherSection .doctorBx {
  margin-bottom: 30px;
  text-align: center;
  padding: 20px 15px;
  box-shadow: 0 20px 30px -16px rgba(9, 9, 16, 0.2);
}

#doctors-view .otherSection .doctorBx h2 {
  margin-top: 15px;
  font-size: 18px;
}

#doctors-view .otherSection .doctorBx h5 {
  color: #f56756;
  font-family: gotham-medium;
}

@media screen and (max-width: 1280px) {
  #doctors-view {
    padding-top: 30px;
  }

  #doctors-view .doctor-container .doc-sec {
    margin-left: unset;
    padding-left: 15px;
    padding-right: 15px;
  }

  #doctors-view .doctor-container .cont-btm {
    padding-left: 15px;
  }

  #doctors-view .doctor-container .cont-btm::after {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #doctors-view .doctor-container {
    max-width: 95%;
  }

  #doctors-view .doctor-container .cont-top {
    margin-top: 20px;
  }

  #doctors-view .otherSection {
    max-width: 95%;
  }
}

@media screen and (max-width: 767px) {
  #doctors-view .otherSection h1 {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  #doctors-view .doctor-container::after {
    top: -10px;
    right: -10px;
  }

  #doctors-view .doctor-container .doc-sec {
    text-align: center;
  }

  #doctors-view .doctor-container .cont-top {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #doctors-view .doctor-container {
    padding: 50px 0;
    margin-top: 10px;
  }

  #doctors-view .doctor-container .cont-top h1 {
    font-size: 2rem;
  }

  #doctors-view .doctor-container .cont-top h3 {
    font-size: 14px;
  }
}

