* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #00a6a2;
  --secondary: #000;
  --title: #282828;
  --text: #3d3d3d;
  --bg: #f0f0f0;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 175.6rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 178.6rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
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);
}
.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 {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
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;
  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);
  }
}
div[data-wpr-lazyrender] {
  content-visibility: unset;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 6.4rem;
  font-weight: 600;
  padding: 0 5.7rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn.sm {
  font-size: 1.6rem;
  line-height: 5rem;
  padding: 0 4.6rem;
}
.btn.lit {
  font-size: 1.5rem;
  line-height: 4.8rem;
  padding: 0 4.4rem;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  text-transform: uppercase;
  transition: all 0.3s;
  font-size: 1.837rem;
  line-height: normal;
  font-weight: 600;
  color: #575757;
  gap: 2.7rem;
}
.btn_i::after {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
  background: url("../img/arrow-tr-w.svg") no-repeat center / 22.22222% var(--primary);
  content: '';
  transition: all 0.3s, transform 0.4s;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: rotate(45deg);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 6.4rem;
  font-weight: 600;
  padding: 0 5.6rem;
}
.btn_line:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.swiper_btns {
  gap: 2.5rem;
  display: flex;
}
.swiper_btns div {
  width: 6.2rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 17.742%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #000;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 99%;
  max-width: 188rem;
  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;
}
.swiper_btns.white div:hover {
  background-color: #fff;
}
.swiper_btns.white div:hover::after {
  filter: unset;
}
.swiper_btns.white .swiper-button-disabled {
  background-color: #fff;
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.head.sm h2 {
  font-size: 3rem;
  line-height: normal;
  font-weight: 600;
}
.head h2 {
  font-size: 4.7rem;
  line-height: 6.1rem;
  font-weight: 700;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.compact {
  top: -4.2rem;
}
header.opt {
  top: -15rem;
}
header.fixed {
  position: fixed;
  background-color: transparent;
}
header.fixed nav .menu > li > a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15px;
}
header.fixed .center .logo img {
  filter: contrast(0) brightness(2);
}
header.fixed .btns .icon_item {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.09px;
}
header.fixed .btns .icon_item i::after {
  filter: contrast(0) brightness(2);
}
header.fixed .btns .icon_item.active,
header.fixed .btns .icon_item:hover {
  box-shadow: unset;
}
header.fixed .btns .btn_menu {
  filter: contrast(0) brightness(2);
}
header.fixed.sticky {
  background-color: #fff;
}
header.fixed.sticky nav .menu > li > a {
  color: #000;
}
header.fixed.sticky nav.current-menu-item > a,
header.fixed.sticky .menu > li.current-menu-item > a,
header.fixed.sticky nav.current-menu-parent > a,
header.fixed.sticky .menu > li.current-menu-parent > a,
header.fixed.sticky nav:hover > a,
header.fixed.sticky .menu > li:hover > a {
  color: var(--primary);
}
header.fixed.sticky .center .logo img {
  filter: unset;
}
header.fixed.sticky .btns .icon_item {
  color: #000;
}
header.fixed.sticky .btns .icon_item i::after {
  filter: unset;
}
header.fixed.sticky .btns .icon_item.active,
header.fixed.sticky .btns .icon_item:hover {
  color: #fff;
  box-shadow: 0 3px 3px rgba(204, 204, 204, 0.75);
}
header.fixed.sticky .btns .icon_item.active i::after,
header.fixed.sticky .btns .icon_item:hover i::after {
  filter: contrast(0) brightness(2);
}
header.fixed.sticky .btns .btn_menu {
  filter: unset;
}
header .header_top {
  background-color: var(--primary);
  color: #fff;
  padding: 0.6rem 0;
}
header .header_top .flex {
  position: relative;
}
header .header_top .header_swiper {
  font-size: 1.5rem;
  overflow: hidden;
  height: 3rem;
  max-width: calc(100% - 40rem);
  margin: 0 auto;
  letter-spacing: 0.08px;
}
header .header_top .header_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_top .header_swiper a,
header .header_top .header_swiper p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
header .header_top .header_swiper a {
  transition: all 0.3s;
}
header .header_top .header_swiper a:hover {
  text-decoration: underline;
}
header .header_top .btn_lang {
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  display: inline-grid;
  grid-template-columns: 1.8rem 1fr;
  align-items: center;
  cursor: pointer;
  gap: 0.6rem;
  font-weight: 300;
  letter-spacing: -0.55px;
  margin-right: 0.6rem;
}
header .header_top .btn_lang .lang-icon {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/icon-lang.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
  margin-top: -1px;
}
header .center {
  display: flex;
  align-items: center;
  padding-top: 0.2%;
  margin-right: 13.5%;
}
header .center .logo {
  display: block;
  position: relative;
}
header .center .logo img {
  display: block;
  width: auto;
  height: 3.1rem;
  transition: all 0.3s;
}
header .center .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 4.26rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s;
  line-height: 10.3rem;
  padding-top: 5px;
}
header nav .menu > li.current-menu-item > a,
/* header nav .menu > li.current-menu-parent > a, */
header nav .menu > li:hover > a {
  color: var(--primary);
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 10.8rem;
  padding-bottom: 2px;
  padding-right: 0.5rem;
}
header .btns .btn_menu,
header .btns .btn_lang {
  display: none;
}
header .btns .icon_item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 6px;
  color: #000;
  gap: 2px;
  padding: 1.9rem 1rem 0.3rem;
  min-width: 8.3rem;
}
header .btns .icon_item.active,
header .btns .icon_item:hover {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 3px 3px rgba(204, 204, 204, 0.75);
}
header .btns .icon_item.active i::after,
header .btns .icon_item:hover i::after {
  filter: contrast(0) brightness(2);
}
header .btns .icon_item.active i span,
header .btns .icon_item:hover i span {
  color: #000;
}
header .btns .icon_item.active i span::after,
header .btns .icon_item:hover i span::after {
  background-color: #fff;
}
header .btns .icon_item i {
  position: relative;
  display: block;
  width: 2.5rem;
}
header .btns .icon_item i::after {
  display: block;
  padding-bottom: 100%;
  background: no-repeat center / contain;
  content: '';
}
header .btns .icon_item i span {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s;
  text-align: center;
  line-height: 1.8rem;
  min-width: 1.8rem;
  transform: translate(50%, -43%);
}
header .btns .icon_item i span:after {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  content: '';
  pointer-events: none;
  transition: all 0.3s;
  z-index: -1;
}
header .btns .favorite {
  margin-right: 2px;
}
header .btns .favorite i::after {
  background-image: url("../img/icon-love.svg");
}
header .btns .login i::after {
  background-image: url("../img/icon-user.svg");
}
header .btns .cart i::after {
  background-image: url("../img/icon-cart.svg");
}
footer {
  padding-bottom: 2.6rem;
}
footer .footer_main {
  color: #000;
  padding: 18.4rem 0 2.4rem;
}
footer .footer_main .flex {
  gap: 15rem 2rem;
  padding-left: 10.82%;
}
footer .footer_main strong {
  display: block;
  font-size: 2.46rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer .footer_main .slide_obj strong {
  margin-bottom: 3.1rem;
}
footer .footer_main .slide_obj ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 1.45rem 10.3rem;
}
footer .footer_main .slide_obj li {
  min-width: 26rem;
}
footer .footer_main .slide_obj li a {
  font-size: 1.968rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .footer_main .slide_obj li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_main .slide_connect {
  width: 56.9rem;
}
footer .footer_main .slide_connect strong {
  margin-bottom: 3.3rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  padding-left: 3.55rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.6rem;
}
footer .footer_main .slide_connect li a {
  font-size: 2.1rem;
  font-weight: 500;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .footer_main .slide_connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_main .slide_connect li .label {
  font-size: 1.845rem;
  margin-top: 0.7rem;
}
footer .footer_main .slide_connect li + li {
  margin-top: 2.8rem;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .footer_main .slide_connect .email::before {
  top: 1rem;
  background-image: url(../img/icon-email.svg);
}
footer .footer_main .slide_social {
  width: 100%;
}
footer .footer_main .slide_social .social {
  gap: 2rem 1.67rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .footer_main .slide_social .social .active a {
  background-color: var(--primary);
}
footer .footer_main .slide_social .social .active a::after {
  filter: contrast(0) brightness(2);
}
footer .footer_main .slide_social .social a {
  opacity: 1;
  display: block;
  width: 5.3rem;
  height: 5.3rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
}
footer .footer_main .slide_social .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 56.603774%;
}
footer .footer_main .slide_social .social a:hover {
  transform: scale(1.1);
}
footer .footer_main .slide_social .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_social .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .slide_social .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_social .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_social .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .copyright {
  width: calc(100% - 2rem);
  max-width: 188.8rem;
  margin: 0 auto;
  border-radius: 1.7rem;
  background-color: var(--bg);
  padding: 1.9rem 0 2rem;
  color: #37393a;
}
footer .copyright a {
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .copyright p {
  margin-top: 0.3rem;
}
footer .copyright ul:not(.payment_list) {
  margin-top: 0.3rem;
}
footer .copyright ul:not(.payment_list) li {
  display: inline-flex;
  align-items: center;
}
footer .copyright ul:not(.payment_list) li:first-child::before {
  display: none;
}
footer .copyright ul:not(.payment_list) li::before {
  display: inline-block;
  content: ' | ';
  margin: 0 1.3rem 0 0.8rem;
}
footer .copyright .payment_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .copyright .payment_list li {
  position: relative;
  width: 6.4rem;
  border-radius: 6px;
  background-color: #fff;
}
footer .copyright .payment_list li::after {
  padding-bottom: 56.25%;
  display: block;
  content: '';
  pointer-events: none;
}
footer .copyright .payment_list li img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer_brands {
  padding: 5.5rem 0;
  overflow: hidden;
}
.footer_brands .footer_brands_swiper {
  max-width: 192rem;
  margin: 5.7rem auto 0;
}
.footer_brands .footer_brands_swiper .swiper-wrapper {
  transition: linear;
}
.footer_brands .footer_brands_swiper .swiper-slide {
  width: auto;
  max-width: 25.3rem;
  height: 14.1rem;
}
.footer_brands .footer_brands_swiper .img {
  height: 100%;
  width: auto;
}
.footer_brands .footer_brands_swiper .img:hover img {
  transform: scale(1.02);
}
.footer_shop {
  width: calc(100% - 2rem);
  max-width: 188.8rem;
  margin: 0 auto;
  border-radius: 1.7rem;
  background: url("../img/footer-bg.jpg") no-repeat center / cover;
}
.footer_shop .flex {
  min-height: 36.8rem;
  padding: 4rem 0;
}
.footer_shop .subtitle {
  font-size: 2.3rem;
  font-weight: 600;
  color: #999999;
  margin-bottom: -0.6rem;
}
.footer_shop .head {
  color: #fff;
  flex: 1;
  padding-top: 1px;
}
.footer_shop .head h2 {
  font-size: 6.6rem;
  line-height: 1.3;
}
.footer_shop .btn {
  margin-top: 1.3rem;
}
.header_advantages {
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  padding: 3.3rem 0 3.4rem;
}
.header_advantages.bg {
  border: none;
  background-color: var(--bg);
}
.header_advantages .items {
  max-width: 152rem;
  margin: 0 auto;
  overflow: hidden;
}
.header_advantages .items ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: -1px;
  gap: 3rem 0;
}
.header_advantages .items li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 1rem;
  padding: 0 2rem;
}
.header_advantages .items li::before {
  width: 1px;
  height: 84.090909%;
  background-color: #dddddd;
  position: absolute;
  left: 0;
  content: '';
}
.header_advantages .items li i {
  width: 4.4rem;
  height: 4.4rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: no-repeat center / contain;
}
.header_advantages .items li span {
  margin-bottom: 0.3rem;
}
.page_intro {
  padding: 5.3rem 0 8.5rem;
  overflow: hidden;
}
.page_intro .imgs {
  width: 44.81776765%;
  margin-left: -0.911162%;
  position: relative;
}
.page_intro .imgs .img {
  border-radius: 3.2rem;
}
.page_intro .imgs .img:hover img {
  transform: scale(1.02);
}
.page_intro .imgs .img_sm {
  position: absolute;
  width: 45.8704%;
  --h: 127.97784%;
  left: 0;
  top: 56%;
  transform: translateY(-50%) rotate(-4deg);
  z-index: 2;
}
.page_intro .imgs .img_lar {
  width: 74.8412%;
  --h: 126.82513%;
  transform: rotate(3deg);
  margin-left: auto;
}
.page_intro .imgs + .head {
  max-width: 79.1rem;
}
.page_intro .head {
  flex: 1;
  padding-bottom: 6%;
}
.page_intro h1 {
  font-size: 8.7rem;
  line-height: 8.6rem;
  font-weight: 700;
  color: #000;
  max-width: 53rem;
  margin-bottom: 4.1rem;
}
.page_intro h2 {
  margin-bottom: 2rem;
  max-width: 53rem;
}
.page_intro p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  margin-top: 1rem;
  max-width: 68.1rem;
}
.page_intro .btn {
  margin-top: 3.2rem;
  font-size: 1.5rem;
  line-height: 5.8rem;
  padding: 0 3.2rem;
}
.page_sidebar {
  position: fixed;
  right: 6.7rem;
  z-index: 99;
  bottom: 3.7rem;
  pointer-events: none;
}
.page_sidebar .icons {
  display: grid;
  gap: 3rem;
}
.page_sidebar .icon_item {
  width: 6.1rem;
  height: 6.1rem;
  display: block;
  cursor: pointer;
  background: url("../img/cart.svg") no-repeat center / contain var(--primary);
  border-radius: 50%;
  transition: all 0.3s;
  pointer-events: all;
}
.page_sidebar .icon_item:hover {
  transform: scale(1.1);
}
.page_sidebar .favorite {
  display: none;
  background-image: url("../img/love.svg");
  background-size: 40%;
}
.star {
  position: relative;
  width: var(--w);
}
.star::after {
  content: '';
  display: block;
  padding-bottom: 11.243%;
  width: var(--value);
  background: url("../img/star.svg") no-repeat left center / var(--w) 100%;
}
.star::before {
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  width: calc(100% - var(--value));
  background: url("../img/star-hollow.svg") no-repeat right center / var(--w) 100%;
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 3.4rem;
}
.breadcrumbs span {
  font-size: 2rem;
  color: #999999;
  letter-spacing: 2px;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/icon-breadcrumbs.svg") no-repeat center / contain;
  width: 1rem;
  height: 1rem;
  margin: 0 1.6rem 0 1.1rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.order_step {
  border-bottom: 1px solid #f0f0f0;
  padding: 5.4rem 0 4.4rem;
}
.order_step .step {
  max-width: 66.4rem;
  margin: 0 auto;
}
.order_step .step ul {
  display: flex;
}
.order_step .step li {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.order_step .step li:last-child::before {
  display: none;
}
.order_step .step li::before {
  width: 100%;
  height: 1px;
  background-color: var(--bg);
  position: absolute;
  left: 50%;
  top: 2.6rem;
  content: '';
}
.order_step .step li.active i::after {
  background-color: var(--primary);
}
.order_step .step li.active .label {
  color: #000;
}
.order_step .step i {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s;
  line-height: 5.2rem;
  min-width: 5.2rem;
  padding: 0 1rem;
}
.order_step .step i::before {
  width: 165%;
  padding-bottom: 165%;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  content: '';
  pointer-events: none;
  z-index: -1;
}
.order_step .step i::after {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--bg);
  transition: all 0.3s;
  position: absolute;
  content: '';
  pointer-events: none;
  z-index: -1;
}
.order_step .step .label {
  font-size: 1.7rem;
  font-weight: 500;
  color: rgba(160, 160, 160, 0.5);
  text-align: center;
  transition: all 0.3s;
  margin-top: 1.4rem;
  position: relative;
  z-index: 2;
}
.product_list > li {
  display: flex;
  flex-direction: column;
}
.product_list > .active .img .pd_bg {
  opacity: 1;
  transform: scale(1);
}
.product_list > .active .img .pd_img {
  opacity: 0;
  transform: scale(1.05);
}
.product_list .wrap {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
}
.product_list .img {
  display: block;
  width: 100%;
  padding-bottom: 74.95591%;
}
.product_list .img img {
  transition: all 0.5s linear;
}
.product_list .img .pd_img {
  background-color: var(--bg);
}
.product_list .img .pd_bg {
  opacity: 0;
  object-fit: cover;
  transform: scale(1.05);
}
.product_list .icon_con {
  position: absolute;
  right: 4.056%;
  top: 4.353%;
  z-index: 2;
  display: grid;
  gap: 1rem;
  pointer-events: none;
}
.product_list .icon_con .icon {
  width: 3.6rem;
  display: block;
  height: 3.6rem;
  background: no-repeat center / contain #000;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
  content: '';
  pointer-events: all;
}
.product_list .icon_con .icon.active,
.product_list .icon_con .icon:hover {
  background-color: var(--primary);
}
.product_list .icon_con .cart {
  background-image: url("../img/pd-cart.svg");
}
.product_list .icon_con .love {
  background-image: url("../img/pd-love.svg");
}
.product_list .off {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  line-height: 3.3rem;
  padding: 0 1rem;
  color: #fff;
  background-color: var(--primary);
  border-bottom-right-radius: 6px;
  letter-spacing: 0.12px;
}
.product_list .info {
  flex: 1;
  margin-top: 1.9rem;
  color: #000000;
}
.product_list .title {
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.product_list .title h3 {
  font-size: 2.6rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .title .price {
  white-space: nowrap;
}
.product_list .colors {
  margin-top: 1.2rem;
}
.product_list .colors ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.7rem;
}
.product_list .colors li {
  width: 3.6rem;
  height: 3.6rem;
  border: 0.35rem solid #fff;
  border-radius: 50%;
  background-color: var(--color);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}
.product_list .colors li:hover {
  transform: scale(1.1);
}
.product_list .info_wrap {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 1rem;
}
.product_list .info_wrap .feature_wrap {
  padding-bottom: 2px;
}
.product_list .info_wrap .feature_wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4.1rem;
}
.product_list .info_wrap .feature_wrap .label {
  color: #999999;
}
.product_list .info_wrap .feature_wrap .value {
  font-size: 1.751rem;
  color: #222222;
  font-weight: 700;
  display: block;
  margin-top: 0.3rem;
}
.product_list .info_wrap .btn {
  padding: 0 4.15rem;
}


.default_head{
  padding: 15rem 0 9rem;
  background-color: #333;
}
.default_head h1{
  font-size: 4.5rem;
  color: white;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}

#sidebar-cart .sale-price {
    color: var(--title)!important
}

#sidebar-cart .remove-cart-item {
    color: var(--title)
}

