:root {
  --theme_color: #d5c8dc;
  --title_color: #171717;
  --content_color: #3d3d3d;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1615px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title_color);
}
.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;
}
body {
  color: var(--title_color);
  font-family: 'Mulish', sans-serif;
  transition: transform 0.5s ease-in-out;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body:has(.footer_service) footer {
  background-color: #f6f3f7;
}
body.menu_open {
  transform: translateX(15rem);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
}
body.menu_open.sticky {
  top: -43px;
}
body.menu_open header .header_nav {
  transform: translateX(-15rem);
}
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: 'Shippori Mincho', sans-serif;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--theme_color);
  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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.img.img_ct img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.head .subtitle {
  color: #7d6c7f;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Allura', sans-serif;
  display: inline-block;
}
.head h2 {
  font-size: 42px;
  font-weight: 500;
}
.head h2::after {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 12px;
  margin-left: 10px;
  aspect-ratio: 12/20;
  transform: translateY(6px);
  background: url(../img/icon-star.svg) no-repeat center / contain;
}
.btn {
  gap: 8px;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 30px;
  border: 1px solid var(--title_color);
  background-color: transparent;
}
.btn::after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1;
  transition: all 0.3s;
  transform: translateY(1px);
  filter: contrast(0) brightness(0);
  background: url(../img/arrow-line-r.svg) no-repeat center / contain;
}
.btn:hover {
  color: #fff;
  background-color: var(--title_color);
}
.btn:hover::after {
  transform: translate(5px, 1px);
  filter: contrast(0) brightness(2);
}
.nav ul {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.nav .active .item,
.nav .item:hover {
  border-color: var(--title_color);
  background-color: transparent;
}
.nav .item {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  padding: 15px 26px;
}
p.center:has(.btn) {
  min-height: 52px;
}
.swiper_btns {
  gap: 20px;
  display: flex;
}
.swiper_btns div {
  width: 56px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--title_color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1;
  transition: all 0.3s;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 1712px;
  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;
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 10px;
}
div.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  margin: 0 !important;
}
div.swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  display: block;
  width: 6px;
  aspect-ratio: 1;
  pointer-events: all;
  border-radius: 50%;
  background-color: #1b1b1b;
  transition: all 0.3s;
}
div.swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: 1px solid #1b1b1b;
  transition: all 0.3s;
  pointer-events: all;
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
}
div.swiper-pagination .swiper-pagination-bullet-active::before {
  opacity: 0;
  transform: scale(1.5);
}
div.swiper-pagination .swiper-pagination-bullet-active::after {
  opacity: 1;
  transform: scale(1);
}
header {
  position: sticky;
  z-index: 996;
  top: -94px;
  transition: all 0.3s;
}
header:has(.header_notice) {
  top: -138px;
}
header:has(.header_notice).sticky {
  top: -44px;
}
header.sticky {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  max-width: 1858px;
  padding: 0 20px;
}
header .header_notice {
  padding: 13px 0;
  background-color: var(--theme_color);
}
header .swiper_box {
  gap: 6.027987%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .swiper_box .btn_prev,
header .swiper_box .btn_next {
  width: 14px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/arrow-line-b.svg) no-repeat center / contain;
}
header .swiper_box .btn_next {
  transform: rotate(180deg);
}
header .swiper_box .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
header .header_notice_swiper {
  overflow: hidden;
  transition: all 0.3s;
}
header .header_notice_swiper .swiper-slide {
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
}
header .header_notice_swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 14px;
  aspect-ratio: 1;
  background: url(../img/icon-gift.svg) no-repeat center / contain;
}
header .header_notice_swiper .swiper-slide a:hover {
  text-decoration: underline;
}
header .header_notice_swiper .swiper-slide p,
header .header_notice_swiper .swiper-slide a {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .header_main {
  background-color: #fff;
}
header .header_main .inner {
  min-height: 94px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}
header .left {
  gap: 28px;
  display: flex;
  align-items: center;
}
header .btn_menu {
  width: 22px;
  aspect-ratio: 1;
  cursor: pointer;
  background: url(../img/icon-menu.svg) no-repeat center / contain;
}
header .header_search {
  width: 100px;
  transition: all .3s;
}
header .header_search.active {
  width: 280px;
}
.wc-dynamic-search-dropdown {
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 10px;
  }
}
header .header_search form {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  position: relative;
}
header .header_search form input[type="submit"] {
  display: block;
  width: 20px;
  aspect-ratio: 1;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .header_search form input[type="text"] {
  width: 100%;
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 12px;
}
header .header_search form input[type="text"]::placeholder {
  color: #000;
}
header .header_search form::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
header .header_search form:focus-within::after {
  width: 100%;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transform: translateY(-2px);
}
header .logo img {
  display: block;
  width: 192px;
  height: auto;
}
header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header .right {
  gap: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .btn_account {
  display: block;
  width: 23px;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-account.svg) no-repeat center / contain;
}
header .btn_like {
  display: block;
  width: 24px;
  aspect-ratio: 1;
  cursor: pointer;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-like.svg) no-repeat center / contain;
}
header .btn_cart {
  display: block;
  width: 22px;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
  background: url(../img/icon-cart.svg) no-repeat center / contain;
}
header .btn_cart .qty {
  color: #594d5b;
  font-size: 12px;
  padding: 0 4px;
  min-width: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: #d4c7db;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, -30%);
}
header .header_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 20rem;
  height: 100vh;
  background-color: #fff;
  z-index: 1998;
  transform: translateX(-20rem);
  transition: transform 0.5s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .header_nav nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
