* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #926290;
  --secondary: #4a2748;
  --title: #061014;
  --text: #515151;
  --bg: #f3eef3;
  --shadow: 1rem 1rem 0.8rem rgba(164, 139, 165, 0.4);
  --shadow2: 1rem 1rem 0.8rem rgba(234, 234, 234, 0.3);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0 !important;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
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%;
  word-break: normal;
  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 {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.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);
  }
}
.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% !important;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  pointer-events: none;
}
.icon.icon_ab {
  position: relative;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
  color: #0e202a;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.4rem;
  padding: 0 2.5rem;
  min-width: 20.9rem;
}
.btn_w:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.4rem;
  padding: 0 2.5rem;
  min-width: 20.4rem;
}
.btn:hover {
  background-color: var(--secondary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.3rem;
  padding: 0 2.5rem;
  min-width: 20.5rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_circle {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  width: 6.2rem;
  background-color: var(--secondary);
}
.btn_circle::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-r-w.svg") no-repeat center / 33.9%;
  transition: all 0.3s;
}
.btn_circle:hover {
  background-color: var(--primary);
}
.btn_circle:hover::after {
  transform: rotate(-45deg);
}
.btn_circle.white {
  background-color: #fff;
}
.btn_circle.white::after {
  filter: contrast(0) brightness(0);
}
.btn_circle.white:hover {
  background-color: var(--primary);
}
.btn_circle.white:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 3.5rem;
  display: flex;
}
.swiper_btns div {
  width: 6.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid rgba(36, 36, 36, 0.45);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 34%;
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border: 1px solid rgba(36, 36, 36, 0.45);
  background-color: transparent;
  opacity: 0.5;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: flex;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 171.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.white div {
  background-color: #fff;
  border-color: #fff;
}
.swiper_btns.white div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns.white .swiper-button-disabled {
  background-color: #fff;
  border-color: #fff;
}
div.swiper-pagination-bullets {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  position: static;
}
div.swiper-pagination-bullets.white .swiper-pagination-bullet {
  background: #fff;
}
div.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  opacity: 0.6;
  margin: 0 !important;
  transition: all 0.4s, opacity 0.3s;
}
div.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  width: 2.4rem;
  border-radius: 100px;
}
.white .breadcrumbs span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.12px;
}
.white .breadcrumbs span span:first-child::after {
  background-color: #fff;
}
.white .breadcrumbs span span:first-child a {
  filter: contrast(0) brightness(2);
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 3rem;
}
.breadcrumbs span {
  font-size: 1.7rem;
  color: rgba(22, 22, 22, 0.75);
}
.breadcrumbs span span::after {
  display: inline-block;
  content: '/';
  margin-right: -0.5rem;
  margin-right: 0;
  margin-left: 0.5rem;
}
.breadcrumbs span span:last-child::after {
  display: none;
}
.breadcrumbs span span:first-child a {
  overflow: hidden;
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url("../img/home.svg") no-repeat center / contain;
  text-indent: -999px;
  color: transparent;
  filter: contrast(0) brightness(0);
  transform: translateY(1px);
  opacity: 0.75;
}
.breadcrumbs span span:first-child a:hover {
  filter: unset;
  opacity: 1;
}
.breadcrumbs span span:first-child::after {
  background-color: #161616;
  opacity: 0.35;
  transform: rotate(27deg);
  width: 1px;
  height: 1rem;
  content: '';
  margin: 0 1rem 0 1.6rem;
}
.breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.head.white {
  color: #fff;
}
.head.white p {
  color: #fff;
}
.head.ban p {
  font-size: 2.2rem;
  line-height: 3.5rem;
}
.head h1 {
  font-size: 6.2rem;
  line-height: 7.4rem;
  font-weight: 700;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 6.5rem;
  font-weight: 700;
}
.head p {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text);
}
header {
  position: sticky;
  top: -19.4rem;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: -4.6rem;
}
header .top {
  background-color: var(--secondary);
  color: #fff;
  padding: 1.1rem 0 1.2rem;
}
header .top .header_notice {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-left: 3.4rem;
  margin-top: 0.3rem;
}
header .top .header_notice::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  transform: translateY(-53%);
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/icon-gift-w.svg") no-repeat center / contain;
}
header .top .header_notice .header_notice_swiper {
  overflow: hidden;
  height: 2rem;
  font-weight: 300;
  letter-spacing: 0.12px;
}
header .top .header_notice .header_notice_swiper .swiper-slide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
header .top .rt {
  display: flex;
  align-items: center;
}
header .top .connect {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .top .connect li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3.1rem;
}
header .top .connect li::before {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  top: 0.3rem;
  content: '';
  background: no-repeat center / contain;
}
header .top .connect li::after {
  width: 1px;
  height: 2.2rem;
  background-color: #fff;
  opacity: 0.12;
  display: inline-block;
  content: '';
  margin: 0 2.6rem 0 2.15rem;
}
header .top .connect li a {
  font-size: 1.5rem;
  vertical-align: top;
  transition: all 0.3s;
  font-weight: 300;
  letter-spacing: 0.12px;
}
header .top .connect li a:hover {
  text-decoration: underline;
}
header .top .connect .phone::before {
  background-image: url("../img/icon-phone-w.svg");
}
header .top .btn_lang {
  position: relative;
  cursor: pointer;
  padding-left: 3.1rem;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12px;
}
header .top .btn_lang::before {
  width: 1.9rem;
  height: 1.9rem;
  position: absolute;
  left: 0;
  top: 1px;
  content: '';
  background: url("../img/icon-lang-w.svg") no-repeat center / contain;
}
header .middle .flex {
  min-height: 9rem;
  padding-top: 1.1%;
}
header .lt {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 3.07966rem;
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header .btns {
  gap: 1.8rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .btns .search_box {
  flex: 1;
  max-width: 80.6rem;
  margin-right: 2px;
}
header .btns .search_box form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  border: 1px solid #b3b5b7;
  padding-right: 0.5rem;
}
header .btns .search_box form input[type=submit] {
  width: 4.9rem;
  height: 4.9rem;
  margin: 0.4rem 0;
  border-radius: 50%;
  text-indent: -999px;
  color: transparent;
  background: url("../img/icon-search-w.svg") no-repeat center / 44.9% var(--primary);
  transition: all 0.3s;
}
header .btns .search_box form input[type=submit]:hover {
  background-color: var(--secondary);
}
header .btns .search_box form input[type=text] {
  display: block;
  width: 100%;
  color: #757575;
  background-color: transparent;
  padding: 0 3.1rem;
  font-size: 1.67rem;
}
header .btns .search_box form input[type=text]::placeholder {
  color: #757575;
}
header .btns .btn_account {
  background-color: #f4f4f4;
  border-radius: 3rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  color: #161616;
  gap: 1.3rem;
  min-height: 5.8rem;
  padding: 1.2rem 2.9rem 1rem 2.4rem;

  max-width: 21.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  
}
header .btns .btn_account::before {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  transition: all 0.3s;
  content: '';
  flex-shrink: 0;
  background: url("../img/icon-user.svg") no-repeat center / contain;
}
header .btns .btn_account:hover {
  background-color: var(--primary);
  color: #fff;
}
header .btns .btn_account:hover::before {
  filter: contrast(0) brightness(2);
}
header .btns .btn_cart {
  display: inline-block;
  position: relative;
  width: 5.8rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #f4f4f4;
  transition: all 0.3s;
}
header .btns .btn_cart:hover {
  background-color: var(--primary);
}
header .btns .btn_cart:hover::after {
  filter: contrast(0) brightness(2);
}
header .btns .btn_cart:hover i {
  background-color: var(--secondary);
}
header .btns .btn_cart::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/icon-cart.svg") no-repeat center / 39.7%;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
header .btns .btn_cart i {
  position: absolute;
  right: 2px;
  top: 1px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--primary);
  line-height: 1.5rem;
  min-width: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  padding: 0 0.2rem;
}
header .btns .btn_menu,
header .btns .btn_lang,
header .btns .btn_search {
  display: none;
}
header nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 4.2rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 2.2rem;
  color: #161616;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 5.8rem;
  padding: 0 0.5rem 0 0.3rem;
}
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.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
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;
  position: relative;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
