* {
  list-style: none; padding: 0; margin: 0; box-sizing: border-box;
  vertical-align: baseline; text-decoration: none;
}
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora.woff2);
}
@font-face {
  font-family: "woodmart-font";
  src: url(../fonts/woodmart-font.woff2);
}
:root {
  --wd-header-el-color: #333;
  --nav-color-active: rgba(51, 51, 51, 0.7);
  --nav-chevron-color: rgba(82, 82, 82, .45);
  --wd-header-el-color-hover: rgba(51, 51, 51, .6);
  --wd-primary-color: rgb(122, 179, 139);
  --wd-title-color: #242424;
  --wd-text-font: "Lora", Arial, Helvetica, sans-serif;
  --wd-text-font-weight: 400;
  --wd-text-color: #777777;
  --wd-text-font-size: 14px;
  --wd-text-line-height: 1.6;
  --sub-menu-color: #848484;
}
img {
  vertical-align: middle;
}
.f { display: flex; }
.fj { justify-content: space-between; }
.fv { align-items: center; }
.fc { justify-content: center; }
.pv { position: absolute; top: 50%; transform: translateY(-50%); }
body {
  font-size: var(--wd-text-font-size);
  font-family: var(--wd-text-font);
  line-height: var(--wd-text-line-height)
}
.container {
  max-width: 1222px;
}
.container, .container-fluid {
  position: relative;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}

.web-top {
  background-color: rgba(121, 179, 138, 1);
}
.web-top .container {
  height: 42px;
}
.web-top .welcome {
  margin-left: -15px;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}
.web-top .shares li a {
  display: block;
  padding: 6px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}


.web-nav {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
}
.web-nav .menu-trigger {
  display: none;
}
.web-nav .left {
  left: 0;
}
.web-nav .left .item {
  padding: 0 10px;
  font-size: 14px;
}
.web-nav .left .item:first-child {
  margin-left: -10px;
}
.web-nav .left .item:first-child ~ .item {
  margin-left: 40px;
}
.web-nav .left .item label {
  color: var(--wd-header-el-color);
}
.web-nav .left .item p {
  color: var(--wd-text-color);
}
.web-nav a.logo {
  display: flex;
}
.web-nav a.logo img {
  height: 100px;
  padding: 5px 0;
}
.web-nav .search {
  padding: 10px;
  right: 0;
  font-size: 19px;
  line-height: 19px;
  color: var(--wd-header-el-color)
}
.web-nav .search:hover {
  color: var(--wd-header-el-color-hover);
}


