@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.doctor_sec .heading {
  max-width: 600px;
  margin: 0 auto 60px;
}
.doctor_sec .heading h2 {
  line-height: 1.1;
}
.doctor_sec .doctor_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 20px;
}
.doctor_sec .doctor_wrapper .doctor_col {
  border-radius: 15px;
  cursor: pointer;
}
.doctor_sec .doctor_wrapper .doctor_col:hover figure img {
  transform: scale(1.1);
}
.doctor_sec .doctor_wrapper .doctor_col figure {
  border-radius: 15px;
}
.doctor_sec .doctor_wrapper .doctor_col figure img {
  border-radius: 15px;
  transition: 1s ease;
}
.doctor_sec .doctor_wrapper .doctor_col figcaption {
  padding: 15px;
  text-align: center;
  position: relative;
}
.doctor_sec .doctor_wrapper .doctor_col figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(241, 241, 241, 0.55);
}
.doctor_sec .doctor_wrapper .doctor_col figcaption {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  position: absolute;
}
.doctor_sec .doctor_wrapper .doctor_col figcaption::before {
  backdrop-filter: blur(8.1499996185px);
  z-index: -1;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.doctor_sec .doctor_wrapper .doctor_col figcaption .name {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 3px;
}
.doctor_sec .doctor_wrapper .doctor_col figcaption .desgn {
  line-height: 1.2;
  font-size: 14px;
}

.doctor-pop.model {
  border-radius: 10px;
  max-width: 860px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.5s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100vh) scale(0);
}
.doctor-pop.model.is-open {
  transition: all 0.8s;
  transform: translate(-50%, -50%) scale(1);
}
.doctor-pop.model .model-body {
  background: var(--white);
  border-radius: 10px;
  max-height: 90vh;
  margin-top: 30px;
  padding: 0 40px 40px;
  overflow-y: auto;
}
.doctor-pop.model .model-body::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.doctor-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.doctor-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
@media (max-width: 1370px) and (max-height: 770px) {
  .doctor-pop.model .model-body {
    height: 85vh;
  }
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figure {
  line-height: 0;
  flex: 0 1 auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figure img {
  border-radius: 50%;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption {
  flex: 1;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption .name {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption ul {
  margin-top: 10px;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption ul li {
  font-weight: 400;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption ul li:not(:last-child) {
  margin-bottom: 5px;
}
.doctor-pop.model .model-body .doctor_wrapper .upper_row figcaption ul li span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row {
  margin-top: 15px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .desc p {
  color: var(--text);
  font-size: 14px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .desc p:not(:last-child) {
  margin-bottom: 10px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec {
  margin-top: 15px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec h6 {
  line-height: 1.2;
  margin-bottom: 10px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul {
  padding-left: 15px;
}
@media only screen and (max-width: 675px) {
  .doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul {
    padding-left: 10px;
  }
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--text);
}
@media only screen and (max-width: 675px) {
  .doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul li {
    padding-left: 20px;
  }
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul li:not(:last-child) {
  margin-bottom: 7px;
}
.doctor-pop.model .model-body .doctor_wrapper .lower_row .moreinfo_sec ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}/*# sourceMappingURL=doctor.css.map */