@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Rowdies:wght@300;400;700&display=swap");
body {
  color: #425f4c;
  font-family: "Noto Sans TC", sans-serif;
  height: 1000px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input,
select,
textarea,
button {
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}

button {
  transition: 0.3s;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/arrow-down.svg);
  background-size: 14px;
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
}

input.datepicker {
  background-image: url(../img/calendar.svg);
  background-size: 18px;
  background-position: calc(100% - 14px) center;
  background-repeat: no-repeat;
}

main {
  overflow: hidden;
  min-height: calc(100vh - 61px);
  padding-top: 258px;
}
@media screen and (max-width: 991px) {
  main {
    padding-top: 64px;
  }
}

p {
  margin: 0;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #425f4c;
  display: block;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  color: #889347;
}
a:hover [class^=icon-]::before,
a:hover [class*=" icon-"]::before {
  color: #889347;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.title {
  font-family: "Rowdies", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #c8d286;
  padding-bottom: 16px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.title::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 2px;
  background-color: #c8d286;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  .title {
    font-size: 24px;
  }
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .subtitle {
    font-size: 14px;
  }
}

.header {
  background-color: #fff;
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
  transition: 0.3s;
}
.header__top {
  position: relative;
  padding: 64px 0;
  width: 100%;
  transition: 0.3s;
}
.header__logo {
  width: 280px;
  margin: 0 auto;
  transition: 0.3s;
}
.header__logo > img {
  width: 100%;
}
.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header__nav > ul > li {
  position: relative;
}
.header__nav > ul > li > ul {
  position: absolute;
  background-color: #fff;
  min-width: 110px;
  top: 100%;
  left: 0;
  padding: 12px 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.header__nav > ul > li > ul a {
  padding: 8px 16px;
  text-align: center;
  color: #bfc0c0;
}
.header__nav > ul > li > ul a:hover, .header__nav > ul > li > ul a.active {
  color: #425f4c;
}
.header__nav > ul > li > ul::before {
  position: absolute;
  content: "";
  height: 4px;
  width: calc(100% - 32px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  background-color: #425f4c;
}
.header__nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.header__nav > ul a {
  position: relative;
  font-weight: 700;
  padding: 20px 0;
}
.header__nav > ul a.active, .header__nav > ul a:hover {
  color: #c8d286;
}
.header__nav > ul a.has-child {
  padding-right: 18px;
}
.header__nav > ul a.has-child::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/arrow-down.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header__func {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 10;
}
.header__menu {
  width: 28px;
  height: 28px;
  position: relative;
}
.header__menu .bar {
  position: absolute;
  width: 88%;
  height: 1.5px;
  background-color: #889347;
  transition: 0.3s;
  left: 50%;
  transform: translateX(-50%);
}
.header__menu .bar-top {
  top: 20%;
}
.header__menu .bar-middle {
  top: calc(50% - 0.5px);
}
.header__menu .bar-bottom {
  top: calc(80% - 1px);
}
.header__menu.active .bar {
  top: 50%;
  left: 50%;
}
.header__menu.active .bar-top, .header__menu.active .bar-middle {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__menu.active .bar-bottom {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-func-item {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
.header-func-item span {
  font-size: 28px;
}
.header-func-item span::before {
  color: #425f4c;
}
.header-searchbar {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid transparent;
  transition: 0.3s;
  width: 28px;
}
.header-searchbar button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-searchbar__input {
  width: 0;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bfc0c0;
}
.header-searchbar__input input {
  height: 100%;
  width: 160px;
  padding: 8px 12px;
}
.header-searchbar__close {
  width: 20px;
  height: 20px;
  padding: 0;
}
.header-searchbar__close span {
  font-size: 12px;
  opacity: 0.8;
  transition: 0.3s;
}
.header-searchbar__close span::before {
  color: #9fa0a0;
}
.header-searchbar__close:hover span {
  opacity: 1;
}
.header-searchbar__search {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-searchbar__search span {
  font-size: 24px;
}
.header-searchbar__search:hover span::before {
  color: #c8d286;
}
.header.searching .header-searchbar {
  border-color: #fff;
  width: 278px;
}
.header.searching .header-searchbar__input {
  width: 230px;
}
.header.searching .header-nav__list {
  opacity: 0;
  visibility: hidden;
}
.header.scrolldown {
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
}
.header.scrolldown .header__top {
  padding: 12px 0;
  position: static;
  width: -moz-fit-content;
  width: fit-content;
}
.header.scrolldown .header__logo {
  width: 120px;
}
.header.scrolldown .header__func {
  right: 32px;
}
.header-account {
  cursor: pointer;
}
.header-account:hover .header-account-nav {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.header-account-nav {
  position: absolute;
  width: 160px;
  top: 100%;
  right: 0;
  z-index: 5;
  padding-top: 8px;
  transition: 0.3s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.header-account-nav ul {
  background-color: #efefe6;
}
.header-account-nav a {
  display: block;
  padding: 8px 16px;
}
@media screen and (max-width: 991px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header__top {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    width: 120px;
    margin: 0;
  }
  .header__nav {
    position: fixed;
    background-color: #fff;
    right: 0;
    max-width: 400px;
    width: 100%;
    transition: 0.3s;
    right: -450px;
    top: 64px;
  }
  .header__nav > ul {
    display: block;
  }
  .header__nav > ul a {
    padding: 12px 40px;
  }
  .header__nav > ul a::after {
    width: 0;
    height: 1px;
    top: 50%;
    left: -40px;
  }
  .header__nav > ul a.active::after, .header__nav > ul a:hover::after {
    width: 60px;
    height: 1px;
  }
  .header__nav > ul a.has-child::before {
    right: 40px;
    transition: 0.3s;
  }
  .header__nav > ul a.has-child.dropdown::before {
    transform: translateY(-50%) rotate(180deg);
  }
  .header__nav > ul > li > ul {
    position: relative;
    top: inherit;
    left: inherit;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    transition: none;
    background-color: #efefe6;
  }
  .header__nav > ul > li > ul::before {
    height: 2px;
    width: 100%;
    border-radius: 0;
  }
  .header__nav > ul > li > ul a {
    text-align: left;
    padding-left: 48px;
    padding-right: 48px;
  }
  .header__nav.active {
    right: 0;
  }
  .header__func {
    gap: 8px;
    position: static;
    transform: none;
  }
  .header-func-item p {
    display: none;
  }
  .header-searchbar__input {
    position: fixed;
    width: 100%;
    left: 0;
    top: 64px;
    padding: 12px 20px;
    background-color: #efefe6;
    display: none;
    transition: none;
  }
  .header-searchbar__search.dropdown span::before {
    color: #c8d286;
  }
}
@media screen and (max-width: 575px) {
  .header__logo {
    width: 110px;
  }
}

.footer {
  padding: 60px 0 100px;
  background-color: #fff;
  border-top: 12px solid #c8d286;
}
.footer .container {
  max-width: 1700px;
}
.footer-col {
  text-align: center;
}
.footer-title {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
}
.footer-logo {
  margin: 75px auto 0;
  width: 330px;
  display: block;
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 60px 0 50px;
    border-width: 6px;
  }
  .footer-col {
    margin-bottom: 40px;
  }
  .footer-title {
    margin-bottom: 16px;
    font-size: 24px;
  }
  .footer-logo {
    margin: 16px auto 0;
    width: 160px;
  }
}

.contact-list * {
  font-weight: 500;
  line-height: 1.8;
}
.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.contact-social span {
  font-size: 40px;
}
.contact-social span::before {
  color: #425f4c;
}
@media screen and (max-width: 991px) {
  .contact-list * {
    font-size: 14px;
  }
  .contact-social {
    margin-top: 16px;
  }
  .contact-social span {
    font-size: 32px;
  }
}

.title-common {
  margin: 0 auto 60px;
  font-weight: 700;
  color: #425f4c;
  font-size: 40px;
  padding: 0 60px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.title-common::before, .title-common::after {
  position: absolute;
  font-size: 40px;
  font-weight: 700;
  color: #425f4c;
  top: 50%;
  transform: translateY(-50%);
}
.title-common::before {
  content: "[";
  left: 0;
}
.title-common::after {
  content: "]";
  right: 0;
}
@media screen and (max-width: 991px) {
  .title-common {
    font-size: 40px;
    padding: 0 40px;
    margin-bottom: 32px;
  }
  .title-common::before, .title-common::after {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .title-common {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .title-common::before, .title-common::after {
    font-size: 28px;
  }
}

.text-common {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .text-common {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .text-common {
    font-size: 15px;
  }
}

.slider-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c8d286;
}
.slider-btn span {
  font-size: 24px;
}
.slider-btn:hover {
  background-color: #425f4c;
  border-color: #425f4c;
}
.slider-btn.swiper-button-disabled {
  background-color: #dcdddd;
}

.breadcrumb {
  padding: 24px 0;
  background-color: #efefe6;
}
.breadcrumb-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb a {
  color: #5d9365;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.breadcrumb a.active {
  color: #727171;
}
.breadcrumb li {
  padding-right: 54px;
  position: relative;
}
.breadcrumb li::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 22px;
  background-image: url(../img/arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}
.breadcrumb li:last-child {
  padding-right: 0;
}
.breadcrumb li:last-child:after {
  display: none;
}
@media screen and (max-width: 991px) {
  .breadcrumb {
    padding: 12px 0;
  }
  .breadcrumb a {
    font-size: 16px;
  }
  .breadcrumb li {
    padding-right: 28px;
  }
  .breadcrumb li::after {
    width: 6px;
    height: 12px;
    right: 11px;
  }
}

.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.pagination a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #c8d286;
}
.pagination a.active {
  background-color: #c8d286;
  color: #fff;
}
.pagination a:hover {
  opacity: 0.6;
}
.pagination > ul {
  display: flex;
}
.pagination_arrow span {
  font-size: 12px;
}
.pagination_arrow span::before {
  color: #889347;
}

.btn-fixed {
  position: fixed;
  right: 96px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background-color: #425f4c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 20;
}
.btn-fixed:hover {
  background-color: #c8d286;
}
.btn-fixed span {
  font-size: 64px;
}
.btn-fixed span::before {
  color: #fff;
}
.btn-fixed p {
  font-size: 18px;
  margin: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 1700px) {
  .btn-fixed {
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 24px;
  }
  .btn-fixed span {
    font-size: 48px;
  }
  .btn-fixed p {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 992px) {
  .btn-fixed {
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
  .btn-fixed span {
    font-size: 32px;
  }
  .btn-fixed p {
    font-size: 8px;
  }
}

.intro-section {
  padding-top: 120px;
  position: relative;
}
.intro-section .title-common {
  margin-bottom: 28px;
}
.intro-section .title {
  font-size: 52px;
  margin-bottom: 68px;
  padding: 0;
}
.intro-section .title::after {
  display: none;
}
.intro-section::before, .intro-section::after {
  position: absolute;
  content: "";
  width: 2px;
  transform: rotate(33deg);
  background-color: #425f4c;
  transform-origin: center;
}
.intro-section::before {
  top: 0;
  right: 9%;
  height: 494px;
}
.intro-section::after {
  top: 172px;
  left: 9%;
  height: 270px;
}
.intro-section.bottom {
  padding-bottom: 112px;
}
.intro-section.no-decoration::before, .intro-section.no-decoration::after {
  display: none;
}
@media screen and (max-width: 1700px) {
  .intro-section::before {
    right: 0;
  }
  .intro-section::after {
    left: 4%;
  }
}
@media screen and (max-width: 991px) {
  .intro-section {
    padding-top: 60px;
  }
  .intro-section .title-common {
    margin-bottom: 20px;
  }
  .intro-section .title {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .intro-section::before, .intro-section::after {
    display: none;
  }
  .intro-section.bottom {
    padding-bottom: 64px;
  }
}

.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  padding-top: 54px;
}
@media screen and (max-width: 991px) {
  .page-title {
    font-size: 24px;
    padding-top: 28px;
  }
}

.btn-alert {
  color: #d90c0c;
}
.btn-fill {
  background-color: #425f4c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #425f4c;
  font-size: 20px;
}
.btn-fill:hover {
  border-color: #c8d286;
  background-color: #c8d286;
  color: #425f4c;
}
.btn-border {
  color: #c8d286;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #425f4c;
  font-size: 20px;
}
.btn-border:hover {
  border-color: #c8d286;
  background-color: #c8d286;
  color: #425f4c;
}

.check-list {
  background-color: #c8d286;
  padding: 32px 0;
}
.check-list .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.check-list__item {
  padding-left: 44px;
  position: relative;
  color: #425f4c;
  font-size: 22px;
}
.check-list__item::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/check-green.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .check-list {
    padding: 12px 0;
  }
  .check-list .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .check-list__item {
    font-size: 14px;
    padding-left: 24px;
  }
  .check-list__item::before {
    width: 16px;
    height: 16px;
  }
}

.science {
  padding: 60px 0 145px;
}
.science .row {
  margin-top: 52px;
}
.science-item {
  text-align: center;
}
.science-item__pic {
  width: 205px;
  margin: 0 auto 40px;
}
.science-item__title {
  font-size: 18px;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.science-item__title::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 2px;
  background-color: #c8d286;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.science-item__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 991px) {
  .science-item {
    margin-bottom: 40px;
  }
  .science-item__pic {
    margin-bottom: 20px;
  }
  .science-item__title {
    margin-bottom: 16px;
  }
}

.home-about {
  padding: 80px 0;
  background-color: #425f4c;
  color: #fff;
}
.home-about .container {
  display: flex;
  margin-bottom: 90px;
}
.home-about-pic {
  width: 40%;
  position: relative;
}
.home-about-pic > img {
  width: 100%;
}
.home-about-logo {
  width: 136px;
  margin-right: 36px;
}
.home-about-text {
  width: 60%;
}
.home-about-text__slogan {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #c8d286;
}
.home-about-text__main {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.home-about-text__intro {
  line-height: 1.9;
  font-size: 15px;
}
.home-about-text__content {
  padding-left: 36px;
  border-left: 1px solid #c8d286;
}
.home-about-text__content .title {
  padding-bottom: 0;
  text-align: left;
  margin-bottom: 20px;
}
.home-about-text__content .title::after {
  display: none;
}
.home-about-btn {
  width: 250px;
  height: 60px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.home-about-btn:hover {
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .home-about .container {
    flex-direction: column;
    margin-bottom: 45px;
  }
  .home-about-pic {
    width: 100%;
    order: 1;
  }
  .home-about-logo {
    width: 70px;
    margin: 0 0 20px;
  }
  .home-about-text {
    padding: 20px 0 0;
    order: 2;
    width: 100%;
  }
  .home-about-text__slogan {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .home-about-text__main {
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .home-about-text__intro {
    font-size: 14px;
  }
  .home-about-text__content {
    padding: 0;
    border: 0;
  }
  .home-about-text__content .title {
    margin-bottom: 12px;
  }
  .home-about-btn {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }
}

.home-product {
  padding: 88px 0 132px;
}
.home-product .container {
  position: relative;
}
.home-product-main__swiper {
  overflow: hidden;
  margin-top: 16px;
}
.home-product-link {
  display: block;
}
.home-product-link__title {
  margin-bottom: 16px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.home-product-link__price {
  font-size: 16px;
  margin-bottom: 0;
  transition: 0.3s;
}
.home-product-link__origin {
  font-size: 16px;
  color: #c8d286;
  margin: 0;
  text-decoration: line-through;
  transition: 0.3s;
}
.home-product-link__pic {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
  margin-bottom: 28px;
}
.home-product-link__pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.home-product-link:hover .home-product-link__title, .home-product-link:hover .home-product-link__price, .home-product-link:hover .home-product-link__origin {
  color: #7b9b87;
}
.home-product-btns button {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.home-product-btns button.home-product-prev {
  left: 0;
}
.home-product-btns button.home-product-next {
  right: 0;
}
.home-product-btns button:hover {
  background-color: #425f4c;
  border-color: #425f4c;
}
@media screen and (max-width: 991px) {
  .home-product .container {
    padding: 0;
  }
  .home-product-main__swiper {
    padding-left: 20px;
  }
  .home-product-btns {
    display: none;
  }
  .home-product-link__price {
    font-size: 16px;
  }
  .home-product-link__origin {
    font-size: 16px;
  }
  .home-product-link__pic {
    margin-bottom: 16px;
  }
  .home-product-link:hover .home-product-link__title, .home-product-link:hover .home-product-link__price, .home-product-link:hover .home-product-link__origin {
    color: #7b9b87;
  }
}

.reward {
  padding-bottom: 88px;
}
.reward .row {
  margin-left: -30px;
  margin-right: -30px;
}
.reward .row > div {
  padding-left: 30px;
  padding-right: 30px;
}
.reward-item {
  text-align: center;
  border: 1px solid #425f4c;
  border-radius: 12px;
  padding-right: 16px;
  padding-bottom: 16px;
  background-color: #425f4c;
  height: 100%;
}
.reward-item__wrapper {
  border-radius: 12px;
  background-color: #fff;
  padding: 40px 20px 68px;
  height: 100%;
}
.reward-item__pic {
  width: 250px;
  margin: 0 auto 32px;
}
.reward-item__title {
  font-size: 42px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.reward-item__title::after {
  position: absolute;
  content: "";
  width: 112px;
  height: 3px;
  border-radius: 3px;
  background-color: #425f4c;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.reward-item__text {
  margin: 0;
  font-size: 42px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .reward {
    padding-bottom: 44px;
  }
  .reward-item {
    padding-right: 8px;
    padding-bottom: 8px;
    margin-bottom: 40px;
    height: auto;
  }
  .reward-item__wrapper {
    padding: 20px 16px 32px;
    height: auto;
  }
  .reward-item__pic {
    width: 160px;
    margin: 0 auto 16px;
  }
  .reward-item__title {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .reward-item__title::after {
    width: 60px;
    height: 2px;
  }
  .reward-item__text {
    font-size: 24px;
  }
}

.slogan {
  padding: 180px 20px 160px;
  background-color: #425f4c;
  display: flex;
  justify-content: center;
  background-image: url(../img/slogan-bg-1.svg), url(../img/slogan-bg-2.svg);
  background-size: 17%, 20%;
  background-position: -1% center, 80% 0;
  background-repeat: no-repeat, no-repeat;
  margin-bottom: 152px;
}
.slogan__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 10vw;
}
.slogan-text {
  width: -moz-fit-content;
  width: fit-content;
}
.slogan-text__title {
  color: #c8d286;
  font-family: "Rowdies", sans-serif;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 60px;
}
.slogan-text__list li {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding-left: 60px;
  position: relative;
}
.slogan-text__list li::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.slogan-pic {
  width: 156px;
}
@media screen and (max-width: 1600px) {
  .slogan {
    background-size: 12%, 15%;
    background-position: -1% center, 85% 0;
  }
}
@media screen and (max-width: 1399px) {
  .slogan {
    background-image: none;
  }
  .slogan__wrapper {
    gap: 32px;
  }
  .slogan-pic {
    width: 120px;
  }
}
@media screen and (max-width: 991px) {
  .slogan {
    padding: 100px 20px 80px;
    margin-bottom: 80px;
  }
  .slogan__wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    position: relative;
  }
  .slogan-text {
    width: -moz-fit-content;
    width: fit-content;
  }
  .slogan-text__title {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .slogan-text__list li {
    font-size: 24px;
    margin-top: 12px;
    padding-left: 50px;
  }
  .slogan-text__list li::before {
    width: 24px;
    height: 24px;
  }
  .slogan-pic {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .slogan-text__title {
    font-size: 28px;
  }
  .slogan-text__list li {
    font-size: 18px;
    padding-left: 40px;
  }
  .slogan-text__list li::before {
    width: 20px;
    height: 20px;
  }
  .slogan-pic {
    width: 80px;
  }
}

.qrcode {
  padding-top: 22vw;
  padding-bottom: 12vw;
  background-color: #ccd7be;
  background-image: url(../img/line-banner.webp);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.qrcode__wrapper {
  max-width: 900px;
  width: calc(100% - 40px);
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 110px 40px;
  text-align: center;
}
.qrcode-img {
  width: 220px;
  margin: 0 auto 32px;
}
.qrcode-title {
  color: #333333;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}
.qrcode-text {
  margin: 0;
  color: #333333;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  .qrcode__wrapper {
    padding: 40px 20px;
  }
  .qrcode-img {
    width: 140px;
  }
  .qrcode-title {
    font-size: 20px;
  }
  .qrcode-text {
    font-size: 14px;
  }
}

.contact-info {
  padding: 68px 20px 225px;
  text-align: center;
}
.contact-info__logo {
  width: 350px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 991px) {
  .contact-info {
    padding: 36px 20px 110px;
  }
  .contact-info__logo {
    width: 160px;
    margin-bottom: 28px;
  }
  .contact-info .contact-social {
    justify-content: center;
  }
}

.about-concept {
  position: relative;
  z-index: 0;
  padding-top: 80px;
}
.about-concept .container {
  max-width: 1600px;
}
.about-concept-bg {
  position: absolute;
  width: 70%;
  height: calc((100% - 214px - 80px) * 0.84);
  background-color: #425f4c;
  z-index: -1;
  top: 294px;
  right: 0;
}
.about-concept-wrapper {
  display: flex;
  margin-bottom: 88px;
  position: relative;
}
.about-concept-logo {
  position: absolute;
  width: 18%;
  top: 42%;
  right: 2%;
}
.about-concept-pic {
  width: 45%;
}
.about-concept-pic img {
  width: 100%;
}
.about-concept-text {
  width: 55%;
  padding-left: 116px;
}
.about-concept-text p {
  font-size: 15px;
  margin: 0;
  color: #fff;
  font-weight: 100;
  line-height: 2;
}
.about-concept-title {
  margin-bottom: 112px;
}
.about-concept-title__ch {
  color: #425f4c;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 44px;
}
.about-concept-title__en {
  font-family: "Rowdies", sans-serif;
  font-size: 72px;
  color: #c8d286;
  margin-bottom: 88px;
}
.about-concept-title__slogan {
  font-family: "Rowdies", sans-serif;
  font-size: 72px;
  color: #fff;
  margin-bottom: 80px;
  margin-left: -290px;
}
.about-concept-bigpic {
  width: 88%;
}
.about-concept-subtitle {
  font-weight: 100;
  color: #c8d286;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0;
}
.about-concept-intro {
  width: 70%;
}
.about-concept-intro .about-concept-subtitle {
  margin-bottom: 32px;
}
.about-concept-intro hr {
  border-top: 0.5px solid #fff;
  opacity: 1;
  margin: 20px 0;
}
.about-concept-feature {
  margin-bottom: 28px;
}
@media screen and (max-width: 991px) {
  .about-concept {
    background-color: #425f4c;
  }
  .about-concept-bg {
    display: none;
  }
  .about-concept-wrapper {
    margin-bottom: 44px;
    flex-direction: column;
    gap: 24px;
  }
  .about-concept-logo {
    position: absolute;
    width: 18%;
    top: 3%;
    right: 2%;
  }
  .about-concept-pic {
    width: 100%;
    order: 2;
  }
  .about-concept-text {
    width: 100%;
    padding: 0;
    order: 1;
  }
  .about-concept-title {
    margin-bottom: 52px;
  }
  .about-concept-title__ch {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .about-concept-title__en {
    font-size: 40px;
    margin-bottom: 32px;
  }
  .about-concept-title__slogan {
    font-size: 40px;
    margin-bottom: 24px;
    margin-left: 0;
  }
  .about-concept-bigpic {
    width: 100%;
  }
  .about-concept-subtitle {
    font-size: 20px;
  }
  .about-concept-intro {
    width: 100%;
  }
  .about-concept-intro .about-concept-subtitle {
    margin-bottom: 16px;
  }
  .about-concept-intro hr {
    margin: 12px 0;
  }
  .about-concept-feature {
    margin-bottom: 12px;
  }
}
.about-intro {
  text-align: center;
  padding: 172px 0;
  position: relative;
}
.about-intro__logo {
  width: 270px;
  margin: 0 auto 72px;
}
.about-intro__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-bottom: 148px;
}
.about-intro__highlight {
  max-width: 720px;
  margin: 0 auto 52px;
  padding: 0 60px;
  font-size: 28px;
  font-weight: 100;
  line-height: 2.1;
  letter-spacing: 0.2em;
  position: relative;
}
.about-intro__highlight::before, .about-intro__highlight::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 88px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-intro__highlight::before {
  background-image: url(../img/quote-left.svg);
  left: 0;
}
.about-intro__highlight::after {
  background-image: url(../img/quote-right.svg);
  right: 0;
}
.about-intro__text {
  font-size: 21px;
  font-weight: 100;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
  color: #b28247;
}
.about-intro::before, .about-intro::after {
  position: absolute;
  content: "";
  width: 2px;
  transform: rotate(33deg);
  background-color: #425f4c;
  transform-origin: center;
}
.about-intro::before {
  top: -22%;
  right: 9%;
  height: 660px;
}
.about-intro::after {
  top: 172px;
  left: 9%;
  height: 460px;
}
@media screen and (max-width: 1199px) {
  .about-intro {
    padding: 80px 0;
  }
  .about-intro__logo {
    width: 140px;
    margin: 0 auto 36px;
  }
  .about-intro__title {
    font-size: 24px;
    margin-bottom: 72px;
  }
  .about-intro__highlight {
    margin: 0 auto 24px;
    padding: 0 32px;
    font-size: 20px;
  }
  .about-intro__highlight::before, .about-intro__highlight::after {
    width: 20px;
    height: 55px;
  }
  .about-intro__text {
    font-size: 16px;
  }
  .about-intro::before, .about-intro::after {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .about-intro__logo {
    width: 120px;
    margin: 0 auto 20px;
  }
  .about-intro__title {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .about-intro__highlight {
    margin: 0 auto 16px;
    font-size: 18px;
  }
}
.about-feat-wrapper {
  margin-bottom: 132px;
  position: relative;
  display: flex;
  align-items: center;
}
.about-feat-pic {
  width: 30%;
}
.about-feat-pic img {
  width: 100%;
}
.about-feat-text {
  width: 70%;
  padding-left: 84px;
  display: flex;
  gap: 72px;
}
.about-feat-text__title {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.2em;
  width: 180px;
}
.about-feat-text__en {
  position: absolute;
  color: #c8d286;
  font-family: "Rowdies", sans-serif;
  top: 0;
  left: 20%;
  transform: translateY(-70%);
  font-size: 60px;
}
.about-feat-text__intro {
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 2;
  width: calc(100% - 180px - 72px);
}
@media screen and (max-width: 1399px) {
  .about-feat-text {
    flex-direction: column;
    gap: 12px;
  }
  .about-feat-text__title {
    width: 100%;
    margin: 0;
  }
  .about-feat-text__intro {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .about-feat-wrapper {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 20px;
  }
  .about-feat-pic {
    width: 100%;
  }
  .about-feat-text {
    width: 100%;
    padding-left: 0;
  }
  .about-feat-text__title {
    font-size: 24px;
    width: 100%;
  }
  .about-feat-text__en {
    position: static;
    transform: none;
    font-size: 14px;
    margin-bottom: 0;
  }
  .about-feat-text__intro {
    font-size: 16px;
    width: 100%;
  }
  .about-feat-text__intro br {
    display: none;
  }
}
.about-slogan {
  padding: 72px 20px;
  background-color: #425f4c;
  text-align: center;
  font-size: 50px;
  font-family: "Rowdies", sans-serif;
  color: #c8d286;
}
@media screen and (max-width: 575px) {
  .about-slogan {
    padding: 36px 20px;
    font-size: 24px;
  }
}
.about-checklist {
  padding: 68px 20px 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
}
.about-checklist li {
  position: relative;
  padding-left: 48px;
  color: #425f4c;
  font-size: 30px;
  font-weight: 700;
}
.about-checklist li::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background-image: url(../img/check-green.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .about-checklist {
    padding: 32px 20px 44px;
    flex-direction: column;
    gap: 12px;
  }
  .about-checklist li {
    font-size: 20px;
    padding-left: 32px;
  }
  .about-checklist li::before {
    width: 24px;
    height: 24px;
  }
}

.promise-section {
  padding: 136px 0;
}
@media screen and (max-width: 767px) {
  .promise-section {
    padding: 64px 0;
  }
}
.promise-gallery .row {
  margin: 0;
}
.promise-gallery .row > div {
  padding: 0;
}
.promise-gallery-item {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
}
.promise-gallery-item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.promise-nutritionist .container {
  max-width: 1280px;
}
.promise-nutritionist__wrapper {
  display: flex;
  position: relative;
}
.promise-nutritionist__wrapper::after {
  position: absolute;
  content: "";
  height: 9px;
  width: 100%;
  border-radius: 10px;
  background-color: #425f4c;
  left: 0;
  bottom: 0;
}
.promise-nutritionist-pic {
  width: 38%;
  position: relative;
}
.promise-nutritionist-pic > img {
  width: 100%;
}
.promise-nutritionist-text {
  width: 62%;
  padding-top: 48px;
  padding-left: 40px;
  position: relative;
}
.promise-nutritionist-text__logo {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .promise-nutritionist__wrapper {
    flex-direction: column;
  }
  .promise-nutritionist__wrapper::after {
    height: 4px;
  }
  .promise-nutritionist-pic {
    width: 100%;
  }
  .promise-nutritionist-pic > img {
    width: 60%;
    margin: 0 auto;
  }
  .promise-nutritionist-text {
    width: 100%;
    padding: 48px 0 0;
  }
  .promise-nutritionist-text__logo {
    position: static;
    margin: 32px 0 0 auto;
    width: 40%;
  }
}
.promise-prize {
  padding: 88px 0 132px;
}
.promise-prize .title-common {
  margin-bottom: 112px;
}
.promise-prize-main {
  position: relative;
  padding: 0 120px;
}
.promise-prize-main__swiper {
  overflow: hidden;
}
.promise-prize-pic {
  width: 100%;
  border: 3px solid #425f4c;
}
.promise-prize-pic > img {
  width: 100%;
}
.promise-prize-btns button {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.promise-prize-btns button.promise-prize-prev {
  left: 0;
}
.promise-prize-btns button.promise-prize-next {
  right: 0;
}
@media screen and (max-width: 991px) {
  .promise-prize .container {
    padding: 0;
  }
  .promise-prize .title-common {
    margin-bottom: 48px;
  }
  .promise-prize-main {
    padding: 0;
  }
  .promise-prize-main__swiper {
    padding-left: 20px;
  }
  .promise-prize-btns {
    display: none;
  }
}

.product-list {
  padding: 240px 0 64px;
}
.product-list .title {
  color: #fff;
}
.product-list .row {
  margin-left: -42px;
  margin-right: -42px;
}
.product-list .row > div {
  padding-left: 42px;
  padding-right: 42px;
}
.product-list_item {
  display: block;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
.product-list_tag {
  padding: 8px 12px;
  background-color: #c8d286;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.product-list_pic {
  width: 100%;
  padding-bottom: 108%;
  position: relative;
  margin-bottom: 16px;
}
.product-list_pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.product-list_pic::after, .product-list_pic::before {
  position: absolute;
  content: "";
  width: 75%;
  height: 84%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.product-list_pic::before {
  background-image: url(../img/product-decoration-1.svg);
  top: -1.5%;
  left: -1.5%;
}
.product-list_pic::after {
  background-image: url(../img/product-decoration-2.svg);
  right: -1.5%;
  bottom: -1.5%;
}
.product-list_title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-list_price, .product-list_origin {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.5;
}
.product-list_origin {
  color: #c8d286;
  text-decoration: line-through;
}
@media screen and (max-width: 991px) {
  .product-list {
    padding: 120px 0 40px;
  }
  .product-list_item {
    margin-bottom: 40px;
  }
  .product-list_tag {
    padding: 4px 8px 4px 12px;
    font-size: 14px;
  }
  .product-list .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .product-list .row > div {
    padding-left: 10px;
    padding-right: 10px;
  }
  .product-list_title {
    font-size: 20px;
  }
  .product-list_price, .product-list_origin {
    font-size: 18px;
  }
}

.product-detail {
  padding: 88px 0;
}
.product-detail .container > .row {
  margin-left: -25px;
  margin-right: -25px;
  align-items: center;
}
.product-detail .container > .row > div {
  padding-left: 25px;
  padding-right: 25px;
}
.product-detail_pic {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail_side {
  width: 100px;
  height: 100%;
  overflow: hidden;
}
.product-detail_side .swiper-slide {
  height: auto !important;
  cursor: pointer;
}
.product-detail_side_item {
  position: relative;
  width: 100%;
  padding-bottom: 130%;
}
.product-detail_side_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.product-detail_swiper {
  width: calc(100% - 100px - 12px);
  overflow: hidden;
  position: relative;
}
.product-detail_swiper_item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.product-detail_swiper_item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.product-detail_swiper .swiper-pagination {
  bottom: 0;
  display: none;
}
.product-detail_swiper .swiper-pagination-bullet {
  background-color: #efefe6;
  opacity: 1;
}
.product-detail_swiper .swiper-pagination-bullet-active {
  background-color: #7b9b87;
}
.product-detail_title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 24px;
}
.product-detail_intro {
  margin-bottom: 32px;
  text-align: justify;
  color: #595757;
  font-size: 15px;
  line-height: 1.7;
}
.product-detail_price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 116px;
}
.product-detail_price_current {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}
.product-detail_price_origin {
  font-size: 22px;
  color: #b5b5b6;
  margin: 0;
  text-decoration: line-through;
}
.product-detail_btn {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2em;
  background-color: #425f4c;
  width: 325px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail_btn:hover {
  background-color: #c8d286;
}
@media screen and (max-width: 991px) {
  .product-detail_pic {
    margin-bottom: 40px;
  }
  .product-detail_side {
    display: none;
  }
  .product-detail_swiper {
    width: 100%;
    padding-bottom: 24px;
  }
  .product-detail_swiper .swiper-pagination {
    display: block;
  }
  .product-detail_title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .product-detail_intro {
    margin-bottom: 20px;
  }
  .product-detail_price {
    margin-bottom: 56px;
  }
  .product-detail_price_current {
    font-size: 20px;
  }
  .product-detail_price_origin {
    font-size: 16px;
  }
  .product-detail_btn {
    font-size: 16px;
    width: 100%;
  }
}

.product-description__title {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #425f4c;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.product-description__wrapper {
  padding: 148px 20px 220px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.product-description__wrapper > img {
  width: 100%;
}

.related-product {
  padding: 48px 0 120px;
  background-color: #efefe6;
}
.related-product__title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 76px;
}
.related-product .product-list_item {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .related-product {
    padding: 40px 0 60px;
  }
  .related-product__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .related-product .product-list_item {
    margin-bottom: 24px;
  }
}

.knowledge-date {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #c8d286;
}
@media screen and (max-width: 991px) {
  .knowledge-date {
    font-size: 14px;
    padding-bottom: 4px;
  }
}

.knowledge-list {
  padding-top: 76px;
  padding-bottom: 64px;
}
.knowledge-list__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 52px;
}
.knowledge-list .title {
  text-align: left;
  font-size: 72px;
  padding: 0;
  margin-bottom: 16px;
}
.knowledge-list .title::after {
  display: none;
}
.knowledge-list__wrapper {
  display: flex;
  align-items: flex-start;
  padding: 72px 0;
  border-bottom: 1px solid #425f4c;
}
.knowledge-list__wrapper:last-child {
  border: 0;
}
.knowledge-list__wrapper:nth-child(even) .knowledge-list-text {
  padding-left: 120px;
}
.knowledge-list__wrapper:nth-child(even) .knowledge-list-pic {
  border-radius: 156px 0 0 156px;
}
.knowledge-list__wrapper:nth-child(odd) .knowledge-list-pic {
  order: 2;
  border-radius: 0 156px 156px 0;
}
.knowledge-list__wrapper:nth-child(odd) .knowledge-list-text {
  order: 1;
  padding-right: 120px;
}
.knowledge-list-pic {
  width: 45%;
  position: relative;
  padding-bottom: 25.2%;
  overflow: hidden;
}
.knowledge-list-pic > img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.knowledge-list-text {
  width: 55%;
}
.knowledge-list-text__title {
  margin-bottom: 48px;
  font-size: 36px;
  font-weight: 900;
}
.knowledge-list-text__intro {
  font-size: 20px;
  font-weight: 100;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 44px;
}
@media screen and (max-width: 991px) {
  .knowledge-list {
    padding-top: 36px;
  }
  .knowledge-list__title {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .knowledge-list .title {
    font-size: 48px;
  }
  .knowledge-list__wrapper {
    flex-direction: column;
    padding: 40px 0;
  }
  .knowledge-list__wrapper:nth-child(odd) .knowledge-list-pic {
    order: 1;
  }
  .knowledge-list__wrapper:nth-child(odd) .knowledge-list-text {
    order: 2;
  }
  .knowledge-list-pic {
    width: 100%;
    padding-bottom: 56%;
    border-radius: 60px !important;
  }
  .knowledge-list-text {
    width: 100%;
    padding: 24px 0 0 !important;
  }
  .knowledge-list-text__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .knowledge-list-text__intro {
    font-size: 16px;
  }
}

.knowledge-detail {
  padding-top: 72px;
  padding-bottom: 124px;
}
.knowledge-detail__title {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
}
.knowledge-detail .knowledge-date {
  margin: 0 auto 72px;
}
.knowledge-detail__wrapper {
  display: flex;
}
.knowledge-detail-content {
  width: calc(100% - 300px);
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.075em;
  padding-right: 20px;
}
.knowledge-detail-content ul li {
  position: relative;
  padding-left: 24px;
}
.knowledge-detail-content ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/list-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.knowledge-detail-side {
  width: 300px;
  padding-left: 72px;
  border-left: 1px solid #425f4c;
}
.knowledge-detail-side h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 28px;
}
.knowledge-detail-side ul a {
  font-size: 24px;
  font-weight: 500;
}
.knowledge-detail-side ul a .num {
  color: #c8d286;
}
@media screen and (max-width: 991px) {
  .knowledge-detail {
    padding-top: 36px;
    padding-bottom: 64px;
  }
  .knowledge-detail__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .knowledge-detail .knowledge-date {
    margin: 0 auto 36px;
  }
  .knowledge-detail__wrapper {
    flex-direction: column;
  }
  .knowledge-detail-content {
    width: 100%;
    font-size: 16px;
    padding: 0;
    padding-bottom: 40px;
  }
  .knowledge-detail-content ul li {
    padding-left: 16px;
  }
  .knowledge-detail-content ul li::before {
    width: 12px;
    height: 12px;
  }
  .knowledge-detail-side {
    width: 100%;
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid #425f4c;
  }
  .knowledge-detail-side h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .knowledge-detail-side ul a {
    font-size: 18px;
  }
}

.membership-table {
  position: relative;
}
.membership-table table {
  width: 100%;
  overflow: hidden;
  border-collapse: inherit;
  border-spacing: 24px 0;
}
.membership-table table tr {
  position: relative;
}
.membership-table table tr::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #425f4c;
  bottom: 0;
  left: 0;
}
.membership-table table th,
.membership-table table td {
  text-align: center;
}
.membership-table table th span,
.membership-table table td span {
  display: block;
}
.membership-table table th .highlight,
.membership-table table td .highlight {
  color: #b28247;
}
.membership-table table td {
  padding: 16px 8px;
  font-size: 16px;
}
.membership-table table td.membership-table-title {
  padding: 32px 12px;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
}
.membership-table table td.empty span {
  width: 62px;
  height: 3px;
  border-radius: 3px;
  background-color: #425f4c;
  margin: 0 auto;
}
.membership-table table td:not(.membership-table-title):nth-child(even) {
  background-color: #efefe6;
}
.membership-table table td:not(.membership-table-title):nth-child(odd) {
  background-color: #e3e9d3;
}
.membership-table-head {
  padding: 30px 12px;
}
.membership-table-head__title {
  font-size: 30px;
  margin-bottom: 0;
  font-weight: 500;
}
.membership-table-head__icon {
  width: 180px;
  margin: 0 auto;
}
.membership-table-title-mobile {
  width: 117px;
  background-color: #fff !important;
  padding-left: 12px;
  top: 2px;
  left: 0;
  position: absolute;
  padding: 0 !important;
  display: none;
  z-index: 5;
}
.membership-table-title-mobile p {
  margin: 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.membership-table-title-mobile p::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #425f4c;
  bottom: 0;
  left: 0;
}
.membership-table-title-mobile__head {
  font-size: 20px;
  font-weight: 700;
  align-items: flex-end;
}
.membership-table-title-mobile__body {
  padding: 16px;
  align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  .membership-table table td {
    width: 20%;
  }
}
@media screen and (max-width: 991px) {
  .membership-table .container {
    max-width: inherit;
    position: relative;
  }
  .membership-table__wrapper {
    overflow-x: auto;
    width: 100%;
  }
  .membership-table table {
    width: 800px;
    border-spacing: 12px 0;
  }
  .membership-table table td {
    padding: 12px;
    font-size: 16px;
  }
  .membership-table table td.membership-table-title {
    padding: 16px;
    font-size: 16px;
  }
  .membership-table-title {
    width: 105px !important;
    color: #fff;
  }
  .membership-table-head {
    padding: 20px 12px;
  }
  .membership-table-head__title {
    font-size: 16px;
  }
  .membership-table-head__icon {
    width: 80px;
  }
  .membership-table-title-mobile {
    display: block;
  }
}

.membership-list li {
  margin-bottom: 24px;
  padding-left: 24px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
.membership-list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #425f4c;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 991px) {
  .membership-list li {
    margin-bottom: 36px;
    padding-left: 20px;
    font-size: 16px;
  }
  .membership-list li::before {
    width: 12px;
    height: 12px;
    top: 8px;
  }
}

.membership-rule p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 64px;
  border-radius: 28px;
}
.membership-rule p:nth-child(odd) {
  background-color: #efefe6;
}
.membership-rule p:nth-child(even) {
  background-color: #e3e9d3;
}
@media screen and (max-width: 991px) {
  .membership-rule p {
    margin-bottom: 20px;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 16px;
  }
}

.membership-qa {
  padding-bottom: 132px;
}
.membership-qa-item {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.membership-qa-item__title {
  width: 50px;
}
.membership-qa-item__content {
  width: calc(100% - 50px);
}
.membership-qa__line {
  margin-top: 64px;
  width: 324px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #425f4c;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.membership-qa__line:hover {
  background-color: #c8d286;
  color: #425f4c;
}
@media screen and (max-width: 991px) {
  .membership-qa {
    padding-bottom: 64px;
  }
  .membership-qa-item {
    font-size: 18px;
  }
  .membership-qa-item__title {
    width: 44px;
  }
  .membership-qa-item__content {
    width: calc(100% - 44px);
  }
  .membership-qa__line {
    margin-top: 32px;
    width: 240px;
    height: 30px;
    font-size: 14px;
  }
}

.step {
  margin-bottom: 80px;
}
.step .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1080px;
  gap: 120px 80px;
  text-align: center;
}
.step_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  z-index: 0;
  width: calc((100% - 240px) / 4);
}
.step_item::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 34px;
  background-image: url(../img/triangle.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: -56px;
  transform: translateY(-50%);
}
.step_item:nth-child(4n)::after, .step_item:last-child::after {
  display: none;
}
.step_num {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
}
.step_icon {
  font-size: 132px;
  display: block;
  margin-bottom: 24px;
}
.step_text {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .step .container {
    gap: 60px 40px;
  }
  .step_item {
    width: calc((100% - 80px) / 3);
  }
  .step_item::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 26px;
    right: -32px;
  }
  .step_item:nth-child(4n)::after {
    display: block;
  }
  .step_item:nth-child(3n)::after {
    display: none;
  }
  .step_num {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .step_icon {
    font-size: 100px;
    margin-bottom: 12px;
  }
  .step_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .step .container {
    gap: 32px 20px;
  }
  .step_item {
    width: calc((100% - 20px) / 2);
  }
  .step_item:nth-child(3n)::after {
    display: block;
  }
  .step_item:nth-child(2n)::after {
    display: none;
  }
  .step_item::after {
    width: 16px;
    height: 17px;
    right: -18px;
  }
  .step_item:nth-child(2n+1)::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 17px;
    background-image: url(../img/triangle.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .step_item:first-child::before {
    display: none;
  }
  .step_num {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .step_icon {
    font-size: 80px;
    margin-bottom: 8px;
  }
  .step_text {
    font-size: 18px;
  }
}

.term-text h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.term-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.term-text ol,
.term-text ul {
  padding-left: 54px;
  margin-bottom: 32px;
}
.term-text ul {
  list-style: disc;
}
.term-text p {
  margin-bottom: 8px;
}
.term-text--scam {
  margin-top: 110px;
}
@media screen and (max-width: 991px) {
  .term-text h4 {
    font-size: 20px;
  }
  .term-text ol,
  .term-text ul {
    padding-left: 36px;
    margin-bottom: 20px;
  }
  .term-text--scam {
    margin-top: 56px;
  }
}

.term-date {
  text-align: center;
  font-size: 17px;
  margin-bottom: 56px;
  margin-top: -16px;
}
@media screen and (max-width: 991px) {
  .term-date {
    font-size: 14px;
    margin-top: -8px;
  }
}

.shipping-table {
  padding: 170px 0 80px;
}
.shipping-table .container {
  max-width: 1040px;
}
.shipping-table table {
  width: 100%;
  min-width: 400px;
  font-size: 24px;
  text-align: center;
}
.shipping-table th {
  padding: 24px 16px;
  font-weight: 700;
  border-bottom: 7px solid #425f4c;
  position: relative;
}
.shipping-table th::after {
  position: absolute;
  content: "";
  width: 7px;
  height: calc(100% - 24px);
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  background-color: #425f4c;
}
.shipping-table th:last-child::after {
  display: none;
}
.shipping-table td {
  padding: 48px 16px;
  border-bottom: 1px solid #425f4c;
  border-right: 1px solid #425f4c;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.shipping-table td:last-child {
  border-right: 0;
}
.shipping-table tr {
  position: relative;
}
.shipping-table tr:last-child td {
  border-bottom: 0;
}
.shipping-table tr:nth-child(2) td::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 12px;
  background-color: #fff;
  top: 0;
  left: -5%;
}
@media screen and (max-width: 991px) {
  .shipping-table {
    padding: 40px 0 60px;
  }
  .shipping-table .container {
    max-width: inherit;
    overflow-x: auto;
  }
  .shipping-table table {
    font-size: 18px;
  }
  .shipping-table th {
    padding: 16px;
    border-bottom: 4px solid #425f4c;
  }
  .shipping-table th::after {
    width: 4px;
    height: calc(100% - 16px);
  }
  .shipping-table td {
    padding: 16px;
  }
  .shipping-table tr:nth-child(2) td::before {
    height: 8px;
  }
}

.login {
  padding: 110px 0 160px;
}
.login .container {
  max-width: 600px;
}
.login-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .login {
    padding: 56px 0 80px;
  }
  .login-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.form-item {
  height: 50px;
  border-bottom: 1px solid #dcdddd;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
.form-item input,
.form-item select {
  width: 100%;
  height: 100%;
}
.form-item input::-moz-placeholder, .form-item select::-moz-placeholder {
  color: #9fa0a0;
}
.form-item input::placeholder,
.form-item select::placeholder {
  color: #9fa0a0;
}
.form-item input[type=radio] {
  width: 16px;
  height: 16px;
}
.form-item--password button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-item--password button span {
  font-size: 24px;
}
.form-item--password button span::before {
  color: #231815;
}
.form-item--password button span.icon-open-eye {
  display: none;
}
.form-item--password button.open-eye span.icon-open-eye {
  display: block;
}
.form-item--password button.open-eye span.icon-close-eye {
  display: none;
}
.form-item--radio {
  gap: 8px;
}
.form-link {
  color: #c8d286;
  margin-bottom: 28px;
}
.form-btn {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-social {
  margin-top: 36px;
  text-align: center;
}
.form-social__text {
  margin-bottom: 20px;
}
.form-social__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-social__main button {
  margin: 0;
  padding: 0;
}
.form-social__main button span {
  font-size: 52px;
}
.form-social__main button span.icon-fb-1::before {
  color: #2f6db6;
}
.form-address label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.form-address .twzipcode {
  display: flex;
  gap: 20px;
}
.form-address .twzipcode select,
.form-address .twzipcode input {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dcdddd;
  margin-bottom: 8px;
}
.form-address .twzipcode input {
  order: 1;
}
.form-address .twzipcode select[name=county] {
  order: 2;
}
.form-address .twzipcode select[name=district] {
  order: 3;
}
@media screen and (max-width: 991px) {
  .form-item {
    height: 44px;
    margin-bottom: 16px;
  }
  .form-link {
    margin-bottom: 16px;
  }
  .form-btn {
    height: 48px;
    font-size: 18px;
  }
  .form-social {
    margin-top: 20px;
    margin-bottom: 52px;
  }
  .form-social__text {
    margin-bottom: 12px;
  }
  .form-social__main {
    gap: 4px;
  }
  .form-social__main button span {
    font-size: 40px;
  }
}

.other-link {
  margin-top: 100px;
}

.account {
  padding: 40px 0 100px;
}
.account .container {
  display: flex;
}

.account-sidebar {
  width: 260px;
  background-color: #fff;
  padding: 40px 20px;
  border-right: 1px solid #425f4c;
}
.account-sidebar_nav li {
  margin: 8px 0;
}
.account-sidebar_nav a {
  display: block;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 20px;
  position: relative;
  z-index: 0;
}
.account-sidebar_nav a:hover, .account-sidebar_nav a.active {
  border-left: 6px solid #c8d286;
  padding-left: 32px;
  color: #a8b364;
}
.account-sidebar_nav a:hover::before, .account-sidebar_nav a:hover::after, .account-sidebar_nav a.active::before, .account-sidebar_nav a.active::after {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .account-sidebar {
    display: none;
  }
}

.account-content {
  width: calc(100% - 260px);
  padding: 40px 0 100px 40px;
}
@media screen and (max-width: 991px) {
  .account-content {
    width: 100%;
    padding: 40px 0 80px;
  }
}

.account-order:not(.cart-detail) .container {
  padding: 0;
}
.account-order table {
  width: 100%;
  min-width: 900px;
}
.account-order th {
  padding: 16px;
  background-color: #425f4c;
  font-weight: 700;
  color: #fff;
}
.account-order td {
  padding: 16px;
  border-bottom: 1px solid #dedede;
  font-weight: 500;
  transition: 0.3s;
}
.account-order td:first-child {
  border-left: 1px solid #dedede;
}
.account-order td:last-child {
  border-right: 1px solid #dedede;
}
.account-order tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.account-order tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
.account-order_func {
  display: flex;
  gap: 16px;
}
.account-order_func .btn {
  padding: 6px 12px;
  font-size: 14px;
  width: auto;
  height: auto;
}
.account-order .form-item {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .account-order .container {
    max-width: inherit;
    overflow-x: auto;
  }
}

.information .btn {
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 20px auto;
  padding: 8px 16px;
  display: block;
}
.information-sec {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-bottom: 20px;
}
.information-sec__title {
  font-size: 20px;
  font-weight: 700;
  color: #68722e;
  margin-bottom: 8px;
}
.information-table {
  width: 100%;
}
.information-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #dedede;
  font-weight: 500;
}
.information-table__title {
  color: #707070;
  width: 90px;
}
.information-table tr:last-child td {
  border: 0;
}
.information-list {
  line-height: 2;
  font-weight: 500;
  padding-left: 20px;
}

.buy-detail .container {
  padding: 0;
}
.buy-detail table {
  width: 100%;
  min-width: 400px;
}
.buy-detail th {
  padding: 8px 12px;
  border-bottom: 1px solid #dedede;
  font-weight: 700;
  color: #707070;
}
.buy-detail td {
  padding: 8px 12px;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 991px) {
  .buy-detail .container {
    max-width: inherit;
    overflow-x: auto;
  }
}

.change-password {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.send-mail .login-title {
  margin-bottom: 20px;
}
.send-mail > img {
  width: 200px;
  display: block;
  margin: 0 auto;
  transform: translateX(-16px);
}

.cart {
  padding-bottom: 100px;
}

.cart-step {
  padding: 50px 20px 110px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-step_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  z-index: 0;
}
.cart-step_item.active .cart-step_num {
  background-color: #68722e;
  border-color: #68722e;
}
.cart-step_item.active .cart-step_num p {
  color: #fff;
}
.cart-step_item.active .cart-step_num::before {
  opacity: 1;
}
.cart-step_item.active .cart-step_text {
  color: #68722e;
  font-weight: 700;
}
.cart-step_item::before {
  position: absolute;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
}
.cart-step_item::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 1px;
  background-color: #9fa0a0;
  left: calc(100% + 20px);
  top: 30px;
}
.cart-step_item:last-child::after {
  display: none;
}
.cart-step_num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfc0c0;
}
.cart-step_num > p {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: #707070;
}
.cart-step_text {
  position: absolute;
  white-space: nowrap;
  margin: 0;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 24px;
  color: #707070;
}
@media screen and (max-width: 640px) {
  .cart-step_item::after {
    width: calc((100vw - 180px - 80px) / 2);
    left: calc(100% + 10px);
  }
}
@media screen and (max-width: 575px) {
  .cart-step_text {
    font-size: 18px;
    top: calc(100% + 16px);
  }
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-product__pic {
  width: 80px;
  padding-bottom: 80px;
  position: relative;
}
.cart-product__pic > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.cart-product__name {
  margin: 0;
}

.cart-total {
  text-align: right;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cart-total p {
  line-height: 2;
}
.cart-total__price {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.cart-total__price .price {
  font-weight: 700;
  font-size: 24px;
  font-weight: 700;
}

.cart-form__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cart-form .form-item {
  margin-bottom: 12px;
}
.cart-form .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cart-form .row > div {
  padding-left: 20px;
  padding-right: 20px;
}
.cart-form .remark {
  margin-top: 40px;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .cart-form__title {
    font-size: 24px;
  }
  .cart-form .row .cart-form__wrapper {
    margin-bottom: 40px;
  }
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.checkout-state {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 60px;
  text-align: center;
}
.checkout-state__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.checkout-state__text {
  font-weight: 500;
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */