* {
  padding: 0;
  margin: 0;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Ubuntu";
  box-sizing: border-box;
  font-weight: normal;
  font-size: 15px;
  padding-top: 48px;
}
@media (max-width: 576px){
  body{
    padding-top: 170px;
  }
}

@media (min-width: 576px){
  body{
    padding-top: 190px;
  }
}
@media (min-width: 768px){
  body{
    padding-top: 195px;
  }
}
@media (min-width: 992px){
  body{
    padding-top: 0;
  }
}
img {
  max-width: 100%;
}
a,
a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
a:focus {
  outline: none;
}
/* MAIN PAGE */
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding-top: 4px;
  padding-bottom: 4px;
}
.menu-button {
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.menu-button__burger {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 20px;
  height: 2px;
  margin: 0px 0 0 -20%;
  -webkit-transition: -webkit-transform 0.2s ease 0s;
  transition: -webkit-transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}
.menu-button__burger-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s linear 0.2s;
  transition: -webkit-transform 0.2s linear 0.2s;
  -o-transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  background: #000;
}
.menu-button__burger:after, .menu-button__burger:before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
}
.menu-button__burger:before {
  top: -6px;
  -webkit-transition: top 0.2s linear 0.4s;
  -o-transition: top 0.2s linear 0.4s;
  transition: top 0.2s linear 0.4s;
} 
.menu-button__burger:after {
  bottom: -6px;
  -webkit-transition: bottom 0.2s linear 0.4s;
  -o-transition: bottom 0.2s linear 0.4s;
  transition: bottom 0.2s linear 0.4s;
}
.menu-button.active .menu-button__burger:before {
  top: 0;
  -webkit-transition: top 0.2s linear;
  -o-transition: top 0.2s linear;
  transition: top 0.2s linear;
}
.menu-button.active .menu-button__burger {
  -webkit-transition: -webkit-transform 0.2s linear 0.4s;
  transition: -webkit-transform 0.2s linear 0.4s;
  -o-transition: transform 0.2s linear 0.4s;
  transition: transform 0.2s linear 0.4s;
  transition: transform 0.2s linear 0.4s, -webkit-transform 0.2s linear 0.4s;
  -webkit-transform: rotate(
45deg
);
  -ms-transform: rotate(45deg);
  transform: rotate(
45deg
);
}
.menu-button.active .menu-button__burger-line {
  -webkit-transform: rotate(
90deg
);
  -ms-transform: rotate(90deg);
  transform: rotate(
90deg
);
}
.menu-button.active .menu-button__burger:after {
  bottom: 0;
  -webkit-transition: bottom 0.2s linear;
  -o-transition: bottom 0.2s linear;
  transition: bottom 0.2s linear;
}
.top-area {
  position: fixed;
  left: 0;
  top: 45px;
  width: 300px;
  z-index: 999;
  height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
}
.top-area.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.top-area__wrap {
  height: calc(100% - 52px);
  overflow-y: scroll;
  padding: 0 20px;
}
.tel{
  font-weight: 500;
  color: #000;
  font-size: 18px;
  position: relative;
}
.tel img{
  left: -18px;
  top: 5px;
  position: absolute;
}
.header__callback{
  display: flex;
  justify-content: flex-end;
}
.header__call{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #62cc4f;
  line-height: 1.071;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  width: 100px;
  height: 100px;
  margin-right: 22px;
  font-size: 14px;
  transition: .3s;
}
.header__call:last-child{
  margin-right: 0;
}
.header__call:hover{
  color: #fff;
  opacity: .8;
}
.header__call .header__call-icon{
  margin-bottom: 10px;
}
.top__menu{
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
  padding: 20px 0;
margin-bottom: 30px;
}
.yellow-box{
  color: #000;
  background: #f3db12;
  font-weight: 500;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
padding: 3px;
width: 285px;
margin-top:10px;
}
.yellow-box img{
  margin-right: 15px;
}
@media (min-width: 992px){
  .top__menu .dropdown{
    display: none
  }
}
.drop-btn{
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
  border: none;
  background: transparent;
}
.main-menu{
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-left: 20px;
  margin-bottom: 0;
}
@media (min-width: 992px){
  .main-menu{
    margin-left: 0;
  }
}
.main-menu a{
  color: #000;
  font-size: 16px;
  margin: 0 20px;
  transition: .3s;
  font-weight: 500;
}
.main-menu a:hover{
  color: #62cc4f;
}
.categories {
  margin-bottom: 30px;
}
.categories__list {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 30px 0 0 0;
  padding: 0;
  flex-wrap: wrap;
}
.categories__list li {
  text-align: center;
width: 9%;
}
.categories__icon{
  min-height: 50px;
}
.categories__icon img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  transition: .3s;
}
.categories__icon img.w44{
  width: 44px;
}
.categories__icon img.w50{
  width: 50px;
}
.categories__icon img.w67{
  width: 67px;
}
.categories__icon img.w43{
  width: 43px;
}
.categories__icon img.w38{
  width: 38px;
}
.categories__list li.active img,
.categories__list li:hover img{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}
.categories__title {
  color: #000;
  margin-top: 15px;
  display: block;
  padding: 0 5px;
  min-height: 42px;
  transition: .3s;
}
.categories__list li:hover .categories__title{
color: #62cc4f;
}
.slider {
  position: relative;
}