footer {
  background-color: var(--bg);
}
footer .footer_main {
  border-radius: 2.3rem 2.3rem 0 0;
  background-color: #fff;
  padding: 8rem 0 1.8rem;
}
footer .footer_main strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  color: #161616;
  text-transform: uppercase;
  margin-bottom: 2.9rem;
}
footer .footer_main .flex {
  gap: 14.5rem 2rem;
}
footer .footer_main .slide_intro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
footer .footer_main .slide_intro .logo {
  display: block;
  position: relative;
  max-width: 25.5rem;
}
footer .footer_main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .footer_main .slide_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .footer_main .slide_intro .social {
  gap: 2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}
footer .footer_main .slide_intro .social .active a {
  background-color: var(--primary);
}
footer .footer_main .slide_intro .social .active a::after {
  filter: contrast(0) brightness(2);
}
footer .footer_main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
}
footer .footer_main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  transition: all 0.3s;
}
footer .footer_main .slide_intro .social a:hover {
  transform: scale(1.1);
}
footer .footer_main .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_main .slide_obj li a {
  color: #37393a;
  line-height: 2.4rem;
  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_obj li + li {
  margin-top: 1.2rem;
}
footer .footer_main .slide_connect {
  width: 32.1rem;
}
footer .footer_main .slide_connect strong {
  margin-bottom: 3rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  line-height: 2.4rem;
  padding-left: 2.9rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
footer .footer_main .slide_connect li a {
  font-size: 1.7rem;
  font-weight: 500;
  color: #161616;
  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.5rem;
  color: #37393a;
  margin-top: 0.5rem;
}
footer .footer_main .slide_connect li + li {
  margin-top: 2.3rem;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .footer_main .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .footer_bottom {
  background-color: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  padding: 1.3rem 0 0.9rem;
}
footer .footer_bottom p {
  margin-bottom: 0.3rem;
}
footer .footer_bottom .rt {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
footer .footer_bottom .rt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
footer .footer_bottom .rt .img {
  height: 2.75rem;
  width: auto;
  background-color: #fff;
  border-radius: 5px;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: none;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}
.mega_menu .flex {
  gap: 1.7%;
}
.mega_menu .nav {
  width: 28.4722%;
  border-right: 1px solid #e9e9e9;
  padding: 4.7rem 0 5.6rem;
  overflow: auto;
  max-height: calc(100vh - 22rem);
}
.mega_menu .nav ul {
  padding-right: 14.63%;
}
.mega_menu .nav li + li {
  margin-top: 2px;
}
.mega_menu .nav .active a {
  background-color: var(--bg);
}
.mega_menu .nav a {
  border-radius: 4px;
  transition: all 0.3s;
  display: grid;
  grid-template-columns: 1fr 0.8rem;
  align-items: start;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: #242424;
  gap: 1.6rem;
  padding: 1.3rem 2rem;
}
.mega_menu .nav a::after {
  padding-bottom: 187.5%;
  display: block;
  content: '';
  background: url("../img/nav-r.svg") no-repeat center / contain;
  margin-top: 0.7rem;
}
.mega_menu .menu_list {
  flex: 1;
  padding: 2.8rem 0;
  overflow: auto;
  max-height: calc(100vh - 22rem);
  display: none;
}
.mega_menu .menu_list.active {
  display: block;
}
.mega_menu .menu_list > div {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(27rem, 100%), 1fr));
  gap: 3.2rem 0;
}
.mega_menu .menu_list .list {
  border-left: 1px solid #e9e9e9;
  margin-left: -1px;
  padding-top: 3.4rem;
  padding-left: 3.7rem;
  padding-right: 1.6rem;
}
.mega_menu .menu_list .list a {
  vertical-align: top;
  transition: all 0.3s;
  color: #747474;
}
.mega_menu .menu_list .list a:hover {
  color: var(--primary);
}
.mega_menu .menu_list .list > a {
  color: #242424;
  font-weight: 500;
}
.mega_menu .menu_list .list ul {
  margin-top: 1.6rem;
}
.mega_menu .menu_list .list ul li + li {
  margin-top: 1rem;
}
.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;
}
.password_model {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  display: none;
  overflow-y: auto;
  align-items: center;
}
.password_model.active {
  display: grid;
}
.password_model .con {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.44);
}
.password_model .box {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 70rem;
  margin: 5.9rem auto 4rem;
}
.password_model .close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 2;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/close.svg") no-repeat center / contain;
}
.password_model .close:hover {
  transform: rotate(360deg);
}
.password_model form {
  background-color: #fff;
  border-radius: 4px;
  display: grid;
  gap: 2rem;
  color: #161616;
  padding: 3.3rem 3.3rem 3.2rem;
}
.password_model form span {
  width: 100%;
}
.password_model form .title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.password_model form .label {
  font-weight: 600;
  display: block;
  margin-bottom: 1.2rem;
}
.password_model form input {
  width: 100%;
  height: 4.9rem;
  display: block;
  outline: none;
  border: 1px solid #dadadd;
  border-radius: 0.4rem;
  background-color: #fff;
  font-size: 1.7rem;
  color: #161616;
  transition: all 0.3s;
  padding: 0 1.7rem;
}
.password_model form input::placeholder {
  color: #161616;
}
.password_model form input:focus {
  border-color: var(--primary);
}
.password_model form span:has(input[type=submit]) {
  margin-top: 1.2rem;
}
.password_model form input[type=submit] {
  font-weight: 500;
  color: #fff;
  border-radius: 100px;
  width: max-content;
  transition: all 0.3s;
  background-color: var(--primary);
  border: none;
  text-align: center;
  height: 4.9rem;
  padding: 0 4.3rem;
}
.password_model form input[type=submit]:hover {
  background-color: var(--secondary);
}
.footer_advantages {
  background-color: var(--bg);
}
.footer_advantages .items {
  max-width: 192rem;
  margin: 0 auto;
  overflow: hidden;
}
.footer_advantages .items ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(40rem, 100%), 1fr));
  margin-left: -1px;
}
.footer_advantages .items li {
  position: relative;
  display: grid;
  grid-template-columns: 7rem 1fr;
  align-items: start;
  gap: 1.6rem;
  padding: 3.7rem 6.8% 4.5rem;
}
.footer_advantages .items li::before {
  width: 1px;
  height: 70.17%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background-color: #e8e8e8;
}
.footer_advantages .items .icon {
  padding-bottom: 100%;
}
.footer_advantages .items strong {
  font-size: 2.2rem;
  font-weight: 500;
  color: #000;
  display: block;
  margin-top: 0.9rem;
}
.footer_advantages .items p {
  line-height: 2.2rem;
  color: #444444;
  max-width: 30rem;
  margin-top: 1.8rem;
}
.page_clients {
  padding: 12.9rem 0 5.8rem;
}
.page_clients .inner {
  border-radius: 2.7rem;
  background-color: #f6f3ec;
  width: calc(100% - 4rem);
  max-width: 169.4rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}
