main {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* -------- COMMON COMPONENTS -------- */
.section-title h2 {
  font-size: 24px;
  font-family: "Inter";
  color: #859a8e;
}
.big-title {
  font-size: 64px;
  color: #bbac95;
  font-family: "Poiret One";
}
.more-btn {
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #bbac95;
  border-radius: 200px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.more-btn img {
  position: absolute;
  right: 23px;
  width: 20px;
  height: auto;
}

.side-bar {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-block: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
/* --- Floating btns --- */
.floating {
  position: fixed;
  top: 17px;
  right: 0;
  transition: opacity 0.3s ease;
  display: none;
  z-index: 999;
}
.floating.show {
  display: none;
}
.floating a {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}
.floating a img {
  width: 30px;
}
.floating a:nth-of-type(1) {
  border-top-left-radius: 10px;
}
.floating a:nth-of-type(2) {
  border-bottom-left-radius: 10px;
}

@media (max-width: 768px) {
  .floating.show {
    display: block;
  }
  .side-bar {
    padding: 11px 16px;
  }
}

/* -------- FV -------- */
.fv {
  width: 100%;
  height: 260px;
  background: url("../img/price/price-fv.png") no-repeat center / cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 92px;
  gap: 12px;
}
.fv h1 {
  font-size: 24px;
  color: #ffffff;
}
.fv p {
  font-size: 64px;
  color: #bbac95;
  font-family: "Poiret One";
}

@media (max-width: 1024px) {
  .fv {
    padding-top: 0;
    justify-content: center;
  }
}
@media (max-width: 650px) {
}

/* -------- CLINIC INTRO -------- */
.clinic-intro {
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: 49px;
  padding-block: 56px 98px;
  gap: 89px;
}
.clinic-intro .img-box {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.clinic-intro .img-box img {
  width: 100%;
  height: auto;
}
.clinic-intro .img-box::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 22px;
  background-color: #f3e9e3;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.clinic-intro .txt {
  width: 100%;
  max-width: 571px;
}
.clinic-intro .top {
  font-size: 24px;
  font-weight: bold;
  color: #859a8e;
  margin-bottom: 49px;
}
.clinic-intro .top h2 {
  font-size: 32px;
  font-family: "Zen Old Mincho";
  margin-bottom: 16px;
  color: #606060;
}
.clinic-intro .txt .btm {
  font-size: 20px;
  font-family: "Zen Old Mincho";
}
@media (max-width: 768px) {
  .clinic-intro {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-block: 24px 37px;
    padding-inline: 26px;
  }
  .clinic-intro .top {
    margin-bottom: 25px;
    font-size: 18px;
    text-align: center;
  }
  .clinic-intro .top h2 {
    font-size: 28px;
    margin-bottom: 9px;
  }
  .clinic-intro .txt .btm {
    font-size: 18px;
  }
  .clinic-intro .img-box {
    max-width: 315px;
    margin-bottom: 62px;
  }
  .clinic-intro .img-box::before {
    top: 26px;
    left: 14px;
  }
}
@media (max-width: 375px) {
  .clinic-intro {
    padding-inline: 16px;
  }
}

/* -------- CYCLE DIAGRAM -------- */
.diagram {
  width: 100%;
  position: relative;
  padding-block: 27px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.diagram img {
  width: 100%;
  max-width: 651px;
}
.diagram p {
  font-size: 24px;
  color: #ce9783;
  position: absolute;
  top: 102px;
  right: 109px;
}
@media (max-width: 768px) {
  .diagram {
    gap: 24px;
    padding-inline: 26px;
  }
  .diagram p {
    position: unset;
    font-size: 18px;
  }
  .diagram img {
    max-width: 355px;
  }
}

/* -------- DOCTOR -------- */
.doctor {
  width: 100%;
  background-color: #fbfbfb;
  padding-block: 55px 98px;
  padding-right: 69px;
  display: flex;
  justify-content: flex-end;
  gap: 130px;
}
.doctor .txt {
  width: 100%;
  max-width: 571px;
}
.doctor .txt .section-title {
  margin-bottom: 32px;
}
.doctor .txt .detail {
  font-family: "Zen Old Mincho";
  font-size: 20px;
  margin-bottom: 32px;
}
.doctor .doctor-info {
  font-size: 18px;

  span {
    font-size: 24px;
    margin-left: 8px;
  }
}
.doctor .doctor-info p:nth-of-type(1) {
  margin-bottom: 8px;
}
.doctor .img {
  width: 100%;
  max-width: 500px;
  height: fit-content;
  position: relative;
  z-index: 2;
}
.doctor .img::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 22px;
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 547px;
  background-color: #f3e9e3;
  z-index: -1;
}
.doctor .img img {
  width: 100%;
}
@media (max-width: 1300px) {
  .doctor {
    gap: 39px;
    padding-inline: 26px;
  }
}
@media (max-width: 1024px) {
  .doctor .img {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .doctor {
    flex-direction: column;
    align-items: center;
    padding-block: 50px;
  }
  .doctor .txt .detail {
    font-size: 16px;
    margin-bottom: 0;
  }
  .doctor .img {
    max-width: 315px;
  }
  .doctor .img::before {
    top: 27px;
    left: 14px;
  }
  .doctor .doctor-info {
    text-align: center;
    margin-top: 12px;
  }
  .doctor .doctor-info p:nth-of-type(1) {
    margin-bottom: 0;
  }
}

/* -------- CLINIC DETAIL -------- */
.clinic-detail {
  width: 100%;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 51px;
  padding-block: 61px;
}
.clinic-detail .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.clinic-detail .content .item {
  width: 100%;
  max-width: 1100px;
  padding-block: 24px 42px;
  padding-inline: 50px;
  background-color: #ffffff;
  box-shadow: 0 4px 4px rgba(187, 172, 149, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}
.clinic-detail .content .num {
  display: flex;
  gap: 5px;
}
.clinic-detail .content .num img {
  width: 65px;
}
.clinic-detail .content .num p {
  font-size: 26px;
  font-family: "Zen Old Mincho";
  padding-top: 16px;
}
@media (max-width: 768px) {
  .clinic-detail {
    padding-block: 35px 46px;
    padding-inline: 16px;
    gap: 36px;
  }
  .clinic-detail .content .item {
    padding: 26px 20px;
    gap: 34px;
    font-size: 16px;
  }
  .clinic-detail .content .num {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  .clinic-detail .content .num img {
    margin-bottom: -10px;
  }
  .clinic-detail .content .num p {
    padding-top: 0;
    font-size: 20px;
  }
}
