@charset "UTF-8";
html,
body,
section,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body,
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  margin: 0;
}

input,
button:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

*:before,
*:after {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Text-level semantic
 */
:active {
  outline: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

/**
 * Embedded content
 */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

/**
 * Grouping content
 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 16px;
}

/**
 * Forms
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button,
input[type=submit] {
  padding: 0;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  border-radius: 0;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}


:root {
  --f-body: "Manrope", sans-serif;
  --primary: #efc004;
  --secondary: #cca300;
  --white: #fff;
  --black: #000;
  --primary-50: #f5f7ff;
  --neutral-300: #b3b3b3;
  --neutral-50: #f2f2f2;
  --neutral-25: #efefef;
  --text-color: #303030;
  --neutral-800: #333;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

figure {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

input,
textarea,
select {
  outline: 0;
  background: transparent;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
select::-webkit-outer-spin-button,
select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.text-heading-h1 {
  font-size: 60px;
  line-height: 140%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .text-heading-h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 992px) {
  .text-heading-h1 {
    font-size: 38px;
  }
}
.text-heading-h2 {
  font-size: 48px;
  line-height: 140%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .text-heading-h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 992px) {
  .text-heading-h2 {
    font-size: 36px;
  }
}
.text-heading-h3 {
  font-size: 40px;
  line-height: 140%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .text-heading-h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .text-heading-h3 {
    font-size: 30px;
  }
}
.text-heading-h4 {
  font-size: 32px;
  line-height: 150%;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .text-heading-h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 992px) {
  .text-heading-h4 {
    font-size: 26px;
  }
}

.text-body {
  font-family: var(--f-body);
}
.text-body-3xl, .text-body-3xl-regular, .text-body-3xl-medium, .text-body-3xl-semibold, .text-body-3xl-bold, .text-body-3xl-uppercase {
  font-size: 24px;
  line-height: 133%;
}
@media screen and (max-width: 1280px) {
  .text-body-3xl, .text-body-3xl-regular, .text-body-3xl-medium, .text-body-3xl-semibold, .text-body-3xl-bold, .text-body-3xl-uppercase {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .text-body-3xl, .text-body-3xl-regular, .text-body-3xl-medium, .text-body-3xl-semibold, .text-body-3xl-bold, .text-body-3xl-uppercase {
    font-size: 18px;
  }
}
.text-body-3xl-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-3xl-bold {
  font-weight: 700;
}
.text-body-3xl-semibold {
  font-weight: 600;
}
.text-body-3xl-medium {
  font-weight: 500;
}
.text-body-3xl-regular {
  font-weight: 400;
}
.text-body-2xl, .text-body-2xl-regular, .text-body-2xl-medium, .text-body-2xl-semibold, .text-body-2xl-bold, .text-body-2xl-uppercase {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width: 1280px) {
  .text-body-2xl, .text-body-2xl-regular, .text-body-2xl-medium, .text-body-2xl-semibold, .text-body-2xl-bold, .text-body-2xl-uppercase {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .text-body-2xl, .text-body-2xl-regular, .text-body-2xl-medium, .text-body-2xl-semibold, .text-body-2xl-bold, .text-body-2xl-uppercase {
    font-size: 18px;
  }
}
.text-body-2xl-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-2xl-bold {
  font-weight: 700;
}
.text-body-2xl-semibold {
  font-weight: 600;
}
.text-body-2xl-medium {
  font-weight: 500;
}
.text-body-2xl-regular {
  font-weight: 400;
}
.text-body-xl, .text-body-xl-regular, .text-body-xl-medium, .text-body-xl-semibold, .text-body-xl-bold, .text-body-xl-uppercase {
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1280px) {
  .text-body-xl, .text-body-xl-regular, .text-body-xl-medium, .text-body-xl-semibold, .text-body-xl-bold, .text-body-xl-uppercase {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .text-body-xl, .text-body-xl-regular, .text-body-xl-medium, .text-body-xl-semibold, .text-body-xl-bold, .text-body-xl-uppercase {
    font-size: 16px;
  }
}
.text-body-xl-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-xl-bold {
  font-weight: 700;
}
.text-body-xl-semibold {
  font-weight: 600;
}
.text-body-xl-medium {
  font-weight: 500;
}
.text-body-xl-regular {
  font-weight: 400;
}
.text-body-lg, .text-body-lg-regular, .text-body-lg-medium, .text-body-lg-semibold, .text-body-lg-bold, .text-body-lg-uppercase {
  font-size: 18px;
  line-height: 144%;
}
@media screen and (max-width: 1280px) {
  .text-body-lg, .text-body-lg-regular, .text-body-lg-medium, .text-body-lg-semibold, .text-body-lg-bold, .text-body-lg-uppercase {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .text-body-lg, .text-body-lg-regular, .text-body-lg-medium, .text-body-lg-semibold, .text-body-lg-bold, .text-body-lg-uppercase {
    font-size: 16px;
  }
}
.text-body-lg-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-lg-bold {
  font-weight: 700;
}
.text-body-lg-semibold {
  font-weight: 600;
}
.text-body-lg-medium {
  font-weight: 500;
}
.text-body-lg-regular {
  font-weight: 400;
}
.text-body-md, .text-body-md-regular, .search-box, .text-body-md-medium, .input-label select.input-field, .input-label .input-field, .text-body-md-semibold, .input-label .input-title, .text-body-md-bold, .blog-show-more, .button, .text-body-md-uppercase {
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 1280px) {
  .text-body-md, .text-body-md-regular, .search-box, .text-body-md-medium, .input-label select.input-field, .input-label .input-field, .text-body-md-semibold, .input-label .input-title, .text-body-md-bold, .blog-show-more, .button, .text-body-md-uppercase {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .text-body-md, .text-body-md-regular, .search-box, .text-body-md-medium, .input-label select.input-field, .input-label .input-field, .text-body-md-semibold, .input-label .input-title, .text-body-md-bold, .blog-show-more, .button, .text-body-md-uppercase {
    font-size: 14px;
  }
}
.text-body-md-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-md-bold, .blog-show-more, .button {
  font-weight: 700;
}
.text-body-md-semibold, .input-label .input-title {
  font-weight: 600;
}
.text-body-md-medium, .input-label select.input-field, .input-label .input-field {
  font-weight: 500;
}
.text-body-md-regular, .search-box {
  font-weight: 400;
}
.text-body-sm, .text-body-sm-regular, .text-body-sm-medium, .text-body-sm-semibold, .text-body-sm-bold, .text-body-sm-uppercase {
  font-size: 14px;
  line-height: 157%;
}
.text-body-sm-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-sm-bold {
  font-weight: 700;
}
.text-body-sm-semibold {
  font-weight: 600;
}
.text-body-sm-medium {
  font-weight: 500;
}
.text-body-sm-regular {
  font-weight: 400;
}
.text-body-xs, .text-body-xs-regular, .text-body-xs-medium, .text-body-xs-semibold, .text-body-xs-bold, .text-body-xs-uppercase {
  font-size: 12px;
  line-height: 166.7%;
}
.text-body-xs-uppercase {
  font-weight: 700;
  text-transform: uppercase;
}
.text-body-xs-bold {
  font-weight: 700;
}
.text-body-xs-semibold {
  font-weight: 600;
}
.text-body-xs-medium {
  font-weight: 500;
}
.text-body-xs-regular {
  font-weight: 400;
}

.truncate, .truncate-6row, .truncate-5row, .truncate-4row, .truncate-3row, .truncate-2row, .truncate-1row {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate-1row {
  -webkit-line-clamp: 1;
}
.truncate-2row {
  -webkit-line-clamp: 2;
}
.truncate-3row {
  -webkit-line-clamp: 3;
}
.truncate-4row {
  -webkit-line-clamp: 4;
}
.truncate-5row {
  -webkit-line-clamp: 5;
}
.truncate-6row {
  -webkit-line-clamp: 6;
}

.min-h-2lh {
  min-height: 2lh;
}
.min-h-3lh {
  min-height: 3lh;
}
.min-h-4lh {
  min-height: 4lh;
}
.min-h-5lh {
  min-height: 5lh;
}
.min-h-6lh {
  min-height: 6lh;
}

.form-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-top: 4px solid var(--primary);
  background: var(--white);
  -webkit-box-shadow: 0px 4px 20px 0px rgba(161, 161, 161, 0.15);
          box-shadow: 0px 4px 20px 0px rgba(161, 161, 161, 0.15);
}

.input-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.input-label.w-50 {
  width: calc(50% - 6px);
}
@media (max-width: 768px) {
  .input-label.w-50 {
    width: 100%;
  }
}
.input-label .input-title {
  color: #1f2237;
}
.input-label .input-title.regular {
  font-weight: 400;
}
.input-label .input-title.semibold {
  font-weight: 600;
}
.input-label .input-title .require {
  color: red;
}
.input-label .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid #dedfe0;
  border-radius: 8px;
  background: #f2f3f5;
  width: 100%;
  color: #1f2237;
}
.input-label .input-field::-webkit-input-placeholder {
  color: #6b7280;
}
.input-label .input-field::-moz-placeholder {
  color: #6b7280;
}
.input-label .input-field:-ms-input-placeholder {
  color: #6b7280;
}
.input-label .input-field::-ms-input-placeholder {
  color: #6b7280;
}
.input-label .input-field::placeholder {
  color: #6b7280;
}
.input-label .input-field.pr-44 {
  padding-right: 44px;
}
.input-label .input-field:focus {
  border: 1px solid var(--primary);
  caret-color: var(--primary);
}
.input-label .input-field:disabled {
  color: #9ca3af;
}
.input-label select.input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  padding-right: 44px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid #dedfe0;
  border-radius: 8px;
  background: var(--white);
  width: 100%;
  color: #151515;
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f2f3f5; /* Màu nền */
  background-image: url("../image/icon/triagle-down.svg"); /* Hình nền */
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px 24px;
}
.input-label select.input-field:focus {
  border: 1px solid var(--primary);
  caret-color: var(--primary);
}
.input-label .input-trans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: none;
}
.input-label .input-trans:disabled {
  background: transparent;
}