.page_clients .icon {
  position: absolute;
  right: 0;
  top: -2.5rem;
  width: 8.1rem;
}
.page_clients .icon::after {
  padding-bottom: 80.25%;
  display: block;
  content: '';
  pointer-events: none;
}
.page_clients .lt {
  width: 38.82%;
  margin-top: -5.1rem;
}
.page_clients .rt {
  width: 49.583333%;
  padding-top: 5.8%;
}
.page_clients .page_clients_img_swiper {
  overflow: hidden;
  border-radius: 2rem;
}
.page_clients .page_clients_img_swiper:hover img {
  transform: scale(1.02);
}
.page_clients .page_clients_img_swiper .img {
  padding-bottom: 125.224%;
}
.page_clients .page_clients_swiper {
  overflow: hidden;
}
.page_clients .page_clients_swiper .title {
  font-size: 4.8rem;
  line-height: 6.5rem;
  font-weight: 700;
}
.page_clients .page_clients_swiper .star {
  width: var(--w);
  --w: 14.3rem;
  margin-top: 6rem;
}
.page_clients .page_clients_swiper .star::after {
  content: '';
  display: block;
  padding-bottom: 13.99%;
  width: var(--value);
  background: url("../img/star.svg") no-repeat left center / var(--w) 100%;
}
.page_clients .page_clients_swiper .desc {
  font-size: 2.4rem;
  line-height: 3.5rem;
  color: #161616;
  margin-top: 2rem;
}
.page_clients .page_clients_swiper .user {
  margin-top: 5.9rem;
  display: grid;
  grid-template-columns: 8.1rem 1fr;
  align-items: center;
  color: #020e28;
  gap: 2.6rem;
}
.page_clients .page_clients_swiper .user .img {
  border-radius: 50%;
  padding-bottom: calc(100% - 4px);
  border: 2px dashed var(--primary);
}
.page_clients .page_clients_swiper .user .img img {
  width: 88%;
  height: 88%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.page_clients .page_clients_swiper .user strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 1px;
}
.page_clients .page_clients_swiper .user p {
  font-size: 1.5rem;
  opacity: 0.65;
  margin-top: 0.8rem;
}
.page_clients .swiper_con {
  margin-top: 4.5rem;
}
.page_clients .swiper_con .swiper-pagination {
  width: auto;
}
.page_banner::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 61.615%;
  height: 100%;
  background-image: linear-gradient(to right, #221f34, transparent);
  pointer-events: none;
}
.page_banner .flex {
  min-height: 64.2rem;
  padding: 6rem 0;
}
.page_banner .breadcrumbs {
  position: absolute;
  top: 2.5rem;
}
.page_banner .head {
  width: 61.615%;
  max-width: 76.5rem;
  padding-bottom: 1.2%;
}
.page_banner p {
  max-width: 68.3rem;
  margin-top: 3.1rem;
}
.contact_intro {
  padding: 6.5rem 0;
}
.contact_intro .head {
  max-width: 106rem;
  margin: 0 auto;
}
.contact_intro .head .subtitle {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact_intro .head p {
  margin-top: 3.2rem;
}
.contact_intro .items {
  margin-top: 9.2rem;
}
.contact_intro .items ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 5.416667%;
}
.contact_intro .items li {
  position: relative;
  padding-left: 11.6rem;
  padding-top: 1.4rem;
}
.contact_intro .items li .icon {
  width: 8.6rem;
  height: 8.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}
