@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.patients_sec .heading {
  margin-bottom: 60px;
}
.patients_sec .patient_wrapper .patient_col {
  display: flex;
  align-items: center;
  background: var(--white);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1019607843);
  border-radius: 15px;
}
.patients_sec .patient_wrapper .patient_col:not(:last-child) {
  margin-bottom: 50px;
}
.patients_sec .patient_wrapper .patient_col:nth-child(2n) {
  flex-direction: row-reverse;
}
.patients_sec .patient_wrapper .patient_col:nth-child(2n) figure img, .patients_sec .patient_wrapper .patient_col:nth-child(2n) figure video {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.patients_sec .patient_wrapper .patient_col figure {
  flex: 0 1 50%;
  width: 50%;
  height: 100%;
  line-height: 0;
}
.patients_sec .patient_wrapper .patient_col figure img, .patients_sec .patient_wrapper .patient_col figure video {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.patients_sec .patient_wrapper .patient_col figcaption {
  flex: 1;
  padding: 40px;
}
.patients_sec .patient_wrapper .patient_col figcaption .name {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 10px;
}
.patients_sec .patient_wrapper .patient_col figcaption .diagnose {
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}
.patients_sec .patient_wrapper .patient_col figcaption .diagnose:not(:last-child) {
  margin-bottom: 5px;
}
.patients_sec .patient_wrapper .patient_col figcaption .diagnose span {
  font-size: 20px;
  color: var(--black);
}
.patients_sec .patient_wrapper .patient_col figcaption .desc {
  margin: 15px 0 30px;
}
.patients_sec .patient_wrapper .patient_col figcaption .desc p {
  color: var(--text);
}
.patients_sec .patient_wrapper .patient_col figcaption .desc p:not(:last-child) {
  margin-bottom: 10px;
}
.patients_sec .patient_wrapper .patient_col figcaption .btn:not(.primary-border):hover svg path {
  stroke: unset;
}

.patient-pop.model {
  border-radius: 10px;
  max-width: 90%;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.6s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100vh) scale(0);
}
.patient-pop.model.is-open {
  transition: all 0.6s;
  transform: translate(-50%, -50%) scale(1);
}
.patient-pop.model .model-body {
  background: var(--white);
  border-radius: 10px;
  max-height: 90vh;
  margin-top: 50px;
  padding: 0 30px 40px;
  overflow-y: auto;
}
.patient-pop.model .model-body::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.patient-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.patient-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}
@media (max-width: 1370px) and (max-height: 770px) {
  .patient-pop.model .model-body {
    height: 85vh;
  }
}
.patient-pop.model .model-body .pop_wrapper .heading {
  margin-bottom: 40px;
}
.patient-pop.model .model-body .pop_wrapper .heading h3 {
  text-align: center;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h1, .patient-pop.model .model-body .pop_wrapper .content-desc h2, .patient-pop.model .model-body .pop_wrapper .content-desc h3, .patient-pop.model .model-body .pop_wrapper .content-desc h4, .patient-pop.model .model-body .pop_wrapper .content-desc h5, .patient-pop.model .model-body .pop_wrapper .content-desc h6 {
  margin-bottom: 15px;
  font-weight: 500;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h2, .patient-pop.model .model-body .pop_wrapper .content-desc h3, .patient-pop.model .model-body .pop_wrapper .content-desc h4 {
  margin: 18px 0 10px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h1 {
  font-size: 30px;
  text-align: left;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h2 {
  font-size: 28px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h3 {
  font-size: 26px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h4 {
  font-size: 24px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h5 {
  font-size: 22px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc h6 {
  font-size: 20px;
}
.patient-pop.model .model-body .pop_wrapper .content-desc p, .patient-pop.model .model-body .pop_wrapper .content-desc ul {
  margin-bottom: 10px;
}/*# sourceMappingURL=patient.css.map */