.search-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  padding-left: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid;
  border-color: #ccc;
  color: var(--neutral-800);
}
.search-box::-webkit-input-placeholder {
  color: #666;
}
.search-box::-moz-placeholder {
  color: #666;
}
.search-box:-ms-input-placeholder {
  color: #666;
}
.search-box::-ms-input-placeholder {
  color: #666;
}
.search-box::placeholder {
  color: #666;
}
.search-box:focus {
  border-color: var(--primary);
  caret-color: var(--primary);
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-container input:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}
.checkbox-container input:checked + .checkmark:after {
  display: block;
}
.checkbox-container .checkmark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #888994;
  border-radius: 6px;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  background: var(--white);
  border-radius: 50%;
  position: relative;
}
.custom-radio:checked {
  background-color: var(--white);
  border-color: var(--primary);
}
.custom-radio:checked::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 57px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
  color: var(--primary);
  cursor: pointer;
}
.button:hover {
  background: #1a1a1a;
  color: var(--primary);
}
.button:disabled, .button[disabled] {
  border-color: #d1d5db;
  background: #d1d5db;
  color: #6b7280;
}
.button.bg-trans {
  padding: 0;
  background-color: transparent;
  border-color: transparent;
}

a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
a.link-white {
  color: var(--white);
}
a.link-white:hover {
  color: var(--secondary);
}
a.link-light {
  color: var(--neutral-50);
}
a.link-light:hover {
  color: var(--secondary);
}
a.link-primary {
  color: var(--primary);
}
a.link-primary:hover {
  color: var(--secondary);
}
a.link-secondary {
  color: var(--secondary);
}
a.link-secondary:hover {
  color: var(--white);
}
a.link-nav {
  color: var(--neutral-800);
}
a.link-nav:hover {
  color: var(--primary);
}
a.link-nav.active {
  color: var(--primary);
}
a.link-nav.home {
  color: var(--primary);
}
a.link-nav.home:hover {
  color: var(--secondary);
}
a.link-nav.home.active {
  color: var(--secondary);
}