.web-menu {
  border-bottom: 1px solid rgba(232, 232, 232, 1);
}
.web-menu ul.container {
  height: 50px;
}
.web-menu ul li  {
  position: relative;
}
.web-menu ul li a.primary {
  height: 40px;
  padding: 0 10px;
}
.web-menu ul li a.primary span {
  position: relative;
  display: block;
  padding: 1px 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--wd-header-el-color);
}
.web-menu ul li a.primary span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  background-color: var(--wd-primary-color);
}
.web-menu ul li.on a.primary span,
.web-menu ul li:hover a.primary span {
  color: var(--nav-color-active);
}
.web-menu ul li.on a.primary span:after,
.web-menu ul li:hover a.primary span:after {
  width: 100%;
}
.web-menu ul li a.primary .fa {
  margin-left: 4px;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  color: var(--nav-chevron-color);
}
.web-menu ul li ul {
  display: block;
  padding: 12px 0;
  background-color: #fff;
  background-position: bottom right;
  background-clip: border-box;
  background-repeat: no-repeat;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.web-menu ul li div.secondary,
.web-menu ul li ul li dl {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 380;
  padding-top: 6px;
  width: 220px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(15px) translateZ(0);
  pointer-events: none;
}

.web-menu ul li:hover div.secondary,
.web-menu ul li ul li:hover dl {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.web-menu ul li a.secondary,
.web-menu ul li ul li dl a {
  display: flex; 
  justify-content: space-between;
  padding: 8px 0;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
  color: var(--sub-menu-color);
}
.web-menu ul li ul li:hover a.secondary,
.web-menu ul li ul li dl a:hover {
  color: var(--wd-primary-color);
}
.web-menu ul li ul li {
  position: relative;
  padding: 0 20px;
}
.web-menu ul li ul li dl {
  left: 100%;
  top: 0;
  padding: 12px 20px;
  background-color: #fff;
  background-position: bottom right;
  background-clip: border-box;
  background-repeat: no-repeat;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  text-align: left;
}


.index-pics1 {
  margin-bottom: 80px;
}
.index-pics1 .container {
  padding: 30px 0;
}
.index-pics1 .left {
  margin-left: -10px;
  width: 50%;
  flex-shrink: 0;
}
.index-pics1 .right {
  margin-right: -10px;
  width: 50%;
}
.index-pics1 .first {
  margin-bottom: 20px;
}
.index-pics1 .second .item:nth-child(1) {
  width: 58.33333333%;
  flex-shrink: 0;
}
.index-pics1 .second .item:nth-child(2) {
  flex: 1;
}
.index-pics1 .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
.cover {
  overflow: hidden;
}
.cover img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.cover:hover img {
  transform: scale(1.09)
}


.index-title {
  text-align: center;
}
.index-title h2 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  color: var(--wd-title-color);
}
.index-title p {
  font-size: 16px;
  color: var(--wd-text-color);
}
.index-categories {
  margin-bottom: 70px;
}
.index-categories .index-title {
  margin-bottom: 24px;
}
.index-categories ul {
  margin: 0 -10px;
  flex-wrap: wrap;
}
.index-categories ul li {
  position: relative;
  padding: 0 10px;
  margin-bottom: 20px;
  width: 25%;
}
.index-categories .container {
  padding: 0;
}
.index-categories ul li .cover:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  opacity: .1;
  transition: opacity 0.6s cubic-bezier(0, 0, 0.44, 1.18);
}
.index-categories ul li:hover .cover:before {
  opacity: .4;
}
.index-categories ul li .cover {
  position: relative;
  z-index: 1;
}
.index-categories ul li p {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-transform: uppercase;
  font-size: 20px;
  padding: 12px 25px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  color: #fff;
  line-height: 1.4;
  transition: opacity .25s ease .25s;
  background-color: var(--wd-primary-color);
}


.index-prods {
  margin-bottom: 80px;
}
.index-prods .container {
  padding: 0;
}
.index-prods .swiper-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-header-el-color);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  font-size: 24px;
  line-height: 1;
}
.index-prods .swiper-btn.swiper-button-disabled {
  color: #a5a5a5;
}
.index-prods .swiper-btn:after {
  font-family: "woodmart-font"
}
.index-prods .swiper-btn.prev:after {
  content: "\f114";
}
.index-prods .swiper-btn.next:after {
  content: "\f113";
}
.index-prods:hover .swiper-btn {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: auto;
}
.index-prods .swiper-btn.prev {
  transform: translate(-30px, -50%);
  left: -20px;
}
.index-prods .swiper-btn.next {
  right: -20px;
  transform: translate(30px, -50%);
}
.index-prods .swiper-tags {
  margin-bottom: 15px;
}
.index-prods .swiper-tags a {
  padding: 10px 0;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: var(--wd-header-el-color);
}
.index-prods .swiper-tags a:not(:last-child) {
  margin-inline-end: 30px;
}
.index-prods .swiper-tags a:hover {
  color: var(--nav-color-active);
}
.index-prods .swiper-tags a span {
  position: relative;
  line-height: 1.2;
  padding: 1px 0;
}
.index-prods .swiper-tags a span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  background-color: var(--wd-primary-color);
}
.index-prods .swiper-tags a.on span:after,
.index-prods .swiper-tags a:hover span:after {
  width: 100%;
}
.index-prods .swiper-slide a {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.index-prods .swiper-slide a p {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--wd-title-color);
}
.index-prods .swiper-slide a:hover p {
  color: var(--wd-text-color);
}
.index-prods .swiper-slide a .cover {
  margin-bottom: 10px;
}
.index-prods .swiper-slide a:hover .cover img {
  width: 100%;
  transform: scale(1.09);
}


.web-footer {
  color: #fff;
  background-color: rgb(23,23,23);
}
.web-footer .links {
  padding: 40px 0 0;
}
.web-footer .about-us {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 30px;
}
.web-footer .about-us h3 {
  margin-bottom: 35px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}
.web-footer .about-us ul li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.web-footer .ll {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  margin-bottom: 30px;
}
.web-footer .ll h3 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
}
.web-footer .ll ul li {
  margin-bottom: 15px;
}
.web-footer .ll ul li a {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  transition: all .25s ease;
}
.web-footer .ll ul li a:hover {
  color: rgba(255, 255, 255, 1);
}
.web-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  font-size: 12px;
}


