@charset "UTF-8";

header {
  height: 80px;
  display: flow-root;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

header .logo {
  height: 80px;
  width: 250px;
  float: left;
  display: flex;
}

@media (max-width: 600px) {
  header .logo {
    width: 140px;
  }
}

@media (max-width: 450px) {
  header .logo {
    width: 90px;
  }
}


header .logo a {
  margin: auto;
  margin-left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  display: block;
  height: 90%;
  width: 90%;
}

header .top-menu {
  float: right;
  height: 80px;
  display: flex;
  margin-right: 20px;
}

@media (max-width: 850px) {
  header .top-menu {
    display: none;
  }
}

header .top-menu a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  font-family: "Bold";
  margin-right: 10px;
}

header .top-menu a:hover {
  color: var(--two-color);
}

header .top-menu .middle {
  margin: auto;
  margin-left: 0;
}

header .call-back-section {

  float: right;
  height: 80px;
  display: flex;
  margin: 0px auto;
  /*  margin-right: 20px;
    margin-left: 20px; */
}

@media (max-width: 950px) {
  header .call-back-section {
    width: 100%;
    text-align: center;
    margin-right: 10px;
    margin-left: 10px;
  }
}

header .call-back-section .phone {

  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: "Bold";


}

header .call-back-section .phone:hover {
  color: var(--two-color);
}

@media (max-width: 950px) {

  header .call-back-section .mobile-phone {
    display: none;
  }
}

