.bigpatienthistory {
  padding: 80px 0;
  transform: scale(0.1);
  transition: 1500ms ease;
}
.bigpatienthistory.loaded {
  transform: scale(1);
}
.bigpatienthistory .inner {
  display: flex;
  align-items: center;
  background-color: #75C0C3;
  border-radius: 16px;
  position: relative;
  color: #fff;
  padding: 24px;
}
.bigpatienthistory .inner::before {
  position: absolute;
  content: '';
  bottom: 32px;
  right: 32px;
  width: 170px;
  height: 182px;
  background-image: url('/wp-content/uploads/2025/06/heart-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}
.bigpatienthistory .inner .ico {
  position: absolute;
  z-index: 1;
  display: flex;
  top: -30px;
  left: -20px;
  user-select: none;
  pointer-events: none;
  transform: scale(0.9);
}
.bigpatienthistory .inner .img-wrp {
  display: flex;
  position: relative;
  width: 35%;
  height: 600px;
}
.bigpatienthistory .inner .img-wrp > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.bigpatienthistory .inner .img-wrp .gallery-wrp {
  position: absolute;
  bottom: 0;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 212px;
}
.bigpatienthistory .inner .img-wrp .gallery-wrp img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}
.bigpatienthistory .inner .txt-wrp {
  width: 65%;
  padding-left: 64px;
  padding-right: 54px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .bigpatienthistory .inner {
    flex-wrap: wrap;
  }
  .bigpatienthistory .inner .txt-wrp {
    padding: 0;
    width: 100%;
  }
  .bigpatienthistory .inner .img-wrp {
    width: 100%;
    height: 400px;
    margin-bottom: 24px;
  }
  .bigpatienthistory .inner .img-wrp .gallery-wrp {
    width: 172px;
  }
  .bigpatienthistory .inner .img-wrp .gallery-wrp img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {}
@media (max-width: 480px) {}