.menu-bar {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  padding: 5px 0;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  z-index: 20;
}
.menu-bar ul li {
  width: 33.33333333%;
  text-align: center;
}
.menu-bar ul li a {
  padding: 2px 10px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
}
.menu-bar ul li a span {
  display: block;
  padding: 1px 0;
  font-size: 11px;
  color: var(--wd-header-el-color);
}

.menu-bar ul li a .icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  height: 26px;
  color: var(--wd-header-el-color);
  font-weight: 400;
}
.menu-bar ul li a .icon .not {
  position: absolute;
  top: 0;
  right: -9px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--wd-primary-color);
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 9px;
  line-height: 15px;
}
.icon:after {
  position: relative;
  z-index: 0;
  font-family: "woodmart-font";
}
.ic-shop:after {
  content: "\f146";
}
.ic-cart:after {
  content: "\f126";
}
.ic-bag:after {
  content: "\f124";
}


.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 350;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
  color: #333;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateX(100%);
}
.back-top:after {
  display: inline-block;
  font-weight: 600;
  content: "\f115";
  font-family: "woodmart-font";
}
.back-top.show {
  opacity: 1;
  transform: none;
  pointer-events: visible;
}


.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 391;
  visibility: hidden;
  opacity: 0;
  transition: opacity .1s ease, visibility .1s ease, transform .3s ease;
  animation: all .1s ease;
  pointer-events: none;
  background-color: #fff;
  transform: translateY(-100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.top-menu.show {
  transform: translateY(0);
}
.top-menu a.logo {
  left: 0;
}
.top-menu a.logo img {
  padding: 5px 0;
  max-width: 100px;
}
.web-nav .search,
.top-menu .search {
  right: 15px;
  color: var(--wd-header-el-color);
}
.web-nav .search .wd-tools-icon:before,
.top-menu .search .wd-tools-icon:before {
  font-size: 19px;
  transition: opacity .3s ease;
  content: "\f130";
  font-family: "woodmart-font"
}

.top-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.pc-search {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 100;
  transition: all .4s ease;
  height: 0;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
}
.pc-search .close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
}
.pc-search .close:hover {
  color: #777;
}
.pc-search .close:after {
  content: "\f112";
  font-size: 30px;
  font-family: "woodmart-font";
}
.pc-search.show {
  height: calc(100vh - 62px);
}
.pc-search .form {
  
}
.pc-search .form .form-group {
  padding: 0 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.pc-search .form .form-group input {
  display: block;
  width: 100%;
  background-color: #fff;
  border: none;
  height: 110px;
  font-size: 48px;
  font-family: var(--wd-text-font);
  text-align: center;
  font-weight: 600;
  outline: none;
}
.pc-search .form .form-group input::-webkit-input-placeholder {
  color: var(--wd-header-el-color);
}
.pc-search .form .form-tip {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: var(--wd-text-color);
}



.phone-menu {
  position: fixed;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  top: 0;
  width: 100%;
  transform: translateX(-100%);
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.phone-menu .cont {
  height: 100vh;
  width: 300px;
  overflow: auto;
  background-color: #fff;
}
.phone-menu.show {
  transform: translateX(0)
}
.phone-menu .search-form {
  display: flex;
}
.phone-menu .search-form .form-group {
  flex: 1;
}
.phone-menu .search-form .form-group input {
  height: 70px;
  border: none;
  outline: none;
  padding: 0 0 0 20px;
  font-family: var(--wd-text-font);
  font-size: 15px;
  font-weight: 600;
}
.phone-menu .search-form .submit {
  width: 50px;
  height: 70px;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.phone-menu .search-form .submit:after {
  font-size: 20px;
  content: "\f130";
  font-family: "woodmart-font";
}
.phone-menu .pm-tags {
  display: flex;
  background-color: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.phone-menu .pm-tags a {
  position: relative;
  width: 50%;
  display: inline-flex;
  padding: 18px 15px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.2;
  color: #909090;
  font-weight: 600;
}
.phone-menu .pm-tags a.on {
  color: var(--wd-header-el-color);
  background-color: rgba(0, 0, 0, 0.05);
}
.phone-menu .pm-tags a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  left: 0;
  width: 100%;
  background-color: transparent;
}
.phone-menu .pm-tags a.on:after {
  background-color: var(--wd-primary-color);
}
.phone-menu .pm-panes .panel {
  display: none;
}
.phone-menu .pm-panes .panel.on {
  display: block;
}
.phone-menu ul li {
  border-top: 1px solid rgba(0, 0, 0, 0.105);
}
.phone-menu .panel {
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.phone-menu ul li a {
  display: flex;
  align-items: center;
}
.phone-menu ul li a {
  color: var(--sub-menu-color);
}
.phone-menu ul li a .fa:before,
.phone-menu ul li ul li a.secondary .fa:before,
.phone-menu .yy a.secondary .fa:before {
  transition: transform .25s ease;
}
.phone-menu ul li.open a.primary,
.phone-menu ul li ul li.open a.secondary,
.phone-menu .yy ul li.open a.secondary {
  background-color: #f7f7f7;
}
.phone-menu ul li.open a.primary .fa,
.phone-menu ul li ul li.open a.secondary .fa,
.phone-menu .yy ul li.open a.secondary .fa {
  background-color: var(--wd-primary-color);
  color: #fff;
}
.phone-menu ul li.open a.primary .fa:before,
.phone-menu ul li ul li.open a.secondary .fa:before,
.phone-menu .yy ul li.open a.secondary .fa:before{
  transform: rotate(90deg);
}
.phone-menu ul li a.primary {
  color: var(--wd-header-el-color);
}
.phone-menu ul li div.secondary {
  display: none;
}
.phone-menu ul li div.secondary ul li,
.phone-menu .yy div.secondary ul li,
.phone-menu ul li dl dd {
  border-top:  1px solid rgba(0, 0, 0, 0.105);
}
.phone-menu ul li.open div.secondary {
  display: block;
}
.phone-menu ul li.on a.primary {
  color: var(--wd-primary-color);
}
.phone-menu ul li dd a,
.phone-menu ul li a span {
  flex: 1;
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 5px 20px;
}
.phone-menu ul li a .fa {
  border-left: 1px solid rgba(0, 0, 0, 0.105);
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.phone-menu ul li dl {
  display: none;
}
.phone-menu ul li ul li.open dl,
.phone-menu .yy ul li.open dl {
  display: block;
}

.contact-us-page {
  padding: 40px 0;
}
.contact-us-page .row {
  margin: 0 -65px;
}
.contact-us-page .form {
  width: 50%;
  flex-shrink: 0;
  border-right: 1px solid #e8e8e8;
  padding: 20px 50px 10px;
}
.contact-us-page .form .form-group {
  margin-bottom: 20px;
}
.contact-us-page .form .form-group .form-control {
  padding: 0 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  display: block;
  width: 100%;
  font-family: var(--wd-text-font);
}
.contact-us-page .form .form-group .invalid {
  display: block;
  color: #f00;
}
.contact-us-page .form .form-group input.form-control {
  height: 42px;
}
.contact-us-page .form .form-group textarea.form-control {
  min-height: 190px;
  resize: vertical;
  padding: 10px 15px;
}
.contact-us-page .form .form-submit .submit {
  margin-bottom: 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: #3E3E3E;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  font-family: var(--wd-text-font);
  font-weight: 600;
  background-color: #F3F3F3;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.contact-us-page .form .form-submit .submit:hover {
  color: #fff;
  background: #79b38a;
}
.contact-us-page .form .form-notification {
  padding: 10px 30px 10px 20px;
  background-color: #E0B252;
  color: #fff;
  line-height: 40px;
}
.contact-us-page .form .form-notification:before {
  margin-right: 12px;
  content: "\f100";
  font-family: "woodmart-font";
  font-size: 18px;
}
.contact-us-page h3 {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.4;
  color: var(--wd-title-color);
  font-weight: 400;
}
.contact-us-page .info {
  flex: 1;
  padding: 20px 50px 10px;
}
.contact-us-page .info ul {
  flex-wrap: wrap;
}
.contact-us-page .info ul li {
  margin-top: 30px;
  width: 50%;
}
.contact-us-page .info ul li:nth-child(1),
.contact-us-page .info ul li:nth-child(2) {
  margin-top: 0;
}
.contact-us-page .info ul li h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.contact-us-page .info ul li p {
  color: var(--wd-text-color);
}
.contact-us-page .info ul li p a {
  color: #6dab3c;
  transition: all .25s ease;
}
.contact-us-page .info ul li p a:hover {
  color: #f00;
}

.spinner {
  position: relative;
}
.spinner:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  margin-top: 2px;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left-color: #242424;
  border-radius: 50%;
  vertical-align: middle;
  animation: wd-rotate 450ms infinite linear
}
@keyframes wd-rotate {
  100% {
      transform: translateY(-50%) rotate(360deg)
  }
}


.about-us-page .section {
  padding: 40px 0;
}
.about-us-page .section .cover {
  width: 50%;
  flex-shrink: 0;
  padding: 0 15px;
}
.about-us-page .section article {
  flex: 1;
}
.about-us-page .section article p {
  margin-bottom: 20px;
  color: var(--wd-text-color);
  font-size: 15px;
  line-height: 25px;
}
.about-us-page .section article p.tag,
.certif p.tag {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--wd-primary-color);
  font-weight: 600;
}
.about-us-page .section article h2,
.about-us-page .certif h2 {
  margin-bottom: 20px;
  font-size: 36px;
  color: var(--wd-title-color);
  line-height: 1.4;
  font-weight: 400;
}
.about-us-page .section .swiper-box ~ article,
.about-us-page .section .cover ~ article {
  margin-left: 8.33333333%;
}
.about-us-page .sec2 {
  background-color: #f6f6f6;
}
.about-us-page .sec2 .swiper-box {
  margin-left: 8.33333333%;
  width: 41.66666667%;
  flex-shrink: 0;
  padding: 35px 15px 0;
}
.about-us-page .sec3 .swiper-box {
  width: 50%;
}
.about-us-page .sec3 article {
  padding-top: 35px;
}
.detail-page .swiper-pagination,
.about-us-page .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.detail-page .swiper-pagination .swiper-pagination-bullet,
.about-us-page .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  margin: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid #bbb;
  border-radius: 50%;
  transition: all .25s ease;
  opacity: 1;
  background-color: transparent;
}
.detail-page .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.about-us-page .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #333;
  border-color: #333;
}
.detail-page .swiper-box .swiper-button-next,
.detail-page .swiper-box .swiper-button-prev,
.detail-page .swiper .swiper-button-next,
.detail-page .swiper .swiper-button-prev,
.about-us-page .swiper-button-next, 
.about-us-page .swiper-button-prev {
  color: #333;
  visibility: hidden;
  opacity: 0;
  transition: all .25s ease;
}
.detail-page .swiper-box .swiper-button-next,
.detail-page .swiper .swiper-button-next,
.about-us-page .swiper-button-next {
  transform: translateX(30px);
}
.detail-page .swiper-box .swiper-button-prev,
.detail-page .swiper .swiper-button-prev,
.about-us-page .swiper-button-prev {
  transform: translateX(-30px);
}
.detail-page .swiper-box:hover .swiper-button-next,
.detail-page .swiper-box:hover .swiper-button-prev,
.detail-page .swiper:hover .swiper-button-next,
.detail-page .swiper:hover .swiper-button-prev,
.about-us-page .swiper:hover .swiper-button-next, 
.about-us-page .swiper:hover .swiper-button-prev,
.about-us-page .swiper-box:hover .swiper-button-next,
.about-us-page .swiper-box:hover .swiper-button-prev {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
}
.detail-page .swiper-button-next:after,
.detail-page .swiper-button-prev:after,
.about-us-page .swiper-button-next:after, 
.about-us-page .swiper-button-prev:after {
  font-size: 24px;
}
.about-us-page .certif {
  padding: 40px 0;
}
.about-us-page .certif p.tag,
.about-us-page .certif h2 {
  text-align: center;
}
.about-us-page .certif .swiper-box {
  margin: 0 -15px;
}
.about-us-page .swiper-box .swiper-slide {
  padding: 0 15px;
}
.about-us-page .swiper-box .swiper-slide img {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.about-us-page .swiper-box .swiper-slide img:hover {
  transform: scale(1.09);
}
.about-us-page .swiper-box .swiper-button-next {
  right: -30px;
}
.about-us-page .swiper-box .swiper-button-prev {
  left: -30px;
}


.sub-title {
  padding: 20px 0;
  margin-bottom: 40px;
  background-color: rgb(249,249,249);
}
.sub-title .r {
  position: relative;
}
.sub-title h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
}
.sub-title a.back {
  color: #333;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  font-weight: 400;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-title a.back:before {
  content: "\f121";
  font-family: "woodmart-font";
  font-size: 26px;
}
.sub-title a.back:hover {
  color: #777;
}


.list-page .list-menu {
  width: 25%;
  flex-shrink: 0;
  margin-bottom: 40px;
}
.list-page .close {
  display: none;
}
.list-page .list-menu h3 {
  margin-bottom: 20px;
  font-family: var(--wd-text-font);
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
.list-page .list-menu ul li,
.list-page .list-menu dl dd {
  margin-bottom: 15px;
}
.list-page .list-menu dl {
  margin-top: 15px;
  padding-inline-start: 15px;
}
.list-page .list-menu ul li a {
  font-size: 14px;
  color: #777;
  transition: all .25s ease;
}
.list-page .list-menu ul li a:hover {
  color: #333;
}
.list-page .list-main {
  flex: 1;
  padding: 0 15px;
}
.brumbs ul li {
  font-size: ;
}
.brumbs ul li a {
  color: #777;
  transition: all .25s ease;
}
.brumbs ul li a:hover {
  color: #333;
}
.brumbs ul li:not(:last-child) {
  margin-right: 5px;
}
.list-main .brumbs-filter {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.list-main .filters .limit {
  margin-inline-end: 30px;
}
.list-main .filters .limit ul li:not(:last-child):after,
.brumbs ul li:not(:last-child):after {
  margin-left: 5px;
  content: "/";
  color: #777;
}
.list-main .brumbs .showing {
  display: none;
}
.list-main .filters .sidebar {
  display: none;
}

.list-main .filters .limit .label {
  color: #242424;
  font-weight: 600;
}
.list-main .filters .limit ul li {
  display: flex;
  align-items: center;
}
.list-main .filters .limit ul li:after {
  margin-left: 0;
}
.list-main .filters .limit ul li a {
  display: block;
  padding: 0 7px;
  color: #777;
}
.list-main .filters .limit ul li.on a,
.list-main .filters .limit ul li a:hover {
  color: #333;
}
.list-main .filters .limit ul li.on a {
  font-weight: 600;
}
.list-main .filters .view {
  margin-inline-end: 30px;
}
.list-main .filters .view a {
  color: #333;
  opacity: 0.6;
  transition: all .25s ease
}
.list-main .filters .view a:not(:last-child) {
  margin-inline-end: 12px;
}
.list-main .filters .view a.on,
.list-main .filters .view a:hover {
  opacity: 1;
}
.list-main .filters .view a svg {
  width: 19px;
  height: 19px;
  fill: #242424 !important;
  vertical-align: middle;
}
.list-main .filters .sort select {
  padding: 0 15px;
  height: 42px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: #333;
  background-color: transparent;
  box-shadow: none;
  vertical-align: middle;
  font-size: 14px;
  transition: border-color .5s ease;
  
 /* background-position: right 10px top 50%;
  background-size: auto 18px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
  */
  padding-top: 5px;
  padding-bottom: 5px;
  height: auto;
  border-top-style: none;
  border-right-style: none;
  border-left-style: none;
  border-radius: 0;
  font-weight: 600;
  font-size: inherit;
  line-height: 1.2;
  padding-inline-start: 2px;
  padding-inline-end: 20px;
  outline: none;
}


.list-page .row {
  margin-left: -10px;
  margin-right: -10px;
}
.list-main {
  margin-bottom: 40px;
}
.list-main .prods ul {
  flex-wrap: wrap;
}
.list-main .prods ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
.list-main .prods ul.row3 li {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.list-main .prods ul.row4 li {
  flex: 0 0 25%;
  max-width: 25%;
}
.list-main .prods ul li .cover {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-main .prods ul li .cover img {
  width: 100%;
}
.list-main .prods ul li p {
  text-align: center;
}
.list-main .prods ul li p a {
  color: #333;
  transition: all .25s ease;
}
.list-main .prods ul li p a:hover {
  color: #242424;
}

.pagination ul li:not(:last-child) {
  margin-right: 2px;
}
.pagination ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  height: 34px;
  transition: all .2s ease;
  color: #242424;
  padding: 0 5px;
  font-size: 14px;
}
.pagination ul li a:hover {
  background-color: #f1f1f1;
}
.pagination ul li.on a {
  color: #fff;
  background-color: var(--wd-primary-color);
}
.pagination ul li a.page-prev:after,
.pagination ul li a.page-next:after {
  font-size: 12px;
  font-family: "woodmart-font"
}
.pagination ul li a.page-prev:after {
  content: "\f114";
}
.pagination ul li a.page-next:after {
  content: "\f113";
}

.list-page .pagination {
  margin-top: 10px;
}



.detail-page .dp-header {
  padding-top: 40px;
  padding-bottom: 40px;
}
.detail-page .dp-header .left {
  width: 50%;
  padding: 0 15px;
  margin-left: -15px;
  flex-shrink: 0;
}
.detail-page .dp-header .right {
  flex: 1;
  padding-left: 15px;
}
.dp-header .swiper-slide img {
  max-width: 100%;
}
.dp-header .swiper-thumb {
  margin-top: 4px;
}
.dp-header .brumbs-navi {
  margin-bottom: 20px;
}
.dp-header .brumbs-navi .prev,
.dp-header .brumbs-navi .next {
  position: relative;
}
.dp-header .brumbs-navi a.trigger:before {
  font-size: 12px;
  font-family: "woodmart-font";
}
.dp-header .brumbs-navi a.back-list {
  margin: 0 4px;
}
.dp-header .brumbs-navi a.back-list:before {
  font-size: 14px;
  font-family: "woodmart-font";
  content: "\f122";
}
.dp-header .brumbs-navi .prev a.trigger:before {
  content: "\f114";
}
.dp-header .brumbs-navi .next a.trigger:before {
  content: "\f113";
}
.dp-header .brumbs-navi .navi {
  position: relative;
}
.dp-header .brumbs-navi .dropdown {
  position: absolute;
  top: 100%;
  padding: 15px 0 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.dp-header .brumbs-navi .prev:hover .dropdown,
.dp-header .brumbs-navi .next:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dp-header .brumbs-navi .dropdown a {
  min-width: 240px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.dp-header .brumbs-navi .dropdown a img {
  width: 90px;
}
.dp-header .brumbs-navi .dropdown a p {
  padding: 10px 15px;
  margin-bottom: 5px;
  font-size: 14px;
  word-wrap: break-word;
  line-height: 1.4;
  color: #333;
}
.dp-header .brumbs-navi .dropdown a:hover p {
  color: #777;
}
.dp-header .brumbs-navi .navi a.trigger,
.dp-header .brumbs-navi .navi a.back-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: all .25s ease;
  color: #242424;
}
.dp-header .brumbs-navi .navi a.trigger:hover,
.dp-header .brumbs-navi .navi a.back-list:hover {
  color: #777;
}
.dp-header .colors {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
}
.dp-header .colors li a img {
  width: 40px;
  height: 40px;
}
.dp-header h1 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.2;
  color: #333;
  font-weight: 400;
}
.dp-header .colors li {
  position: relative;
  font-weight: 600;
  margin-right: 15px;
}
.dp-header .colors li a:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  content: "";
  height: 2px;
}
.dp-header .colors li.on a:after,
.dp-header .colors li a:hover:after {
  background-color: #242424;
}
.dp-header ul.info li {
  margin-bottom: 10px;
  color: #777;
}
.dp-header ul.info li:nth-child(1) {
  font-weight: 600;
  color: #333;
}
.dp-header ul.params {
  padding: 5px;
  border-bottom: 1px solid #ccc;
  letter-spacing: 2px;
  color: #555;
}
.dp-header ul.params li:nth-child(1) {
  font-weight: 600;
  width: 40%;
}

.dp-body .indexes {
  margin-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.105);
}
.dp-body .indexes a {
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
  padding: 30px 0 10px;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(51, 51, 51, 0.7);
}
.dp-body .indexes a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  content: "";
  background-color: var(--wd-primary-color);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15)
}
.dp-body .indexes a.on:before,
.dp-body .indexes a:hover:before {
  width: 100%;
}
.dp-body .indexes a.on {
  color: #333;
}
.dp-body .indexes a:not(:last-child) {
  margin-right: 30px;
}
.dp-body .panel {
  display: none;
}
.dp-body .panel .container {
  padding-left: 0;
  padding-right: 0;
}
.dp-body .panel.on {
  display: block;
}
.dp-body .panel h3 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}
.dp-body .panel .desc-list {
  margin: 0 -15px;
}
.dp-body .panel .desc-list li {
  width: 16.66666667%;
  padding: 0 15px;
}
.dp-body .panel .desc-list li .cover {
  margin-bottom: 15px;
  display: block;
  overflow: hidden;
}
.dp-body .panel .desc-list li p {
  margin-bottom: 35px;
  text-align: center;
}
.dp-body .panel .desc-list li p a {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.dp-body .panel .ai-item {
  margin: 0 auto 15px;
  max-width: 650px;
  color: #777;
  
}
.dp-body .panel .ai-item li:nth-child(odd) {
  width: 100px;
  margin-right: 20px;
  color: #333;
  font-weight: 600;
}
.dp-body .panel .ai-item li:nth-child(even) {
  flex: 1;
}
.dp-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.105);
  padding-top: 40px;
  padding-bottom: 40px;
}
.dp-footer .container {
  padding-left: 0;
  padding-right: 0;
}
.dp-footer .rp-title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}
.dp-footer .swiper-box {
  position: relative;
}
.dp-footer .rp-title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--wd-primary-color);
}
.dp-footer .swiper-button-next {
  right: -30px;
}
.dp-footer .swiper-button-prev {
  left: -30px;
}
.dp-footer .swiper .swiper-slide a.cover {
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
}
.dp-footer .swiper .swiper-slide p {
  text-align: center;
}
.dp-footer .swiper .swiper-slide p a {
  color: #333;
}
.dp-footer .swiper .swiper-slide p a:hover {
  color: #777;
}