.link-nav {
  color: var(--neutral-50);
}
.link-nav:hover {
  color: var(--secondary);
}

.button-tab {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 49rem;
}
.button-tab:disabled {
  cursor: not-allowed;
}
.button-tab:disabled figure svg path {
  stroke: #808080;
}
.button-tab:hover {
  background-color: #eeeeee;
}
.button-tab:hover figure svg path {
  stroke: var(--primary);
}
.button-tab.prev {
  rotate: 180deg;
}

.shadow-1 {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
}
.shadow-2 {
  -webkit-box-shadow: 0px 2px 20px 0px rgba(199, 199, 199, 0.25);
          box-shadow: 0px 2px 20px 0px rgba(199, 199, 199, 0.25);
}
.shadow-button {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(219, 219, 219, 0.49);
          box-shadow: 0px 4px 20px 0px rgba(219, 219, 219, 0.49);
}

.custom-scrollbar::-webkit-scrollbar, .modal-wrapper .modal-container .modal-content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track, .modal-wrapper .modal-container .modal-content::-webkit-scrollbar-track {
  border-radius: 99px;
}
.custom-scrollbar::-webkit-scrollbar-thumb, .modal-wrapper .modal-container .modal-content::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 99px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover, .modal-wrapper .modal-container .modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

hr.divider {
  width: 100%;
  height: 1px;
  border: none;
  background: var(--neutral-25);
}
hr.divider.vertical {
  width: 1px;
  height: 100%;
}
@media (max-width: 992px) {
  hr.divider.vertical {
    width: 100%;
    height: 1px;
  }
}
hr.divider-e6 {
  width: 100%;
  height: 1px;
  border: none;
  background: #e6e6e6;
}
hr.divider-e6.vertical {
  width: 1px;
  height: 100%;
}
@media (max-width: 992px) {
  hr.divider-e6.vertical {
    width: 100%;
    height: 1px;
  }
}
hr.divider-ccc {
  width: 100%;
  height: 1px;
  border: none;
  background: #ccc;
}
hr.divider-ccc.vertical {
  width: 1px;
  height: 100%;
}
@media (max-width: 992px) {
  hr.divider-ccc.vertical {
    width: 100%;
    height: 1px;
  }
}
hr.divider-v-6 {
  width: 1px;
  height: 25px;
  border: none;
  background: var(--neutral-25);
}
hr.divider-v-3 {
  width: 3px;
  height: 100%;
  border: none;
  background: #999;
}
hr.footer-divider {
  width: 100%;
  height: 1px;
  border: none;
  opacity: 0.16;
  background: #f9fafb;
}

