* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #c8a750;
  --secondary: #685838;
  --title: #332f2b;
  --text: #424242;
  --bg: #f8f6f2;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: "Jost", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: var(--sytech-sb, 0px);
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.DMSans,
p {
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.0011em;
}
.Jost {
  font-family: "Jost", sans-serif;
  letter-spacing: normal;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon {
  transition: all 0.3s;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 4.6rem;
  padding: 0 3.1rem;
  min-width: 16.3rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn.sec {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
}
.btn.sec:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn.wt {
  background-color: #fff;
  border-color: #fff;
  color: var(--title);
}
.btn.wt:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid #ccc;
  color: var(--title);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 4.7rem;
  padding: 0 3.1rem;
  min-width: 14rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line.pm {
  border-color: var(--primary);
}
.btn_line.pm:hover {
  background-color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title);
  line-height: 1.2;
  gap: 1.6rem;
}
.btn_i::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.8889em;
  height: 0.8889em;
  transition: all 0.3s;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_i.pm {
  color: var(--primary);
}
.btn_i.sm {
  font-size: 1.6rem;
  gap: 1rem;
}
.btn_i.sm::after {
  width: 0.9375em;
  height: 0.9375em;
  background-image: url("../img/arrow-line.svg");
}
.btn_i.rw {
  flex-direction: row-reverse;
  gap: 1rem;
}
.btn_i.rw::after {
  width: 1em;
  background-image: url("../img/arrow-line.svg");
}
.btn_i.rw:hover {
  gap: 1em;
}
.btn_i.rw:hover::after {
  transform: none;
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 3.9rem;
  height: 1.7rem;
  cursor: pointer;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: url(../img/arrow.svg) no-repeat center / contain;
  transform-origin: right center;
}
.swiper_btns div:hover {
  filter: none;
  transform: scaleX(1.2);
}
.swiper_btns .btn_next {
  background-image: url("../img/arrow2.svg");
  transform-origin: left center;
}
.swiper_btns .swiper-button-disabled {
  cursor: default;
  pointer-events: none;
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-disabled:hover {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.tcon > em {
  display: inline-block;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.tcon h1,
.tcon .hd_h1 {
  font-size: 5.2rem;
  line-height: 1.19230769;
  font-weight: 500;
}
.tcon h2,
.tcon .hd_h2 {
  font-size: 4.8rem;
  line-height: 1.20833333;
  font-weight: 500;
}
.tcon p,
.tcon .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: var(--text);
}
.tcon.bn > em {
  display: inline-grid;
  grid-template-columns: 1.143em 1fr;
  align-items: center;
  gap: 0.536em;
  margin-bottom: 1.1rem;
}
.tcon.bn > em::before {
  display: block;
  padding-bottom: 68.75%;
  content: '';
  background: url("../img/icon-subtitle.svg") no-repeat center / contain;
}
.tcon.bn p,
.tcon.bn .desc {
  line-height: 2.7rem;
  color: #4c4c4c;
}
.tcon.sm p,
.tcon.sm .desc {
  font-size: 1.5rem;
  line-height: 2.4rem;
}
.tcon.wt {
  color: #fff;
}
.tcon.wt p,
.tcon.wt .desc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.0089em;
}
.tcon.smh2 h2,
.tcon.smh2 .hd_h2 {
  font-size: 3.6rem;
  line-height: 1.277778;
}
.result_empty {
  background-color: #fff;
  border: 1px solid #ddd6cc;
  padding: 6.4rem 4.8rem;
}
.result_empty .tcon > em {
  margin-bottom: 1.2rem;
}
.result_empty h3 {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--title);
}
.result_empty p {
  max-width: 48rem;
  margin-top: 1.2rem;
}
.result_empty .btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .result_empty {
    padding: 40px 20px;
  }
  .result_empty h3 {
    font-size: 22px;
  }
  .result_empty p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .result_empty .btns {
    gap: 12px;
    margin-top: 20px;
  }
}
header {
  position: sticky;
  top: -186px;
  z-index: 996;
  overflow-anchor: none;
  transition: top 0.3s, box-shadow 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
header.sticky {
  top: -38px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .top {
  background-color: #c6a76b;
  color: #fff;
  overflow: hidden;
}
header .top .content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
header .header_notice {
  grid-column: 2;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 13.2rem;
  height: 38px;
  padding-left: 1.4%;
}
header .header_notice .notice_prev,
header .header_notice .notice_next {
  display: block;
  cursor: pointer;
  flex-shrink: 0;
  content: '';
  width: 16px;
  height: 10px;
  background: url("../img/header-arrow.svg") no-repeat center / contain;
}
header .header_notice .notice_next {
  transform: rotate(180deg);
  margin-left: -3.8rem;
}
header .header_notice .header_notice_track {
  overflow: hidden;
  max-width: max-content;
}
header .header_notice .notice_list {
  display: grid;
}
header .header_notice .notice_item {
  grid-area: 1 / 1;
  justify-content: center;
  max-width: max-content;
  overflow: hidden;
  font-size: 14px;
  white-space: nowrap;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
header .header_notice .notice_item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .header_notice.is-static .notice_prev,
header .header_notice.is-static .notice_next {
  visibility: hidden;
  pointer-events: none;
}
header .main {
  position: relative;
  z-index: 2;
}
header .main > .content {
  position: static;
}
header .grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 3rem;
}
header .logo {
  display: block;
  position: relative;
  grid-row: span 2;
  padding-bottom: 4px;
}
header .logo img {
  display: block;
  width: 12.57953rem;
  height: auto;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  width: 100%;
  max-width: 118.1rem;
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 70px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(200, 167, 80, 0.5);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header nav .menu > li.menu-item-has-mega {
  position: static;
  z-index: auto;
}
header nav .mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 5;
  width: 100%;
  padding: 0;
  background-color: #fff; 
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
header nav .menu > li.menu-item-has-mega:hover > .mega_menu,
header nav .menu > li.menu-item-has-mega:focus-within > .mega_menu,
header nav .menu > li.menu-item-has-mega.is-open > .mega_menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0);
}
header nav .mega_inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 4rem 0 4.4rem;
}
header nav .mega_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
header nav .mega_col,
header nav .mega_feature {
  min-width: 0;
  padding: 0 4.8rem;
}
header nav .mega_col:first-child {
  padding-left: 0;
}
header nav .mega_feature {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}
header nav .mega_col + .mega_col,
header nav .mega_feature {
  border-left: 1px solid #e0e0e0;
}
header nav .mega_label {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--primary);
  padding-bottom: 1.4rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}