.large a.preview {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 25px;
  background-color: #fff;
  color: #666;
  font-size: 13px;
  transition: all .25s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.large a.preview span {
  overflow: hidden;
  padding: 0;
  max-width: 0;
  white-space: nowrap;
  font-weight: 600;
  transition: padding 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15),max-width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15)
}
.large a.preview i {
  width: 50px;
  height: 50px;
  font-style: normal;
}
.large a.preview:hover span {
  max-width: 280px;
  padding-right: 25px;
}
.large a.preview i:before {
  content: "\f127";
  font-family: "woodmart-font";
  font-size: 16px;
}

.swiper-enlarge {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 99;
}
.swiper-enlarge .swiper {
  height: 100%;
}
.swiper-enlarge .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-enlarge .swiper-slide .preview {
  max-height: 95vh;
  text-align: center;
}
.swiper-enlarge .swiper-slide .preview img {
  max-width: 100%;
  max-height: 100%;
}
.swiper-enlarge .swiper-button-next:after,
.swiper-enlarge .swiper-button-prev:after {
  display: none;
}
.swiper-enlarge .swiper-button-next:before,
.swiper-enlarge .swiper-button-prev:before {
  content: '';
  display: block;
  width: 32px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
  background: url(../images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
}
.swiper-enlarge .swiper-button-prev:before {
  background-position: -138px -44px;
}
.swiper-enlarge .swiper-button-next:before {
  background-position: -94px -44px;
}
.swiper-enlarge .swiper-pagination {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  width: auto;
  padding: 0 10px;
}
.swiper-enlarge .swiper-options {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  z-index: 2;
}
.swiper-enlarge .swiper-options a.bt {
  display: block;
  width: 44px;
  height: 44px;
  background: url(../images/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  opacity: 0.75;
  transition: opacity .2s;
}
.swiper-enlarge .swiper-options a.bt:hover {
  opacity: 1;
}
.swiper-enlarge .swiper-options a.fullscreen {
  background-position: 0 0;
}
.swiper-enlarge .swiper-options a.close {
  background-position: 0 -44px;
}
.swiper-enlarge .swiper-options a.share {
  background-position: -44px -44px;
}
.swiper-options .share-box {
  position: relative;
}
.swiper-options .share-box .dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  transition: all .4s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.swiper-options .share-box:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.swiper-options .share-box .dropdown ul {
  position: relative;
  background-color: #fff;
}
.swiper-options .share-box .dropdown ul:before {
  content: '';
  position: absolute;
  top: -12px;
  right: 15px;
  display: block;
  border: 6px solid transparent;
  border-bottom-color: #fff;
}
.swiper-options .share-box .dropdown ul li a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  white-space: nowrap;
}

.colors .reset-color {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 12px;
}
.colors .reset-color:before {
  margin-right: 5px;
  font-weight: 600;
  font-size: 75%;
  content: "\f112";
  font-family: "woodmart-font";
  transform: translateY(1px);
}
.colors .reset-color:after {
  display: none !important;
}


.single-preview {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.single-preview .img-box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-preview .img-box img {
  max-width: 96vw;
  max-height: 95vh;
}