.contact_intro .items li .icon img {
  display: block;
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.contact_intro .items li .syedittext h3 {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2.2rem;
}
.contact_intro .items li .syedittext p {
  color: var(--text);
  line-height: 2.2rem;
  margin-top: 0.6rem;
}
.contact_form {
  padding: 5.4rem 0;
}
.contact_form .form {
  border-radius: 2rem;
  background-color: #F2EDF2;
  transform: translateY(-5.4rem) !important;
  padding: 3.75% 5.416667% 4.166667%;
}
.single-product .contact_form .form{
  transform: translateY(0) !important;
}
.contact_form .form form {
  gap: 3.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact_form .form span {
  width: 100%;
}
.contact_form .form .col2 {
  width: 48.520249%;
}
.contact_form .form .label {
  cursor: pointer;
  max-width: max-content;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.contact_form .form input,
.contact_form .form select,
.contact_form .form textarea {
  width: 100%;
  height: 6.4rem;
  display: block;
  outline: none;
  border: 1px solid #fff;
  border-radius: 0.4rem;
  background-color: #fff;
  font-size: 1.9rem;
  transition: all 0.3s;
  padding: 0 2.2rem;
}
.contact_form .form input::placeholder,
.contact_form .form select::placeholder,
.contact_form .form textarea::placeholder {
  color: #AFAFB5;
}
.contact_form .form input:focus,
.contact_form .form select:focus,
.contact_form .form textarea:focus {
  border-color: var(--primary);
}
.contact_form .form textarea {
  height: 13.5rem;
  padding: 2rem 2.2rem;
}
.contact_form .form .btc {
  gap: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.contact_form .form .tip {
  flex: 1;
  color: #808080;
  font-size: 1.8rem;
  line-height: 2.6rem;
  max-width: 83rem;
}
.contact_form .form .tip a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.contact_form .form .tip a:hover {
  text-decoration-color: transparent;
}
.contact_form .form .btn {
  gap: 5.6rem;
  display: flex;
  align-items: center;
  padding: 0 3.4rem;
}
.contact_form .form .btn::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.2rem;
  transition: all 0.3s;
  background: url(../img/arrow-r-w.svg) no-repeat center / contain;
}
.contact_form .form .btn input {
  display: none;
}
.contact_form .form .btn:hover::after {
  transform: translateX(5px);
}
.sec_filters {
  border-radius: 6px;
  background-color: rgba(243, 238, 243, 0.5);
  font-size: 1.8rem;
  color: #353535;
  padding: 1.6rem 2.5rem 1.5rem 2.7rem;
}
.sec_filters > .flex {
  gap: 2.3rem;
  flex-wrap: wrap;
}
.sec_filters select {
  display: block;
  border-radius: 4px;
  height: 3.7rem;
  border: 1px solid #e2e2e2;
  font-size: 1.5rem;
  font-weight: 500;
  color: #150f35;
  background: url("../img/icon-select-s.svg") no-repeat center right 1rem/1rem #fff;
  padding: 0 3.8rem 0 1rem;
}
.sec_filters .sort {
  gap: 1.1rem;
}
.sec_filters .sort .label {
  margin-right: 2px;
}
.sec_filters .sort select {
  min-width: 15.8rem;
}
.sec_filters .sort .btn_sort {
  display: block;
  content: '';
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
  filter: contrast(0) brightness(1.2);
  transition: all 0.3s;
  background: url("../img/icon-sort.svg") no-repeat center / contain;
}
.sec_filters .sort .btn_sort.desc{
  transform: rotate(180deg);
}
.sec_filters .sort .btn_sort:hover {
  filter: unset;
}
.sec_filters .per_page {
  gap: 1.9rem;
  margin-right: 0.7rem;
}
.sec_filters .layouts {
  gap: 1.8rem;
}
.sec_filters .layouts .btn_layout {
  display: block;
  content: '';
  cursor: pointer;
  transition: all 0.3s;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(1.5);
  width: 2.4rem;
  height: 2.4rem;
}
.sec_filters .layouts .btn_layout.active,
.sec_filters .layouts .btn_layout:hover {
  filter: unset;
}
.sec_filters .layouts .col1 {
  background-image: url("../img/icon-col1.svg");
}
.sec_filters .layouts .col2 {
  background-image: url("../img/icon-col2.svg");
}
.sec_filters .turn_page {
  margin-left: auto;
}
.sec_filters .turn_page .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sec_filters .turn_page li:nth-last-child(2) .page-number {
  border-right: none;
}
.sec_filters .turn_page .page-number {
  cursor: pointer;
  transition: all 0.3s;
  color: #150f35;
  display: block;
  font-weight: 500;
  opacity: 0.5;
  padding: 0 1.2rem;
  border-right: 1px solid rgba(21, 15, 53, 0.24);
}
.sec_filters .turn_page .page-number.current,
.sec_filters .turn_page .page-number:hover {
  opacity: 1;
}
.sec_filters .turn_page span.page-number {
  pointer-events: none;
}
.sec_filters .turn_page .next {
  width: 1rem;
  height: 1rem;
  padding: 0;
  background: url("../img/icon-select-s.svg") no-repeat center / contain;
  text-indent: -999px;
  color: transparent;
  transform: rotate(-90deg);
  border: none;
  opacity: 1;
  margin-left: -1px;
}
.sec_filters .btn_filter {
  display: none;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
  text-align: center;
  border-radius: 4px;
  min-width: 5.4rem;
  line-height: 5.4rem;
  padding: 0 1rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  min-width: unset;
  padding: 0;
}
nav.navigation .prev,
nav.navigation .next {
  background: url("../img/pg-nav.svg") no-repeat center / contain;
  width: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  opacity: 0.5;
  margin: 0 0.8rem;
}
nav.navigation .prev:hover,
nav.navigation .next:hover {
  opacity: 1;
  filter: unset;
  background-color: transparent;
}
nav.navigation .next {
  transform: rotate(180deg);
}
nav.navigation .omit {
  margin: 0 1.2rem 0 2px;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
.product_list.sm a {
  font-size: 1.7rem;
  padding: 2.8rem 4.3% 2.3rem 7.8%;
}
.product_list.sm .icon {
  width: 8.9rem;
  height: 8.9rem;
}
.product_list.sm .title {
  font-size: 2.2rem;
  line-height: 3rem;
}
.product_list.sm .info {
  padding: 1.9rem 14% 1.9rem 0;
  margin-top: -2rem;
}
.product_list.sm .con {
  margin-top: 2.2rem;
}
.product_list.sm .amount {
  top: 1.1rem;
}
.product_list.sm .amount p {
  font-size: 2.6rem;
}
.product_list.sm .amount del {
  font-size: 2.2rem;
}
.product_list.row .active .icon_con {
  background-color: #a882a8;
}
.product_list.row .active .cat {
  opacity: 0.74;
}
.product_list.row a {
  display: grid;
  align-items: start;
  gap: 0 6.4%;
  padding: 1.3rem 1.5rem 1.4rem;
}
.product_list.row .icon_con {
  flex-direction: column;
  background-color: rgba(168, 130, 168, 0.14);
  padding: 1.4rem 1rem 0.7rem;
  gap: 0.9rem;
}
.product_list.row .icon {
  width: 6.8rem;
  height: 6.8rem;
}
.product_list.row .code {
  margin-top: 0;
}
.product_list.row .cat {
  margin-bottom: 3px;
}
.product_list.row .con {
  max-width: 30rem;
  padding-right: 0;
  margin-top: 0.9rem;
}
.product_list.row .info {
  padding: 0;
  margin: 3px 0 0;
}
.product_list.row .info::before {
  background-color: transparent;
}
.product_list.row .link {
  grid-template-columns: 1fr 4.6rem;
  padding: 0.4rem;
}
.product_list.row .more {
  font-size: 1.5rem;
  font-weight: 600;
  gap: 1.9rem;
  padding: 0 3rem;
}
.product_list .active a {
  color: #fff;
  box-shadow: var(--shadow);
  background-color: var(--primary);
  border-color: var(--primary);
}
.product_list .active .cat {
  color: #fff;
}
.product_list .icon img{
  filter: contrast(0) brightness(100);
  max-width: 85%;
  max-height: 85%;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%,-50%);
}

.product_list .active .icon {
  background-color: var(--secondary);
}
.product_list .active .info::before {
  opacity: 1;
}
.product_list .active .code::before {
  filter: contrast(0) brightness(2);
}
.product_list .active .link {
  transform: translateY(0);
  opacity: 1;
}
.product_list .active .amount {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.product_list a {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 1.2rem;
  border: 1px solid #d3d2d6;
  overflow: hidden;
  box-shadow: var(--shadow2);
  grid-template-columns: 23.9913% 1fr;
  font-size: 1.8rem;
  color: #0e202a;
  padding: 3rem 4.6% 2.5rem 8.08%;
}
.product_list .icon {
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 50%;
  background-color: var(--primary);
  transition: all 0.3s;
  flex-shrink: 0;
}
.product_list .cat {
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
  margin-bottom: 4.5%;
  flex: 1;
}
.product_list .code {
  display: flex;
  align-items: center;
  font-weight: 500;
  opacity: 0.8;
  gap: 0.8rem;
  margin-top: 3.2rem;
}
.product_list .code::before {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  transition: all 0.3s;
  background: url("../img/pd-code.svg") no-repeat center / contain;
}
.product_list .title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  transition: all 0.3s;
}
.product_list .icon_con {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  grid-row: span 2;
  border-radius: 1.2rem;
  gap: 2rem;
  padding-left: 0.4rem;
}
.product_list .info {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  padding: 2.1rem 14% 2rem 0;
  margin-top: -2.1rem;
  flex: 1;
}
.product_list .info::before {
  width: 200%;
  height: 100%;
  border-radius: 1.2rem;
  background-color: #a882a8;
  opacity: 0.14;
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  pointer-events: none;
  transition: all 0.3s;
  z-index: -1;
}
.product_list .con {
  position: relative;
  margin-top: 2.7rem;
  padding-right: 3.4%;
}
.product_list .link {
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  align-items: center;
  border-radius: 100px;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s, opacity 0.3s;
}
.product_list .link .btn_cart {
  display: block;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.product_list .link .btn_cart::after {
  padding-bottom: 100%;
  background: url("../img/icon-cart.svg") no-repeat center / 39%;
  transition: all 0.3s;
  display: block;
  content: '';
}
.product_list .link .btn_cart:hover {
  background-color: var(--primary);
}
.product_list .link .btn_cart:hover::after {
  filter: contrast(0) brightness(2);
}
.product_list .link .more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 2.3rem;
  padding: 0 3.6rem;
  transition: all 0.3s;
}
.product_list .link .more::after {
  background: url("../img/arrow-r-w.svg") no-repeat center / contain;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  transition: all 0.3s;
}
.product_list .link .more:hover::after {
  transform: translateX(20%);
}
.product_list .con>.amount {
  position: absolute;
  z-index: 2;
  transition: all 0.4s, opacity 0.3s;
  top: 0.8rem;
  max-height: calc(100% - 1rem);
  overflow-y: auto;
}
.product_list .con>.amount>p{
  display: flex;
  align-items: center;
}
.product_list .amount p {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--secondary);
}
.product_list .amount .amount{
  position: unset;
  z-index: 2;
  transition: all 0.4s, opacity 0.3s;
  top: unset;
  max-height: unset;
  overflow-y: unset;
}

.product_list .amount del {
  font-size: 2.4rem;
  color: #898b8c;
  font-weight: 400;
  margin: 0 0.6rem;
  order: 9;
}
.product_list .amount ins{
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: unset;
}
.resource_list .active .mask .bg::before {
  background-color: #d3d2d6;
}
.resource_list .active .mask .bg i::after {
  opacity: 1;
}
.resource_list .active .mask .white {
  opacity: 1;
}
.resource_list .active a {
  filter: drop-shadow(var(--shadow2));
}
.resource_list .active .info .more {
  color: var(--primary);
}
.resource_list .active .btn_circle {
  background-color: var(--primary);
}
.resource_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border-radius: 1rem;
  transition: all 0.3s;
  min-height: 58.2rem;
}
.resource_list a:hover img {
  transform: scale(1.02);
}
.resource_list .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --w: 7.6rem;
  --h: 7.7rem;
  z-index: -1;
}
.resource_list .mask .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.resource_list .mask .bg::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 1rem;
  background-color: #f8f8f8;
  content: '';
  clip-path: polygon(100% 0, 100% calc(100% - var(--h)), calc(100% - var(--w)) 100%, 0 100%, 0 0);
  transition: all 0.3s;
}
.resource_list .mask .bg i {
  width: var(--w);
  height: var(--h);
  background: url("../img/radius-mask1.svg") no-repeat center / contain;
  position: absolute;
  right: 1px;
  bottom: 0;
  content: '';
  transition: all 0.3s;
}
.resource_list .mask .bg i::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: url("../img/radius-mask2.svg") no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.resource_list .mask .white {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: 1px;
  top: 1px;
  transition: all 0.3s;
  opacity: 0;
}
.resource_list .mask .white::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.9rem;
  background-color: #fff;
  content: '';
  clip-path: polygon(100% 0, 100% calc(100% - var(--h)), calc(100% - var(--w)) 100%, 0 100%, 0 0);
}
.resource_list .mask .white i {
  width: var(--w);
  height: var(--h);
  background: url("../img/radius-mask2.svg") no-repeat center / contain;
  position: absolute;
  right: 1px;
  bottom: 0;
  content: '';
  filter: contrast(0) brightness(2);
}
.resource_list .img {
  padding-bottom: 59.13%;
  border-radius: 1rem 1rem 0 0;
}
.resource_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8.2% 6.74% 7.1%;
}
.resource_list .info .metas {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: rgba(63, 63, 63, 0.85);
  gap: 0.4rem;
}
.resource_list .info .metas .cat {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-right: 0.8rem;
}
.resource_list .info .title {
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 600;
  color: #0f0f0f;
  margin-top: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: auto;
}
.resource_list .info .more {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 500;
  color: #0f0f0f;
  transition: all 0.3s;
  cursor: pointer;
}
.resource_list .btn_circle {
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact_infos{
  margin-bottom: 0 !important;
}
.contact_infos ul{
  position: unset !important;
}
.contact_intro{
  margin-top: -5rem;
}
.login_pop{
  position: absolute;
  left: 50%;
  transform: translate(-50%,-10px);
  top: calc(100% + 3.6rem);
  width: 40rem;
  background-color: white;
  padding: 3rem 3.2rem 7rem;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.account_icon_con.active .login_pop{
  transform: translate(-50%,-10px);
  opacity: 1;
  pointer-events: all;
}
.login_pop:before{
  content: "";
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.login_pop:after{
  content: "";
  height: 2.4rem;
  width: 100%;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.login_pop .title{
  font-size: 2.8rem;
  font-weight: 500;
  color: #150f35;
  display: block;
  margin-bottom: 2.5rem;
}
.login_pop form label{
  color: #757575;
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 400;
}
.login_pop form input:not([type="submit"]){
  font-size: 1.7rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  width: 100%;
}
.login_pop form input[type="submit"]{
  line-height: 4rem;
  font-size: 1.7rem;
  font-weight: 300;
  min-width: unset;
  padding: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.login_pop form > p + p{
  margin-top: 1.3rem;
}
.login_pop .forget_con{
  margin-top: 2rem;
  min-height: unset !important;
}

.login_pop .forget_con p{
  color: #757575;
  cursor: pointer;
  font-size: 1.7rem;
}
.login_pop .forget_con p:hover{
  color: var(--subprimary);
}
.login_pop .forget_con input{
  padding: 0.8rem 1.4rem;
  font-size: 1.4rem;
  width: auto;
}

.login_pop .others{
  padding-top: 1.8rem;
  margin-top: 3rem;
  font-size: 1.7rem;
  color: var(--primary);
  border-top: 2px solid rgba(0, 0, 0, 0.14);
}
.login_pop .others strong{
  font-size: 1.95rem;
  font-weight: 500;
  color: #150f35;
  display: block;
  margin-bottom: 0.5rem;
}
.login_pop .others p{
  font-size: 1.6rem;
  line-height: 2rem;
  opacity: 0.65;
  margin-bottom: 1.8rem;
}
.login_pop .others .btn{
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 4rem;
  min-width: unset;
  padding-left: 2rem;
  padding-right: 2rem;
}
.account_icon_con{
  position: relative;
}
.logged_block p{
  font-size: 2rem;
  color: #757575;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
  line-height: 3rem;
}
.logged_block ul li a{
  font-size: 1.75rem;
  font-weight: 500;
  color: #150f35;
}
.logged_block ul li + li{
  margin-top: 1.5rem;
}
.logged_block ul li a:hover{
  color: var(--primary);
  text-decoration: underline;
}


.cart_popup{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.show_cart_popup .cart_popup{
  opacity: 1;
  pointer-events: all;
}
.cart_popup .cart_popup_overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.44);
  z-index: 1;
}
.cart_popup .cart_popup_con{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  transition: all 0.3s;
  z-index: 9;
  width: 60rem;
  border-radius: 4px;

  opacity: 0;
  transform: translate(-50%,-60%);
}


.show_cart_popup .cart_popup .cart_popup_con{
  opacity: 1;
  transform: translate(-50%,-50%);
}


.cart_popup .cart_popup_con .head{
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.cart_popup .cart_popup_con .head span.close{
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url('../img/form-close.svg') no-repeat center/contain;
  cursor: pointer;
  transition: all 0.3s;
}
.cart_popup .cart_popup_con .head span.close:hover{
  transform: rotate(180deg);
}
.cart_popup .cart_popup_con .head strong{
  font-size: 2.2rem;
  color: #150f35;
  font-weight: 500;
}
.cart_popup .cart_popup_con .cart_popup_main{
  padding: 2.8rem 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main .img{
  width: 12rem;
  min-width: 12rem;
  aspect-ratio: 1;
  border-radius: 10px;
  margin-right: 1.9rem;
}
.cart_popup .cart_popup_con .cart_popup_main li{
  display: flex;
  align-items: center;

}
.cart_popup .cart_popup_con .cart_popup_main li strong{
  font-size: 1.8rem;
  font-weight: 500;
  color: #150F35;
  display: block;
  margin-bottom: 1.5rem;
}
.cart_popup .cart_popup_con .cart_popup_main li + li{
  margin-top: 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos span{
  display: block;
  color: #2d2d2d;
  font-size: 1.4rem;
  opacity: 0.64;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos .price, .cart_popup .cart_popup_con .cart_popup_main li .infos .price span{
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d !important;
  margin-top: 0.6rem;
  opacity: 1;
  display: inline-block;
}
.cart_popup .cart_popup_con .cart_popup_main li .infos span + span{
  margin-top: 0.8rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions{
  margin-left: auto;
  padding-bottom: 2.5rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .delete{
  display: block;
  width: 2.1rem;
  height: 2.4rem;
  margin-left: auto;
  background: url('../img/trash.svg') no-repeat center/contain;
  margin-bottom: 3.5rem;
  cursor: pointer;
}



.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity{
    display: flex;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    border: 1px solid #a3a3a3;
    overflow: hidden;
    margin-top: 2.3rem;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity button{
    width: 3.1rem;
    height: 3.1rem;
    background: url('../img/num_plus.svg') no-repeat center/1.2rem;
    background-color: white;
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity button.minus{
    background-image: url('../img/num_minus.svg');
}
.cart_popup .cart_popup_con .cart_popup_main li .actions .quantity input{
    width: 3.1rem;
    height: 3.1rem;
    background-color: white;
    border-left: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 500;
}
.cart_popup .cart_popup_con .cart_popup_main ul + p{
  font-size: 2rem;
  color: #150f35;
  font-weight: 500;
  margin-top: 3rem;
}
.cart_popup .cart_popup_con .cart_popup_main a{
  font-size: 1.6rem;
  color: #150F35;
  text-decoration: underline;
  display: block;
  margin-top: 0.7rem;
}

 
.cart_popup .cart_popup_con .others{
  padding: 2rem 3rem 3rem;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}
.cart_popup .cart_popup_con .others .total{
  font-size: 1.8rem;
  color: #150F35;
  font-weight: 500;
  margin-bottom: 1.9rem;
}
.cart_popup .cart_popup_con .others .total strong{
  font-size: 2.2rem;

}
.cart_popup .cart_popup_con .others .btn{
  font-size: 1.8rem;
  padding: 1rem 3rem;
  line-height: unset;
  font-weight: 400;
  min-width: unset;
  border: 2px solid var(--subprimary);
}
.cart_popup .cart_popup_con .others button.btn, .cart_popup .cart_popup_con .others .btn_d.btn{
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 500;
  margin-right: 1rem;
}
.cart_popup .cart_popup_con .others .btn_d.btn:hover{
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}
.cart_popup .cart_popup_con .others a.btn:hover{
  border-color: var(--primary);
}

.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.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: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  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: 0;
  margin-bottom: 1rem;
  margin-left: 2rem;
  list-style: disc;
}
.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(--primary);
  content: '';
}
.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{
  margin-top: 0;
}
.notice_con p{
  max-width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: unset;
  margin-top: -5rem;
  top: 25.5rem;
  border-radius: 10px;
  background-color: var(--primary);
  padding: 1rem 1.5rem 1rem;
  padding-left: 60px; 
  color: white;
  transition: all 0.3s;
  width: auto;
}
.notice_con p:before{
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: url('../img/warning.svg') no-repeat center/contain;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.single-post .section_blog{
  padding: 5rem 0;
}




@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem !important;
    max-width: 1220px;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  header .middle .flex {
    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;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    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;
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .product_list a {
    grid-template-columns: 31% 1fr;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 7px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ddd7dd;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 30px !important;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 42px;
    min-width: 120px;
    padding: 0 20px;
  }
  .btn_line {
    line-height: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 22px;
  }
  .swiper_btns div {
    width: 40px;
  }
  div.swiper-pagination-bullets {
    gap: 10px;
  }
  div.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  div.swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 16px;
  }
  .white .breadcrumbs span {
    letter-spacing: unset;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .breadcrumbs span span::after {
    margin-right: 0;
  }
  .breadcrumbs span span:first-child a {
    width: 14px;
    height: 14px;
  }
  .breadcrumbs span span:first-child::after {
    margin: 0 10px;
  }
  div.head.ban p {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    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;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn {
    margin-top: 20px;
  }
  div.head .btn,
  div.head .btn_w,
  div.head .btn_line {
    margin-top: 20px;
  }
  header {
    top: 0;
  }
  header.opt {
    top: 0;
  }
  header .top {
    padding: 10px 0;
  }
  header .top .flex {
    gap: 10px;
  }
  header .top .header_notice {
    padding-left: 25px;
    margin-top: 0;
  }
  header .top .header_notice::before {
    width: 14px;
    height: 14px;
    top: 46%;
  }
  header .top .header_notice .header_notice_swiper {
    height: 20px;
    letter-spacing: unset;
  }
  header .top .btn_lang {
    display: none;
  }
  header .top .connect li {
    padding-left: 25px;
  }
  header .top .connect li::before {
    width: 14px;
    height: 14px;
  }
  header .top .connect li::after {
    display: none;
  }
  header .middle .flex {
    min-height: 64px;
    padding: 0;
  }
  header .lt {
    margin: 0;
  }
  header .lt .logo img {
    height: 20px;
  }
  header .btns {
    gap: 20px;
  }
  header .btns .search_box {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: unset;
    margin: 0;
    top: 100%;
    background-color: #fff;
    padding: 10px 20px;
    border-top: 1px solid #eee;
    pointer-events: none;
    display: none;
  }
  header .btns .search_box.active {
    opacity: 1;
    pointer-events: all;
  }
  header .btns .search_box form input[type=submit] {
    width: 40px;
    height: 40px;
  }
  header .btns .search_box form input[type=text] {
    font-size: 14px;
    padding: 0 20px;
  }
  header .btns .btn_account {
    position: relative;
    text-indent: -999px;
    overflow: hidden;
    width: 22px;
    height: 22px;
    padding: 0;
    min-height: unset;
    display: block;
    background-color: transparent;
    border-radius: 0;
  }
  header .btns .btn_account:hover {
    background-color: transparent;
  }
  header .btns .btn_account:hover::before {
    filter: unset;
  }
  header .btns .btn_account::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  header .btns .btn_cart {
    width: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
  }
  header .btns .btn_lang,
  header .btns .btn_search {
    display: block;
    width: 22px;
    height: 22px;
    content: '';
    cursor: pointer;
    background: url("../img/icon-search-w.svg") no-repeat center / contain;
    filter: contrast(0) brightness(0);
  }
  header .btns .btn_lang {
    background-image: url("../img/icon-lang-w.svg");
  }
  footer .footer_main {
    border-radius: 10px 10px 0 0;
    padding: 50px 0;
  }
  footer .footer_main .flex {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 0;
  }
  footer .footer_main strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .footer_main .slide_intro {
    order: -1;
    display: grid;
    justify-content: unset;
    align-items: unset;
    gap: 0;
    margin-bottom: 30px;
  }
  footer .footer_main .slide_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .footer_main .slide_intro .social {
    margin-top: 30px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .footer_main .slide_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  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 20px 20px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    line-height: 1.5;
    display: block;
    font-weight: normal;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .footer_main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .footer_main .slide_connect strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .footer_main .slide_connect li {
    padding-left: 30px;
  }
  footer .footer_main .slide_connect li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 16px;
  }
  footer .footer_main .slide_connect li .label {
    font-size: 14px;
    margin-top: 6px;
  }
  footer .footer_bottom {
    padding: 20px 0;
    font-size: 14px;
  }
  footer .footer_bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .footer_bottom p {
    font-size: 13px;
  }
  footer .footer_bottom .rt {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer_bottom .rt ul {
    gap: 5px;
  }
  footer .footer_bottom .rt .img {
    height: 25px;
  }
  .password_model .box {
    width: calc(100% - 40px);
    margin: 40px auto;
  }
  .password_model .close {
    width: 14px;
    height: 14px;
    right: 14px;
    top: 14px;
  }
  .password_model form {
    padding: 20px;
    gap: 16px;
  }
  .password_model form .title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .password_model form .label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .password_model form input {
    height: 46px;
    padding: 0 20px;
  }
  .password_model form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .password_model form input[type=submit] {
    height: 42px;
    padding: 0 20px;
    min-width: 120px;
  }
  .footer_advantages .items ul {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  }
  .footer_advantages .items li {
    padding: 20px;
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }
  .footer_advantages .items strong {
    font-size: 18px;
    margin-top: 0;
  }
  .footer_advantages .items p {
    font-size: 14px;
    margin-top: 10px;
  }
  .page_clients {
    padding: 50px 0;
  }
  .page_clients .inner {
    border-radius: 10px;
    width: calc(100% - 40px);
    padding: 30px 0;
  }
  .page_clients .flex {
    gap: 20px;
  }
  .page_clients .icon {
    width: 40px;
    top: -40px;
    right: 20px;
  }
  .page_clients .lt {
    margin-top: 0;
  }
  .page_clients .page_clients_img_swiper {
    border-radius: 10px;
  }
  .page_clients .page_clients_swiper .title {
    font-size: 22px;
    line-height: 1.3;
  }
  .page_clients .page_clients_swiper .star {
    --w: 120px;
    margin-top: 20px;
  }
  .page_clients .page_clients_swiper .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
  }
  .page_clients .page_clients_swiper .user {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    margin-top: 20px;
  }
  .page_clients .page_clients_swiper .user strong {
    font-size: 18px;
    margin-top: 0;
  }
  .page_clients .page_clients_swiper .user p {
    font-size: 14px;
    margin-top: 5px;
  }
  .page_clients .swiper_con {
    margin-top: 30px;
  }
  .contact_intro {
    padding: 50px 0 30px;
  }
  .contact_intro .head .subtitle {
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0;
  }
  .contact_intro .head p {
    margin-top: 12px;
  }
  .contact_intro .items {
    margin-top: 30px;
  }
  .contact_intro .items ul {
    gap: 20px 15px;
    justify-content: space-between;
  }
  .contact_intro .items li {
    padding-top: 0;
    padding-left: 0;
  }
  .contact_intro .items li .icon {
    width: 50px;
    height: 50px;
    position: static;
    margin-bottom: 15px;
  }
  .contact_intro .items li .syedittext h3 {
    font-size: 18px;
  }
  .contact_form {
    padding: 30px 0;
  }
  .contact_form .form {
    border-radius: 12px;
    padding: 30px 20px;
    transform: translateY(-30px);
  }
  .contact_form .form form {
    gap: 15px 0;
  }
  .contact_form .form .label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .contact_form .form input,
  .contact_form .form select,
  .contact_form .form textarea {
    height: 46px;
    font-size: 14px;
    padding: 0 15px;
  }
  .contact_form .form textarea {
    height: 120px;
    padding: 12px 15px;
  }
  .contact_form .form .btc {
    gap: 15px;
  }
  .contact_form .form .tip {
    font-size: 14px;
    line-height: 1.5;
  }
  .contact_form .form .btn {
    gap: 30px;
    padding: 0 20px;
    justify-content: space-between;
  }
  .page_banner::before {
    width: 100%;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 70px 0 50px;
  }
  .page_banner .breadcrumbs {
    top: 10px;
  }
  .page_banner .head {
    padding: 0;
  }
  .sec_filters {
    font-size: 14px;
    padding: 14px 20px;
  }
  .sec_filters > .flex {
    gap: 12px 20px;
    justify-content: space-between;
  }
  .sec_filters select {
    height: 38px;
    padding: 0 30px 0 16px;
    background-size: 8px;
    background-position: center right 10px;
  }
  .sec_filters .sort {
    gap: 10px;
  }
  .sec_filters .sort .label {
    margin-right: 0;
  }
  .sec_filters .sort select {
    min-width: unset;
  }
  .sec_filters .sort .btn_sort {
    width: 16px;
    height: 16px;
  }
  .sec_filters .per_page {
    margin-right: 0;
    gap: 10px;
  }
  .sec_filters .layouts {
    gap: 10px;
  }
  .sec_filters .layouts .btn_layout {
    width: 20px;
    height: 20px;
  }
  .sec_filters .turn_page .page-number {
    padding: 0 10px;
  }
  .sec_filters .turn_page .next {
    width: 8px;
    height: 8px;
    margin-left: 0;
  }
  .sec_filters .btn_filter {
    width: 22px;
    height: 22px;
    display: block;
    content: '';
    background: url("../img/mobile-menu/nav-btn.svg") no-repeat center / contain;
    cursor: pointer;
  }
  nav.navigation .nav-links {
    gap: 5px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    min-width: 30px;
    line-height: 30px;
    padding: 0 5px;
  }
  nav.navigation .prev,
  nav.navigation .next {
    width: 7px;
    margin: 0 10px;
  }
  nav.navigation .omit {
    margin: 0 10px;
  }
  .product_list.sm a {
    font-size: 14px;
    padding: 20px;
  }
  .product_list.sm .icon {
    width: 50px;
    height: 50px;
  }
  .product_list.sm .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .product_list.sm .info {
    padding: 20px 20px 20px 0;
    margin-top: -8px;
  }
  .product_list.sm .con {
    margin-top: 20px;
  }
  .product_list.sm .amount p {
    font-size: 20px;
  }
  .product_list.sm .amount p del {
    font-size: 14px;
  }
  .product_list.row a {
    padding: 20px;
    gap: 16px;
    align-items: center;
  }
  .product_list.row .icon_con {
    padding: 10px;
    gap: 10px;
  }
  .product_list.row .icon {
    width: 50px;
    height: 50px;
  }
  .product_list.row .cat {
    margin-bottom: 8px;
  }
  .product_list.row .info {
    margin-top: 0;
    padding: 0;
  }
  .product_list.row .con {
    margin-top: 0;
  }
  .product_list.row .link {
    grid-template-columns: 1fr 40px;
    padding: 5px;
  }
  .product_list.row .more {
    font-size: 14px;
    gap: 12px;
    padding: 0 20px;
  }
  .product_list .active .amount p {
    color: #fff;
  }
  .product_list .active .amount p del {
    color: #fff;
    opacity: 0.8;
  }
  .product_list a {
    border-radius: 10px;
    font-size: 14px;
    padding: 20px;
  }
  .product_list .icon {
    width: 50px;
    height: 50px;
  }
  .product_list .cat {
    margin-bottom: 0;
  }
  .product_list .code {
    gap: 10px;
    margin-top: 14px;
  }
  .product_list .code::before {
    width: 14px;
    height: 14px;
  }
  .product_list .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .product_list .icon_con {
    border-radius: 10px;
    gap: 10px;
    padding-left: 0;
  }
  .product_list .info {
    padding: 20px 20px 20px 0;
    margin-top: -8px;
  }
  .product_list .info::before {
    border-radius: 10px;
  }
  .product_list .con {
    margin-top: 20px;
    padding-right: 0;
  }
  .product_list .con .link {
    grid-template-columns: 1fr 40px;
    padding: 5px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
  }
  .product_list .con .link .more {
    gap: 12px;
    padding: 0 20px;
  }
  .product_list .con .link .more::after {
    width: 14px;
    height: 14px;
  }
  .product_list .con .amount {
    position: static;
    max-height: unset;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .product_list .con .amount p {
    font-size: 20px;
  }
  .product_list .con .amount p del {
    font-size: 14px;
  }
  .resource_list a {
    min-height: unset;
  }
  .resource_list .mask {
    --w: 40px;
    --h: 40px;
  }
  .resource_list .info {
    padding: 16px 20px 20px;
  }
  .resource_list .info .metas {
    font-size: 14px;
    gap: 10px;
  }
  .resource_list .info .metas .cat {
    font-size: 15px;
    margin: 0;
  }
  .resource_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .resource_list .info .more {
    font-size: 14px;
    margin-top: 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(--primary);
      content: '';
    }

  .notice_con p{
    width: 92%;
    font-size: 15px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    padding: 2.2rem;
    padding-left: 8rem;
  }
  .cart_popup .cart_popup_con .cart_popup_main{
    font-size: 16px;
  }
  .cart_popup .cart_popup_con .cart_popup_main a{
    font-size: 16px;
    margin-top: 7px;
  }
  .cart_popup .cart_popup_con{
    top: unset;
    transform: translate(-50%,50px);
    bottom: 0;
  }
  .show_cart_popup .cart_popup .cart_popup_con{
    top: unset;
    transform: translate(-50%,0);
    bottom: 0;
  }
  .cart_popup .cart_popup_con .head{
    padding: 20px;
  }
  .cart_popup .cart_popup_con .cart_popup_main{
    padding: 20px;
  }
  .cart_popup .cart_popup_con{
    width: 100%;
  }
  .cart_popup .cart_popup_con .others{
    align-items: flex-start;
  }
  .page_clients .lt, .page_clients .rt{
    width: 100% !important;
  }
  .product_spec table tr{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .product_spec .rt table tr th, .product_spec .rt table tr td{
    width: auto !important;
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px !important;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  header .top .flex {
    display: block;
  }
  header .top .rt {
    display: none;
  }
  .page_clients .lt,
  .page_clients .rt {
    width: 100%;
  }
  .contact_intro .items ul {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .contact_intro .items ul::-webkit-scrollbar {
    display: none;
  }
  .contact_intro .items li {
    flex: 1 0 200px;
  }
  .contact_form .form .col2 {
    width: 100%;
  }
  .contact_form .form .btc {
    flex-direction: column;
  }
  .page_banner .head {
    width: 100%;
  }
  .product_list.row a {
    grid-template-columns: 1fr;
    align-items: unset;
  }
}
/*# sourceMappingURL=global.css.map */