.slider:before {
  width: 100%;
  height: 50%;
  bottom: 0;
  position: absolute;
  content: "";
  background: #f6f6f6;
  z-index: -1;
}
.slider .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.slider .slick-dots li {
  margin: 0 4px;
}
.slider .slick-dots li {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  text-indent: -9999px;
  border: 3px solid #fff;
}
.slick-dots li button:after {
  content: none;
}
.slider .slick-dots li.slick-active {
  background: transparent;
}
.slick-prev:before,
.slick-next:before,
.slick-prev:after,
.slick-next:after {
  content: none;
}

.slider .button-prev img,
.slider .button-next img {
  width: 18px;
  height: 32px;
}
.slider .button-prev {
  position: absolute;
  bottom: calc(50% - 7px);
  left: 35px;
  z-index: 3;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.slider .button-next {
  position: absolute;
  bottom: calc(50% - 7px);
  right: 35px;
  z-index: 3;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.slider .slick-list {
  padding: 0;
}
.advantages {
  padding-top: 0px;
  padding-bottom: 20px;
}
.bg-grey{
  background: #f6f6f6;
}
.adv__list {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  border: 1px solid #909090;
  border-radius: 20px;
  background: #f7f7f7;
}
.adv__list li {
  text-align: center;
  font-weight: 500;
  width: 12.5%;
}
.adv__icon {
  min-height: 37px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 15px 0;
}
.adv__list span {
  font-weight: 300;
  display: block;
}
.brends {
  margin-top: 55px;
  margin-bottom: 35px;
}
.section-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  margin-top: 0;
}
.section-sub {
  font-size: 14px;
  color: #777777;
}
.green{
  background: #62cc4f;
  color: #fff;
  padding: 3px 5px;
  border-radius: 5px;
  margin: 0 10px;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.d-flex-row {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.mt-50 {
  margin-top: 50px;
}
.materials {
  background: #f6f6f6;
  padding: 60px 0;
}
.gall__item p {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header a {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}
.portfolio {
  margin-top: 35px;
  margin-bottom: 65px;
}
.portf__item {
  margin-bottom: 30px;
}
.about {
  font-weight: 300;
  margin-bottom: 60px;
}
.list-of {
  list-style-type: none;
  margin: 0;
  padding-left: 15px;
}
.list-of li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
}
.list-of li:before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  background: #62cc4f;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.consultation {
  background: #f6f6f6;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.consultation:before {
  height: 100%;
  position: absolute;
  content: "";
  width: 53%;
  background: #62cc4f;
  left: -40px;
  top: 0;
  transform: skew(-13deg, 0deg);
}
.cons__icon {
  width: 67px;
}
.cons__content {
  color: #fff;
  padding-left: 18px;
}
.cons__content h2 {
  font-weight: 700;
  font-size: 24px;
  margin-top: 0;
}
.cons__content p {
  margin: 0;
}
.cons__btn {
  color: #000;
  font-size: 16px;
  border: 2px solid #000;
  border-radius: 3px;
  width: 265px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.cons__btn:hover{
  color: #000;
  opacity: .8;
}
.const__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.wa-icon {
  display: block;
  margin: 0 30px;
}
.footer{
  padding: 80px 0;
  font-size: 14px;
  color: #777777;
}
.footer a{
  color: #000;
}
.footer__list li{
list-style-type: none;
margin-bottom: 10px;
font-size: 16px;
}
.small-title{
  font-size: 12px;
  color: #777777;
  margin: 0;
}
.m-0{
  margin: 0;
}

.policy{
  margin: 30px 0;
  display: block;
}
.social__items{
  margin-bottom: 35px;
  margin-top: 17px;
}
.insta{
  width: 195px;
  height: 45px;
  border-radius: 5px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 13px;
}
.insta img{
  width: 30px;
  margin-right: 17px;
}
.site-bottom{
  border-top: 1px solid #eeeeee;
  padding-top: 35px;
  padding-bottom: 25px;
  color: #777;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.web-do{
  color: #777;
  position: relative;
  padding-right: 30px;
}
.web-do img{
position: absolute;
right: 0;
top: -8px ;
width: 12px;
}

/* CATEGORY PAGE */
.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 30px;
}
.breadcrumbs li {
  padding-right: 18px;
  position: relative;
  font-weight: 300;
  font-size: 13px;
  color: #999999;
}
.breadcrumbs a{
  color: #999999;
}
.breadcrumbs a::before {
  position: absolute;
  content: "/";
  font-size: 12px;
  top: 1px;
  right: 6px;
  color: #999999;
}
.products_layout {
  display: flex;
  flex-wrap: wrap;
}
.product__item{
  background: #fff;
  transition: .3s;
  position: relative;
  margin-bottom: 28px;
}
.product__item:hover{
  background: #f6f6f6;
}
.product__item .product__image{
  display: block;
  max-height: 190px;
  overflow: hidden;
}
.hit{
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: #ea155b;
  width: 85px;
  height: 21px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 12px;
  top: 12px;
}
.product__content{
  font-size: 13px;
  font-weight: 300;
  text-align: center;
padding: 0 10px 10px;
}
.product__title{
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 15px;
  display: block;
  color: #000;
}
.prod__price{
  font-size: 22px;
  font-weight: 700;
  color: red;
}
.prod__price_old{
  text-decoration: line-through;
  color: #999;
  font-size: 18px;
  
}
.product__link{
  color: #323232;
  font-size: 14px;
  font-weight: normal;
}
.product__order{
  background: #ff5152;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  margin: 15px auto;
  transition: .3s;
}
.product__order:hover{
  opacity: .8;
  color: #fff;
}
.pagination {
  display: flex;
  list-style-type: none;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
.pagination>li>a {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  background: #fff;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 5px;
}
.pagination>li:first-child>a{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagination a.active, .pagination>li>a:hover {
  border-color: transparent;
  background: #62cc4f;
  color: #fff;
}
.site-list{
  margin-top: 30px;
}
.site-list li{
  list-style-type: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;  
}
.site-list li:before{
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #62cc4f;
  left: 12px;
  top: 8px;
}
.one-product__slider .item{
  position: relative;
}
.one-product__slider_navigation{
  margin-bottom: 70px;
}
.one-product__slider_navigation .item{
  width: 70px;
  height: 70px;
  margin-right: 10px;
  border: 2px solid transparent;
}

.one-product__slider_navigation .single-img.slick-slide.slick-current.slick-active .item{
  border: 2px solid #6dd05b;
}
.product__desc{
  font-size: 15px;
  font-weight: 300;
}
.title-md{
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 25px;
}
.title-md-grey{
    color: #777777;
    margin: 0;
    font-size: 13px;
}
.ml-0{
margin-left: 0;
}

.single-prduct__price{
  background: #f6f6f6;
  border-left: 2px solid #6ace58;
  padding: 35px 18px;
  margin-top: 35px;
  margin-bottom: 30px;
}
.big-title{
  font-size: 32px;
  font-weight: 700;
}
.single-prduct__price{
  display: flex;
}
.item-box{
  margin-left: 80px;
}
.fw-light{
  color: #999999;
}
.btn-main{
  height: 50px;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  background: #62cc4f;
  transition: .3s;
}
.btn-main img{
  margin-right: 10px;
}
.btn-main.btn-transp{
  background: #fff;
  border-color: #62cc4f;
  color: #62cc4f;
}
.btn-main:hover{
  opacity: .8;
  color: #fff;
}
.btn-main.btn-transp:hover{
  color: #62cc4f;
}
.btns__wrapp{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.product-single__attr-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.product-single__attr-item .bordered-bottom {
  width: 50%;
  position: relative;
}
.product-single__attr-item .bordered-bottom:first-child:before {
  border-bottom: 0.4px dashed #cccccc;
  bottom: 2px;
  left: 0;
  width: 95%;
  position: absolute;
  content: "";
}
.product-single__attr-item .bordered-bottom span {
  background: #fff;
  position: relative;
  z-index: 2;
  font-weight: 300;
}
.product-single__attr-item span {
  font-weight: 500;
  width: 50%;
}
.product__desc{
  margin-top: 40px;
}
.form-group input {
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    padding: 16.5px 20px;
    text-align: center;
    border: 1px solid #ccc;
}
.form-group textarea {
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    padding: 16.5px 20px;
    text-align: center;
    border: 1px solid #ccc;
}
.form-group label[for=rtad_jforms_116_field_6], 
.form-group label[for=rtad_jforms_117_field_4],
.form-group label[for=rtad_jforms_118_field_5],
.form-group label[for=rtad_jforms_106_field_2],
.form-group label[for=rtad_jforms_115_field_2]{
    font-size: 14px;
    position: relative;
    padding-left: 37px;
    cursor:pointer;
}
.form-group input[type='checkbox'] {
    display: none;
}
.form-group label[for=rtad_jforms_116_field_6]:before, 
.form-group label[for=rtad_jforms_117_field_4]:before,
.form-group label[for=rtad_jforms_118_field_5]:before,
.form-group label[for=rtad_jforms_106_field_2]:before,
.form-group label[for=rtad_jforms_115_field_2]:before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 24px;
    content: '';
    transform: translate(0, -50%);
    border: 1px solid #ccc;
}
.form-group input[type='checkbox']:checked ~ label[for=rtad_jforms_116_field_6]:before,
.form-group input[type='checkbox']:checked ~ label[for=rtad_jforms_117_field_4]:before,
.form-group input[type='checkbox']:checked ~ label[for=rtad_jforms_118_field_5]:before,
.form-group input[type='checkbox']:checked ~ label[for=rtad_jforms_106_field_2]:before,
.form-group input[type='checkbox']:checked ~label[for=rtad_jforms_115_field_2]:before{
    border: 1px solid #34aafc;
    background-color: #34aafc;
}
.form-group.__submit{
    text-align:center;
}
.form-group button {
    font-weight: 500;
    font-size: 16px;
    line-height: 50px;
    width: 100%;
    max-width: 280px;
    height: 50px;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    background-color: #62cc4f;
    border: none;
}
.modal-title{
    margin-bottom:20px;
    text-align:center;
}
/* END */
/*count price */
.count-step {
  margin-bottom: 40px;
}
.count-step__title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
}
.count-step__num {
  padding: 6px 13px;
  background: #000;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
}
.formRows{
  margin-bottom: 20px;
  width: 100%;
}
.formRows .required {
  color: #ff2424;
}
.formRows input{
  width: 100%;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 20px;
  border-radius: 10px;
   border: 1px solid #cccccc;
}

.formRows input::placeholder{
  color: #999999;
  font-size: 16px;
}
.formRows span{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.checkbox {
  font-size: 16px;
  margin-bottom: 12px;
}
.checkbox label {
  padding: 0;
  margin: 0;
}
.checkbox input[type="checkbox"]{
  display: none;
}
.checkbox span {
  min-height: 28px;
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.checkbox span:before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  border: 1px solid #cccccc;
  background: #fff;
  left: 0;
  top: 0;
  transition: all 0.3s;
  border-radius: 6px;
}
.checkbox input[type="checkbox"]:checked + span:before {
  background: #62cc4f;
  border: 1px solid #62cc4f;
}
.checkbox span:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 11px;
  left: 7px;
  top: 8px;
  background-image: url(/images/tick.png);
  opacity: 0;
  transition: all 0.3s;
  background-size: contain;
  background-position: center;
}
.checkbox input[type="checkbox"]:checked + span:after {
  opacity: 1;
}
.count__footer{
  border-top:1px solid #eeeeee;
  padding-top: 30px;
  color: #999999;
  font-size: 12px;
}
.link-to{
  color: #999;
  text-decoration: underline;
}
.mt-4{
  margin-top: 1.5rem!important;
}
.upload-main-wrapper {
  /* width: 235px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.upload-file-text{
  color: #777;
  font-size: 12px;
  margin: 6px 0 0 0;
  display: inline-flex;
}
@media (min-width: 576px){
  .upload-main-wrapper{

    flex-direction: row;
  }
  .upload-file-text{
    margin: 0 0 0 6px;
  }
}

.upload-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  background-color: #f3f3f3;
  padding: 16px 22px;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.2s linear all;
  color: #000;
  font-weight: 500;
font-size: 16px;
max-width: 235px;
min-width: 235px;
}

.upload-wrapper input[type=file] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.upload-wrapper .file-upload-text {
  position: absolute;
  left: 50px;
  opacity: 1;
  visibility: visible;
  transition: 0.2s linear all;
}

/* end */
.d-none{
  display: none !important;
}
.d-block{
  display: block !important;  
}
/* end */
@media (min-width: 576px) {
.modal-body {
    padding: 0 60px 25px 60px;
}
}
@media (min-width: 992px) {
.d-md-block{
  display: block !important;
}
.d-md-none{
  display: none !important;
}
.site-header {
  position: relative;
  padding-top: 22px;
  padding-bottom: 22px;
}
}
@media (max-width: 1199px) {
.brends .col-xs-4{
  margin-bottom: 20px;
}
}
@media (max-width: 991px) {
  .top__menu{
    border-bottom: 1px solid #e7e7e7;
    border-top: none;
    margin-top: 30px;
  }
  .main-menu {
    flex-direction: column;
    margin-left: 0px;
    align-items: flex-start;
    margin-top: 10px;
}
.main-menu li{
  margin-bottom: 10px;
}
.main-menu a {
  margin: 0;
}
.site-header__logo-cont{
  margin-left: 10px;
}
.header__callback {
  height: 100%;
  align-items: center;
}
.header__call{
  width: 30px;
  height: 30px;
  padding: 5px;
  margin-right: 5px;
}
.header__call .header__call-icon {
  margin-bottom: 0px;
}
.header__call span{
  display: none;
}
.yellow-box{
    width:100%;
}
.pl-md-0{
  padding-left: 0;
}
  .categories__list li {
    margin-bottom: 20px;
      width: 20%;
  }
  .adv__list li {
    width: 33.3%;
  }
  .site-header{
    background: #f6f6f6;
  }
}
@media (max-width: 767px) {
  .consultation:before {
    width: 100%;
    left: 0;
    transform: skew(
      0deg
      , 
      0deg
      );
  }
  .consultation .d-flex-row{
    flex-direction: column;
  }
  .cons__icon{
    margin-bottom: 20px;
  }
  .consultation .d-flex{
    justify-content: center;
  }
  .const__item{
    margin-top: 20px;
  }
  .wa-icon {
    margin: 0 10px;
}
.cons__btn {
  width: 230px;
  height: 45px;
}
}
@media (max-width: 575px) {
    .categories__list li {
    width: 25%;
}
.section-header{
  flex-direction: column;
  align-items: flex-start;
}
.btns__wrapp {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn-main.btn-transp{
  margin-top: 20px;
}
}
@media (max-width: 475px) {
  .categories__list li, .adv__list li {
    width: 50%;
  }
  .footer{
    padding: 50px 0;
  }
  .footer .col-xs-6{
    width: 100%;
    text-align: center;
  }
  .social{
    margin-top: 20px;
  }
  .social__items{
    justify-content: center;
    margin: 15px 0;
  }
  .footer .insta{
    margin: 0 auto;
  }
  .site-bottom {
   padding-top: 25px;
   padding-bottom: 15px;
    flex-direction: column;
}
.products_layout .col-xs-6{
  padding: 0 7px;
}
.product__content {
  padding: 0 5px 5px;
}
.product__order {
  width: 135px;
  font-size: 14px;
  height: 30px;
}
.single-prduct__price {
 flex-direction: column;
}
.item-box {
  margin-left: 0px;
}
}

.moduletable.moduletable--calculate__box{
  padding: 0 15px;
}

.moduletable.moduletable--materials__box .materials{
  background: none;
  padding: 0;
}

.main-menu a {
    text-transform: uppercase;
}


.categories .categories-collapse__box{
  display: block;
  padding: 0;
  margin: 30px 0 0 0;
  text-align: center;
}
@media (min-width: 975px){
  .categories .categories-collapse__box{
    margin-top:0;
  }

}
.categories .categories-collapse__box>button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  margin: 0;
  border: 0;
  background: #62cc4f;
  color: #fff;
  border-radius: 5px;
  width: 100%;
}
.categories .categories-collapse__box>button>.menu-button__burger{
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0 15px 0 0;
}
.categories .categories-collapse__box>button>.menu-button__burger::after,
.categories .categories-collapse__box>button>.menu-button__burger::before,
.categories .categories-collapse__box>button>.menu-button__burger>.menu-button__burger-line{
  background: #fff;
}
@media (min-width: 1200px){
  .categories .categories-collapse__box>button{
    display: none
  }
  .categories .categories-collapse__box>.collapse-box{
    display: block;
    height: auto !important;
  }
}


body > main > div.container > div.slider.secction_carousel_127 {
  margin-bottom: 20px;
}


body > main > div.container > div.slider.secction_carousel_127 img{
  border-radius: 10px;
}

.attantion {
    text-align: center;
    padding: 10px 10px 10px 10px;
    background: #ff5152;
    margin-top: 10px;
    color: #fff;
    border-radius: 5px;
 	font-size: 14px;
    font-weight: 700;
}

@media (min-width: 992px){
.main-adva {
  margin-top: 0px;
}
}

@media (max-width: 992px){
.main-adva {
  margin-top: 100px;
}
}

.wp_btn_absolut{
	position: fixed;
	z-index: 100;
	bottom: 50px;
	right: 50px;
	width: 50px;
}
.wp_btn_absolut img{
	width: 100%;
}
@media screen and (max-width: 500px) {
	.wp_btn_absolut{
		bottom: 120px;
		right: 30px;
		width: 40px;
	}
}

/*.categories .categories-collapse__box {
    display: block;
    padding: 0;
    margin: 100px 0 0 0;
    text-align: center;
}*/

.phone-mob {
 	text-align: center;
}

.phone-mob a {
    color: #000;
    font-weight: bold;
    font-size: 19px;
}

@media (min-width: 992px){
  .phone-mob{
    display: none;
  }
}

@media (max-width: 992px){
.categories .categories-collapse__box {
    display: block;
    padding: 0;
    margin: 30px 0 0 0;
    text-align: center;
}
}

@media (max-width: 992px){
  .main-adva {
  margin-top: 10px;
  padding-bottom: 20px;
}
}

.moduletablemm .collapse {
  display: block !important;
}

.prod__price_old {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    font-weight: 300;
}