@import url("./css_reset.css");
@import url("https://fonts.googleapis.com/css2?family=Cuprum&display=swap");

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/proximaNova/ProximaNova-Regular.woff") format("woff"),
    url("../fonts/proximaNova/ProximaNova-Bold.woff") format("woff");
}

button,
input {
  cursor: pointer;
}

body {
  font-family: "Proxima Nova";
  margin-top: 75px;
}

.header {
  background: #fff;
  padding: 20px 0 20px 0;
  height: 35px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.container_header {
  max-width: 1819px;
  margin: 0 15px 0 15px;
}

.burger_main_menu,
.burger_menu_product {
  position: relative;
  display: inline-block;
  background: none;
  border: none;
  width: 30px;
  height: 20px;
  z-index: 10;
}

.burger_main_menu {
  z-index: 10;
}

.burger_main_menu::before,
.burger_menu_product::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  top: 0;
  left: 0;
  background: #1e2e36;
}

.burger_main_menu span,
.burger_menu_product span {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  top: 9px;
  background: #1e2e36;
}

.burger_main_menu::after,
.burger_menu_product::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #1e2e36;
  bottom: 0;
  left: 0;
}

.burger_main_menu::before,
.burger_menu_product::before,
.burger_main_menu::after,
.burger_menu_product::after,
.burger_main_menu span,
.burger_menu_product span {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.burger_main_menu.active::before,
.burger_menu_product.active::before {
  top: 9px;
  transform: rotate(137deg);
  -webkit-transform: rotate(137deg);
  -moz-transform: rotate(137deg);
  -ms-transform: rotate(137deg);
  -o-transform: rotate(137deg);
}

.burger_main_menu.active span,
.burger_menu_product.active span {
  transform: rotate(137deg);
  -webkit-transform: rotate(137deg);
  -moz-transform: rotate(137deg);
  -ms-transform: rotate(137deg);
  -o-transform: rotate(137deg);
}

.burger_main_menu.active::after,
.burger_menu_product.active::after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  top: 9px;
}

.collapse_main,
.collapse_products {
  visibility: hidden;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 5;
  width: 100%;
  padding: 55px 0 40px 15px;
  box-sizing: border-box;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.collapse_products {
  left: 0;
  left: -150%;
}

.collapse_main {
  right: 0;
  right: -150%;
  display: flex;
  flex-direction: column;
}

.collapse_products.collapse_d_block {
  left: 0;
}

.collapse_main.collapse_d_block {
  right: 0;
}

.collapse_d_block {
  visibility: visible;
}

.container_header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  display: inline-block;
  color: #1e2e36;
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 125%;
  text-transform: lowercase;
  text-decoration: none;
  margin-left: 71px;
}

.logo span {
  text-transform: uppercase;
  color: #44c697;
}

.logo::before {
  content: "";
  position: absolute;
  top: -23px;
  left: -100px;
  width: 125px;
  height: 75px;
  background-image: url("../img/logo.png");
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}

.main_menu li a,
.menu_furniture_products li a {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-transform: uppercase;
  text-decoration: none;
  color: #1e2e36;
}

.main_menu li,
.menu_furniture_products li {
  position: relative;
  margin-top: 10px;
}

.social_networks_header {
  margin-top: 10px;
  display: flex;
}

.social_networks_header li + li {
  margin-left: 25px;
}

.contact_us_header {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.contact_us_header h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  color: #1e2e36;
}

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

.tel_numbers a {
  text-decoration: none;
  color: #1e2e36;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-transform: uppercase;
}

.menu_furniture_products,
.main_menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu_furniture_products li {
  margin-right: 20px;
}

.menu_furniture_products a {
  display: block;
  position: relative;
}

.contact_us_header .tel_numbers button {
  position: relative;
  background: none;
  border: none;
  margin-left: 10px;
}

.menu_furniture_products a::before,
.contact_us_header .tel_numbers button::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  right: -14px;
  top: 10px;
  background: #1e2e36;
  border-radius: 1px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}