header nav .mega_links a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
  padding: 1.2rem 0;
  transition: all 0.3s;
}
header nav .mega_links a:hover,
header nav .mega_links .is-current > a {
  color: var(--primary);
}
header nav .mega_feature .img {
  flex: 1;
  background-color: var(--bg);
}
header nav .mega_feature_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 2.4rem 2.6rem;
  background-color: var(--bg);
}
header nav .mega_feature_title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
}
header nav .mega_feature_desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  color: #6e665a;
  margin-top: 0.8rem;
}
header nav .mega_feature .btn_line {
  line-height: 4.1rem;
  min-width: 0;
  padding: 0 2.4rem;
  margin-top: 1.8rem;
}
header .btns {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 117.1rem;
  margin-left: auto;
  gap: 1.8rem;
  min-height: 77px;
  padding: 22px 0 7px;
}
header .btns .icon_btn {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: transparent;
  text-indent: -999px;
  border-radius: 50%;
  background-color: rgba(118, 110, 99, 0.08);
  transition: all 0.3s;
}
header .btns .icon_btn::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: no-repeat center / 39.5833%;
  transition: all 0.3s;
}
header .btns .icon_btn .num {
  position: absolute;
  z-index: 2;
  right: 1px;
  top: -2px;
  text-indent: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #1a1626;
  background-color: var(--primary);
  white-space: nowrap;
  width: 18px;
  height: 18px;
  min-width: max-content;
  padding: 0 2px;
  border-radius: 9px;
}
header .btns .icon_btn:hover {
  background-color: var(--secondary);
}
header .btns .icon_btn:hover::after {
  filter: contrast(0) brightness(2);
}
header .btns .btn_search::after {
  background-image: url("../img/icon-search.svg");
  background-size: 35.42%;
}
header .btns .btn_login::after {
  background-image: url("../img/icon-login.svg");
}
header .btns .btn_cart::after {
  background-image: url("../img/icon-cart.svg");
}
header .btns .btn_menu::after {
  background-image: url("../img/nav-btn.svg");
}
header .btns .btn_menu,
header .btns .btn_search {
  display: none;
}
header .btns .search_box {
  flex: 1;
  max-width: 57.9rem;
  margin-left: auto;
  margin-right: 2.1rem;
}
header .btns .search_box form {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 7.7rem;
  border-radius: 100px;
  background-color: rgba(118, 110, 99, 0.08);
  border: 1px solid transparent;
  transition: border-color 0.2s;
  height: 48px;
}
header .btns .search_box form:focus-within {
  border-color: var(--primary);
}
header .btns .search_box form input {
  display: block;
  width: 100%;
  font-size: 14.4px;
  font-weight: 500;
  color: #766e63;
  padding: 2px 2.9rem 0;
}
header .btns .search_box form input::placeholder {
  color: #766e63;
}
header .btns .search_box form input[type=search]::-webkit-search-cancel-button,
header .btns .search_box form input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
header .btns .search_box form .search_clear {
  position: absolute;
  top: 50%;
  right: 7.7rem;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0.45;
  cursor: pointer;
  background: url("../img/close.svg") no-repeat center / 1.1rem;
}
header .btns .search_box form .search_clear[hidden] {
  display: none !important;
}
header .btns .search_box form .search_clear:hover {
  opacity: 1;
}
header .btns .search_box form input[type=submit] {
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  color: transparent;
  background: url("../img/icon-search.svg") no-repeat center / 22.1%;
}
header .btns .btn {
  flex-shrink: 0;
  padding: 0 1.9rem;
}
header .btns .btn_cart {
  margin-right: 2.2rem;
  margin-left: 0.3rem;
}
footer .main {
  padding: 18.3rem 0 7.5rem;
}
footer .foot_intro {
  margin-top: -11.3rem;
  width: 24%;
  max-width: 34.4rem;
}
footer .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 15.4rem;
}
footer .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_intro p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #4c4c4c;
  margin-top: 3.5rem;
}
footer .foot_intro .menu {
  gap: 1.7rem;
  display: grid;
  max-width: 31.9rem;
  margin-top: 1.7rem;
}
footer .foot_intro .menu a {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.8824em;
  transition: all 0.3s;
  font-size: 1.7rem;
  font-weight: 500;
  color: #332f2b;
  border-bottom: 1px solid #e5e1dc;
  padding: 0.9rem 0;
  gap: 1rem;
}
footer .foot_intro .menu a::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-line.svg) no-repeat center / contain;
}
footer .foot_intro .menu a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
footer .foot_intro .menu a:hover::after {
  transform: translateX(20%);
}
footer .nav {
  flex: 1;
  width: 100%;
  max-width: 85.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.1rem 1.35rem;
}
footer .nav .foot_nav:nth-child(6n+3) strong,
footer .nav .foot_nav:nth-child(6n+4) strong,
footer .nav .foot_nav:nth-child(6n+5) strong {
  margin-bottom: 1.5rem;
}
footer .foot_nav strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
footer .foot_nav li + li {
  margin-top: 0.8rem;
}
footer .foot_nav li {
  font-size: 1.5rem;
  font-weight: 500;
}
footer .foot_nav li a {
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .foot_nav li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .foot_connect li {
  position: relative;
  padding-left: 1.9334em;
}
footer .foot_connect li::before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background: no-repeat bottom left / contain;
  position: absolute;
  left: 0;
  top: 1px;
}
footer .foot_connect li + li {
  margin-top: 1.2rem;
}
footer .foot_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  top: 0.33em;
}
footer .foot_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .bottom {
  border-top: 1px solid #e5e1dc;
  color: #7c7671;
  font-weight: 500;
  padding: 1.3rem 0 1.2rem;
}
footer .bottom p {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
footer .bottom a {
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2px;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  display: inline-block;
  width: 1px;
  height: 1rem;
  background-color: #7c7671;
  opacity: 0.15;
  content: '';
  margin: 0 0.406em 0 0.438em;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer .bottom .payments ul {
  gap: 0.65rem;
  margin: 0;
}
footer .bottom .payments .img {
  width: 4.3rem;
  --h: 55.81395349%;
  display: block;
}
footer .bottom .payments .img::before {
  display: none;
}
@media screen and (min-width: 769px) {
  footer .bottom {
    flex-wrap: nowrap;
    gap: 2rem;
  }
  footer .bottom > p {
    flex: 0 1 auto;
    white-space: nowrap;
    margin-bottom: 0;
  }
  footer .bottom > div:not(.payments) {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
  }
  footer .bottom .menu-legal-container,
  footer .bottom .menu {
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  footer .bottom ul {
    flex-wrap: nowrap;
  }
  footer .bottom .payments,
  footer .bottom .payments ul {
    flex-shrink: 0;
  }
}
.page_faqs {
  padding: 11.2rem 0 10.1rem;
}
.page_faqs.bg {
  background-color: var(--bg);
}
.page_faqs .flex_top .head {
  width: 30%;
  max-width: 40rem;
  padding-top: 1rem;
}
.page_faqs .flex_top .head h2 {
  max-width: 35.9rem;
}
.page_faqs .flex_top .faqs {
  flex: 1;
  width: 100%;
  max-width: 86.5rem;
}
.page_faqs p {
  max-width: 37.5rem;
  margin-top: 2.4rem;
}
.page_faqs .btn {
  margin-top: 2.6rem;
}
.page_faqs.middle .faqs {
  max-width: 87.1rem;
  margin: 4.7rem auto 0;
}
.page_faqs .center:has(.btn) {
  margin-top: 3.5rem;
}
.page_faqs .center:has(.btn) .btn {
  margin: 0;
  line-height: 5rem;
}
.account_sidebar {
  width: 28.8rem;
  background-color: #fff;
  border: 1px solid #eae7e5;
  box-shadow: 0 1.3rem 1.9rem rgba(219, 214, 209, 0.35);
  display: flex;
  flex-direction: column;
}
.account_sidebar .info {
  border-bottom: 1px solid #eaeaea;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin: 0.9rem 2.5rem 1.5rem 2.9rem;
  padding: 2rem 0;
  gap: 1.4rem;
}
.account_sidebar .info .avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.account_sidebar .info .avatar img {
  transform: scale(0.625);
}
.account_sidebar .info .name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.account_sidebar .info .level {
  font-size: 1.25rem;
  color: #a2854a;
  margin-top: -1px;
}
.account_sidebar .nav {
  flex: 1;
  display: flex;
}
.account_sidebar .nav ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.account_sidebar .nav a {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  align-items: center;
  font-weight: 500;
  color: #686868;
  border-left: 0.3rem solid transparent;
  transition: all 0.3s;
  gap: 0.9375em;
  padding: 1.2rem 2.4rem;
}
.account_sidebar .nav a:hover {
  background-color: rgba(235, 225, 203, 0.2);
}
.account_sidebar .nav a span {
  margin-top: 1px;
}
.account_sidebar .nav .active a {
  color: var(--title);
  background-color: rgba(235, 225, 203, 0.68);
  border-left-color: var(--primary);
}
.account_sidebar .nav .logout {
  border-top: 1px solid #eaeaea;
  margin: auto 3rem 2.4rem 2.9rem;
  padding-top: 1.9rem;
}
.account_sidebar .nav .logout a {
  padding: 0;
  grid-template-columns: 1em 1fr;
  font-size: 1.5rem;
  color: #b06a5a;
  background-color: transparent;
  border: none;
  gap: 0.9333em;
}
.account_sidebar .nav .logout a:hover {
  gap: 1.2em;
}
.products_nav {
  background-color: var(--bg);
  border-bottom: 1px solid #f2eee6;
  position: relative;
  z-index: 2;
}
.products_nav .nav {
  margin-bottom: -2px;
}
.products_nav .nav .nav_item {
  color: #a5a3a2;
  border-block-width: 3px;
  padding: 2.4rem 0 1.4rem;
}
.products_nav .nav .nav_item.active,
.products_nav .nav .nav_item:hover {
  color: var(--title);
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4.0277778%;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #8e8a85;
  border-bottom: 2px solid transparent;
  padding: 0.9rem 0;
}
.nav_wrap .nav_item:hover,
.nav_wrap .nav_item.active {
  color: var(--title);
}
.nav_wrap .nav_item.active {
  border-bottom-color: var(--primary);
}
.floats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
}
.floats ul {
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
  height: 100%;
}
.floats .img {
  position: absolute;
  height: auto;
  width: 24.5%;
  max-width: 46rem;
}
.floats .img img {
  opacity: 0.47;
}
.floats.bk .img img {
  filter: contrast(0) brightness(0);
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation {
  width: 100%;
  max-width: 100%;
}
nav.navigation .nav-links {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.6rem 2rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
nav.navigation .nav-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.4rem;
  min-width: 0;
  max-width: 100%;
}
nav.navigation .nav-numbers .nav-btn.next {
  margin-left: 0;
}
nav.navigation .label {
  flex: 0 0 auto;
  font-weight: 500;
  color: #5d5d5c;
  align-self: center;
  margin-right: 1.2rem;
  margin-left: 0.4rem;
  white-space: nowrap;
}
nav.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #eae7e5;
  background-color: #fff;
  width: 4.3rem;
  height: 4.3rem;
  min-width: 4.3rem;
  flex: 0 0 auto;
  padding: 0 0.2em;
}
nav.navigation .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: 2.4rem;
  width: auto;
  pointer-events: none;
}
nav.navigation .page-numbers.dots:hover {
  background: transparent;
  border-color: transparent;
  color: inherit;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
nav.navigation .nav-btn {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  width: auto;
  font-weight: 500;
  border: 1px solid #eae7e5;
  background-color: #fff;
  gap: 0.8rem;
  line-height: 4.1rem;
  padding: 0 1.46875em;
}
nav.navigation .nav-btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.875em;
  height: 0.875em;
  transition: all 0.3s;
  background: url("../img/arrow-line-r.svg") no-repeat center / contain;
}
nav.navigation .nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
nav.navigation .nav-btn:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .nav-btn.next {
  margin-left: auto;
}
nav.navigation .nav-btn.prev {
  flex-direction: row-reverse;
  margin-right: auto;
  padding: 0 1.55em;
}
nav.navigation .nav-btn.prev::after {
  transform: rotate(180deg);
}
nav.navigation .nav-links > .btn,
nav.navigation .nav-links > .btn_line {
  grid-column: 1 / -1;
  width: auto;
  margin: 0 auto;
  min-width: unset;
  justify-self: center;
}
nav.navigation .btn_line {
  background-color: #fff;
  line-height: 4.1rem;
  white-space: nowrap;
}
nav.navigation .btn_line:hover {
  background-color: var(--primary);
}
.pd-colors {
  font-size: 1.8rem;
}
.pd-colors ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.pd-colors li {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 0.2223em;
}
.pd-colors li::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: -0.2223em;
  content: '';
  border-radius: 50%;
  border: 1px solid var(--title);
  transition: all 0.3s;
  transform: scale(0.7);
  opacity: 0;
}
.pd-colors li.active::after {
  transform: scale(1);
  opacity: 1;
}
.breadcrumbs {
  line-height: 2rem;
  min-height: 2rem;
}
.breadcrumbs span {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  width: 1px;
  height: 0.786em;
  background-color: #e0e0e0;
  margin: 0 1em 0 0.714em;
  transform: rotate(25deg);
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  font-weight: 400;
  color: #969696;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.seg-line {
  max-width: 54.2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 8px;
  gap: 11px;
}
.seg-line i {
  display: block;
  width: 12.5px;
  height: 8px;
  background: url("../img/icon-subtitle2.svg") no-repeat center / contain;
}
.seg-line::before,
.seg-line::after {
  flex: 1;
  display: block;
  height: 3px;
  content: '';
  background-color: var(--primary);
  clip-path: polygon(0 50%, 4px 0, 6px 33.333%, 100% 33.33%, 100% 66.66%, 6px 66.66%, 4px 100%);
}
.seg-line::after {
  transform: rotate(180deg);
}
.faq_list .faq_item {
  border-bottom: 1px solid #d6d5d4;
  overflow: visible;
  pointer-events: auto;
}
.faq_list .faq_item[data-aos] {
  overflow: visible;
  pointer-events: auto;
}
.faq_list .question {
  display: grid;
  grid-template-columns: 1fr 0.591em;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 500;
  gap: 0.7em;
  padding: 1.6rem 0 2.3rem;
}
.faq_list .question::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  transition: all 0.3s;
  background: url("../img/icon-select.svg") no-repeat center / contain;
}
.faq_list .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 2.7rem;
  margin-top: -0.6rem;
}
.faq_list .faq_item.active .answer {
  display: block;
}
.faq_list .answer p {
  max-width: unset;
  margin: 0;
  hyphens: auto;
  color: #5e5e5e;
  padding-bottom: 2px;
}
.faq_list .answer p + p {
  margin-top: 2.6rem;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  padding-bottom: 62.33480176%;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(188, 188, 188, 0.38);
  padding: 2.9rem 0 3.3rem;
}
.blog_list .info .cat {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
}
.blog_list .info .title {
  font-size: 2.4rem;
  line-height: 1.33333;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-width: 40rem;
  margin-top: 1.2rem;
}
.blog_list .info .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-bottom: auto;
  margin-top: 1.5rem;
}
.blog_list .info .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #6e665a;
  gap: 0.8rem;
  margin-top: 2.6rem;
}
.blog_list .info .metas span {
  font-size: 1.4rem;
}
.blog_list .info .metas .date {
  margin: 0 1px;
}
.package_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.package_item:hover img {
  transform: scale(1.03);
}
.package_item .img {
  width: 83.28445748%;
  --h: 100%;
}
.package_item .info {
  flex: 1;
  width: 100%;
  margin-top: 5.1rem;
}
.package_item .info .title {
  font-size: 2rem;
  font-weight: 500;
}
.package_item .info .sty {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 2.1rem;
}
.package_item .info .moq {
  font-weight: 500;
  color: #68635f;
  margin-top: 0.4rem;
}
.package_item .btn_line {
  line-height: 4.1rem;
  margin-top: 2.4rem;
  min-width: 14.9rem;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header nav .menu > li > a {
    font-size: 16px;
  }
  header nav .menu > li:last-child .sub-menu {
    left: unset;
    right: -20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header nav .mega_inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  header nav .mega_col,
  header nav .mega_feature {
    padding: 0 3rem;
  }
  header nav .mega_col:first-child {
    padding-left: 0;
  }
  header nav .mega_feature {
    padding-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1,
  .tcon .hd_h1 {
    font-size: 4.5rem;
  }
  .tcon h2,
  .tcon .hd_h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
    max-width: unset;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative!important;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header nav .mega_menu {
    position: static;
    display: none;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: 0;
    padding: 10px;
    margin: 12px 0;
    border-radius: var(--radius);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .mega_inner {
    max-width: none;
    padding: 0;
  }
  header nav .mega_grid {
    display: block;
  }
  header nav .mega_col,
  header nav .mega_feature {
    padding: 0;
    border-left: 0;
  }
  header nav .mega_col + .mega_col,
  header nav .mega_feature {
    margin-top: 16px;
  }
  header nav .mega_label {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    margin-bottom: 6px;
    border-bottom: 0;
  }
  header nav .mega_links a {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    border-radius: var(--radius);
  }
  header nav .mega_links a:hover,
  header nav .mega_links .is-current > a {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--title);
  }
  header nav .mega_feature_info {
    padding: 14px 12px 16px;
  }
  header nav .mega_feature_title {
    font-size: 16px;
  }
  header nav .mega_feature_desc {
    font-size: 13px;
  }
  header nav .mega_feature .btn_line {
    font-size: 14px;
    line-height: 36px;
    padding: 0 14px;
    margin-top: 12px;
  }
  header .logo {
    padding: 0;
    grid-row: unset;
  }
  header .logo img {
    width: 9rem;
  }
  header .btns {
    padding: 0;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .icon_btn {
    width: 44px;
    height: 44px;
    margin: 0;
  }
  header .btns .search_box {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  header .header_notice {
    gap: 5rem;
  }
}
@media screen and (max-width: 896px) {
  header .main .content {
    position: static;
  }
  header .btns {
    justify-content: flex-end;
  }
  header .btns .btn_search {
    display: block;
  }
  header .btns .search_box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: unset;
    padding: 14px 20px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    display: none;
  }
  header .btns .search_box form {
    grid-template-columns: 1fr 50px;
  }
  header .btns .search_box form input[type=submit] {
    background-size: 18px;
  }
  header .btns .search_box form input {
    font-size: 14px;
    padding: 0 20px;
  }
  header .btns .search_box form .search_clear {
    right: 50px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 14px;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    min-width: unset;
  }
  .btn_i {
    font-size: 14px;
    gap: 10px;
  }
  .btn_i.sm {
    font-size: 14px;
    gap: 10px;
  }
  .btn_i.rw {
    gap: 10px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 30px;
    height: 14px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translate(0);
    padding: 0 20px;
    pointer-events: auto;
  }
  .tcon > em {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon h1,
  .tcon .hd_h1 {
    font-size: 38px;
    line-height: 1.2;
  }
  .tcon h2,
  .tcon .hd_h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tcon.bn > em {
    margin-bottom: 8px;
  }
  .tcon.bn p,
  .tcon.bn .desc {
    line-height: 1.5;
  }
  .tcon.sm p,
  .tcon.sm .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .tcon.smh2 h2,
  .tcon.smh2 .hd_h2 {
    font-size: 25px;
    line-height: 1.2;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btns,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    min-width: unset;
    margin-top: 20px;
  }
  div.head .btn_i {
    font-size: 14px;
    gap: 10px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    min-width: unset;
    margin: 0;
  }
  header {
    top: -30px;
  }
  header.sticky {
    top: -30px;
  }
  header .header_notice {
    gap: 20px;
    padding: 0;
    height: 30px;
  }
  header .header_notice .notice_next {
    margin: 0;
  }
  header .grid {
    gap: 20px;
  }
  header .logo img {
    width: 50px;
  }
  header .btns {
    gap: 14px;
    min-height: 64px;
  }
  header .btns .btn {
    padding: 0 16px;
  }
  footer .main {
    display: block;
    padding: 50px 0;
  }
  footer .foot_intro {
    margin: 0;
    width: 100%;
    max-width: unset;
    padding-bottom: 30px;
  }
  footer .foot_intro .logo {
    max-width: 100px;
    margin: 0 auto;
  }
  footer .foot_intro p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-top: 20px;
  }
  footer .foot_intro .menu {
    max-width: unset;
    gap: 0;
    margin-top: 20px;
  }
  footer .foot_intro .menu a {
    font-size: 14px;
    padding: 12px 0;
  }
  footer .nav {
    gap: 30px 20px;
  }
  footer .nav .foot_nav:nth-child(6n+3) strong,
  footer .nav .foot_nav:nth-child(6n+4) strong,
  footer .nav .foot_nav:nth-child(6n+5) strong {
    margin-bottom: 16px;
  }
  footer .foot_nav strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer .foot_nav li + li {
    margin-top: 10px;
  }
  footer .foot_nav li {
    font-size: 14px;
  }
  footer .bottom {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px 0;
  }
  footer .bottom p {
    font-size: 13px;
    margin: 0;
  }
  footer .bottom a {
    font-size: 12px;
  }
  footer .bottom ul {
    margin: 0;
    gap: 10px 0;
  }
  footer .bottom ul li::before {
    height: 8px;
  }
  footer .bottom .payments ul {
    gap: 5px;
  }
  footer .bottom .payments .img {
    width: 40px;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .flex.flex_top .head {
    padding: 0;
  }
  .page_faqs .flex.flex_top .head p {
    margin-top: 12px;
  }
  .page_faqs .flex.flex_top .head .btn {
    margin-top: 20px;
  }
  .page_faqs.middle .faqs {
    margin-top: 30px;
  }
  .page_faqs .center:has(.btn) {
    margin-top: 40px;
  }
  .page_faqs .center:has(.btn) .btn {
    line-height: 42px;
    margin: 0;
  }
  .products_nav .nav .nav_item {
    padding: 14px 0;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    justify-content: unset;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list li:first-child {
    margin-left: auto;
  }
  .nav_wrap .nav_list li:last-child {
    margin-right: auto;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    white-space: nowrap;
    padding: 8px 0;
  }
  nav.navigation .nav-links {
    gap: 16px;
  }
  nav.navigation .nav-numbers {
    gap: 12px;
  }
  nav.navigation .label {
    margin: 0;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    width: 44px;
    height: 44px;
  }
  nav.navigation .page-numbers.dots {
    width: auto;
    min-width: 24px;
  }
  nav.navigation .nav-btn {
    gap: 7px;
    line-height: 42px;
  }
  nav.navigation .btn_line {
    line-height: 42px;
  }
  .pd-colors {
    font-size: 14px;
  }
  .pd-colors ul {
    gap: 2px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .seg-line {
    max-width: 400px;
    gap: 10px;
  }
  .faq_list .faq_item .question {
    font-size: 18px;
    padding: 14px 0;
  }
  .faq_list .faq_item .answer {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 20px;
    margin: 0;
  }
  .faq_list .faq_item .answer p {
    padding: 0;
    margin: 0;
  }
  .faq_list .faq_item .answer p + p {
    margin-top: 10px;
  }
  .account_sidebar {
    width: 200px;
  }
  .account_sidebar .info {
    margin: 0 16px;
    padding: 16px 0;
    gap: 12px;
  }
  .account_sidebar .info .avatar {
    width: 40px;
    height: 40px;
  }
  .account_sidebar .info .name {
    font-size: 16px;
    margin-top: 0;
  }
  .account_sidebar .info .level {
    font-size: 12px;
    margin-top: 0;
  }
  .account_sidebar .nav a {
    padding: 10px 16px;
  }
  .account_sidebar .nav a span {
    margin: 0;
  }
  .account_sidebar .nav .logout {
    margin: auto 16px 16px;
    padding-top: 16px;
  }
  .account_sidebar .nav .logout a {
    font-size: 14px;
  }
  .blog_list .info {
    padding: 16px 0 20px;
  }
  .blog_list .info .cat {
    font-size: 13px;
  }
  .blog_list .info .title {
    font-size: 18px;
    margin-top: 8px;
  }
  .blog_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .info .metas {
    margin-top: 16px;
  }
  .package_item .info {
    margin-top: 20px;
  }
  .package_item .info .title {
    font-size: 16px;
  }
  .package_item .info .sty {
    font-size: 16px;
    margin-top: 12px;
  }
  .package_item .info .moq {
    margin-top: 4px;
  }
  .package_item .btn_line {
    line-height: 36px;
    margin-top: 16px;
  }
  .footer_contact {
    overflow: hidden;
  }
  .footer_contact .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact p {
    line-height: 1.5;
    margin-top: 10px;
  }
  .footer_contact .btns .btn {
    font-size: 14px;
    line-height: 42px;
  }
}
@media screen and (max-width: 730px) {
  header .btns .btn {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .swiper_btns.middle {
    display: none;
  }
  .page_faqs .flex_top .head {
    width: 100%;
  }
  .faq_list .faq_item .question {
    font-size: 16px;
  }
  footer .nav {
    display: block;
  }
  footer .foot_nav:not(.foot_connect) strong {
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
  }
  footer .foot_nav:not(.foot_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .foot_nav:not(.foot_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_nav:not(.foot_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .foot_nav:not(.foot_connect) > div a {
    display: block;
    font-weight: normal;
  }
  footer .foot_nav:not(.foot_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .foot_connect {
    padding-top: 20px;
  }
  .account_sidebar {
    width: 100%;
  }
  nav.navigation .nav-links {
    grid-template-columns: 1fr 1fr;
  }
  nav.navigation .nav-links .nav-btn {
    grid-row: 2;
  }
  nav.navigation .nav-links .nav-numbers {
    grid-column: 1 / -1;
    justify-content: center;
  }
  nav.navigation .nav-links > .btn,
  nav.navigation .nav-links > .btn_line {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

.wpcf7 .hidden-fields-container {
  display: none;
}
.wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
}
.wpcf7 input[type="hidden"],
.wpcf7 input[type="reset"] {
  display: none !important;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
  display: inline-block;
}
.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.wpcf7 input[type="file"] {
  font-family: inherit;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #d4483a !important;
}
.wpcf7 .wpcf7-spinner {
  display: none;
  visibility: hidden;
  position: relative;
  width: 1.6rem;
  min-width: 1.6rem;
  max-width: 1.6rem;
  height: 1.6rem;
  margin: 1.2rem 0 0 0rem;
  padding: 0;
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
  overflow: visible;
  vertical-align: middle;
  pointer-events: none;
}
.wpcf7 form.submitting .wpcf7-spinner,
.wpcf7 form[data-status="submitting"] .wpcf7-spinner {
  display: inline-block;
  visibility: visible;
}
.wpcf7 .wpcf7-spinner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
  padding: 0;
  background: none !important;
  background-color: transparent !important;
  border: 0.2rem solid var(--primary);
  border-right-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  transform-origin: 50% 50%;
  animation: sytech-spin 0.7s linear infinite;
}
.wpcf7 .wpcf7-spinner::after {
  content: none;
  display: none;
}
.footer_contact .subscribe_form form,
.footer_contact .subscribe_form .wpcf7-form,
.footer_contact form.wpcf7-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  align-content: start;
}
.footer_contact .subscribe_form form > .wpcf7-form-control-wrap,
.footer_contact form.wpcf7-form > .wpcf7-form-control-wrap {
  grid-column: 1;
  grid-row: 1;
  width: auto;
  max-width: 100%;
}
.footer_contact .subscribe_form form > input[type="submit"],
.footer_contact .subscribe_form form > .wpcf7-submit,
.footer_contact form.wpcf7-form > input[type="submit"],
.footer_contact form.wpcf7-form > .wpcf7-submit {
  grid-column: 2;
  grid-row: 1;
  width: auto !important;
  max-width: none;
  justify-self: start;
}
.footer_contact .subscribe_form form.submitting > input[type="submit"],
.footer_contact .subscribe_form form.submitting > .wpcf7-submit,
.footer_contact form.wpcf7-form.submitting > input[type="submit"],
.footer_contact form.wpcf7-form.submitting > .wpcf7-submit {
  padding-right: 4.8rem;
}
.footer_contact .subscribe_form form > .wpcf7-spinner,
.footer_contact form.wpcf7-form > .wpcf7-spinner {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  margin: 0 1.4rem 0 0;
}
.footer_contact .subscribe_form form > .wpcf7-spinner::before,
.footer_contact form.wpcf7-form > .wpcf7-spinner::before {
  border-color: #fff;
  border-right-color: transparent;
}
.footer_contact .subscribe_form form > .wpcf7-response-output,
.footer_contact form.wpcf7-form > .wpcf7-response-output {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.8rem !important;
}
.footer_contact .tcon.wt h2 {
  color: #ffffff;
}
@keyframes sytech-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.wpcf7 form .wpcf7-response-output,
.wpcf7 .wpcf7-response-output {
  display: none;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0;
  background: none !important;
  background-color: transparent !important;
  color: var(--title);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.45;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  display: block;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 .wpcf7-mail-sent-ok {
  color: #1f6b2d;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted,
.wpcf7 .wpcf7-spam-blocked {
  color: #8a1f16;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  position: static;
  align-self: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0.6rem 0 0;
  text-align: left;
  direction: ltr;
  unicode-bidi: isolate;
  color: #b42318;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
}
.upload_area {
  position: relative;
}
.upload_area.has-file strong {
  color: var(--title);
}
.upload_area .wpcf7-form-control-wrap {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.upload_area input[type="file"] {
  display: none !important;
}
.wpcf7 label.btn {
  position: relative;
}
.wpcf7 label.btn .wpcf7-submit,
.wpcf7 label.btn input[type="submit"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.video_pop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.video_pop.active {
  visibility: visible;
  pointer-events: auto;
}
.video_pop .mask {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 21, 0.82);
}
.video_pop .close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
  border-radius: 8px;
  background: url("../img/close.svg") no-repeat center / 1.4rem #fff;
  z-index: 2;
}
.video_pop .pop_content {
  position: relative;
  width: min(110rem, 92vw);
  z-index: 1;
}
.video_pop iframe,
.video_pop video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}
.video_pop video.init {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .video_pop .close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}


.glightbox-container .ginner-container {
  background-color: transparent;
}
.glightbox-container .gslide-image img {
  background-color: #fff;
}
