.frm-line {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  position: relative;
  width: 100%;
}
.frm-line > label {
  width: 25%;
  margin-right: 10px;
}
.frm-line .inp {
  flex: 1;
}
.frm-line input[type='text'],
.frm-line input[type='tel'],
.frm-line input[type='email'],
.frm-line .input,
.frm-line textarea {
  padding: 10px;
  height: 40px;
  border-radius: 10px;
  border: #bbb 1px solid;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
}
.frm-line input[type='text']:focus,
.frm-line input[type='tel']:focus,
.frm-line input[type='email']:focus,
.frm-line .input:focus,
.frm-line textarea:focus {
  outline: none;
  border-color: #1BA39C;
}
.frm-line input[type='text'].error,
.frm-line input[type='tel'].error,
.frm-line input[type='email'].error,
.frm-line .input.error,
.frm-line textarea.error {
  border-color: red;
}
.frm-line textarea {
  height: 100px;
  resize: none;
}
.frm-line.-policy {
  color: #000;
  padding-left: 2px;
}
.frm-line.-policy a {
  text-decoration: underline;
}
.frm-line .msg {
  display: none;
  position: absolute;
  left: 30%;
  top: calc(100% + 10px);
  z-index: 10;
  background: #dcdada;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.frm-line .msg.act {
  display: flex;
  flex-direction: column;
}
.frm-line .msg:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #dcdada;
  margin: -13px 0 5px 0;
}
.frm-line .sort-select .lbl {
  border-radius: 10px;
}
.frm-line.-hdr {
  color: #000;
}
.frm-line.-hdr h4 {
  margin: 0;
}
.frm-line .radio + label {
  margin-bottom: 10px;
}
.frm-line .descr {
  font-style: italic;
  color: #808080;
}
.frm-line-file .inp {
  min-height: 40px;
  border-radius: 10px;
  border: #bbb 1px solid;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.frm-line-file .inp input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.frm-line-file .inp > * {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.frm-line-file .inp div {
  background: #bbb;
  color: #000;
}
.select {
  display: inline-block;
  position: relative;
  min-height: 30px;
}
.select.simple {
  max-width: 400px;
}
.select.simple span {
  width: 400px;
  line-height: 30px;
  font-size: 18px;
  color: #d26f00;
  border-bottom: 1px dotted #d26f00;
}
.select.full {
  width: 100%;
  min-height: 34px;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  line-height: 30px;
  margin: 10px 0;
}
.select.full span {
  font-size: 14px;
  line-height: 14px;
  padding-left: 10px;
  display: inline-block;
  width: 80%;
}
.select select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
}
.select select option {
  font-family: inherit;
  font-size: inherit;
}
.radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.radio + label {
  display: flex;
  align-items: center;
  user-select: none;
}
.radio + label:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  min-width: 20px;
  border: #fff 4px solid;
  background: #fff;
  margin-right: 20px;
  box-shadow: 0 0 0 1px #1BA39C;
}
.radio:hover + label:before {
  box-shadow: 0 0 0 1px #000;
}
.radio:checked + label:before {
  background: #1BA39C;
}
@media screen and (max-width: 1019px) {
  .frm-line {
    flex-wrap: wrap;
  }
  .frm-line > label {
    width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
.popup {
  display: none;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10111;
  width: 100vw;
  height: 100vh;
  padding: 20px 5px;
  background: rgba(36, 36, 36, 0.5);
}
.popup.act {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-win {
  padding: 20px;
  background: #f4f4f4;
  min-width: 280px;
  max-height: 99vh;
  border-radius: 10px;
  overflow: hidden;
}
.popup-win .hdr {
  display: flex;
  justify-content: space-between;
}
.popup-win .hdr div {
  flex: 1;
  font-size: 24px;
  font-weight: 600;
  padding: 20px 20px 20px 40px;
  text-align: center;
}
.popup-win .hdr svg:hover {
  cursor: pointer;
  color: #1BA39C;
}
.popup-win .cont {
  padding: 20px 0;
  max-height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1BA39C #d9d9d9;
  text-align: center;
}
.popup-win .form {
  padding-top: 10px;
}
.popup-win .form input,
.popup-win .form textarea {
  background: transparent;
}
.popup-win .-policy {
  hyphens: auto;
}
@media screen and (min-width: 1020px) {
  .popup form {
    width: 560px;
  }
}
.hdr-cat-menu-wrp {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 1400px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.hdr-cat-menu {
  display: flex;
  height: 500px;
  background: #f4f4f4;
}
.hcm-wrp {
  width: 35%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1BA39C #d9d9d9;
  padding: 20px 0;
}
.hcm-wrp ul {
  padding: 15px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hcm-wrp ul li {
  padding: 0 20px;
}
.hcm-wrp ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  text-decoration: none;
  transition: background-color 200ms;
}
.hcm-wrp ul li a span {
  flex: 1;
  padding-right: 15px;
}
.hcm-wrp ul li a svg {
  width: 8px;
  height: 14px;
}
.hcm-wrp ul li:not(:last-child) a {
  border-bottom: #bbb 1px solid;
}
.hcm-wrp ul li:hover a {
  border-color: #1BA39C;
}
.hcm-wrp ul li.hvr a {
  border-color: #fff;
}
.hcm-wrp ul li.act {
  background: #1BA39C;
}
.hcm-wrp ul li.act a {
  color: #fff;
  border-color: #1BA39C;
}
.hcm-sub {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.hcm-sub .h {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.hcm-sub .h span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: #FF7B00 1px solid;
}
.hcm-subs {
  position: relative;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1BA39C #d9d9d9;
}
.hcm-subs > div {
  position: absolute;
  display: none;
  padding-bottom: 20px;
  width: 100%;
}
.hcm-subs > div.act {
  display: block;
}
.hcm-subs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-right: 10px;
  width: 100%;
  height: 100%;
}
.hcm-subs ul li {
  display: flex;
  flex-direction: column;
}
.hcm-subs ul li a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
}
.hcm-subs ul li:not(:last-child) a {
  border-bottom: #bbb 1px solid;
}
.hcm-subs a {
  font-size: 14px;
  text-transform: none;
}
.menu-mobile {
  display: none;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.menu-mobile.act {
  display: flex;
}
.menu-mobile.act .menu-mobile-cont {
  left: 0;
}
.menu-mobile.show {
  display: flex;
  opacity: 1;
}
.menu-mobile-wrap {
  width: 84vw;
  height: 100vh;
  position: relative;
  box-shadow: 2px 0px 5px 2px rgba(0, 0, 0, 0.5);
  background: #fff;
  overflow-y: auto;
}
.menu-mobile-close {
  width: 16vw;
  padding-top: 10px;
  color: #fff;
}
.menu-mobile-menu {
  width: 84vw;
  position: absolute;
  left: 0;
  top: 0;
}
.mmm-item {
  position: relative;
  display: flex;
  align-items: stretch;
  border-bottom: #bbb 1px solid;
}
.mmm-item a {
  flex: 1;
  padding: 15px 0 15px 20px;
}
.mmm-item i {
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  color: #000;
}
.mmm-item .menu-mobile-menu {
  left: 100%;
  display: none;
  padding-bottom: 60px;
}
.mmm-item.-back {
  padding: 15px 0 15px 20px;
  align-items: center;
  background: #f1f1f1;
}
.mmm-item.-back svg {
  fill: #1BA39C;
  margin-right: 15px;
  transform-origin: center;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.mmm-item.-tit {
  padding: 15px 0 15px 20px;
  color: #1BA39C;
  background: #f1f1f1;
}
.menu-moble-conts .-tit {
  padding: 15px 20px;
  font-weight: 700;
}
.menu-moble-conts .-itm {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 0.9rem;
}
.menu-moble-conts .-itm svg {
  fill: #1BA39C;
}
.menu-moble-conts .-itm div {
  flex: 1;
  padding-left: 20px;
}
.index-recommend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
}
.zamershik {
  border-radius: 10px;
  background: #cecece;
  padding: 30px 0 40px 0;
  position: relative;
}
.zamershik .h {
  background: url(/assets/img/zam-h.png) no-repeat;
  width: 334px;
  height: 58px;
  color: #1BA39C;
  font-size: 28px;
  font-weight: 600;
  padding: 0 20px;
}
.zamershik .t {
  padding: 40px 20px 0 20px;
}
.zamershik .t span {
  font-size: 18px;
}
.zamershik form {
  margin-top: 40px;
}
.zamershik form .btn {
  margin-left: 20px;
}
.zamershik img {
  position: absolute;
  left: 43%;
  bottom: 0;
}
.index-txt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
}
.index-txt .btn {
  border-radius: 10px;
  margin-top: 10px;
}
.index-txt-item {
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
}
.index-txt-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.index-txt-item > div {
  padding: 20px;
}
.index-txt-item > div > *:first-child {
  margin-top: 0;
}
.index-txt-item h1,
.index-txt-item h2,
.index-txt-item h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0;
}
.index-txt-item p {
  padding: 0;
  margin: 10px 0;
}
.cart-float {
  background: #fff;
  border-radius: 10px 0 0 10px;
  height: 100dvh;
  border: #bbb 1px solid;
  position: fixed;
  z-index: 110;
  top: 0;
  right: -500px;
  width: 500px;
  user-select: none;
}
.cart-float.debug {
  right: 0;
  width: 500px;
}
.js-header-cart {
  transition: all 200ms;
}
.js-header-cart.cart-fly-accent {
  background: #1BA39C;
  color: #fff;
}
.cf-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.cf-wrap > * {
  width: 100%;
}
.cf-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 50px;
}
.cf-hdr span {
  font-size: 24px;
  font-weight: 600;
}
.cf-hdr svg:hover {
  cursor: pointer;
  color: #1BA39C;
}
.cf-prods {
  padding: 0 20px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1BA39C #d9d9d9;
}
.cf-empty {
  padding: 30vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.cf-prod {
  border: #bbb 1px solid;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  margin: 10px 0;
  min-height: 180px;
  position: relative;
  user-select: none;
}
.cf-prod .del {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  display: inline-block;
  text-align: right;
}
.cf-prod .del:hover svg {
  cursor: pointer;
  color: #1BA39C;
}
.cfp-im {
  width: 35%;
  border-right: #bbb 1px solid;
}
.cfp-im a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cfp-im img {
  max-width: 100%;
  max-height: 180px;
}
.cfp-inf {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cfp-inf .n {
  font-weight: 600;
  padding-right: 20px;
  display: block;
  line-height: 120%;
}
.cfp-inf .art-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.cfp-inf .art {
  font-weight: 500;
  color: #1BA39C;
  text-decoration: underline;
  text-decoration-color: #1BA39C;
  text-underline-offset: 5px;
}
.cfp-inf .props {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 20px;
}
.cfp-inf .props p {
  margin: 0 10px 10px 0;
  padding: 0;
}
.cfp-kolprice {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}
.cfp-kolprice .tocart-btns {
  max-width: 140px;
}
.cfp-kolprice .prod-price {
  margin-top: 0;
  font-size: 20px;
  text-align: right;
}
.cfp-kolprice .prod-price .old {
  font-size: 14px;
}
.cf-itog-item {
  padding: 0 20px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
}
.cf-itog-item .it {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  border: #bbb 1px solid;
  padding: 20px;
  border-radius: 10px;
}
.cf-itog-item .it > span {
  line-height: 110%;
  padding-right: 20px;
}
.cf-itog-item .it p {
  font-size: 120%;
  color: #1BA39C;
  margin: 0;
  white-space: nowrap;
}
.cf-itog-item .btn {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
}
.cf-itog-item.hide {
  display: none;
}
.cart-table {
  display: flex;
  position: relative;
  align-items: stretch;
}
.cart-table .img {
  width: 15%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-table .prod {
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cart-table .prod a {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.cart-table .prod p {
  color: #1BA39C;
  margin: 20px 0 0 0;
}
.cart-table .price {
  width: 15%;
}
.cart-table .amount {
  width: 15%;
}
.cart-table .amount .tocart-btns {
  max-width: 150px;
}
.cart-table .sum {
  width: 15%;
}
.cart-table i {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cart-table i svg {
  color: #1BA39C;
}
.cart-table i:hover svg {
  color: #000;
}
.cart-table.hdr > * {
  padding: 10px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.cart-table.prod {
  border-radius: 10px;
  border: #bbb 1px solid;
  margin-bottom: 10px;
}
.cart-table.prod .img {
  border-right: #bbb 1px solid;
}
.cart-table.prod .img img {
  max-width: 100%;
  max-height: 160px;
}
.cart-table.prod .price,
.cart-table.prod .sum {
  font-size: 22px;
  font-weight: 600;
}
.cart-itog {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0;
}
.cart-itog label {
  flex: 1;
  text-align: right;
  padding-right: 10px;
}
.cart-itog div {
  width: 15%;
}
.cart-itog.c2 {
  color: #1BA39C;
}
#purchase {
  margin-top: 50px;
}
#purchase fieldset {
  background: #f1f1f1;
  padding: 20px 20px 0 20px;
  border-radius: 10px;
  border: 0;
  margin-bottom: 20px;
}
#purchase .btn-wrp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#purchase .manager {
  margin-right: 2vw;
}
#purchase select {
  height: 44px;
  border-radius: 4px;
  background: #fff url(/assets/img/angle-btm.svg) 96% center no-repeat;
  border: #bbb 1px solid;
  padding: 2px 30px 2px 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.compare-list {
  width: 90vw;
}
.compare-list .plist {
  display: flex;
  flex-wrap: wrap;
}
.compare-list .product-card .sel-n-cart {
  display: none;
}
@media screen and (min-width: 1020px) {
  .cart-table > * {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart-table .prod {
    padding: 0 5vw;
  }
  .cart-table label {
    display: none;
  }
}
@media screen and (max-width: 1019px) {
  .cart-float {
    max-width: 100vw;
    border-radius: 0;
  }
  .cf-wrap {
    position: relative;
    display: block;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #1BA39C #d9d9d9;
    height: 100%;
    padding: 50px 0 100px 0;
  }
  .cf-hdr {
    position: fixed;
    right: -500px;
    top: 0;
    z-index: 100;
    background: #1BA39C;
    color: #fff;
    width: 100%;
    max-width: 500px;
    border-left: #bbb 1px solid;
  }
  .cf-prods {
    flex: unset;
  }
  .cf-prod {
    flex-direction: column;
  }
  .cf-prod > * {
    width: 100%;
  }
  .cf-prod .del svg {
    width: 18px;
    height: 18px;
  }
  .cfp-im {
    border-right: 0;
    border-bottom: #bbb 1px solid;
  }
  .cfp-im img {
    max-height: 150px;
  }
  .cfp-inf .n {
    font-size: 14px;
  }
  .cfp-inf .art {
    margin-top: 5px;
  }
  .cf-itog-item {
    font-size: 14px;
  }
  .cart-table {
    flex-wrap: wrap;
  }
  .cart-table.hdr {
    display: none;
  }
  .cart-table .img {
    width: 100%;
    width: 50%;
    border-bottom: #bbb 1px solid;
  }
  .cart-table .prod {
    width: 50%;
    padding: 30px 10px 10px 10px;
    flex: unset;
    border-bottom: #bbb 1px solid;
  }
  .cart-table .prod a {
    font-size: 14px;
  }
  .cart-table .prod p {
    font-size: 12px;
  }
  .cart-table .price,
  .cart-table .sum,
  .cart-table .amount {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    width: 100%;
  }
  .cart-table label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding-right: 10px;
    margin-right: 10px;
    width: 50%;
    text-align: right;
  }
  .cart-itog label {
    font-size: 16px;
    width: 50%;
  }
  .cart-itog div {
    width: 50%;
  }
  #purchase .btn-wrp {
    text-align: center;
  }
}
footer {
  margin-top: 100px;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu a {
  font-weight: 300;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  margin-top: 100px;
  text-align: center;
}
.footer > * {
  border-radius: 10px;
  background: #f4f4f4;
  padding: 40px;
}
.footer .logo {
  margin-bottom: 50px;
}
.footer-menu-wrap > * {
  width: 50%;
}
.footer-menu-in {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-menu-in li {
  width: 100%;
  margin: 10px 0;
}
.footer-menu-in li p {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.footer-cards-soc {
  width: 100%;
  margin-top: 30px;
}
.footer-cards-soc > * {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .footer-menu {
    justify-content: flex-start;
  }
  .footer-menu a {
    margin: 10px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-menu-wrap > * {
    width: 100%;
    margin-bottom: 15px;
  }
  .footer-cards-soc > * {
    width: 100%;
  }
}
.search-page .search-form {
  padding-right: 0;
}
.search-page .search-form button {
  background: #1BA39C;
  border-radius: 60px;
  padding: 0 30px;
}
.search-page .search-form button svg {
  color: #fff;
}
.search-page .search-form button:hover {
  background: #18807B;
}
.text-box {
  border-radius: 10px;
  background: #f4f4f4;
}
.text-box .m img {
  width: 100%;
  height: auto;
}
.text-box .m:first-child img {
  border-radius: 10px 10px 0 0;
}
.text-box .m:last-child img {
  border-radius: 0 0 10px 10px;
}
.text-box .t {
  padding: 40px;
}
.text-box .t:first-child {
  border-radius: 10px 10px 0 0;
}
.text-box .t:last-child {
  border-radius: 0 0 10px 10px;
}
.text-box h1,
.text-box h2,
.text-box h3 {
  margin-top: 0;
  padding-top: 0;
}
.sertificates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
}
.sert-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.zamer-in .t {
  padding-bottom: 0;
}
.zamer-in .btm {
  margin-top: 50px;
}
.zamer-in-btn {
  margin: 0 0 50px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zamer-in-btn span {
  display: none;
}
.zamer-list li {
  margin-bottom: 50px;
}
.zamer-list p {
  background: #eee;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 0 0 20px 0;
}
.zamer-list span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 300;
  color: #333333;
}
.zamer-list h4 {
  margin: 0 0 10px 0;
  padding-left: 20px;
}
.zamer-list div {
  display: flex;
  flex-wrap: wrap;
}
.zamer-list div > * {
  width: 170px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 5px 5px 0;
}
.zamer-list div > * img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
}
.simple-list > * {
  border-radius: 10px;
  border: #bbb 1px solid;
  overflow: hidden;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.simple-list .im {
  flex: 1;
  position: relative;
}
.simple-list .im img {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 90%;
  max-height: 100%;
}
.simple-list .t {
  background: #1BA39C;
  color: #fff;
  padding: 0 10px;
  height: 80px;
  min-height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple-list.gal li {
  height: 260px;
}
.simple-list.gal .im img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cp-mans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
}
.cp-mans > * {
  display: flex;
  align-items: flex-end;
}
.cp-mans .inf {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 20px;
}
.cp-mans .inf > * {
  margin: 5px 0;
}
.cp-mans img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  min-width: 180px;
}
.cp-mans.works > * {
  border-radius: 10px;
  border: #bbb 1px solid;
  overflow: hidden;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
}
.cp-mans.works .inf {
  font-weight: 600;
}
.cp-mans.works .ttl {
  width: 100%;
  background: #f4f4f4;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-mans.works .ttl span {
  font-size: 18px;
}
.cp-mans.works .ttl strong {
  font-size: 22px;
  font-weight: 600;
  color: #1BA39C;
}
.cp-item {
  margin-top: 40px;
}
.cp-item .t {
  padding: 40px;
  background: #f4f4f4;
  border-radius: 10px 10px 0 0;
}
.cp-item p {
  margin: 10px 0;
}
.cp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
}
.cp-grid img {
  border-radius: 10px;
}
@media screen and (max-width: 1019px) {
  .cp-mans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cp-item .t {
    padding: 20px;
  }
  .cp-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .cp-mans {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.works-info {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
}
.works-info > * {
  border-radius: 10px;
  background: #f4f4f4;
  padding: 20px;
}
.works-info .d {
  flex: 1;
}
.works-info .man {
  display: flex;
  align-items: flex-start;
}
.works-info .man img {
  width: 120px;
  min-width: 120px;
  height: auto;
}
.works-info .man > div {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.works-info .man > div > * {
  margin: 5px 0;
}
.works-info .man p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.dsp-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 20px;
  margin: 20px 0 40px 0;
}
.dsp-list .im {
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
  display: block;
  border: #bbb 1px solid;
}
.dsp-list .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dsp-list .t {
  text-align: center;
  margin-top: 5px;
}
.dsp-list .t p {
  margin: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 20px;
}
.gallery > * {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.gallery img {
  max-width: 100%;
  max-height: 100%;
}
.gallery.-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-in-text {
  position: relative;
}
.slider-in-text > i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1BA39C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: #1BA39C 3px solid;
}
.slider-in-text > i svg {
  width: 16px;
  height: auto;
  transform-origin: center center;
}
.slider-in-text > i.prev {
  left: 10px;
}
.slider-in-text > i.prev svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.slider-in-text > i.next {
  right: 10px;
}
.slider-in-text > i:hover {
  color: #ac0000;
  border-color: #ac0000;
}
.slider-in-text .slide {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-in-text .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrolled-txt-wrp {
  border-radius: 10px;
  background: #f4f4f4;
  padding: 40px 20px 40px 40px;
}
.scrolled-txt {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1BA39C #d9d9d9;
  height: 40vh;
  padding-right: 20px;
}
.conditions .c1 {
  width: 100%;
}
.conditions .cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 20px;
  margin-top: 20px;
}
.conditions .col > * {
  margin-bottom: 20px;
}
@media screen and (max-width: 1019px) {
  .conditions .cols {
    display: flex;
    flex-direction: column;
  }
}
.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 300;
}
.news-list > li {
  position: relative;
  max-height: 500px;
}
.news-list .i {
  display: block;
  width: 100%;
  height: 300px;
}
.news-list .i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 200ms;
  border-radius: 24px 24px 0 0;
}
.news-list .i:hover img {
  opacity: 0.8;
}
.news-list .c {
  padding: 20px 0;
}
.news-list p {
  margin: 8px 0 20px 0;
}
.news-list .n,
.news-list .btn {
  font-size: 16px;
  font-weight: 400;
}
.news-img-top {
  margin: 20px 0;
}
.news-img-top img {
  border-radius: 10px;
}
@media screen and (min-width: 1020px) {
  .news-list li {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 1019px) {
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
.filter {
  padding: 20px;
  border: #bbb 1px solid;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 20px;
  border-radius: 10px;
}
.filter-item {
  flex: 1;
  min-width: 180px;
}
.filter-item.color {
  min-width: 250px;
}
.filter .select-clr {
  position: relative;
}
.filter .select-clr ul.col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0;
}
.filter .btn {
  height: 44px;
  font-size: 14px;
  max-width: 150px;
}
@media screen and (max-width: 600px) {
  .filter {
    justify-content: center;
  }
  .filter-item {
    min-width: 100%;
  }
}
@media screen and (min-width: 1020px) {
  .zamershik {
    background: url(/asets/img/zam-bgr.jpg) right top no-repeat;
    background-size: 100% auto;
  }
  .zamershik .t {
    max-width: 40%;
  }
  .zamershik form {
    width: 90%;
  }
}
@media screen and (max-width: 1019px) {
  .index-recommend {
    display: flex;
    overflow-x: auto;
  }
  .index-recommend > * {
    margin-right: 10px;
  }
  .zamershik {
    background: url(/assets/img/zam-mob.jpg) right top no-repeat;
    background-size: 100% auto;
    padding: 250px 0 0 0;
    overflow: hidden;
  }
  .zamershik .h {
    position: absolute;
    top: 30px;
  }
  .zamershik .t {
    background: #cecece;
    padding-bottom: 72px;
  }
  .zamershik img {
    height: 60px;
  }
  .index-txt-item h1,
  .index-txt-item h2,
  .index-txt-item h3 {
    font-size: 18px;
  }
  .text-box .t {
    padding: 20px;
  }
  .sertificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .zamer-in .t {
    padding-bottom: 0;
  }
  .zamer-in .btm {
    flex-direction: column;
  }
  .zamer-in .btm img {
    margin-top: 40px;
  }
  .zamer-in .btm img:last-child {
    display: none;
  }
  .zamer-in-btn {
    position: relative;
  }
  .zamer-in-btn .btn {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .zamer-in-btn span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .zamer-list div > * {
    width: 30vw;
    height: 100px;
    margin: 0.5vw;
  }
  .simple-list,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .works-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .zamershik {
    background-size: auto 50%;
  }
  .zamershik form input,
  .zamershik form .btn {
    width: 100%;
    height: 60px;
    margin: 10px 0;
  }
  .zamershik form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .index-txt {
    grid-template-columns: 1fr;
  }
  .index-txt .btn {
    font-size: 16px;
  }
  .sertificates {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .simple-list {
    grid-template-columns: 1fr;
  }
  .works-info {
    grid-template-columns: 1fr;
  }
  .works-info .man p {
    font-size: 16px;
  }
}
@media print {
  .print-hide,
  .float-nav,
  footer {
    display: none;
  }
  body {
    padding-top: 0 !important;
  }
}
/*# sourceMappingURL=style.css.map */