.menu_furniture_products a::after,
.contact_us_header .tel_numbers button::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  right: -20px;
  top: 10px;
  background: #1e2e36;
  border-radius: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}

.contact_us_header .tel_numbers button::before {
  right: 0px;
  top: 0px;
}

.contact_us_header .tel_numbers button::after {
  right: -6px;
  top: 0px;
}

.collapse_products div {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.collapse_products div .basket {
  background: none;
  border: none;
  position: relative;
  display: inline-block;
  margin-left: 35px;
  font-weight: 700;
  font-size: 15px;
  line-height: 125%;
  text-transform: uppercase;
  color: #1e2e36;
}

.collapse_products div .basket::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/shopping-cart.svg");
  left: -35px;
  top: -25%;
}

.collapse_products div .order_call,
.slider_main_title .slide .btn_more_detail,
.container_product_categories .btn_to_catalog {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 125%;
  text-transform: uppercase;
  color: #ffffff;
  background: #44c697;
  padding: 10px 25px;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.main_title {
  background: url("../img/Rectangle_137.jpg");
  background-size: cover;
  padding-bottom: 60px;
  background-position: center;
}

.container_main_title {
  max-width: 1819px;
  margin: 0 10px;
}

.slider_main_title {
  width: 150px;
  background: #ffffff;
  padding: 30px 25px;
  border-left: 10px solid #44c697;
  font-weight: 700;
  line-height: 125%;
  color: #1e2e36;
  text-align: center;
  box-sizing: border-box;
}

.slider_main_title .slide h3 {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
}

.slider_main_title .slide h4 {
  font-size: 12px;
  font-weight: 700;
}

.slider_main_title .slide p {
  font-size: 10px;
  font-weight: 400;
  line-height: 100%;
}

.slider_main_title .slide .btn_more_detail {
  font-weight: 700;
  font-size: 10px;
  line-height: 125%;
  padding: 10px 15px;
}

.slider_main_title .number_slide {
  margin-top: 10px;
  font-weight: 700;
  font-size: 12px;
}

.slider_main_title .number_slide span + span {
  font-size: 10px;
}

.btn_slide {
  margin-top: 5px;
}

.arrow_left,
.arrow_right {
  position: relative;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #1e2e36;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.arrow_left::before,
.arrow_right::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-left: 1px solid #1e2e36;
  border-top: 1px solid #1e2e36;
  top: 31%;
  left: 36%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.slider_our_advantages .arrow_left::before,
.slider_our_advantages .arrow_right::before {
  border-color: #ffffff;
}

.arrow_right::before {
  left: 4px;
  transform: rotate(137deg);
  -webkit-transform: rotate(137deg);
  -moz-transform: rotate(137deg);
  -ms-transform: rotate(137deg);
  -o-transform: rotate(137deg);
}

.our_advantages,
.product_categories {
  background: #ffffff;
  padding: 40px 0 0 0;
}

.slider_our_advantages .card_box {
  position: relative;
  display: flex;
  width: 100%;
}

.container_our_advantages {
  max-width: 1819px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
}

.container_our_advantages h2,
.container_product_categories h2,
.about_us h2,
.feedback h2 {
  position: relative;
  font-weight: 700;
  font-size: 25px;
  line-height: 125%;
  color: #1e2e36;
  text-align: center;
  align-self: center;
  background: linear-gradient(to right, #44c697 7px, transparent 0px);
}

.slider_our_advantages {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  align-self: center;
}

.slider_our_advantages .card_box > div {
  min-width: 100%;
  height: auto;
  position: relative;
}

.slider_our_advantages .card_box > div > img {
  width: 100%;
  height: auto;
}

.slider_our_advantages .card_box > div + div {
  margin-left: 30px;
}

.slider_our_advantages .content_slider {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.slider_our_advantages .content_slider h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #44c697;
  align-self: flex-start;
}

.slider_our_advantages .content_slider p {
  font-weight: 400;
  font-size: 10px;
  line-height: 125%;
  color: #ffffff;
  margin-top: 5px;
}

.slider_our_advantages .arrow_left,
.slider_our_advantages .arrow_right {
  border-color: #ffffff;
  position: absolute;
  top: 45%;
}

.slider_our_advantages .arrow_left {
  left: 7px;
}

.slider_our_advantages .arrow_right {
  right: 7px;
}

.container_product_categories {
  max-width: 1819px;
  margin: 0 15px;
  display: flex;
  flex-direction: column;
}

.name_categories {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.name_categories li {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: #1e2e36;
}

.name_categories li + li + li + li {
  margin-top: 20px;
}

.w-xs {
  flex-basis: 100%;
}

.w-s {
  display: none;
}

.name_categories svg {
  display: block;
  margin-bottom: 10px;
}

.name_categories li a {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
}

.product_box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.product_box li {
  position: relative;
  margin-top: 30px;
}

.product_box li img {
  display: inline-block;
  width: 100%;
}

.product_box li a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.product_box li .new,
.product_box li .hot_sale,
.product_box li .sale {
  position: absolute;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  padding: 5px 15px;
  top: 5px;
}

.product_box li .sale {
  background: #ff1b1b;
  top: 48px;
}

.product_box li .new,
.product_box li .hot_sale {
  background: #1e2e36;
}

.product_box li .info_product {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  text-transform: uppercase;
  color: #1e2e36;
}

.product_box li .info_product span + span {
  margin-left: 10px;
  text-decoration-line: line-through;
  font-size: 11px;
  color: #bcbdbb;
}

.product_box li .info_product span:first-child {
  color: #ff1b1b;
}
.container_product_categories .btn_to_catalog {
  align-self: center;
  text-decoration: none;
  padding: 14px 46px;
  margin-top: 30px;
}
.about_us,
.feedback {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feedback {
  padding-bottom: 40px;
}
.container_about_us,
.container_feedback,
.container_footer {
  max-width: 1819px;
  margin: 0 15px;
}
.image_about_wrap_about_us,
.image_about_wrap_feedback {
  padding: 50px 0 50px 0;
  margin-top: 30px;
  width: 100%;
  background: url(../img/people.jpg) no-repeat;
  background-position: 50px 0px;
  background-size: cover;
}
.container_about_us .content_box {
  border-right: 15px solid #44c697;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  color: #1e2e36;
  padding: 20px 10px 20px 0;
  max-width: 791px;
  height: 300px;
  background: #ffffff;
  overflow: scroll;
}
.container_about_us .content_box p + p {
  margin-top: 15px;
}
.container_about_us .content_box span {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  text-transform: uppercase;
  color: #44c697;
}

.container_feedback {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.container_feedback .content_box {
  border-left: 15px solid #44c697;
  background: #ffffff;
  padding: 20px 30px 20px 30px;
  max-width: 513px;
  box-sizing: border-box;
}
.container_feedback .content_box h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 125%;
  color: #1e2e36;
}
.image_about_wrap_feedback {
  padding: 50px 0 58px 0;
  background: url(../img/Rectangle_175.jpg) no-repeat;
  background-position: -351px 0px;
  background-size: cover;
}
.container_feedback .form_consultation {
  display: flex;
  flex-direction: column;
}
.container_feedback .form_consultation input {
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  padding: 14px;
  border-radius: 3px;
  border: 1px solid #1e2e36;
  margin-top: 15px;
}
.container_feedback .form_consultation .submit_form {
  padding: 14px 0;
  background: #44c697;
  border: none;
  color: #ffffff;
  border-radius: 3px;
  margin-top: 15px;
}
.container_feedback .form_consultation .contact_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
  margin-top: 30px;
}
.container_feedback .form_consultation .contact_text .phone_number {
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.footer {
  background: #1e2e36;
  background-repeat: no-repeat;
  background-position: left, right;
  color: #ffffff;
}
.container_footer {
  padding: 30px 0 30px 0;
}
.footer .logo {
  margin-top: 20px;
  margin-bottom: 14px;
  color: #ffffff;
}
.footer .logo::before {
  background-image: url(../img/logo_footer.png);
}
.footer_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 18px;
  line-height: 125%;
}

.footer_content .list_footer li {
  white-space: nowrap;
  text-transform: uppercase;
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.footer_content .list_footer li::before {
  content: "━";
  color: #44c697;
  display: inline-block;
  margin-right: 5px;
}
.footer_content .contact_us_header h5,
.footer_content .contact_us_header .tel_numbers a {
  color: #ffffff;
}
.footer_content .location,
.footer_content .schedule {
  margin-top: 15px;
}
.footer_content .location svg,
.footer_content .schedule svg {
  vertical-align: middle;
}
.footer_content .tel_numbers_footer {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.footer_content .tel_numbers_footer a {
  color: #44c697;
  text-decoration: none;
}
.footer_content .tel_numbers_footer a + a {
  margin-left: 30px;
}
.footer_content .tel_numbers_footer a svg {
  vertical-align: middle;
}
.footer_content .contact_us_header {
  margin-top: 15px;
}
.container_footer .bottom_text {
  margin-top: 30px;
}
.container_footer .bottom_text p {
  margin-top: 15px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
.container_footer .bottom_text p svg {
  vertical-align: middle;
}
@media screen and (min-width: 576px) {
  .logo {
    font-size: 30px;
    margin-left: 113px;
  }

  .logo::before {
    top: -18px;
    left: -123px;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  .collapse_main,
  .collapse_products {
    width: 60%;
  }

  .name_categories {
    justify-content: space-around;
  }

  .w-xs {
    display: none;
  }

  .w-s {
    display: block;
    flex-basis: 100%;
  }

  .name_categories li + li + li + li {
    margin-top: 20px;
  }

  .name_categories li:nth-child(4) {
    margin-top: 0px;
  }

  .product_box li .info_product {
    font-size: 20px;
  }

  .product_box li .info_product span + span {
    font-size: 15px;
  }

  .container_about_us .content_box {
    height: auto;
    overflow: auto;
  }

  .image_about_wrap_about_us {
    background-position: 122px 0px;
  }
  .footer_content .list_footer li {
    font-weight: 700;
    font-size: 18px;
  }
  .container_footer .bottom_text {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .slider_our_advantages .card_box > div {
    min-width: min-content;
  }

  .name_categories {
    margin-top: 30px;
  }

  .product_box {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }

  .product_box li {
    flex: 1 0 40%;
    margin: 0 15px;
  }

  .product_box li + li + li {
    margin-top: 20px;
  }
  .feedback {
    padding-bottom: 80px;
  }
  .container_footer .bottom_text {
    margin-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  body {
    margin-top: 0px;
  }

  .header {
    padding: 25px 0 20px 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
  }

  .logo {
    font-size: 30px;
    margin-left: 109px;
    z-index: 20;
    align-self: flex-start;
    display: inline-block;
    order: 1;
  }

  .logo::before {
    top: -18px;
    left: -119px;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  .main_menu li::after {
    content: "";
    position: absolute;
    display: none;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #44c697;
  }

  .main_menu li:hover::after {
    display: block;
  }

  .main_menu li + li {
    margin-left: 15px;
  }

  .main_menu li {
    margin-top: 0px;
  }

  .collapse_main,
  .collapse_products {
    visibility: visible;
    position: relative;
    top: 0;
    background: #fff;
    z-index: 5;
    padding: 55px 0 40px 15px;
    width: 100%;
  }

  .collapse_main {
    right: 0;
    margin-top: -30px;
    padding: 0;
    order: 2;
    z-index: 20;
  }

  .main_menu ul {
    flex-direction: row;
    justify-content: end;
  }

  .contact_us_header {
    margin-top: 0;
    align-items: flex-end;
  }

  .burger_main_menu,
  .burger_menu_product {
    display: none;
  }

  .container_header {
    flex-direction: column;
    align-items: center;
  }

  .contact_us_header .tel_numbers {
    margin-top: 10px;
  }

  .collapse_products {
    left: 0;
    padding: 0;
    margin-top: 20px;
    order: 3;
    display: flex;
    justify-content: space-between;
  }

  .menu_furniture_products {
    flex-direction: row;
    align-items: center;
  }

  .menu_furniture_products li {
    margin-top: 0px;
  }

  .menu_furniture_products li + li {
    margin-left: 20px;
  }

  .collapse_products > div {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    align-items: center;
  }

  .collapse_products > div .order_call {
    margin-top: 0;
  }

  .slider_main_title {
    width: 250px;
  }

  .slider_main_title .slide h3 {
    font-size: 30px;
  }

  .slider_main_title .slide h4 {
    font-size: 20px;
    margin-top: 20px;
  }

  .slider_main_title .slide p {
    font-size: 15px;
    margin-top: 10px;
  }

  .slider_main_title .slide .btn_more_detail {
    font-size: 15px;
    margin-top: 15px;
  }

  .slider_main_title .number_slide {
    font-size: 15px;
    margin-top: 20px;
  }

  .slider_main_title .number_slide span + span {
    font-size: 12px;
  }

  .container_our_advantages h2,
  .container_product_categories h2,
  .about_us h2,
  .feedback h2 {
    font-size: 36px;
    background: linear-gradient(to right, #44c697 15px, transparent 0px);
  }

  .arrow_left:hover,
  .arrow_right:hover {
    background: #1e2e36;
  }

  .arrow_left:hover::before,
  .arrow_right:hover::before {
    border-color: #ffffff;
  }

  .slider_our_advantages .arrow_left:hover,
  .slider_our_advantages .arrow_right:hover {
    background: #ffffff;
  }

  .slider_our_advantages .arrow_left:hover::before,
  .slider_our_advantages .arrow_right:hover::before {
    border-color: #1e2e36;
  }

  .slider_our_advantages .content_slider p {
    display: none;
  }

  .slider_our_advantages .card_box > div:hover p {
    display: block;
  }

  .name_categories li:hover svg path {
    fill: #44c697;
  }

  .name_categories li {
    border-bottom: 3px solid transparent;
  }

  .name_categories li:hover {
    border-bottom: 3px solid #44c697;
  }

  .w-s {
    display: none;
  }

  .name_categories li + li + li + li {
    margin-top: 0px;
  }

  .product_box {
    margin-top: 60px;
  }

  .product_box li {
    flex: 1 1 30%;
    margin: 0 15px;
    position: relative;
  }

  .product_box li:nth-child(3) {
    margin-top: 0;
  }

  .product_box li + li + li + li {
    margin-top: 30px;
  }

  .product_box li img {
    display: block;
  }

  .product_box li .info_product {
    font-size: 18px;
  }

  .product_box li:hover .info_product span {
    color: #ffffff;
  }

  .product_box li:hover .info_product {
    background: #44c697;
    color: #ffffff;
  }

  .product_box li:hover {
    top: -25px;
  }

  .container_product_categories .btn_to_catalog {
    margin-top: 50px;
    font-size: 18px;
  }
  .image_about_wrap_feedback {
    background-position: -132px 0px;
  }
  .container_footer {
    padding: 50px 0 15px 0;
  }

  .container_footer .bottom_text {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1140px) {
  .header {
    padding: 30px 0 20px 0;
  }

  .logo {
    font-size: 36px;
    margin-left: 140px;
  }

  .logo::before {
    top: -18px;
    left: -140px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  .collapse_products > div .order_call {
    font-size: 18px;
    padding: 14px 46px;
  }

  .collapse_products div .basket {
    font-size: 18px;
  }

  .main_title {
    padding-bottom: 90px;
  }

  .slider_main_title .slide h3 {
    font-size: 30px;
  }

  .slider_main_title .slide h4 {
    font-size: 20px;
    margin-top: 30px;
  }

  .slider_main_title .slide p {
    font-size: 15px;
  }

  .slider_main_title .slide .btn_more_detail {
    font-size: 15px;
    margin-top: 19px;
  }

  .slider_main_title .number_slide {
    margin-top: 25px;
  }

  .container_our_advantages h2,
  .container_product_categories h2,
  .about_us h2,
  .feedback h2 {
    font-size: 48px;
    background: linear-gradient(to right, #44c697 20px, transparent 0px);
  }

  .slider_our_advantages .content_slider h4 {
    font-size: 28px;
  }

  .slider_our_advantages .content_slider p {
    font-size: 18px;
    margin-top: 18px;
  }

  .arrow_left,
  .arrow_right {
    width: 30px;
    height: 30px;
  }

  .arrow_left::before,
  .arrow_right::before {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 35%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }

  .arrow_right::before {
    left: 24%;
    transform: rotate(137deg);
    -webkit-transform: rotate(137deg);
    -moz-transform: rotate(137deg);
    -ms-transform: rotate(137deg);
    -o-transform: rotate(137deg);
  }

  .btn_slide {
    margin-top: 10px;
  }

  .name_categories {
    margin-top: 50px;
  }

  .product_box {
    margin-top: 40px;
  }

  .product_box li .info_product {
    font-size: 18px;
    padding: 15px;
  }

  .product_box li .info_product span + span {
    font-size: 14px;
  }

  .product_box li + li + li + li {
    margin-top: 50px;
  }

  .product_categories,
  .our_advantages,
  .about_us,
  .feedback {
    padding-top: 100px;
  }

  .image_about_wrap_about_us,
  .image_about_wrap_feedback {
    margin-top: 50px;
  }

  .image_about_wrap_about_us {
    padding: 100px 0 100px 0;
    background-position: 235px 0px;
  }

  .image_about_wrap_feedback {
    padding: 100px 0 119px 0;
    background-position: -235px 0px;
  }
  .container_about_us .content_box {
    padding: 50px 30px 50px 0;
  }

  .container_about_us .content_box span {
    font-size: 18px;
  }

  .container_feedback .content_box h5 {
    font-size: 36px;
  }
  .feedback {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1834px) {
  .logo {
    order: 3;
    align-self: center;
    margin-top: -47px;
  }

  .collapse_main {
    order: 1;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 0;
  }

  .collapse_products {
    margin-top: 50px;
  }

  .collapse_products {
    order: 2;
  }

  .contact_us_header {
    flex-direction: row;
    align-items: center;
  }

  .contact_us_header .tel_numbers {
    margin-left: 50px;
    margin-top: 0;
  }

  .contact_us_header .social_networks_header {
    margin-left: 10px;
    margin-top: 0;
  }

  .container_header {
    margin: 0 auto;
  }

  .collapse_products > div .order_call {
    margin-left: 30px;
  }

  .container_main_title,
  .container_product_categories,
  .container_our_advantages,
  .container_about_us,
  .container_feedback,
  .container_footer {
    margin: 0 auto;
  }

  .slider_main_title {
    width: 450px;
    padding: 100px 73px;
    border-left: 15px solid #44c697;
  }

  .main_title {
    padding-bottom: 115px;
  }

  .slider_main_title .slide h3 {
    font-size: 64px;
  }

  .slider_main_title .slide h4 {
    font-size: 36px;
    margin-top: 50px;
  }

  .slider_main_title .slide p {
    font-size: 36px;
    margin-top: 10px;
  }

  .slider_our_advantages .content_slider h4 {
    font-size: 36px;
  }

  .slider_main_title .slide .btn_more_detail {
    font-size: 18px;
    margin-top: 30px;
    padding: 14px 46px;
  }

  .slider_main_title .number_slide {
    margin-top: 50px;
    font-size: 36px;
  }

  .slider_main_title .number_slide span + span {
    font-size: 24px;
  }

  .product_box li .info_product {
    font-size: 24px;
  }

  .image_about_wrap_about_us {
    background-position: right;
    background-size: contain;
  }
  .image_about_wrap_feedback {
    background-position: left;
    background-size: contain;
  }
  .footer .container_desktop {
    width: 800px;
  }
  .footer {
    background: #1e2e36 url(../img/Rectangle_176.jpg) no-repeat 113% 0;
  }
}