.star-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.star-pillar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 4px;
  height: 95px;
  background: #cccccc;
}
.star-pillar-inside {
  width: 4px;
  min-height: 1px;
  background: #1a1a1a;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #0f0f0f;
  border: 1px solid #dedfe0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.pagination .page-numbers:hover {
  background-color: #f0f0f0;
}
.pagination .page-numbers.current {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
  font-size: 18px;
}

.open-modal {
  cursor: pointer;
}

.modal-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-wrapper .modal-container {
  margin: auto;
  width: 95%;
  max-width: 1356px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 32px;
  padding-right: 10px;
  gap: 32px;
  background: #fff;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 768px) {
  .modal-wrapper .modal-container {
    padding: 24px;
    padding-right: 10px;
  }
}
.modal-wrapper .modal-container.w-900 {
  max-width: 900px;
}
.modal-wrapper .modal-container.w-640 {
  max-width: 640px;
}
.modal-wrapper .modal-container .modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  padding-right: 22px;
}
@media (max-width: 768px) {
  .modal-wrapper .modal-container .modal-head {
    padding-right: 14px;
  }
}
.modal-wrapper .modal-container .modal-head .close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
}
.modal-wrapper .modal-container .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  z-index: 2;
  padding-right: 22px;
}
@media (max-width: 768px) {
  .modal-wrapper .modal-container .modal-content {
    padding-right: 14px;
  }
}

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  min-width: 220px;
  max-height: 0;
  overflow: hidden;
  margin-left: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  background: var(--white);
  -webkit-box-shadow: 0px -1px 20.2px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -1px 20.2px 0px rgba(0, 0, 0, 0.1);
}
.sub-menu.mobile {
  background: transparent;
  position: unset;
}
.sub-menu.mobile.active {
  max-height: 500px;
}
.sub-menu::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid var(--primary);
}
@media (max-width: 991px) {
  .sub-menu::after {
    display: none;
  }
}
.sub-menu::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.sub-menu:hover {
  max-height: 500px;
}
@media (max-width: 991px) {
  .sub-menu {
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    width: 100%;
    pointer-events: unset;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    opacity: 1;
    visibility: visible;
  }
}
.sub-menu.mobile {
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background: transparent;
}
.sub-menu.mobile.active {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}
.sub-item a {
  padding: 14px 16px;
  color: #320505;
  background: var(--white);
}
@media (max-width: 991px) {
  .sub-item a {
    background: transparent;
    color: var(--white);
  }
}
.sub-item:hover a {
  color: var(--white);
  background: var(--secondary);
}
@media (max-width: 991px) {
  .sub-item:hover a {
    background: transparent;
    color: var(--secondary);
  }
}
.sub-button {
  position: relative;
}
.sub-button:hover .sub-menu {
  max-height: 500px;
}