#sidebar-cart .cart-item-title a:hover {
    color: var(--title)
}

#sidebar-cart .go-to-cart {
    transition: all .3s;
    color: #fff;
    background-color: var(--primary)
}

#sidebar-cart .go-to-cart:hover {
    color: #fff;
    background-color: var(--title)
}

#sidebar-cart .sidebar-cart-footer a {
    border-radius: 0
}

#sidebar-cart .sidebar-cart-footer a.buy-now {
    transition: all .3s;
    color: var(--title)!important;
    background-color: transparent!important;
    border: 1px solid var(--title)
}

#sidebar-cart .sidebar-cart-footer a.buy-now:hover {
    color: #fff!important;
    background-color: var(--title)!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: #fff;
    font-size: 1.3rem;
    background-color: var(--title);
    border-radius: 0
}

#sidebar-cart .empty-cart p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

#sidebar-cart .empty-cart .shop-now-button:hover {
    color: #fff;
    background-color: var(--title)
}

.loading{
  position: relative;
}
.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9;
}

.loader {
  text-align: center;
}
.products_main .list .loader::before{
  display: none!important;
}
.empty_img{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}
 
body .wpcf7 form .wpcf7-response-output{
  margin: 0;
  padding: 0;
  border: none;
  margin-top: 1rem;
}
.wpcf7-spinner{
  margin-top: 1rem;
  width: 24px!important;
}