header .header_nav nav .close {
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid #eee;
  text-align: right;
}
header .header_nav nav .close span {
  display: inline-block;
  width: 18px;
  filter: brightness(0);
  height: 18px;
  background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
header .header_nav nav .close span:hover {
  transform: rotate(180deg);
}
header .header_nav nav .close + div {
  flex: 1;
  overflow: auto;
}
header .header_nav nav div > ul {
  padding: 2rem;
}
header .header_nav nav div > ul > li {
  margin-bottom: 28px;
}
header .header_nav nav div > ul > li a {
  transition: all 0.3s;
  color: #333;
}
header .header_nav nav div > ul > li a:hover {
  color: var(--subtheme_color);
}
header .header_nav nav div > ul > li > a {
  display: block;
  font-size: 1.2rem;
}
header .header_nav nav div > ul > li ul {
  padding-top: 2rem;
  padding-left: 2rem;
}
header .header_nav nav div > ul > li ul li {
  position: relative;
  margin-bottom: 1rem;
}
header .header_nav nav div > ul > li ul li::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
header .header_nav nav div > ul > li ul li a {
  font-size: 1.1rem;
  display: block;
}
footer .social a {
  display: block;
  width: 24px;
  aspect-ratio: 1;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
}
footer .social a:hover {
  transform: scale(1.1);
}
footer .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
footer .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_sidebar {
  position: fixed;
  z-index: 99;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.72);
  padding: 9px;
}
footer .footer_sidebar .social {
  gap: 20px;
  display: grid;
  padding: 10px 5px;
}
footer .footer_sidebar .btn_discount {
  display: block;
  transition: all 0.3s;
  border-radius: 100px;
  font-size: 11px;
  background-color: rgba(23, 23, 23, 0.12);
  writing-mode: vertical-lr;
  cursor: pointer;
  transform: rotate(180deg);
  padding: 1rem 10px;
  text-transform: uppercase;
  margin-top: 10px;
}
footer .footer_sidebar .btn_discount:hover {
  background-color: var(--theme_color);
}
footer .footer_main {
  width: calc(100% - 40px);
  max-width: 1834px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 40px 0 128px;
}
footer .footer_main .logo {
  width: 184px;
  aspect-ratio: 184/202;
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  background: url(../img/violet.svg) no-repeat center / contain;
}
footer .footer_main .logo img {
  display: block;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 42px;
  position: absolute;
}
footer .footer_main .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .footer_main .slide_objs {
  flex: 1;
  max-width: 1205px;
  gap: 3rem 1.25rem;
  margin-top: 132px;
}
footer .footer_main .slide_obj strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2rem;
}
footer .footer_main .slide_obj li {
  margin-bottom: 14px;
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_obj li a {
  color: #5e5e5e;
  vertical-align: top;
  transition: all 0.3s;
}
footer .footer_main .slide_obj li a:hover {
  color: #7d6c7f;
}
footer .footer_main .slide_subscribe {
  width: 334px;
}
footer .footer_main .slide_subscribe p {
  color: #5e5e5e;
  line-height: 23px;
}
footer .footer_main .slide_subscribe form {
  margin-top: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #000;
}
footer .footer_main .slide_subscribe form input[type="email"] {
  width: 100%;
  display: block;
  color: #000;
  font-size: 1rem;
  padding: 12px 0;
}
footer .footer_main .slide_subscribe form input[type="email"]::placeholder {
  color: #5e5e5e;
}
footer .footer_main .slide_subscribe form input[type="submit"] {
  display: block;
  width: 20px;
  aspect-ratio: 1;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-subscribe.svg) no-repeat center / contain;
}
footer .footer_main .slide_subscribe .social {
  gap: 1rem 40px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
footer .copyright {
  padding-top: 164px;
  margin-top: -164px;
  background-color: var(--theme_color);
}
footer .copyright .flex {
  width: calc(100% - 40px);
  max-width: 1834px;
  margin: 0 auto;
  padding: 26px 0 28px;
}
footer .copyright p {
  opacity: 0.72;
  font-size: 14px;
  font-weight: 300;
}
footer .copyright .payment {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
footer .copyright .payment li {
  width: 36px;
  aspect-ratio: 36/22;
}
footer .copyright .payment li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.discount_modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.discount_modal.active {
  pointer-events: all;
}
.discount_modal.active > .close {
  opacity: 1;
}
.discount_modal.active .modal_content {
  opacity: 1;
  transform: translate(0);
}
.discount_modal > .close {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.34);
}
.discount_modal .modal_content {
  width: calc(100% - 40px);
  max-width: 960px;
  position: relative;
  transition: all 0.4s;
  transform: translate(-92%, 15%) scale(0);
  opacity: 0;
}
.discount_modal .img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.discount_modal .main {
  width: 50%;
  padding: 12px;
  margin-left: auto;
  background: url(../img/popup-bg.svg) no-repeat center top / cover #ede8f0;
}
.discount_modal .main .close {
  width: 1rem;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: auto;
  background: url(../img/icon-close.svg) no-repeat center / contain;
}
.discount_modal .main .close:hover {
  transform: rotate(180deg);
}
.discount_modal .inner {
  margin-top: 50px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.discount_modal .inner::-webkit-scrollbar {
  width: 4px;
}
.discount_modal .inner::-webkit-scrollbar-thumb {
  background: var(--theme_color);
}
.discount_modal .logo {
  max-width: 127px;
  margin: 0 auto;
}
.discount_modal .logo img {
  display: block;
}
.discount_modal .title.center {
  margin-top: 50px;
}
.discount_modal .title.center .label {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
}
.discount_modal .title.center .discount {
  font-size: 54px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 1rem;
}
.discount_modal form {
  max-width: 20rem;
  margin: 70px auto 0;
  min-height: 41.349293vh;
}
.discount_modal form .title {
  font-size: 22px;
  font-weight: 700;
}
.discount_modal form ul {
  gap: 1rem 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 13px;
}
.discount_modal form ul label {
  gap: 8px;
  display: flex;
  align-items: center;
}
.discount_modal form .label {
  font-size: 18px;
  cursor: pointer;
}
.discount_modal form input[type="radio"] {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  transition: all 0.3s;
  border: 1px solid #333;
  appearance: none;
  cursor: pointer;
}
.discount_modal form input[type="radio"]:checked {
  border: 6px solid #000;
}
.discount_modal form input[type="email"] {
  display: block;
  width: 100%;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  padding: 20px 20px;
  margin-top: 2rem;
}
.discount_modal form input[type="email"]::placeholder {
  color: #686868;
}
.discount_modal form input[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 20px;
  border: 2px solid #000;
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: transparent;
  padding: 18px;
  transition: all 0.3s;
}
.discount_modal form input[type="submit"]:hover {
  color: #fff;
  background-color: #000;
}
.footer_gallery {
  padding: 40px 0;
}
.footer_gallery .inner {
  overflow: hidden;
}
.footer_gallery .head .btn {
  margin-top: 35px;
}
.footer_gallery .footer_gallery_swiper {
  max-width: 1879px;
  margin: 58px auto 0;
  width: calc(100% - 3rem);
}
.footer_gallery .footer_gallery_swiper .swiper-wrapper {
  transition: all linear;
}
.footer_gallery .footer_gallery_swiper .img {
  aspect-ratio: 357/427;
}
.footer_gallery .footer_gallery_swiper .img:hover img {
  transform: scale(1.03);
}
.footer_gallery .bg1 {
  width: 69.716088%;
  aspect-ratio: 1105/1014;
  transition: all 2s;
  position: absolute;
  left: -38.485804%;
  bottom: -378px;
  z-index: -1;
  pointer-events: none;
  background: url(../img/gallery-bg1.svg) no-repeat center / contain;
}
.footer_gallery .bg2 {
  width: 13.249211%;
  aspect-ratio: 210/352;
  transition: all 2s;
  position: absolute;
  right: -13%;
  bottom: -192px;
  z-index: -1;
  pointer-events: none;
  background: url(../img/gallery-bg2.svg) no-repeat center / contain;
}
.footer_service {
  padding: 56px 0 53px;
  background-color: #f6f4f9;
}
.footer_service .syeditorlist {
  width: calc(100% - 40px);
  max-width: 1834px;
  margin: 0 auto;
  gap: 3rem 3%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.footer_service .item {
  flex: 1 0 250px;
  display: grid;
  gap: 5px 22px;
  grid-template-columns: auto 1fr;
}
.footer_service .item .icon {
  width: 22px;
  aspect-ratio: 1;
  grid-row: span 2;
  transform: translateY(5px);
  background: no-repeat center / contain;
}
.footer_service .item .title {
  font-size: 20px;
  font-weight: 500;
}
.footer_service .item .desc {
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.product_list .product_item {
  max-width: 432px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.product_list .product_item:hover {
  box-shadow: 0 8px 20px rgba(96, 96, 96, 0.25);
}
.product_list .product_item:hover .funcs {
  opacity: 1;
  transform: translate(0);
}
.product_list .product_item .funcs {
  position: absolute;
  top: 14px;
  right: 1rem;
  z-index: 9;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(calc(100% + 1rem));
}
.product_list .product_item .funcs > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-top: 14px;
}
.product_list .product_item .funcs > div.btn_like.active:hover{
  background-color: white;
}
.product_list .product_item .funcs > div:first-child {
  margin-top: 0;
}
.product_list .product_item .funcs > div::after {
  content: '';
  display: block;
  width: 18px;
  aspect-ratio: 1;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
.product_list .product_item .funcs > div:hover {
  background-color: var(--theme_color);
}
.product_list .product_item .funcs .btn_view::after {
  background-image: url(../img/icon-view.svg);
}
.product_list .product_item .funcs .btn_like::after {
  background-image: url(../img/icon-like.svg);
}
.product_list .product_item .funcs .btn_like.active::after{
  background-image: url('../img/liked.svg');
}

.product_list .product_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  position: relative;
}
.product_list .product_item a:hover .btn_add_to_cart {
  transform: translateX(-50%);
}
.product_list .product_item .tag {
  position: absolute;
  left: 20px;
  top: 22px;
  z-index: 9;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--theme_color);
  padding: 6px 20px;
}
.product_list .product_item .image {
  overflow: hidden;
  position: relative;
}
.product_list .product_item .image:hover .product_item_swiper {
  opacity: 1;
}
.product_list .product_item .image:hover + .info .swiper-pagination {
  opacity: 1;
  transform: translate(-50%, -1rem);
}
.product_list .product_item .img {
  aspect-ratio: 430/460;
}
.product_list .product_item .product_item_swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;

  background-color: #fff;
}
.product_list .product_item .btn_add_to_cart {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background-color: #000;
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 9;
  padding: 14px 42px;
  transition: all 0.3s;
  transform: translate(-50%, calc(100% + 36px));
}
.product_list .product_item .btn_add_to_cart:hover {
  color: #000;
  background-color: var(--theme_color);
}
.product_list .product_item .info {
  flex: 1;
  position: relative;
  padding: 28px 26px 2rem;
}
.product_list .product_item .swiper-pagination {
  height: 30px;
  opacity: 0;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 23px;
}
.product_list .product_item .type {
  opacity: 0.6;
  font-size: 13px;
  text-transform: uppercase;
}
.product_list .product_item .con {
  gap: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 4px;
}
.product_list .product_item .title {
  font-size: 17px;
  font-weight: 500;
}
.product_list .product_item .price {
  font-size: 15px;
  display: flex;
  align-items: center;
}
.product_list .product_item .color {
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.product_list .product_item .color li {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: no-repeat center / contain;
  position: relative;
  cursor: pointer;
}
.product_list .product_item .color li::before {
  content: '';
  display: block;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid var(--title_color);
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s;
}
.product_list .product_item .color li.active::before,
.product_list .product_item .color li:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.blog_box ul {
  display: grid;
  gap: 0 3.333333%;
  grid-template-columns: 56.782334% 1fr;
}
.blog_box li a:hover img {
  transform: scale(1.03);
}
.blog_box li a:hover .info .title {
  text-decoration: underline;
}
.blog_box li .img {
  position: relative;
}
.blog_box li .img .cat {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 2;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  background-color: #fff;
  padding: 9px 21px;
}
.blog_box li .info .date {
  opacity: 0.8;
  font-size: 15px;
}
.blog_box li .info .title {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_box li .info .desc {
  opacity: 0.85;
  font-weight: 300;
  line-height: 23px;
  margin-top: 20px;
}
.blog_box li .info .more {
  color: #7d6c7f;
  font-weight: 500;
  text-decoration: underline;
}
.blog_box li:first-child {
  grid-row: span 2;
}
.blog_box li:first-child a {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.blog_box li:first-child .img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.blog_box li:first-child .img::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 60%;
  left: 0;
  bottom: 0;
  opacity: 0.6;
  background-image: linear-gradient(to top, #000, transparent);
}
.blog_box li:first-child .info {
  width: 100%;
  padding: 6.33333% 6%;
}
.blog_box li:first-child .info * {
  filter: contrast(0) brightness(2);
}
.blog_box li:first-child .info .date {
  opacity: 1;
}
.blog_box li:first-child .info .title {
  font-size: 34px;
  font-weight: 500;
  line-height: 44px;
  max-width: 407px;
  margin-top: 10px;
}
.blog_box li:first-child .info .desc {
  display: none;
}
.blog_box li:first-child .info .more {
  font-size: 14px;
  margin-top: 36px;
}
.blog_box li:first-child ~ li a {
  display: grid;
  gap: 5.079365%;
  grid-template-columns: 45.238095% 1fr;
}
.blog_box li:first-child ~ li .img {
  height: 314px;
}
.blog_box li:first-child ~ li .info .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 1rem;
}
.blog_box li:first-child ~ li .info .more {
  margin-top: 46px;
}
.blog_box li:nth-child(2) {
  padding-bottom: 35px;
}
.blog_box li:nth-child(2) ~ li {
  padding-top: 35px;
  border-top: 1px solid #ededed;
}
.blog_box li:nth-child(2) ~ li .img {
  height: 292px;
}
.blog_box li:nth-child(2) ~ li .info .more {
  margin-top: 68px;
}
.page_banner {
  padding: 120px 0;
  background: no-repeat center top / contain;
  position: relative;
}
.page_banner::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0) 35%);
  opacity: 0.45;
}
.page_banner .flex {
  min-height: 548px;
  align-items: end;
  position: relative;
  z-index: 2;
}
.page_banner .head {
  padding-bottom: 0.34%;
}
.page_banner h1 {
  font-size: 54px;
  color: #fff;
  line-height: 59px;
  font-weight: 500;
}
.page_banner .desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-top: 23px;
}
.blog_list .blog_item a {
  display: block;
  height: 100%;
}
.blog_list .blog_item a:hover img {
  transform: scale(1.03);
}
.blog_list .blog_item .img {
  aspect-ratio: 493/369;
  position: relative;
}
.blog_list .blog_item .cat {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #171717;
  background-color: #fff;
  line-height: 2;
  padding: 4px 21px;
}
.blog_list .blog_item .info {
  padding-top: 26px;
}
.blog_list .blog_item .date {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.8);
}
.blog_list .blog_item .title {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 26px;
  margin-top: 12px;
  display: block;
}
.blog_list .blog_item .desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(23, 23, 23, 0.85);
  line-height: 22px;
  margin-top: 24px;
}
.blog_list .blog_item .more {
  font-size: 16px;
  font-weight: 500;
  color: #7d6c7f;
  text-decoration: underline;
  margin-top: 33px;
  display: block;
  width: fit-content;
}
.breadcrumbs span span,
.breadcrumbs span a {
  font-size: 21px;
  color: #957390;
  letter-spacing: 1.6px;
  font-family: 'Allura', sans-serif;
}
.breadcrumbs span span {
  margin: 0 18px;
}
.breadcrumbs span span:first-child {
  margin-left: 0;
}