.sub-banner {
  background: url(../../assets/image/sub-banner.png) no-repeat left/cover;
}

.figure-hover {
  overflow: hidden;
}
.figure-hover figure img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.figure-hover:hover figure img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.swiper {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.swiper-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.swiper-button-container .swiper-button-prev,
.swiper-button-container .swiper-button-next {
  position: unset;
}
.swiper-button-container .swiper-button-prev {
  z-index: 3;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 73px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
}
.swiper-button-container .swiper-button-prev:hover {
  background: #1a1a1a;
}
.swiper-button-container .swiper-button-prev:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../image/icon/arrow-left-primary.svg) no-repeat center/contain;
}
@media (max-width: 991px) {
  .swiper-button-container .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .swiper-button-container .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
.swiper-button-container .swiper-button-next {
  z-index: 3;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 73px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
}
.swiper-button-container .swiper-button-next:hover {
  background: #1a1a1a;
}
.swiper-button-container .swiper-button-next:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../image/icon/arrow-right-primary.svg) no-repeat center/contain;
}
@media (max-width: 991px) {
  .swiper-button-container .swiper-button-next {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .swiper-button-container .swiper-button-next:after {
    width: 24px;
    height: 24px;
  }
}
.swiper .swiper-button-prev {
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 73px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
}
.swiper .swiper-button-prev:hover {
  background: #1a1a1a;
}
.swiper .swiper-button-prev:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../image/icon/arrow-left-primary.svg) no-repeat center/contain;
}
.swiper .swiper-button-prev.w-44 {
  width: 44px;
  height: 44px;
}
.swiper .swiper-button-prev.w-44:after {
  width: 20px;
  height: 20px;
}
.swiper .swiper-button-prev.disabled {
  background: #999;
  cursor: not-allowed;
}
.swiper .swiper-button-prev.disabled:after {
  background: url(../image/icon/arrow-left-white.svg) no-repeat center/contain;
}
@media (max-width: 991px) {
  .swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .swiper .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
.swiper .swiper-button-next {
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 73px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
}
.swiper .swiper-button-next:hover {
  background: #1a1a1a;
}
.swiper .swiper-button-next:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../image/icon/arrow-right-primary.svg) no-repeat center/contain;
}
.swiper .swiper-button-next.w-44 {
  width: 44px;
  height: 44px;
}
.swiper .swiper-button-next.w-44:after {
  width: 20px;
  height: 20px;
}
.swiper .swiper-button-next.disabled {
  background: #999;
  cursor: not-allowed;
}
.swiper .swiper-button-next.disabled:after {
  background: url(../image/icon/arrow-right-white.svg) no-repeat center/contain;
}
@media (max-width: 991px) {
  .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .swiper .swiper-button-next:after {
    width: 24px;
    height: 24px;
  }
}
.swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #ccc;
  opacity: 1;
}
.swiper .swiper-pagination-bullet-active {
  width: 50px;
  height: 10px;
  background: #333;
}
.swiper.big-mid .swiper-slide {
  position: relative;
  width: var(--swiper-width);
  opacity: 0.5;
  -webkit-transform: scale(0.84);
          transform: scale(0.84);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 0.4285rem;
}
.swiper.big-mid .swiper-slide p {
  display: none;
}
@media (max-width: 992px) {
  .swiper.big-mid .swiper-slide {
    width: 100%;
  }
}
.swiper.big-mid .swiper-backface-hidden .swiper-slide {
  -webkit-transform: scale(0.84) translateZ(0);
          transform: scale(0.84) translateZ(0);
}
.swiper.big-mid .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  opacity: 1 !important;
}
.swiper.big-mid .swiper-slide.swiper-slide-active p {
  display: block;
}
.swiper.big-mid .swiper-backface-hidden .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1) translateZ(0) !important;
          transform: scale(1) translateZ(0) !important;
}
.swiper.big-mid .swiper-backface-hidden .swiper-slide.swiper-slide-active p {
  display: block;
}

