* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #d8a020;
  --title: #0a0a0c;
  --text: #6b6b72;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 168rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 171rem;
  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);
}
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;
}
.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;
}
body {
  color: var(--title);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Archivo {
  font-family: 'Archivo', sans-serif;
}
.Freeman {
  font-family: 'Freeman', sans-serif;
}
p,
.DM_Sans {
  font-weight: normal;
  font-family: 'DM Sans', sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #fcfae2, #ffffff);
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe {
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  --h: 100%;
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe {
  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 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.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: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  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;
}
.head .subtitle {
  font-size: 1.8rem;
  letter-spacing: 0.144444em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.head h1 {
  color: var(--primary);
  font-size: 9rem;
  font-weight: 700;
  line-height: 0.955556;
  text-transform: uppercase;
}
.head h1 span {
  color: var(--title);
}
.head h2 {
  color: var(--primary);
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.head p {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 5.8rem;
  letter-spacing: 0.038889em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0 4.7rem;
  box-shadow: 0 1rem 1rem rgba(204, 204, 204, 0.55);
  background-image: linear-gradient(to right, #e7da96, #d1a341);
  transition: box-shadow 0.3s, transform 0.5s cubic-bezier(0.23, 1.74, 0.42, 1.59);
}
.btn::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  z-index: -1;
  transition: all 0.3s;
  border-radius: 100px;
  background: url(../img/btn-bg.svg) repeat center / auto 100%;
}
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 1rem 1rem rgba(234, 200, 140, 0.55);
}
.btn:hover::before {
  filter: brightness(1.05);
}
.btn:active {
  transform: scale(0.97);
}
.btn:active::before {
  filter: brightness(1);
}
button.btn {
  letter-spacing: 0.072222em;
}
.arrow_cir {
  width: 6.2rem;
  height: 6.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  background-image: linear-gradient(to right, #e9d59a, #e0c576);
  transition: box-shadow 0.3s, transform 0.5s cubic-bezier(0.23, 1.74, 0.42, 1.59);
}
.arrow_cir::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s;
  background: url(../img/cir-bg.svg) no-repeat center / cover;
}
.arrow_cir::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  background: url(../img/arrow-line-r-w.svg) no-repeat center / contain;
}
.arrow_cir:hover {
  transform: scale(1.1);
  box-shadow: 0 1rem 1rem rgba(234, 200, 140, 0.55);
}
.arrow_cir:hover::before {
  filter: brightness(1.05);
}
.arrow_cir:active {
  transform: scale(1);
}
.arrow_cir:active::before {
  filter: brightness(1);
}
.swiper_btns {
  gap: 2.2rem;
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 186rem;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  width: 5.8rem;
  height: 5.8rem;
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  gap: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2.8rem;
  height: 3px;
  margin: 0;
  opacity: 0.38;
  transition: all 0.3s;
  border-radius: 0;
  background-color: #fff;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}
.product_list {
  --size: 3.6rem;
}
.product_list.collection_list {
  --size: 2.9rem;
}
.product_list.collection_list a {
  padding: 0 0.5rem 5.4rem;
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}
.product_list.collection_list a:hover {
  background-color: #fff;
}
.product_list.collection_list .img {
  margin-top: calc(-1 * var(--size) - 1rem);
}
.product_list.collection_list .info .title {
  font-size: 2.6rem;
  text-transform: uppercase;
  margin-top: 1.6rem;
}
.product_list.collection_list .info .desc {
  font-size: 1.7rem;
  margin-top: 1rem;
}
.product_list.collection_list .arrow_cir {
  width: 5.8rem;
  height: 5.8rem;
}
.product_list li {
  padding: calc(var(--size) + 1rem) 0 var(--size);
}
.product_list a {
  height: 100%;
  display: block;
  padding: 0 1.6rem 6.2rem;
  background-color: #f5f5f7;
  border-radius: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
  position: relative;
}
.product_list a:hover {
  transform: translateY(-1rem);
}
.product_list a:hover .img img {
  transform: scale(1.03);
}
.product_list a:hover .arrow_cir {
  box-shadow: 0 1rem 1rem rgba(234, 200, 140, 0.55);
}
.product_list a:hover .arrow_cir::before {
  filter: brightness(1.05);
}
.product_list a:hover .arrow_cir:hover {
  box-shadow: 0 0.5rem 0.5rem rgba(234, 200, 140, 0.55);
}
.product_list .img {
  margin-top: calc(-1 * var(--size));
  padding-bottom: 100%;
}
.product_list .info {
  text-align: center;
}
.product_list .info .title {
  font-size: 3rem;
  margin-top: 2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .desc {
  color: var(--text);
  font-size: 2rem;
  margin-top: 1.4rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .arrow_cir {
  position: absolute;
  left: calc(50% - var(--size));
  bottom: calc(-1 * var(--size));
}
.news_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1.4rem;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid #ececef;
}
.news_list a:hover {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.14);
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  border-radius: 1.4rem;
  padding-bottom: 56.390977%;
}
.news_list .info {
  flex: 1;
  padding: 3.2rem 2.9rem 3.5rem;
}
.news_list .info .cat {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 2;
  font-size: 1.4rem;
  border-radius: 100px;
  background-color: #fff;
  text-transform: uppercase;
  padding: 1rem 2rem;
  letter-spacing: 0.042857em;
  gap: 0.8rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
}
.news_list .info .cat::before {
  content: '';
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.news_list .info .title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .info .desc {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 1rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .bot {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-top: 1px solid #ececef;
  margin: 0 2.9rem;
  padding: 1.4rem 0 3rem;
}
.news_list .bot .date {
  color: var(--text);
  font-size: 2rem;
  text-transform: uppercase;
}
.news_list .bot .arrow_cir {
  width: 5.8rem;
  height: 5.8rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 996;
  color: #fff;
  background-color: var(--title);
}
header .flex {
  gap: 4.047619%;
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: 23.4rem;
  height: auto;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  flex: 1;
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 6.4rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  color: #fff;
  display: block;
  font-size: 20px;
  line-height: 90px;
  transition: all 0.3s;
  position: relative;
}
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 {
  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;
  border-radius: 0 0 8px 8px;
  background-color: var(--title);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 15px;
  white-space: nowrap;
  padding: 10px 18px;
  transition: all 0.2s;
  border-radius: 6px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
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: 50%;
  border-radius: 8px;
}
header .btns {
  gap: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 90px;
}
header .btn_menu {
  display: none;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
footer {
  color: #fff;
  background-color: var(--title);
}
footer .con {
  flex: 1;
  max-width: 103.6rem;
  gap: 5rem 6.177606%;
}
footer strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.045455em;
}
footer .top {
  padding: 12.2rem 0 6rem;
}
footer .top strong {
  margin-bottom: 2rem;
}
footer .top .con {
  margin-top: 3.988095%;
}
footer .foot_intro {
  width: 36.6rem;
}
footer .logo {
  display: block;
  position: relative;
  max-width: 31.5rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .intro {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin-top: 5rem;
}
footer .btn {
  margin-top: 3rem;
  box-shadow: none;
}
footer .foot_nav {
  flex: 1 0 20rem;
  max-width: 28.6rem;
}
footer .foot_nav li + li {
  margin-top: 1.2rem;
}
footer .foot_nav a {
  vertical-align: top;
  font-size: 2rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .mid {
  padding: 3rem 0;
}
footer .mid strong {
  margin-bottom: 1.4rem;
}
footer .mid .con a {
  font-size: 2.2rem;
  transition: all 0.3s;
  gap: 1rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  max-width: max-content;
}
footer .mid .con a::before {
  content: '';
  display: block;
  background: no-repeat center / contain;
}
footer .mid .con a:hover {
  color: var(--primary);
}
footer .mid .foot_phone {
  flex: 1;
}
footer .mid .foot_phone a::before {
  width: 1.136364em;
  height: 1.136364em;
  background-image: url(../img/icon-phone.svg);
}
footer .mid .foot_email {
  flex: 1;
}
footer .mid .foot_email a::before {
  width: 1.363636em;
  height: 1.136364em;
  background-image: url(../img/icon-email.svg);
}
footer .foot_follow {
  width: 36.6rem;
}
footer .social {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 11.47541%;
}
footer .social a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
footer .social a:hover {
  filter: none;
  transform: scale(1.1);
}
footer .social .facebook {
  margin-left: -1rem;
}
footer .social .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .social .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .social .twitter a {
  background-image: url(../img/social-twitter.svg);
}
footer .social .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .social .instagram a {
  background-image: url(../img/social-instagram.svg);
}
footer .bot {
  padding: 2rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
footer .bot ul {
  gap: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bot ul li {
  gap: 1.4rem;
  display: flex;
  align-items: center;
}
footer .bot ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  background-color: #d3d3d3;
}
footer .bot ul li:last-child::after {
  display: none;
}
footer .bot ul a {
  display: block;
  font-size: 1.4rem;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.68);
}
footer .bot ul a:hover {
  color: var(--primary);
}
footer .copyright {
  color: rgba(255, 255, 255, 0.8);
}
footer #gotop {
  width: 52px;
  height: 52px;
  position: fixed;
  right: 1.2rem;
  bottom: 4rem;
  transition: all 0.3s;
  transform: translateX(calc(100% + 1.2rem));
}
footer #gotop.active {
  transform: translate(0);
}
footer #gotop::before,
footer #gotop::after {
  transform: rotate(-90deg);
}
footer #gotop:hover {
  transform: translate(0) scale(1.1);
}
footer #gotop:active {
  transform: translate(0) scale(1);
}
.section_subscribe {
  padding: 9.2rem 0 10rem;
  background-color: #f2f2f2;
}
.section_subscribe .head {
  flex: 1;
  max-width: 77rem;
}
.section_subscribe .form {
  width: 48.214286%;
  margin-top: 2.857143%;
}
.section_subscribe .form p {
  color: var(--text);
  margin: 0 0 2rem;
}
.section_subscribe form {
  gap: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
}
.section_subscribe form input[type="email"] {
  width: 100%;
  display: block;
  transition: all 0.2s;
  border-radius: 100px;
  border: 1px solid #e3e3e5;
  font-size: 2rem;
  color: var(--title);
  padding: 0 6.122449%;
}
.section_subscribe form input[type="email"]::placeholder {
  color: var(--text);
}
.section_subscribe form input[type="email"]:focus {
  border-color: var(--primary);
}
.section_subscribe form input[type="submit"] {
  display: none;
}
.section_product {
  padding: 12.6rem 0 9.2rem;
}
.section_product .swiper_box {
  margin: 6.8rem 0 3.8rem;
}
.section_product .swiper_box + .content {
  margin-top: 6.2rem;
}
.section_product .section_product_swiper {
  overflow: hidden;
}
.section_distinction {
  padding: 12rem 0 9.5rem;
  background-color: #f2f2f2;
}
.section_distinction .items {
  margin-top: 5rem;
}
.section_distinction ul {
  gap: 2.5rem;
  display: flex;
}
.section_distinction li {
  flex: 1;
  transition: all 0.4s;
}
.section_distinction li.active {
  flex: 2.611888;
}
.section_distinction li.active .info {
  padding-right: 17.402945%;
}
.section_distinction li.active .info p {
  opacity: 1;
  transition: all 0.3s 0.4s;
}
.section_distinction li.active .arrow_cir {
  opacity: 1;
  right: 4.551539%;
}
.section_distinction .img {
  height: 48rem;
  border-radius: 2.4rem;
}
.section_distinction .info {
  position: relative;
  transition: all 0.4s;
}
.section_distinction .info h3 {
  font-size: 2.4rem;
  margin-top: 2.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section_distinction .info p {
  opacity: 0;
  color: var(--text);
  margin-top: 1rem;
  max-width: 55.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section_distinction .info .arrow_cir {
  position: absolute;
  right: 0;
  top: 1.4rem;
  opacity: 0;
  box-shadow: 0 1rem 1rem rgba(234, 200, 140, 0.55);
  transition: all 0.3s, transform 0.5s cubic-bezier(0.23, 1.74, 0.42, 1.59);
}
.section_distinction .info .arrow_cir::before,
.section_distinction .info .arrow_cir::after {
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.section_distinction .info .arrow_cir:hover::after {
  transform: rotate(0);
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.search_drawer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: var(--title);
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  left: 100%;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(2);
  background: url(../img/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
  background-color: transparent;
}
.search_drawer input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search_drawer input[type="submit"] {
  display: none;
}

.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0 4rem;
  display: none;
  background-color: #fff;
  color: var(--title);
}
.mega_menu .flex {
  gap: 4%;
}
.mega_menu .nav {
  width: 20%;
  padding-right: 5px;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .nav::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .nav::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .nav ul {
  gap: 1.5rem;
  display: grid;
}
.mega_menu .nav a {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.2rem 2rem;
  border-radius: 6px;
}
.mega_menu .nav a.active {
  background-color: #edeef2;
}
.mega_menu .nav .icon {
  width: 2.6rem;
  height: 2.6rem;
  background: no-repeat center/contain;
}
.mega_menu .nav .toggle {
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  transition: all .3s;
  background: url(../img/icon-select.svg) no-repeat center/50%;
}
.mega_menu .nav .open .toggle {
  transform: rotate(180deg);
}
.mega_menu .nav .sub {
  display: none;
  padding-top: 1rem;
  padding-left: 2rem;
}
.mega_menu .nav .sub a {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.mega_menu .list {
  flex: 1;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 26rem);
  padding-bottom: 1.5rem;
}
.mega_menu .list::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 3rem 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu .list li a {
  text-align: center;
}
.mega_menu .list li a:hover img {
  transform: scale(1.03);
}
.mega_menu .list li .img {
  padding-bottom: 77.75%;
  overflow: hidden;
}
.mega_menu .list li .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
.mega_menu .list .btn {
  margin-top: 5rem;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu {
    gap: 5rem;
  }
  header nav .menu > li > a {
    font-size: 19px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .swiper_content {
    max-width: 1024px;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .section_distinction .img {
    height: 236px;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu, .mega_overlay {
    display: none !important;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav .close_box {
    display: block;
  }
  header nav > .close {
    position: absolute;
    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;
  }
  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);
    color: var(--title);
  }
  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 .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    overflow: hidden;
    text-indent: -999px;
    filter: contrast(0) brightness(2);
    background: url(../img/nav-btn.svg) no-repeat center / contain;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 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: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .head h1 {
    font-size: 25px;
    line-height: 1.3;
  }
  .head h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .head .desc,
  .head p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .arrow_cir {
    width: 42px;
    height: 42px;
  }
  .swiper_btns {
    gap: 15px;
  }
  .swiper_btns div {
    width: 42px;
    height: 42px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
  }
  .news_list a {
    border-radius: 10px;
  }
  .news_list .img {
    border-radius: 10px;
  }
  .news_list .info {
    padding: 15px 20px;
  }
  .news_list .info .cat {
    gap: 6px;
    top: 15px;
    left: 15px;
    font-size: 12px;
    padding: 10px 15px;
  }
  .news_list .info .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .news_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
  }
  .news_list .bot {
    margin: 0 20px;
    padding: 12px 0;
  }
  .news_list .bot .date {
    font-size: 14px;
  }
  .news_list .bot .arrow_cir {
    width: 42px;
    height: 42px;
  }
  .product_list,
  .product_list.collection_list {
    --size: 2.1rem;
  }
  .product_list a,
  .product_list.collection_list a {
    border-radius: 10px;
    padding: 0 12px 30px;
  }
  .product_list .info .title,
  .product_list.collection_list .info .title {
    font-size: 16px;
    margin-top: 12px;
  }
  .product_list .info .desc,
  .product_list.collection_list .info .desc {
    font-size: 12px;
    margin-top: 8px;
  }
  .product_list .arrow_cir,
  .product_list.collection_list .arrow_cir {
    width: 42px;
    height: 42px;
  }
  header .logo img {
    width: 180px;
  }
  header .btns {
    gap: 25px;
    min-height: 64px;
  }
  footer .con {
    gap: 30px 20px;
  }
  footer strong {
    font-size: 18px;
  }
  footer .top {
    padding: 50px 0 30px;
  }
  footer .top .con {
    gap: 30px 20px;
    margin-top: 30px;
  }
  footer .top strong {
    margin-bottom: 20px;
  }
  footer .foot_intro {
    width: 240px;
  }
  footer .logo {
    width: 160px;
  }
  footer .intro {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
  }
  footer .btn {
    margin-top: 20px;
  }
  footer .foot_nav {
    flex: 1 0 120px;
  }
  footer .foot_nav a {
    font-size: 14px;
  }
  footer .foot_follow {
    width: 240px;
  }
  footer .social {
    gap: 20px;
  }
  footer .mid .con a {
    font-size: 16px;
  }
  footer #gotop {
    width: 42px;
    height: 42px;
    bottom: 30px;
  }
  .section_subscribe {
    padding: 50px 0;
  }
  .section_subscribe .form {
    margin: 0;
    width: 60%;
  }
  .section_subscribe .form p {
    margin-bottom: 12px;
  }
  .section_subscribe form {
    gap: 12px;
  }
  .section_subscribe form input[type="email"] {
    font-size: 15px;
    padding: 0 15px;
  }
  .section_product {
    padding: 50px 0;
  }
  .section_product .swiper_box {
    margin: 10px 0 0;
  }
  .section_product .swiper_box + .content {
    margin-top: 30px;
  }
  .section_distinction {
    padding: 50px 0;
  }
  .section_distinction .items {
    margin-top: 30px;
  }
  .section_distinction ul {
    gap: 15px;
  }
  .section_distinction li.active .info {
    padding-right: 50px;
  }
  .section_distinction li.active .arrow_cir {
    right: 0;
  }
  .section_distinction .img {
    height: 205px;
    border-radius: 15px;
  }
  .section_distinction .info h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .section_distinction .info .arrow_cir {
    top: 0;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    left: unset;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .logo img {
    width: 160px;
  }
  footer .top {
    padding-bottom: 0;
  }
  footer .top .con {
    display: block;
    margin-top: 20px;
  }
  footer .foot_nav {
    width: 100%;
    max-width: unset;
  }
  footer .foot_nav.active strong {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }
  footer .foot_nav.active strong::after {
    transform: rotate(180deg);
  }
  footer .foot_nav strong {
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 44px;
    gap: 15px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    transition: all 0.3s;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
    background: url(../img/icon-select.svg) no-repeat center / contain;
  }
  footer .foot_nav .DM_Sans {
    display: none;
    padding: 0 20px 30px;
  }
  footer .mid .con {
    margin-top: 0;
    display: block;
  }
  footer .mid div + div {
    margin-top: 20px;
  }
  footer .bot {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .section_subscribe .flex {
    display: block;
  }
  .section_subscribe .form {
    width: 100%;
    margin-top: 12px;
  }
  .section_product {
    overflow: hidden;
  }
  .section_product .section_product_swiper {
    overflow: visible;
  }
  .section_product .swiper_btns {
    display: none;
  }
  .section_distinction ul {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .section_distinction ul::-webkit-scrollbar {
    display: none;
  }
  .section_distinction li,
  .section_distinction li.active {
    flex: 1 0 260px;
  }
  .section_distinction li .img,
  .section_distinction li.active .img {
    height: 168px;
  }
  .section_distinction li .info,
  .section_distinction li.active .info {
    padding: 0;
  }
  .section_distinction li .info h3,
  .section_distinction li.active .info h3 {
    -webkit-line-clamp: unset;
  }
  .section_distinction li .info p,
  .section_distinction li.active .info p {
    opacity: 1;
    -webkit-line-clamp: unset;
  }
  .section_distinction li .info .arrow_cir,
  .section_distinction li.active .info .arrow_cir {
    position: relative;
    margin-top: 15px;
    opacity: 1;
  }
}
