main {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* -------- COMMON COMPONENTS -------- */
.section-title p {
  font-size: 24px;
  font-weight: bold;
  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;
}
.f-b {
  font-weight: bold !important;
}
.f-m {
  font-weight: 500;
}
.t-s {
  text-align: start !important;
}
.list-dot {
  list-style: disc;
}
.list-num {
  list-style: decimal;
}
.b-b-n {
  border-bottom: none !important;
}
/* --- 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%;
  background-color: #e9a78d;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 51px;
}
.fv img {
  width: 100%;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .fv {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .fv img {
    max-width: 393px;
  }
}

/* -------- INDEX -------- */
.index {
  width: 100%;
  max-width: 1100px;
  background-color: #fbfbfb;
  padding-block: 14px 49px;
}
.index h2 {
  font-size: 64px;
  color: #bbac95;
  font-weight: normal;
  font-family: "Poiret One";
  text-align: center;
  margin-bottom: 22px;
}
.index .item-case {
  width: 100%;
  max-width: 730px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
  column-gap: 20px;
  margin: auto;
}
.index .item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}
.index .item img {
  width: 30px;
}

@media (max-width: 768px) {
  .index {
    padding-block: 14px 32px;
  }
  .index h2 {
    margin-bottom: 31px;
  }
  .index .item-case {
    padding-inline: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .index .item {
    width: 100%;
    max-width: 330px;
  }
}

/* -------- CONTENT-BOX -------- */
.content-box {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 40px 60px;
}

.content-box .content {
  width: 100%;
}
.content-box .content .title {
  color: #859a8e;
  padding: 15px 19px;
  border-left: 10px solid #bbac95;
  margin-bottom: 30px;
  background-color: #fbfbfb;

  h3 {
    font-size: 24px;
  }
}
.content-box .content .img-txt {
  width: 100%;
  display: flex;
  gap: 34px;
}
.content-box .content .img-txt img {
  width: 100%;
  max-width: 554px;
}
.content-box .content .img-txt p {
  font-size: 18px;
}
.content .item-case {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.content .item {
  width: 100%;
}
.content .item-title {
  font-size: 20px;
  font-weight: bold;
  color: #859a8e;
  margin-bottom: 30px;
  padding: 18px 29px;
  border: 1px solid #bbac95;
  border-radius: 10px;
}
.content .item p {
  font-size: 18px;
}
.content ul {
  width: 100%;
  padding-left: 25px;
  text-align: start;
}
.content p {
  font-size: 18px;
}
.content ul li {
  line-height: 30px;
  font-size: 18px;
}
.content .contents-explain {
  font-size: px;
}

@media (max-width: 768px) {
  .content-box {
    gap: 30px;
    padding-bottom: 0;
  }
  .content-box .content {
    padding-inline: 16px;
  }
  .content-box .content .title {
    margin-block: 20px;
    padding: 16px;

    h3 {
      font-size: 22px;
    }
  }
  .content-box .content .img-txt {
    flex-direction: column;
    gap: 30px;
  }
  .content-box .content .img-txt img {
    max-width: 100%;
  }
  .content .item-case {
    gap: 30px;
  }
  .content .item-title {
    padding: 13px 26px;
    margin-block: 20px;
  }
}

/* ---- price-simple table ------- */
.table-box {
  width: 100%;
}
.price-simple {
  width: 100%;
  max-width: 618px;
  border-collapse: collapse;
  margin: auto;
  font-size: 20px;
}

.table-box .table-txt {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  text-align: center;
}

.price-simple th {
  width: 50%;
  background: #bbac95;
  color: #fff;
  padding: 16px;
  font-weight: 500;
  border: 1px solid #ffffff;
}

.price-simple td {
  padding: 18px;
  border: 1px solid #ffffff;
  text-align: center;
}
.price-simple .b-b {
  background-color: #bbac95;
  color: #ffffff;
}
.price-simple .b-r-b {
  border: 1px solid #bbac95;
}

@media (max-width: 768px) {
  .price-simple th {
    padding: 10px;
  }
}

/* ----- NOTES ---- */
.notes {
  width: 100%;
  background-color: #fbfbfb;
  padding: 24px;
  font-size: 18px;
}
.notes p:nth-of-type(1) {
  color: #ff0000;
  font-weight: bold;
}

/* ----- SIDE-EFFECT ---- */
.side-effect {
  width: 100%;
}
.side-effect .title p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.side-effect .side-effect-content {
  width: 100%;
  background-color: #fbfbfb;
  padding: 16px;
  font-size: 14px;
}
.side-effect .side-effect-content ul {
  width: 100%;
  padding-left: 25px;
}
.side-effect .side-effect-content ul li {
  list-style: disc;
}

.content-box .content .img-txt:nth-of-type(2) {
  gap: 60px;
  padding-right: 40px;
  align-items: center;
}
.content-box .content .img-txt:nth-of-type(2) img {
  max-width: 392px;
}

.pill-compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ffffff;
}

.pill-compare th,
.pill-compare td {
  border: 1px solid #ffffff;
  padding: 38px 30px;
  vertical-align: top;
  font-size: 20px;
  vertical-align: middle;
}
.pill-compare td {
  border: 1px solid #bbac95;
}
.pill-compare thead th {
  background: #efb099;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.pill-compare .low-dose {
  background: #efb099;
  color: #ffffff;
  width: 43.9%;
}

.pill-compare .after-pill {
  background: #efb099;
  width: 43.9%;
}

.pill-compare .row-title {
  width: 14%;
  padding-inline: 12px;
  text-align: center;
}

.pill-compare ul {
  margin: 0;
  padding-left: 20px;
}
.pill-compare ul li {
  list-style-type: disc;
}

.pill-compare td {
}

@media (max-width: 768px) {
  .content-box .content .img-txt:nth-of-type(2) {
    padding-right: 0;
  }
  .table-box {
    padding-inline: 16px;
  }
  .price-simple {
    font-size: 18px;
  }
  .notes {
    padding-inline: 16px;
  }
  .side-effect {
    padding-inline: 16px;
  }
  .pill-compare th,
  .pill-compare td {
    padding: 20px 10px;
    font-size: 16px;
  }
  .pill-compare ul li {
    font-size: 16px;
  }
}