.carousel-nav {
  position: absolute !important;
  top: 0;
  left: 9;
  -webkit-transform: rotate(90deg) translateY(-100%);
          transform: rotate(90deg) translateY(-100%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.carousel-nav .carousel-cell > * {
  padding: 3px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.carousel .flickity-button {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border-radius: 73px;
  background: radial-gradient(63.97% 63.99% at 54% 47.01%, #363636 33%, #000001 100%);
}
.carousel .flickity-button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.carousel .flickity-button .flickity-button-icon {
  position: unset;
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
.carousel .flickity-button:hover {
  background: var(--text-color);
}
.carousel .flickity-button:hover .flickity-button-icon {
  fill: var(--secondary);
}

.is-nav-selected .product-wrap-nav {
  padding: 3px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(-128deg, rgba(0, 0, 0, 0) 15%, #ffce6f 51%, rgba(0, 0, 0, 0) 89%);
}
.is-nav-selected .product-wrap-nav figure {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.header .header-pc {
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-active {
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-active .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.header .header-active .container .logo figure {
  max-width: 80px;
}
.header .header-home {
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .header-home.header-active {
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 37px;
  background: var(--white);
}
.header .social-icon:hover svg path {
  fill: var(--primary);
}
.header .breadcrumb-header .breadcrumb-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  max-height: calc(100vh - 50px - 72px);
  overflow-y: auto;
}

.footer-bg {
  background: url("../image/footer-bg.png") no-repeat center/cover;
}
.footer .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer .info-item .icon-wrap {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  background: var(--white);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.footer .info-item a {
  color: var(--neutral-50);
}
.footer .info-item:hover .icon-wrap svg path {
  stroke: var(--secondary);
}
.footer .info-item:hover a {
  color: var(--secondary);
}
.footer .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: var(--neutral-50);
}
.footer .social-icon:hover svg path {
  fill: var(--secondary);
}

.countdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.countdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.cta-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cta-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 8, 32, 0.7)), to(rgba(0, 8, 32, 0.7)));
  background: linear-gradient(0deg, rgba(0, 8, 32, 0.7) 0%, rgba(0, 8, 32, 0.7) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 0;
}
.cta-image {
  width: 100%;
}
.cta-image img {
  min-height: 308px;
}
.cta-context {
  width: 100%;
  height: 100%;
  padding: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.cta-divider {
  width: 100%;
  height: 1px;
  border: none;
  background: #ddd;
}

.accordion-item {
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.accordion-item.faq {
  padding: 24px;
  border: 1px solid #e6e6e6;
}
.accordion-item.product {
  padding: 0;
}
.accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.accordion-title > p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
.accordion-content .inner {
  padding-top: 24px;
}
.accordion-item:hover .accordion-title .accordion-show-more {
  color: var(--primary);
}
.accordion-item:hover .accordion-title .accordion-show-more svg path {
  stroke: var(--primary);
}
.accordion-item.active {
  background: #fff;
}
.accordion-item.active .accordion-title .accordion-show-more svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
.accordion-item.active.product .accordion-content {
  margin-top: 16px;
}

.action-col {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25%;
  border-left: 1px solid var(--white);
  background: rgba(99, 99, 99, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 1280px) {
  .action-col {
    padding-top: 40%;
  }
}
@media (max-width: 992px) {
  .action-col {
    width: 100%;
    height: 20%;
    -webkit-transition: none;
    transition: none;
    padding-top: 4.5%;
    padding-bottom: 4.5%;
  }
}
.action-col .action-content {
  width: 80%;
}
@media (max-width: 992px) {
  .action-col .action-content {
    width: 90%;
  }
}
.action-col .action-content .title-item {
  color: var(--white);
}
.action-col .action-content .sub-items {
  max-height: 100px;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.action-col:first-child {
  border-color: transparent;
}
.action-col:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: transparent;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
  width: 56%;
}
.action-col:hover .action-content .title-item {
  color: var(--primary);
}
.action-col:hover .action-content .sub-items {
  min-height: 150px;
  max-height: 600px;
  overflow: visible;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .action-col:hover .action-content .sub-items {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 992px) {
  .action-col {
    pointer-events: auto;
  }
  .action-col:hover {
    width: 100%;
  }
}
.action-col.active {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
  width: 56%;
}
.action-col.active .action-content {
  max-width: 519px;
}
@media (max-width: 992px) {
  .action-col.active .action-content {
    max-width: unset;
  }
}
.action-col.active .action-content .sub-items {
  min-height: 150px;
  max-height: 600px;
  overflow: visible;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .action-col.active .action-content .sub-items {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 992px) {
  .action-col.active {
    -webkit-transition: none;
    transition: none;
    width: 100%;
    height: 56%;
  }
  .action-col.active .action-content {
    max-height: 519px;
  }
}

.action-program {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: 25%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .action-program {
    width: 100%;
    height: 33.3333333333%;
  }
}
.action-program:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
.action-program .action-content {
  position: absolute;
  bottom: 40px;
  width: 80%;
  max-width: 222px;
  z-index: 2;
}
@media (max-width: 768px) {
  .action-program .action-content {
    width: 90%;
  }
}
.action-program .action-content .sub-items {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.action-program:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40%;
}
.action-program:hover .action-content {
  max-width: 519px;
}
.action-program:hover .action-content .sub-items {
  max-height: 600px;
  overflow: visible;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .action-program {
    pointer-events: auto;
  }
  .action-program:hover {
    width: 100%;
  }
}
.action-program.active {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
  width: 56%;
}
.action-program.active .action-content {
  max-width: 519px;
}
.action-program.active .action-content .sub-items {
  max-height: 600px;
  overflow: visible;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .action-program.active {
    width: 100%;
    height: 56%;
  }
  .action-program.active .action-content {
    max-height: 519px;
  }
}

.why-choose-wrap {
  padding: 4px;
  border-radius: 16px;
  background: linear-gradient(-135deg, rgba(0, 0, 0, 0) 15%, #efc004 51%, rgba(0, 0, 0, 0) 89%);
}
.why-choose-wrap.about {
  background: linear-gradient(-165deg, rgba(0, 0, 0, 0) 15%, #efc004 51%, rgba(0, 0, 0, 0) 89%);
}

.why-choose-item {
  position: relative;
  border-radius: 16px;
  border: 4px solid rgba(0, 0, 0, 0);
  background: rgba(239, 239, 239, 0.9);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100%;
  gap: 40px;
}
@media (max-width: 1439px) {
  .why-choose-item {
    gap: 24px;
  }
}
.why-choose-item.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 552px) {
  .why-choose-item.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.why-choose-item .context {
  padding: 40px 32px 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 50%;
}
.why-choose-item .context.home {
  width: 100%;
}
@media (max-width: 1439px) {
  .why-choose-item .context {
    padding: 24px;
  }
}
@media (max-width: 1023px) {
  .why-choose-item .context {
    width: auto;
    padding: 24px;
  }
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #666;
}

.product-item {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  background: #eaedf2;
}
.product-item figure {
  max-height: 205px;
}
.product-item figure img {
  min-width: 100%;
}
.product-container {
  padding: 24px;
}

.comment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 48px;
  border-bottom: 1px solid;
  border-color: #e6e6e6;
}
@media (max-width: 992px) {
  .comment-wrap {
    padding: 20px 24px;
  }
}

.like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.like.active svg path {
  fill: #0566ff;
}
.like.active p {
  color: #0566ff;
}

.dislike {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.dislike svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dislike.active svg path {
  fill: #ff0033;
}
.dislike.active p {
  color: #ff0033;
}

.button-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  color: #333;
  border-bottom: 2px solid;
  border-color: transparent;
}

.button-blog:hover {
  border-color: #efc004;
}

.button-blog.active {
  border-color: #efc004;
}

.blog-item {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  background: #f7f7f7;
}
.blog-item .figure-hover img {
  min-width: 100%;
  min-height: 263px;
}
.blog-item.first-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 16px;
  grid-column: span 2;
  background: #8e7a66;
}
@media (max-width: 991px) {
  .blog-item.first-item {
    grid-column: unset;
  }
}
@media (max-width: 768px) {
  .blog-item.first-item {
    grid-template-columns: 1fr;
  }
}
.blog-item.first-item .blog-container {
  background: #8e7a66;
  padding: 40px 16px;
}
.blog-container {
  padding: 20px;
}
.blog-show-more {
  color: var(--primary);
}
.blog-show-more svg path {
  fill: var(--primary);
}
.blog-show-more:hover {
  color: var(--secondary);
}
.blog-show-more:hover svg path {
  fill: var(--secondary);
}

.about-mission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  .about-mission {
    gap: 24px;
  }
}
.about-mission:nth-child(2n+2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.skincare-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}
@media (max-width: 992px) {
  .skincare-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.skincare-item:nth-child(2n+2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .skincare-item:nth-child(2n+2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.skincare-item .img {
  width: 58%;
  max-width: 878px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .skincare-item .img {
    width: 100%;
  }
}
.skincare-item .context {
  width: 39%;
  max-width: 578px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .skincare-item .context {
    width: 100%;
    max-width: unset;
  }
}

.review-wrap {
  position: relative;
  z-index: 2;
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(-135deg, rgba(0, 0, 0, 0) 10%, #ffce6f 51%, rgba(0, 0, 0, 0) 90%);
  overflow: hidden;
}
.review-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-item.home {
  border: 4px solid rgba(0, 0, 0, 0);
  background: rgba(239, 239, 239, 0.9);
}
@media (max-width: 768px) {
  .review-item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.review-item .img {
  border-radius: 16px;
  overflow: hidden;
}
.review-item .img figure {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-item .img figure img {
  min-width: 100%;
  max-height: 470px;
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  .review-item .img figure img {
    max-height: unset;
  }
}
@media (max-width: 992px) {
  .review-item .img figure img {
    max-height: 470px;
  }
}
@media (max-width: 768px) {
  .review-item .img figure img {
    max-height: 390px;
  }
}
.review-item .context {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px;
  gap: 24px;
  border-radius: 16px;
  background: #eaedf2;
}
.review-item.style-1 .img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.review-item.style-1 .context {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.review-item.style-2 .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.review-item.style-2 .context {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .review-item.style-2 .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .review-item.style-2 .context {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.review-item.style-3 {
  grid-column: span 2;
}
@media (max-width: 1280px) {
  .review-item.style-3 {
    grid-column: unset;
  }
}
.review-item.style-3 .img figure img {
  max-height: 470px;
}

.collapse-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.collapse-item {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-height: 125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.collapse-item.collapsed {
  max-height: 0;
  overflow: hidden;
}

.check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.collapse-button,
.collapse-check-button {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}