.notice_con{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.sy_notice .notice_con{
  visibility: visible;
  opacity: 1;
}
.sy_notice .notice_con p{
  right: 100px;
}
.notice_con p{
  max-width: 500px;
  position: absolute;
  right: 100px;
  bottom: 100px;
  border-radius: 10px;
  background-color: var(--theme_color);
  padding: 1rem 1.5rem 1rem;
  padding-left: 60px; 
  color: white;
  transition: all 0.3s;
  right: -100%;
}
.notice_con p:before{
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url('../img/warning.svg') no-repeat center/contain;
  left: 20px;
  top: 15px;
}



.modalcomment .modalcontent::-webkit-scrollbar {
  width: 5px;
}

.modalcomment .modalcontent::-webkit-scrollbar-track {
  background: #b3b1b1;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb:hover {
  background: #646464;
  border-radius: 10px;
}
.modalcomment .modalcontent::-webkit-scrollbar-thumb:active {
  background: #444444;
  border-radius: 10px;
}


.modalcomment.active {
  visibility: visible;
  background: rgba(0,0,0,0.7);
}
.modalcomment {
  position: fixed;
  visibility: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  right: 0;
  background: rgba(0,0,0,0);
  z-index: 999;
  transition: background 0.3s ease;
}
.modalcomment.active .modalcontent {
  top: 50%;
  opacity: 1;
}
.modalcomment .modalcontent {
  position: absolute;
  padding: 5rem;
  background-color: white;
  width: 80%;
  max-width: 60rem;
  max-height: 70rem;
  overflow-y: auto;
  border-radius: 1px;
  opacity: 0;
  left: 50%;
  border-radius: 10px;
  transform: translateY(-50%) translateX(-50%);
  top: 150%;
  transition: all 0.2s ease;
}
.modalcomment .modalcontent > form > p{
  margin-top: 1rem;
}
.modalcomment .modalcontent > form > p label{
  font-size: 1.6rem;
}
.modalcomment .modalcontent > form  input[type="submit"]{
  font-size: 1.7rem;
  line-height: 5.4rem;
  padding: 0px 4.7rem;
  float: right;
}
.modalcomment .ratestars {
  width: 10rem;
  height: 2rem;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.modalcomment ul.reviews div.ratestars div.rate, .modalcomment .ratestars .rate {
  background-image: url(../img/stars_full.svg);
  background-repeat: repeat-x;
  background-position: left;
  height: 100%;
}
.modalcomment ul.reviews div.ratestars, .modalcomment .ratestars {
  height: 2.2rem;
  width: 13rem;
  background-image: url(../img/stars_empty.svg);
  background-repeat: repeat-x;
  background-position: left;
  margin-bottom: 1rem;
}
.modalcomment div.validform {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-width: 180rem;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  padding-top: 4rem;
}
.modalcomment div.validform .icon {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width:4rem;
  height: 4rem;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--theme_color), #7683b9);
}
.modalcomment div.validform .icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent url(../img/valid_form.svg);
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}
.modalcomment div.validform p {
  color: #999;
  font-size: 1.6rem;
}
.modalcomment .content_review p {
  margin-bottom: 1rem;
  line-height: 1.6rem;
}
.modalcomment div.validform.active {
  visibility: visible;
  opacity: 1;
}
.modalcomment div.validform p strong {
  color: #222;
  font-weight: 700;
  filter: brightness(0);
  display: inline-block;
  font-size: 2.8rem;
  margin-bottom: 0.4rem;
}
.modalcomment input:not([type="submit"]), .modalcomment textarea {    
  width: 100%;
  height: 4.5rem;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border-radius: 0;
  border: 0.0625rem solid #e5e5e5;
  font-size: 16px;
  outline: none;
  margin-top: 0.5rem;
}
.modalcomment textarea{
  min-height: 150px;
}
.wplr-tooltip-text{
  font-size: 1.2rem!important;
} 

