.page-head {
  flex-direction: column-reverse;
}
.page-head .page-header-content {
  max-width: 1400px;
  width: 100%;
  font-size: 38px;
  min-height: 5rem;
  text-align: center;
  margin-top: -5rem;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: -5rem auto 0;
}
@media screen and (max-width: 768px) {
  .page-head .page-header-content {
    width: 100%;
    padding: 25px 15px 0 15px;
  }
}
.page-head .page-header-content h1 {
  padding: 30px 30px 0;
  border-radius: 30px 30px 0 0;
  background-color: #fffbf5;
}
@media screen and (max-width: 768px) {
  .page-head .page-header-content h1 {
    padding: 20px 15px 0;
    font-size: 26px;
  }
}
.page-head .page-header-content h1:after {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .page-head .page-header-content h1:after {
    margin: 10px auto;
  }
}
.page-head .page-header-content .sub {
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-head .page-header-content .sub {
    font-size: 14px;
  }
}
.page-head .banner img {
  object-position: top center;
}
.container {
  max-width: 1140px;
  width: 100%;
  padding: 0 30px;
  margin: 200px auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
.container.reverse {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .container.reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1080px) {
  .container {
    max-width: 1024px;
    padding: 0 30px;
    gap: 30px;
    margin: 140px auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
    flex-direction: column;
    gap: 20px;
    margin: 60px auto;
  }
}
.container .subtitle {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .container .subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .container.first-container {
    margin: 30px auto 60px;
  }
}
.float-image {
  position: absolute;
  top: -30px;
  left: 45%;
  width: 200px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .float-image {
    width: 120px;
    right: 15px;
    left: unset;
  }
}
.flex-row {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
}
.flex-row-reverse {
  display: flex;
  justify-content: right;
}
@media screen and (max-width: 768px) {
  .flex-row-reverse {
    flex-direction: column-reverse;
  }
}
.row {
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .row {
    margin-bottom: 100px;
  }
}
.sec-title {
  flex: 1;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .sec-title {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .sec-title {
    gap: 20px;
  }
}
.sec-title .text {
  padding-left: 40px;
  font-size: 16px;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .sec-title .text {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec-title .text {
    font-size: 14px;
    padding: 0 15px;
  }
}
.chart-container {
  flex: 1;
  aspect-ratio: 1/1;
}
.chart-container .chart-title {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
.image {
  flex: 1;
  border-radius: 30px;
  opacity: 1;
  overflow: hidden;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .image {
    width: 100%;
  }
}
.channel {
  width: 100%;
  max-width: 100%;
  background-color: #ffefdf;
  padding: 200px 30px;
  flex-direction: column;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .channel {
    padding: 60px 15px;
  }
}
.channel .title {
  text-align: center;
}
.channel .title:after {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .channel .title:after {
    margin: 10px auto;
  }
}
.channel .picture {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  .channel .picture {
    flex-direction: column;
  }
}
.channel .picture .image {
  position: relative;
}
.channel .picture .image:last-child {
  flex: 1.5;
  border: 4px solid var(--main-color);
}
@media screen and (max-width: 768px) {
  .channel .picture .image {
    margin: 0 auto;
  }
  .channel .picture .image:first-child {
    width: 75%;
  }
}
.channel .picture .image:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.channel .picture .image .content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.channel .picture .image .content .content-title {
  font-size: 38px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .channel .picture .image .content .content-title {
    font-size: 28px;
  }
}
.channel .picture .image .content .content-list {
  display: flex;
  flex-wrap: wrap;
  width: 250px;
  justify-content: center;
  gap: 10px;
}
.channel .picture .image .content .content-list .content-item {
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 16px 0 10px;
  gap: 6px;
}
.channel .picture .image .content .content-list .content-item i {
  background-color: #00b135;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.channel .picture .image .content .content-list .content-item span {
  font-size: 14px;
  font-weight: 400;
}
.channel .picture .image:hover .scale-img {
  transform: scale(1.1);
}
.channel .picture .image:hover .content .text .btn i {
  transform: translateX(10px);
}
.channel .dosage-list {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .channel .dosage-list {
    margin: 0 auto;
    padding: 0;
  }
}
.channel .dosage-list .dosage {
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fffbf5;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.channel .dosage-list .dosage:hover {
  transform: scale(1.05);
  border: 2px solid var(--main-color);
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage {
    padding: 10px 0;
    gap: 0;
    flex-wrap: wrap;
  }
}
.channel .dosage-list .dosage .ad-pic {
  height: 140px;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage .ad-pic {
    height: 110px;
  }
}
.channel .dosage-list .dosage .ad-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage .ad-text {
    flex: 1;
  }
}
.channel .dosage-list .dosage .ad-text .p1 {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  flex-direction: column;
  color: #000;
}
.channel .dosage-list .dosage .ad-text .p1 .highlight {
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage .ad-text .p1 {
    font-size: 15px;
  }
}
.channel .dosage-list .dosage .ad-text .p2 {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage .ad-text .p2 {
    font-size: 12px;
  }
}
.channel .dosage-list .dosage .ad-btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: var(--main-color);
  color: white;
  padding: 0 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .channel .dosage-list .dosage .ad-btn {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    padding: 6px 14px;
  }
}
.channel .dosage-list .dosage .ad-btn i {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .experience {
    flex-direction: column;
    gap: 30px;
  }
}
.experience .title {
  text-align: center;
}
.experience .title:after {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .experience .title:after {
    margin: 10px auto;
  }
}
.experience .content {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .experience .content {
    flex-direction: column;
    margin-top: 0;
  }
}
.experience .content .present {
  width: 460px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .experience .content .present {
    width: 100%;
    text-align: center;
  }
}
.experience .content .present .text {
  font-size: 16px;
  margin-bottom: 100px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .experience .content .present .text {
    padding: 0 15px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.experience .content .accordion {
  display: flex;
}
@media screen and (max-width: 768px) {
  .experience .content .accordion {
    margin-top: 80px;
    width: 100%;
    justify-content: center;
  }
}
.experience .content .accordion .back {
  width: 120px;
  height: 300px;
  border-radius: 60px;
  transition: all 0.7s ease 0s;
  position: relative;
  object-fit: cover;
  filter: brightness(0.7);
}
@media screen and (max-width: 768px) {
  .experience .content .accordion .back {
    width: 20%;
    height: 200px;
    border-radius: 40px;
  }
}
.experience .content .accordion .back:nth-child(2) {
  margin-top: -60px;
}
.experience .content .accordion .back:nth-child(3) {
  margin-top: 30px;
}
.experience .content .accordion .back:nth-child(4) {
  margin-top: -30px;
}
.experience .content .accordion .back:nth-child(5) {
  margin-top: 15px;
}
.experience .content .accordion .back:hover {
  width: 200px;
  filter: brightness(1);
}
@media screen and (max-width: 768px) {
  .experience .content .accordion .back:hover {
    width: 40%;
  }
}
.experience .news-list {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 40px auto;
  padding: 0 30px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .experience .news-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    padding: 0 15px;
    margin: 30px auto 0;
    gap: 20px;
  }
}
.experience .news-list .subtitle {
  place-self: center;
}
@media screen and (min-width: 768px) {
  .experience .news-list .subtitle {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
  }
}
.news-item {
  width: 320px;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  opacity: 1;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-item {
    width: 100%;
  }
}
.news-item .news-image {
  width: 100%;
  min-height: 150px;
}
.news-item .news-title {
  font-size: 22px;
  font-weight: 500;
  margin: 20px 0;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .news-item .news-title {
    font-size: 18px;
    margin: 15px 0;
  }
}
.news-item .news-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  padding: 0 30px;
  text-align: justify;
}
.news-item .more {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .news-item .more {
    font-size: 14px;
  }
}
.faq-section {
  max-width: 800px;
  width: 100%;
  padding: 0 30px;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 0 15px;
  }
}
.faq-section .title:after {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .faq-section .title:after {
    margin: 10px auto;
  }
}
.faq-section .faq-item {
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid #ffc993;
  overflow: hidden;
  height: var(--collapsed-height, 60px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section .faq-item.open {
  height: var(--expanded-height, auto);
}
.faq-section .faq-item.open .faq-question {
  background-color: #ffe2c5;
  color: #000;
}
.faq-section .faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-section .faq-item .faq-question {
  height: 60px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  background-color: #ffefdf;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-section .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq-section .faq-item .faq-question {
    padding: 0 15px;
  }
}
.faq-section .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 400;
  color: #3d3d3d;
}
@media screen and (max-width: 768px) {
  .faq-section .faq-item .faq-question .question-text {
    font-size: 14px;
  }
}
.faq-section .faq-item .faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: #3d3d3d;
}
.faq-section .faq-item .faq-answer {
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  color: #3d3d3d;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .faq-section .faq-item .faq-answer {
    padding: 15px;
  }
}
.news {
  grid-template-columns: repeat(3, 320px);
  grid-template-rows: auto auto;
  display: grid;
  gap: 0 30px;
  place-content: center;
  margin: 200px auto 0;
}
@media screen and (max-width: 768px) {
  .news {
    margin-bottom: 100px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    background-color: #ffefdf;
    margin: 0;
    padding-bottom: 80px;
  }
}
.news .sec-title {
  width: 80vw;
  padding: 100px 0 300px;
  background-color: #ffefdf;
  border-radius: 30px;
  grid-column: 1 / 4;
  grid-row: 1 / 2;
  place-self: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news .sec-title {
    width: 100%;
    padding: 60px 15px 30px;
    grid-column: 1;
    grid-row: 1;
    background-color: unset;
    border-radius: 0;
  }
}
.news .sec-title .title {
  text-align: center;
}
.news .sec-title .title:after {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .news .sec-title .title:after {
    margin: 10px auto;
  }
}
.news .sec-title .text {
  width: 800px;
  margin: 0 auto;
  padding: 0;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .news .sec-title .text {
    width: 100%;
    font-size: 14px;
  }
}
.news .news-item {
  width: calc(100% - 30px);
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .news .news-item {
    transform: translateY(-50%);
    width: 100%;
  }
}
.title {
  font-size: 52px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 24px;
  }
}
.title:after {
  display: block;
  content: "";
  width: 4rem;
  height: 0.25rem;
  border-radius: 4px;
  background-color: var(--sub-color);
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .title:after {
    margin-top: 10px;
  }
}
.more {
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 22px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .more {
    font-size: 14px;
  }
}