/*** global css ***/
.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../global/img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.wpcf7 form.wpcf7-form span.wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  padding: 0;
  margin: 0;
  border: none;
}
span.wpcf7-list-item {
  margin: 0;
}
form span {
  position: relative;
}

div form#sytech-newsletter-subscription {
  display: grid;
}
div form#sytech-newsletter-subscription p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
div.slide_obj div form#sytech-newsletter-subscription p {
  color: var(--title_color);
}
div form#sytech-newsletter-subscription p.success.active {
  top: -3rem;
}
div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  background-color: var(--theme_color);
}
div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  top: 0.9rem;
  filter: contrast(0) brightness(0);
}
div form#sytech-newsletter-subscription p.success::after,
div form#sytech-newsletter-subscription p.failed::after {
  bottom: unset;
  top: 100%;
  border-top-color: var(--theme_color);
}
.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 80vh;
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe, .video_pop .pop_content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
.quote_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
div.quote_modal form input[type="checkbox"] {
  margin-top: 0;
}
div.quote_modal form input[type="checkbox"] ~ span {
  font-size: 14px;
  margin-top: 0;
}
/*** global css ***/
header .accountbox a {
  display: flex;
  padding-top: 0.2rem;
  font-weight: 600;
}
header .accountbox span {
  margin-left: 1rem;
  transform: translateY(-2px);
}