@media screen and (min-width: 769px) and (max-width: 1600px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .content,
  .swiper_content {
    max-width: 1220px;
  }
  footer .footer_main .flex {
    padding-left: 0;
    justify-content: left;
    gap: 7rem 10rem;
  }
  footer .footer_main .slide_connect {
      width: 33.9rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .swiper_content {
    max-width: 1024px;
  }
  header .center {
    margin: 0;
  }
  footer .footer_main .slide_obj li {
    min-width: unset;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  footer .footer_main .flex{
    gap: 7rem 3rem;
  } 
}
@media screen and (max-width: 1024px) {
  header .center {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btns {
    padding: 0;
    margin: 0;
    gap: 2rem;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/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) {
  div::-webkit-scrollbar {
    width: 4px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px!important;
  }
  body {
    font-size: 1rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .btn {
    font-size: 14px;
    line-height: 41px;
    padding: 0 20px;
    min-width: 120px;
  }
  .btn.sm,
  .btn.lit {
    font-size: 14px;
    line-height: 41px;
    padding: 0 20px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after {
    width: 40px;
    height: 40px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 41px;
    padding: 0 20px;
    min-width: 120px;
  }
  .swiper_btns {
    gap: 1rem;
  }
  .swiper_btns div {
    width: 40px;
  }
  div.head.sm h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .btn,
  div.head .btn_line {
    margin-top: 20px;
    font-size: 14px;
    line-height: 41px;
    padding: 0 20px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
    background-color: #fff;
  }
  header.compact,
  header.opt {
    top: 0;
  }
  header.fixed {
    position: sticky;
    background-color: #fff;
  }
  header.fixed nav .menu > li > a {
    color: #000;
  }
  header.fixed nav.current-menu-item > a,
  header.fixed .menu > li.current-menu-item > a,
  header.fixed nav.current-menu-parent > a,
  header.fixed .menu > li.current-menu-parent > a,
  header.fixed nav:hover > a,
  header.fixed .menu > li:hover > a {
    color: var(--primary);
  }
  header.fixed .center .logo img {
    filter: unset;
  }
  header.fixed .btns .icon_item {
    color: #000;
  }
  header.fixed .btns .icon_item i::after {
    filter: unset;
  }
  header.fixed .btns .icon_item.active,
  header.fixed .btns .icon_item:hover {
    color: #fff;
    box-shadow: 0 3px 3px rgba(204, 204, 204, 0.75);
  }
  header.fixed .btns .icon_item.active i::after,
  header.fixed .btns .icon_item:hover i::after {
    filter: contrast(0) brightness(2);
  }
  header.fixed .btns .btn_menu {
    filter: unset;
  }
  header .header_top {
    padding: 10px 0;
  } 
  header .header_top .header_swiper {
    max-width: 100%;
    letter-spacing: unset;
    height: 20px;
    font-size: 14px;
  }
  header .header_top .btn_lang .lang-icon{
    /* display: none; */
    background-image: none!important;
  }
  header .header_top .btn_lang >span{
    display: none;
  }
  .my-jst-lang_popup{
    transform: translate(-50%, 0%)!important;
  }
  .my-jst-over_lang{
    height: 100vh!important;
  }

  header .center .logo img {
    height: 20px;
  }
  header .btns {
    gap: 20px;
    min-height: 4rem;
  }
  header .btns .btn {
    display: none;
  }
  header .btns .btn_lang {
    display: block;
    width: 22px;
  }
  header .btns .btn_lang .lang-icon {
    padding-bottom: 100%;
    display: block;
    cursor: pointer;
    content: '';
    background: url("../img/icon-lang.svg") no-repeat center / contain;
  }
  header .btns .icon_item {
    padding: 0;
    min-width: unset;
    margin: 0;
  }
  header .btns .icon_item.active {
    background-color: transparent;
  }
  header .btns .icon_item i {
    width: 22px;
  }
  header .btns .icon_item i span {
    font-size: 10px;
    line-height: 16px;
    min-width: 16px;
  }
  header .btns .icon_item p {
    display: none;
  }
  header .btns .cart,
  header .btns .favorite {
    display: none;
  }
  footer {
    padding-bottom: 20px;
  }
  footer .footer_main {
    padding: 3rem 0 4rem;
  }
  footer .footer_main .flex {
    display: block;
    padding: 0;
  }
  footer .footer_main strong {
    font-size: 18px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 1rem;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 1rem;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .footer_main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div ul {
    display: block;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div li {
    min-width: unset;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .footer_main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .footer_main .slide_connect strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .footer_main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .footer_main .slide_connect li {
    padding-left: 2rem;
  }
  footer .footer_main .slide_connect li::before {
    width: 1rem;
    height: 1rem;
    top: 5px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 1rem;
  }
  footer .footer_main .slide_connect li .label {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }
  footer .footer_main .slide_connect .email::before {
    top: 5px;
  }
  footer .footer_main .slide_social .social {
    margin-top: 2rem;
    justify-content: space-between;
  }
  footer .footer_main .slide_social .social a {
    width: 40px;
    height: 40px;
  }
  footer .copyright {
    padding: 20px 0;
    width: calc(100% - 40px);
    border-radius: 10px;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .copyright ul:not(.payment_list) {
    margin: 0;
    justify-content: center;
  }
  footer .copyright ul:not(.payment_list) li::before {
    margin: 0 10px;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  footer .copyright .payment_list {
    order: -1;
    gap: 10px;
    justify-content: center;
  }
  footer .copyright .payment_list li {
    width: 60px;
  }
  .header_advantages {
    padding: 20px 0;
  }
  .header_advantages .items {
    max-width: unset;
    overflow: unset;
  }
  .header_advantages .items ul {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    white-space: nowrap;
  }
  .header_advantages .items ul::-webkit-scrollbar {
    display: none;
  }
  .header_advantages .items li {
    font-size: 14px;
    gap: 10px;
    padding: 0 20px;
  }
  .header_advantages .items li:first-child {
    padding-left: 0;
  }
  .header_advantages .items li:first-child::before {
    display: none;
  }
  .header_advantages .items li i {
    width: 2rem;
    height: 2rem;
  }
  .header_advantages .items li span {
    margin: 0;
  }
  .page_sidebar {
    right: 1rem;
    bottom: 2rem;
  }
  .page_sidebar .icon_item {
    width: 40px;
    height: 40px;
  }
  .page_sidebar .icons {
    gap: 1rem;
  }
  .page_sidebar .favorite {
    display: block;
  }
  .footer_brands {
    padding: 3rem 0;
  }
  .footer_brands .footer_brands_swiper {
    margin-top: 2rem;
  }
  .footer_brands .footer_brands_swiper .swiper-slide {
    height: 80px;
    max-width: 144px;
  }
  .footer_shop {
    width: 100%;
    border-radius: 0;
  }
  .footer_shop .flex {
    padding: 3rem 0;
    min-height: unset;
  }
  .footer_shop .head {
    padding: 0;
  }
  .footer_shop .head h2 {
    font-size: 22px;
  }
  .page_intro {
    padding: 3rem 0;
  }
  .page_intro .flex {
    gap: 2rem 1rem;
  }
  .page_intro .imgs {
    margin: 0;
  }
  .page_intro .imgs .img {
    border-radius: 10px;
  }
  .page_intro .head {
    padding: 0;
  }
  .page_intro h1,
  .page_intro h2 {
    margin-bottom: 0;
  }
  .order_step {
    padding: 3rem 0;
  }
  .order_step .step {
    max-width: unset;
  }
  .order_step .step li::before {
    top: 15px;
  }
  .order_step .step i {
    font-size: 14px;
    line-height: 30px;
    min-width: 30px;
    padding: 0 5px;
  }
  .order_step .step .label {
    font-size: 12px;
    margin-top: 10px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 30px;
  }
  .breadcrumbs span {
    font-size: 14px;
    letter-spacing: unset;
  }
  .breadcrumbs span span::before {
    width: 8px;
    height: 8px;
    margin: 0 10px;
  }
  .product_list .icon_con {
    gap: 10px;
  }
  .product_list .icon_con .icon {
    width: 2rem;
    height: 2rem;
  }
  .product_list .off {
    font-size: 14px;
    line-height: 2;
    letter-spacing: unset;
    padding: 0 10px;
  }
  .product_list .info {
    margin-top: 1rem;
  }
  .product_list .title {
    font-size: 18px;
    gap: 1rem;
  }
  .product_list .title h3 {
    font-size: 18px;
  }
  .product_list .colors {
    margin-top: 1rem;
  }
  .product_list .colors ul {
    gap: 10px;
  }
  .product_list .colors li {
    width: 26px;
    height: 26px;
    border-width: 3px;
  }
  .product_list .info_wrap {
    margin-top: 20px;
    gap: 20px 1rem;
  }
  .product_list .info_wrap .feature_wrap {
    padding: 0;
  }
  .product_list .info_wrap .feature_wrap ul {
    gap: 1rem;
  }
  .product_list .info_wrap .feature_wrap .label {
    font-size: 14px;
  }
  .product_list .info_wrap .feature_wrap .value {
    font-size: 1rem;
    margin-top: 5px;
  }
  .product_list .info_wrap .btn {
    padding: 0 20px;
  } 

  .default_head{
    padding: 5rem 0;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
  .default_body ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
    border-radius: 50%;
    background-color: var(--theme_color);
    content: '';
  }

  .modalcomment .modalcontent{
    width: 100%;
  }
  .modalcomment.active .modalcontent{
    top: unset;
    bottom: 0;
    transform: translateY(0);
  }
  .modalcomment .modalcontent{
    bottom: -200%;
    top: unset;
    left: 0;
    padding: 1.2rem;
    transform: translateY(0);
  }
  .modalcomment input:not([type="submit"]), .modalcomment textarea{
    font-size: 16px;
    height: auto;
  }
  .modalcomment div.validform{
    width: 100%;
  }
  .modalcomment div.validform .icon{
    width: 3rem;
    height: 3rem;
  }
  .modalcomment div.validform p strong{
    font-size: 20px;
  }
  .modalcomment div.validform p{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  
  .sidebar-cart-header h2{
    font-size: 22px!important;
  }
  .close-sidebar{
    font-size: 28px!important;
  }
  #sidebar-cart .sidebar-cart-footer a{
    padding: 1rem !important;
  }

  .sidebar-cart-footer{
    padding: 0 1.2rem;
    left: 0rem!important;
  }
  

}
@media screen and (max-width: 576px) {
  .page_intro .imgs {
    width: 100%;
  }
}
/*# sourceMappingURL=global.css.map */