@charset "UTF-8";
.sec_intro {
  padding: 80px 0 92px;
}
.intro__txtbk {
  max-width: 350px;
  margin: 0 auto;
}
/* -------------------------------------
	section_products
	------------------------------------- */
.section_products {
  counter-reset: number 0;
}
.products_item {
  position: relative;
  overflow: hidden;
}
/* .products_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(67, 52, 44, 0.6);
  z-index: 0;
} */
.products_item1 {
  background: url(../imgs/products/item_bg_1.jpg) center / cover no-repeat;
}
.products_item2 {
  background: url(../imgs/products/item_bg_2.jpg) no-repeat center / cover;
}
.products_item-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 30px 4.17%;
  padding: 50px 0 150px;
  position: relative;
  z-index: 1;
}
.products_item-imgbk::before {
  line-height: 1.2;
  letter-spacing: 0.2em;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  align-items: flex-end;
  width: 3em;
  counter-increment: number;
  content: " products " counter(number, decimal-leading-zero);
  position: absolute;
  left: 0;
}
.products_item-imgbk {
  width: 42%;
  max-width: calc(450px + 3em);
  padding-left: 3em;
  position: relative;
}
.products_item-txtbk {
  width: 57%;
  max-width: 522px;
}
.products_item-txtbk .products_item-name {
  font-size: clamp(25px, 3.26vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 0.4em 0 0.8em;
}
.products_item-txtbk .products_item-name span {
  display: inline-block;
}
.products_item-txtbk .products_item-txt {
  line-height: 1.94;
  letter-spacing: 0.1em;
}
.products_item-txtbk .products_item-txt p {
  margin-bottom: 1.94em;
}
.products_item-txtbk .products_item-txt p span {
  display: inline-block;
}
.shopbtn {
  justify-content: flex-start;
  gap: 0.66em;
  max-width: 450px;
  margin: 0;
  padding: 0 2.2em 0 5%;
}
.shopbtn span {
  display: inline-block;
}
.shopbtn::before {
  content: "";
  width: 1.22em;
  height: 1.28em;
  background: url(../imgs/products/onlineshop_btn.svg) no-repeat center/contain;
  transition: 0.2s;
}
.shopbtn:hover::before {
  background-image: url(../imgs/products/onlineshop_btn_hv.svg);
}
@media screen and (max-width: 1599px) {
}
@media screen and (max-width: 768px) {
  .products_item-inner {
    width: 90%;
  }
}
@media screen and (max-width: 640px) {
  .products_item-inner {
    flex-direction: column;
    align-items: center;
  }
  .products_item-imgbk {
    padding: 0 3em;
    width: 100%;
    max-width: 450px;
  }
  .products_item-txtbk {
    width: 100%;
    max-width: 360px;
  }
}
@media screen and (max-width: 480px) {
  .products_item-txtbk .products_item-name {
    font-size: clamp(22px, 5.21vw, 25px);
  }
}