@media (max-width: 950px) {
  header .call-back-section .mobile-phone {
    height: 50px;
    border-radius: 50%;
    width: 50px;
    background: var(--two-color);
    display: inline-block;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 450px) {
  header .call-back-section .mobile-phone {
    display: none;
  }
}

header .call-back-section .middle {
  width: 100%;
  margin: auto;
  margin-left: 0;
}

header .cart-sec {
  float: right;
  height: 80px;
  display: flex;
}

header .cart {
  height: 50px;
  width: 180px;
  text-decoration: none;
  color: inherit;
  margin: auto;
  margin-right: 0;
  background: #fae1e1;
  border-radius: 50px;
}

@media (max-width: 700px) {
  header .cart {
    width: 150px;
  }
}

header .cart .icon {
  height: 40px;
  margin-top: 5px;
  margin-left: 10px;
  float: left;
  width: 40px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center center;
}

header .cart .name {
  width: calc(100% - 50px);
  display: flex;
  height: 24px;
}

@media (max-width: 700px) {
  header .cart .name {
    display: none;
  }
}

header .cart .name span {
  margin: auto;
  margin-left: 20px;
  font-family: "Bold";
}

header .cart .value {
  width: calc(100% - 50px);
  display: flex;
  height: 24px;
}

@media (max-width: 700px) {
  header .cart .value {
    height: 50px;
  }
}

header .cart .value span {
  margin: auto;
  font-size: 14px;
  margin-left: 20px;
}

header .cart:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.menu-title {
  display: none;
  font-family: "Title";
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .menu-title {
    display: block;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width: 850px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-shdw {
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.menu-swipe {
  display: none;
  width: 20px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
}

@media (max-width: 900px) {
  .menu-swipe {
    display: block;
  }
}

.menu {
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  background: var(--main-color);
  display: flex;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: 0;
    transition: 0.5s;
    left: -350px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    height: 100vh;
    margin-top: 0;
    overflow: auto;
    margin-bottom: 0;
    width: 320px;
    display: block;
    border-radius: 0;
    background: var(--two-color);
    padding: 30px;
    padding-top: 10px;
  }
}

.menu a {
  width: 100%;
  height: 100%;
  display: flex;
  text-decoration: none;
  color: inherit;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 900px) {
  .menu a {
    height: auto;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #a0784e;
    position: relative;
  }

  .menu a:after {
    content: "→";
    position: absolute;
    right: 0;
  }
}

.menu a span {
  margin: auto;
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu a span {
    font-size: 13px;
    margin-left: 0;
  }
}

.menu a:hover {
  background: var(--two-color);
}

.menu .active {
  background: var(--two-color);
}

.active-mobile {
  left: 0;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    float: right;
    height: 80px;
    width: 50px;
    display: flex;
    margin-left: 10px;
  }
}

.mobile-menu-btn .btn-mobile {
  height: 50px;
  border-radius: 50%;
  width: 50px;
  background: var(--two-color);
  display: inline-block;
  background-size: 20px;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.mobile-menu-btn .btn-mobile span {
  position: absolute;
  left: 10px;
  top: calc(50% - 1px);
  height: 2px;
  background: #fff;
  width: 30px;
}

.mobile-menu-btn .btn-mobile:before {
  position: absolute;
  left: 10px;
  top: 15px;
  height: 2px;
  background: #fff;
  width: 30px;
  content: "";
}

.mobile-menu-btn .btn-mobile:after {
  position: absolute;
  left: 10px;
  bottom: 15px;
  height: 2px;
  background: #fff;
  width: 30px;
  content: "";
}

.slider-sec {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 450px) {
  .slider-sec {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .slider-sec .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.slider-sec .route {
  height: 40px;
  width: 40px;
  position: absolute;
  top: calc(50% - 20px);
  background: #fff;
  z-index: 4;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.slider-sec .route:hover {
  background-color: var(--two-color);
}

.slider-sec .route-left {
  left: 20px;
}

.slider-sec .route-right {
  right: 20px;
}

.slider-sec .slider {
  position: relative;
  overflow: hidden;
}

@media (max-width: 450px) {
  .slider-sec .slider {
    border-radius: 0;
  }
}

.slider-sec .slide {
  height: 350px;
  border-radius: 20px;
  background-size: cover;
  text-align: left;
  background-position: center;
  position: relative;
}

@media (max-width: 700px) {
  .slider-sec .slide {
    height: 300px;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .slider-sec .slide {
    height: 250px;
  }
}

.slider-sec .slide .name {
  text-align: center;
  font-family: "Title";
  font-size: 65px;
  line-height: 100px;
  display: block;
  padding-top: 25px;
  width: calc(100% - 90px);
  max-width: 900px;
  margin: 0px auto 10px;
  color: #fff;
}

@media (max-width: 850px) {
  .slider-sec .slide .name {
    font-size: 60px;
    line-height: 55px;
  }
}

@media (max-width: 650px) {
  .slider-sec .slide .name {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 400px) {
  .slider-sec .slide .name {
    font-size: 30px;
    line-height: 35px;
  }
}

.slider-sec .slide .sub-name {
  font-family: "Title";
  font-size: 40px;
  display: inline-block;
  max-width: 700px;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 850px) {
  .slider-sec .slide .sub-name {
    font-size: 40px;
    line-height: 25px;
  }
}

@media (max-width: 850px) {
  .slider-sec .slide .sub-name {
    font-size: 20px;
    line-height: 15px;
  }
}

@media (max-width: 550px) {
  .slider-sec .slide .sub-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.slider-sec .slide .bottom-text {
  font-family: "Title";
  font-size: 20px;
  display: block;
  color: #fff;
  text-align: center;
  line-height: 28px;
  display: block;
  width: calc(100% - 90px);
  max-width: 900px;
  margin: 0px auto 10px;
}

.hits-position {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 450px) {
  .hits-position {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.title-sec {
  font-family: "Title";
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
}

@media (max-width: 450px) {
  .title-sec {
    font-size: 27px;
  }
}

.card-product-clear {
  width: 24%;
  display: inline-block;
  vertical-align: top;
}

.card-product {
  width: 24%;
  height: 300px;
  background-color: #f3f3f3;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: inherit;
  text-align: left;
  position: relative;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .card-product {
    width: 32%;
  }
}

@media (max-width: 750px) {
  .card-product {
    width: 48%;
  }
}

@media (max-width: 450px) {
  .card-product {
    width: 100%;
  }
}

.card-product:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card-product:hover .btn-more {
  background: var(--two-color);
  color: #fff;
}

.card-product .pic {
  height: 200px;
  background-size: cover;
  background-position: center;
  padding: 10px;
}

.card-product .title {
  padding: 10px;
  font-family: "Bold";
}

.card-product .desc {
  padding: 10px;
  font-size: 14px;
}

.card-product .price {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  padding: 10px;
}

.card-product .btn-more {
  position: absolute;
  transition: 0.3s;
  bottom: 0;
  color: #fff;
  right: 0;
  padding: 10px;
  font-size: 14px;
  background: var(--two-color);
  border-radius: 20px 0 20px 0;
}

.hit {
  border-radius: 20px 0 20px 0;
  background: var(--main-color);
  display: inline-block;
  padding: 5px 15px;
  font-family: "Bold";
  color: #fff;
  font-size: 14px;
}

.news {
  border-radius: 20px 0 20px 0;
  background: var(--two-color);
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 5px;
  font-family: "Bold";
  color: #fff;
  font-size: 14px;
}

footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background: var(--two-color);
  color: #fff;
}

footer .copyright {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}

footer a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
  font-size: 13px;
  border-bottom: 1px dashed #fff;
  text-decoration: none;
}

@media (max-width: 400px) {
  footer a {
    font-size: 11px;
    margin-top: 10px;
  }
}

footer a:hover {
  color: #333;
}

.absolute_footer {
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  width: 100%;
}

.advantage-sec {
  margin-top: 50px;
  margin-bottom: 70px;
}

.product-page {
  margin-bottom: 70px;
}

.info-sec {
  margin-top: 70px;
  margin-bottom: 70px;
}

.info-sec .left-colum {
  display: inline-block;
  vertical-align: top;
  width: 48%;
}

@media (max-width: 550px) {
  .info-sec .left-colum {
    width: 100%;
    margin-bottom: 10px;
  }
}

.info-sec .title-sec {
  text-align: left;
}

.advantage {
  width: 16%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

@media (max-width: 800px) {
  .advantage {
    width: 32%;
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .advantage {
    width: 48%;
  }
}

.advantage .pic {
  height: 70px;
  width: 100px;
  display: inline-block;
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  background-color: var(--two-color);
  border-radius: 10px;
}

.advantage .name {
  font-size: 14px;
  font-family: "Bold";
}

.sort-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

.sort-section span {
  font-family: "Bold";
}

.sort-section a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid transparent;
}

.sort-section a:hover {
  border-bottom: 1px solid #333;
}

.sort-section .active-sort {
  color: var(--two-color);
  border-bottom: 1px solid var(--two-color);
}

.pic-produc {
  display: block;
  background-size: cover;
  padding: 10px;
  max-width: 100%;
  background-position: center;
}

.doperty {
  margin-top: 10px;
}

.wertyuiop {
  width: 32%;
  height: 70px;
  background-size: cover;
  display: inline-block;
  vertical-align: top;
  background-position: center;
}

.product-page .pic-product {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  min-height: 510px;
  position: relative;
}

@media (max-width: 650px) {
  .product-page .pic-product {
    height: 250px;
    width: 400px;
  }
}

@media (max-width: 450px) {
  .product-page .pic-product {
    width: 100%;
  }
}

.product-page .right-desc {
  display: inline-block;
  vertical-align: top;
  width: 57%;
}


.right-desc p{
line-height: 30px;
}

@media (max-width: 650px) {
  .product-page .right-desc {
    width: 100%;
    margin-top: 30px;
  }
}

.product-page .info {
  margin-top: 50px;
  max-width: 500px;
  margin-bottom: 50px;
}

@media (max-width: 450px) {
  .product-page .info {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.product-page .line {
  display: flow-root;
  font-size: 16px;
  margin-bottom: 15px;
}

.product-page .line .categ {
  float: left;
  font-size: inherit;
  width: 200px;
  padding-right: 20px;
  text-align: left;
}

@media (max-width: 500px) {
  .product-page .line .categ {
    width: 100%;
  }
}

.product-page .line .value {
  float: right;
  font-size: inherit;
  width: calc(100% - 200px);
  text-align: left;
}

@media (max-width: 500px) {
  .product-page .line .value {
    width: 100%;
  }
}

.product-page h1 {
  font-size: 30px;
  font-family: "Title";
}

.product-page .name {
  font-size: 20px;
  font-family: "Bold";
  /*  margin-bottom: 20px;*/
}

.product-page .prices-txt {
  font-size: 20px;
  font-family: "Bold";
}

.product-page .plusing {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-page .plusing .minus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: var(--two-color);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.product-page .plusing .minus:hover {
  background-color: var(--main-color);
}

.product-page .plusing .minus i {
  margin: auto;
}

.product-page .plusing .plus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: var(--two-color);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.product-page .plusing .plus:hover {
  background-color: var(--main-color);
}

.product-page .plusing .plus i {
  margin: auto;
}

.product-page .cnt_val {
  width: 60px;
  display: inline-block;
  vertical-align: top;
  border: none;
  background: transparent;
  text-align: center;
  height: 40px;
  font-size: 20px;
  font-family: "Bold";
}

.product-page .chekset {
  padding: 12px 20px;
  color: #fff;
  border-radius: 50px;
  background-color: var(--two-color);
  font-family: "Bold";
  display: inline-block;
  transition: 0.3s;
}

.product-page .chekset:hover {
  background-color: var(--main-color);
}

.product-page .all-price {
  font-family: "Bold";
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.product-page .all-price span {
  font-size: inherit;
  font-family: inherit;
}

.all-price-cart {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 20px;
  font-family: "Bold";
}

@media (max-width: 500px) {
  .all-price-cart {
    font-size: 14px;
  }
}

.all-price-cart span {
  font-size: inherit;
}

.cart-page {
  margin-bottom: 50px;
  margin-top: 50px;
}

.line-item-cell {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: flow-root;
}

.line-item-cell .pic {
  width: 15%;
  border-radius: 20px;
  float: left;
  height: 100px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 500px) {
  .line-item-cell .pic {
    display: none;
  }
}

.line-item-cell .min-max-cell {
  height: 100px;
  width: 20%;
  float: left;
  display: flex;
}

@media (max-width: 900px) {
  .line-item-cell .min-max-cell {
    width: 26%;
  }
}

@media (max-width: 650px) {
  .line-item-cell .min-max-cell {
    float: right;
  }
}

@media (max-width: 500px) {
  .line-item-cell .min-max-cell {
    width: 41%;
    height: 50px;
  }
}

.line-item-cell .min-max-cell .middle {
  margin: auto;
}

@media (max-width: 650px) {
  .line-item-cell .min-max-cell .middle {
    margin-right: 0;
  }
}

.line-item-cell .min-max-cell .middle .cnt_val {
  width: 60px;
  display: inline-block;
  vertical-align: top;
  border: none;
  background: transparent;
  text-align: center;
  height: 40px;
  font-size: 20px;
  font-family: "Bold";
}

@media (max-width: 900px) {
  .line-item-cell .min-max-cell .middle .cnt_val {
    font-size: 17px;
    width: 50px;
  }
}

@media (max-width: 700px) {
  .line-item-cell .min-max-cell .middle .cnt_val {
    font-size: 15px;
    width: 40px;
  }
}

@media (max-width: 650px) {
  .line-item-cell .min-max-cell .middle .cnt_val {
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .line-item-cell .min-max-cell .middle .cnt_val {
    width: 30px;
  }
}

.line-item-cell .min-max-cell .middle .minus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: var(--two-color);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .line-item-cell .min-max-cell .middle .minus {
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  .line-item-cell .min-max-cell .middle .minus {
    height: 30px;
    width: 30px;
  }
}

.line-item-cell .min-max-cell .middle .minus:hover {
  background-color: var(--main-color);
}

.line-item-cell .min-max-cell .middle .minus i {
  margin: auto;
}

.line-item-cell .min-max-cell .middle .plus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: var(--two-color);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .line-item-cell .min-max-cell .middle .plus {
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  .line-item-cell .min-max-cell .middle .plus {
    height: 30px;
    width: 30px;
  }
}

.line-item-cell .min-max-cell .middle .plus:hover {
  background-color: var(--main-color);
}

.line-item-cell .min-max-cell .middle .plus i {
  margin: auto;
}

.line-item-cell .one-price {
  height: 100px;
  width: 10%;
  float: left;
  display: flex;
}

@media (max-width: 900px) {
  .line-item-cell .one-price {
    width: 20%;
  }
}

@media (max-width: 650px) {
  .line-item-cell .one-price {
    width: 24%;
  }
}

@media (max-width: 500px) {
  .line-item-cell .one-price {
    height: 50px;
  }
}

.line-item-cell .one-price span {
  margin: auto;
  font-family: "Bold";
  font-size: 20px;
}

@media (max-width: 900px) {
  .line-item-cell .one-price span {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .line-item-cell .one-price span {
    font-size: 15px;
  }
}

@media (max-width: 650px) {
  .line-item-cell .one-price span {
    font-family: "Regular";
  }
}

.line-item-cell .all-price {
  height: 100px;
  width: 15%;
  float: left;
  display: flex;
}

@media (max-width: 900px) {
  .line-item-cell .all-price {
    display: none;
  }
}

.line-item-cell .all-price span {
  margin: auto;
  font-family: "Bold";
  font-size: 20px;
}

@media (max-width: 900px) {
  .line-item-cell .all-price span {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .line-item-cell .all-price span {
    font-size: 15px;
  }
}

.line-item-cell .drop-item {
  height: 100px;
  width: 15%;
  float: left;
  display: flex;
}

@media (max-width: 650px) {
  .line-item-cell .drop-item {
    display: none;
  }
}

@media (max-width: 500px) {
  .line-item-cell .drop-item {
    height: 50px;
  }
}

.line-item-cell .drop-item .drop {
  padding: 12px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  margin: auto;
  color: #fff;
  border-radius: 50px;
  background-color: var(--two-color);
  font-family: "Bold";
  display: inline-block;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .line-item-cell .drop-item .drop {
    font-size: 13px;
  }
}

.line-item-cell .drop-item .drop:hover {
  background-color: var(--main-color);
}

.line-item-cell .name {
  float: left;
  height: 100px;
  display: flex;
  padding: 10px;
  width: 25%;
}

@media (max-width: 900px) {
  .line-item-cell .name {
    width: 24%;
  }
}

@media (max-width: 650px) {
  .line-item-cell .name {
    width: 35%;
  }
}

@media (max-width: 500px) {
  .line-item-cell .name {
    padding-left: 0;
    height: 50px;
  }
}

.line-item-cell .name span {
  margin: auto;
  margin-left: 20px;
  text-align: left;
  font-size: 20px;
  font-family: "Bold";
}

@media (max-width: 900px) {
  .line-item-cell .name span {
    font-size: 17px;
  }
}

@media (max-width: 650px) {
  .line-item-cell .name span {
    margin-left: 0;
  }
}

@media (max-width: 450px) {
  .line-item-cell .name span {
    font-size: 15px;
  }
}

.warning-section {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.form-zakaz {
  padding: 30px;
  max-width: 800px;
  padding-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 750px) {
  .form-zakaz {
    padding: 10px;
  }
}

.form-zakaz #cart_phone {
  letter-spacing: 2px;
}

.form-zakaz input {
  height: 45px;
  border-radius: 10px;
  background: #ececec;
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.form-zakaz select {
  height: 45px;
  border-radius: 10px;
  background: #ececec;
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.form-zakaz .dostavka input {
  display: none;
}

.form-zakaz .dostavka .half {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 750px) {
  .form-zakaz .dostavka .half {
    width: 100%;
    text-align: left;
  }
}

.form-zakaz .dostavka label {
  padding-left: 30px;
  height: 45px;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}

.form-zakaz .dostavka label:after {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid var(--two-color);
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  content: "";
}

.form-zakaz .dostavka label:before {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: var(--two-color);
  position: absolute;
  left: 3px;
  transition: 0.3s;
  top: calc(50% - 5px);
  content: "";
}

.form-zakaz .dostavka label span {
  margin: auto;
  margin-right: 0;
}

.form-zakaz .dostavka [type="radio"]:not(:checked)+label:before {
  opacity: 0;
  transform: scale(0);
}

.form-zakaz .dostavka [type="checkbox"]:checked+label:before {
  opacity: 1;
  transform: scale(1);
}

.form-zakaz .label {
  margin-bottom: 10px;
}

.form-zakaz .full-input {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

.form-zakaz .half-input {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

@media (max-width: 750px) {
  .form-zakaz .half-input {
    width: 100%;
  }
}

.final-zakaz {
  padding: 30px;
  max-width: 800px;
  border-radius: 10px;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 750px) {
  .final-zakaz {
    padding: 10px;
  }
}

.final-zakaz .all-price-information .half {
  width: 48%;
  display: inline-flex;
  vertical-align: top;
  height: 50px;
}

@media (max-width: 750px) {
  .final-zakaz .all-price-information .half {
    width: 100%;
    height: auto;
  }
}

.final-zakaz .all-price-information .middle {
  padding: 12px 20px;
  cursor: pointer;
  text-align: center;
  border: none;
  margin: auto;
  margin-left: 0;
  color: #fff;
  border-radius: 50px;
  background-color: var(--two-color);
  font-family: "Bold";
  display: inline-block;
  transition: 0.3s;
}

.final-zakaz .all-price-information .middle:hover {
  background-color: var(--main-color);
}

.final-zakaz .all-price-information .middle-span {
  margin: auto;
  margin-right: 0;
  text-align: right;
  font-size: 18px;
}

@media (max-width: 750px) {
  .final-zakaz .all-price-information .middle-span {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
    margin-top: 20px;
    font-size: 15px;
  }
}

.final-zakaz .all-price-information .middle-span span {
  font-size: inherit;
}

.cart-empty {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 450px) {
  .cart-empty {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.warning-section-pokupka {
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100%;
}

.warning-section-pokupka #errorwindow {
  padding: 30px;
  background: #fff;
  margin: auto;
  position: relative;
  max-width: 500px;
  z-index: 5;
  border-radius: 10px;
}

.warning-section-pokupka #errorwindow .title-form {
  margin-bottom: 20px;
  font-size: 19px;
}

.warning-section-pokupka #errorwindow .title-form span {
  font-size: inherit;
  font-family: "Bold";
}

.warning-section-pokupka #errorwindow a {
  padding: 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin: auto;
  color: #fff;
  border-radius: 50px;
  background-color: var(--two-color);
  font-family: "Bold";
  display: inline-block;
  transition: 0.3s;
}

@media (max-width: 550px) {
  .warning-section-pokupka #errorwindow a {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.warning-section-pokupka #errorwindow a:hover {
  background-color: var(--main-color);
}

.warning-section-pokupka #errorwindow a:first-child {
  margin-right: 10px;
}

.warning-section-pokupka .close-warning-form {
  position: absolute;
  top: 10px;
  height: 20px;
  width: 20px;
  right: 10px;
}

.warning-section-pokupka .close-warning-form:after {
  width: 26px;
  height: 1px;
  top: 8px;
  left: -4px;
  transform: rotate(45deg);
  background: #b40000;
  content: "";
  position: absolute;
}

.warning-section-pokupka .close-warning-form:before {
  width: 26px;
  height: 1px;
  top: 8px;
  left: -4px;
  transform: rotate(-45deg);
  background: #b40000;
  content: "";
  position: absolute;
}

.warning-section-pokupka .close-warning-form:hover {
  cursor: pointer;
}

.warning-section-pokupka .close-warning-form:hover:before {
  background: #333;
}

.warning-section-pokupka .close-warning-form:hover:after {
  background: #333;
}

.phone-mobile {
  display: none;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}

.phone-mobile a {
  font-family: "Title";
  font-size: 20px;
  color: var(--main-color);
  text-decoration: none;
}

.red {
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
}

@media (max-width: 450px) {
  .phone-mobile {
    display: block;
  }
}

.cart-sec .btn-call {
  margin: auto;
  padding: 10px 15px;
  font-size: 12px;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 50px
}

.cart-sec .btn-call:hover {
  background-color: #8c5d2e;
}


.cart-sec2 .btn-call2 {
  margin: auto;
  padding: 10px 15px;
  font-size: 12px;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 50px
}

.cart-sec2 .btn-call2:hover {
  background-color: #8c5d2e;
}

.talkref {
  text-decoration: none;
}

.wrapper .talk {
  background-color: var(--main-color);
  border-radius: 50px;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 280px;
  font-size: 15px;

}

.wrapper .talk:hover {
  background-color: #8c5d2e;
}

.talkref .talk {
  background-color: var(--main-color);
  border-radius: 50px;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 280px;
  font-size: 15px;

}

.talkref .talk:hover {
  background-color: #8c5d2e;
}

@media (max-width: 550px) {
  .cart-sec .btn-call {
    font-size: 11px;
    max-width: 150px;
    padding: 10px 10px;
  }
}

.social__link img {
  width: 40px;
}

.social {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}

.social__link {
  display: block;
  margin-right: 20px;
}

.social__link img {
  width: 40px;
}

.onas-info {
  padding: 40px 0;
  display: flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.onas-info__item {
  /*   text-align: center; */
}

.stat {
  font-weight: bold;
  font-size: 42px;
  font-family: "Title";
}

.txt {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.portfolio-img {
  display: flex;
  padding: 20px 0 40px;
  flex-wrap: wrap;
}

.portfolio-img__item img {
  width: 100%;
}

.portfolio-img__item {
  flex: 0 0 31%;
  margin-right: 20px;
}

.portfolio-video {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-video__item {
  flex: 0 0 40%;
  margin-right: 20px;
}

.portfolio-video__item video {
  width: 100%;
}

.onas {
  display: flex;
  padding: 20px 0 0;
}

.onas-direktor img {
  width: 100%;
}

.onas-direktor {
  /*   flex: 0 0 35%;  */
  /*   margin-right: 30px; */
  width: 30%;
  margin-right: 100px;
}

.onas-desc {
  /*   flex: 0 0 60%; */
  width: calc(60% - 120px);
  padding-left: 20px;
  border-left: solid 3px rgb(112,84,79, 0.2);
}

.onas-desc-pic.onas-desc{
 width: calc(50% - 120px); 
}


hr {
  background-color: #70544f;
  color: #70544f;
  opacity: 0.1;
  height: 4px;
  margin:0 ;
}

.price {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.product-page .price .name {
  margin-right: 8px;
}

@media (max-width:1000px) {
  .onas {
  flex-direction: column;
  margin: 0px auto;
  }

}


.onas-info .desc{
  width:200px
}

@media (max-width:950px) {
  .slider-sec, .first-sec {
    margin-top: 80px;
  }
  .product-page .pic-product{
    min-height: 300px;
  }

  .article-content{
    padding: 0px 10px;
  }
  .article-content h2,.article-content h1 {
    font-size: 30px;
  }

  .sort-section {
    margin-top: 70px;
  }
.onas-direktor, .onas-desc, .onas-desc .onas-desc-pic{
  width: 100% !important;
  padding: 0px 10px;
  margin-top: 20px;
}

.onas-info{
  margin-left: 20px;
  padding: 20px 0;
}
.onas{
  padding: 0px;
}
}


@media (max-width:450px) {
  .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}