#sidebar-cart .sale-price {
  color: var(--title_color) !important;
}
#sidebar-cart .remove-cart-item {
  color: var(--title_color);
}
#sidebar-cart .cart-item-title a:hover {
  color: var(--theme_color);
}
#sidebar-cart .go-to-cart {
  transition: all .3s;
  color: var(--title_color);
  background-color: var(--theme_color);
}
#sidebar-cart .go-to-cart:hover {
  color: #fff;
  background-color: var(--title_color);
}
#sidebar-cart .sidebar-cart-footer a.buy-now {
  transition: all .3s;
  color: var(--title_color) !important;
  background-color: transparent !important;
  border: 1px solid var(--title_color);
}
#sidebar-cart .sidebar-cart-footer a.buy-now:hover {
  color: #fff !important;
  background-color: var(--title_color) !important;
}
.cart-item-details {
  padding-right: 1rem;
}
#sidebar-cart .cart-item-quantity button.qty-decrease {
  margin-left: 0;
}
#sidebar-cart .empty-cart .shop-now-button {
  transition: all .3s;
  color: var(--title_color);
  background-color: var(--theme_color);
}
#sidebar-cart .empty-cart p {
  margin-bottom: 2rem;
}
#sidebar-cart .empty-cart .shop-now-button:hover {
  color: #fff;
  background-color: var(--title_color);
}
#sytech-quick-view-form {
  margin-top: 1rem;
  gap: 1rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
}
#sytech-quick-view-form select {
  padding: 10px 30px 10px 14px;
  font-size: 14px;
  outline: none;
  font-weight: 500;
  max-width: max-content;
  background: url(../img/icon-select-b.svg) no-repeat right+10px center/10px;
}
.sytech-quick-view-quantity {
  grid-column: 1/-1;
  margin: 0;
}
#sytech-quick-view-form .btn {
  padding: 12px 1rem;
  margin-top: 8px;
  grid-column: 1/-1;
  max-width: max-content;
}
.swal2-actions .swal2-cancel {
  color: var(--title_color);
  background-color: #eee !important;
}
.swal2-actions .swal2-confirm {
  color: var(--title_color);
  background-color: var(--theme_color) !important;
}
.swal2-icon.swal2-warning {
  border-color: var(--theme_color);
  color: var(--theme_color);
}


.wplr-logo{
  filter: contrast(0) brightness(100);
}
.wplr-social-login a{
  background-color: white;
  color: #000;
}

div:where(.swal2-icon){
  width: 4rem !important;
  height: 4rem !important;
}
div:where(.swal2-container) h2:where(.swal2-title){
  padding-top: 0 !important;
}



.whatsapp-pop{
  position: fixed;
  right: 20px;
  bottom: 35px;
  z-index: 99;

}
.whatsapp-pop a{
  font-size: 18px;
  position: relative;
  color: white;
  padding: 11px 23px;
  border-radius: 20rem;
  background-color: rgb(37, 211, 102);
  padding-left: 52px;
}
.whatsapp-pop a:before{
  content: "";
  width: 21px;
  height: 21px;
  background: url('../img/whatsapp.svg') no-repeat center/contain;
  position: absolute;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}