.logo{
    text-align:center;
    font-weight:500;
}

.logo a {
    text-decoration: none;
    color: #545454;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  font-family: system-ui;
}
.container {
  max-width: 142rem;
  margin: auto;
  padding: 0 2rem;
}
form input[type = submit] {
  -webkit-appearance: none;
}
form input {
  font-size: 16px;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0px 5px 15px rgba(147, 147, 147, 0.3);
}
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.6rem;
}
.logo img {
  max-height: 5rem;
  max-width: 10rem;
}
.nav a {
  text-decoration: none;
  color: #545454;
  margin-right: 2rem;
}
.header_tel a {
  font-weight: 600;
  text-decoration: none;
  color: var(--brand_collor);
}
.header_address {
  color: #545454;
}
.header_btn button {
  background-color: var(--brand_collor);
  color: white;
  padding: 1rem 4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.header_btn button:hover {
  background-color: var(--brand_collor);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.6rem;
  padding: 1rem 0 1rem;
  border-top: 1px solid #e5e5e5;
  
}
nav a {
  text-decoration: none;
  color: var(--brand_collor);
}
.burger {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 5;
  display: none;
}
.burger_line {
  height: 5px;
  width: 100%;
  background: var(--brand_collor);
  position: absolute;
  transition: 140ms;
  border-radius: 4px;
}
.burger_line_1 {
  top: 0;
}
.burger_line_2 {
  top: 0px;
  bottom: 0;
  left: 0;
  margin: auto;
}
.burger_line_3 {
  bottom: 0;
}
.burger_act .burger_line_1 {
  top: 15px;
  transform: rotate(45deg);
}
.burger_act .burger_line_2 {
  left: -100%;
}
.burger_act .burger_line_3 {
  bottom: 15px;
  transform: rotate(-45deg);
}
.mob_bg_burger {
  position: fixed;
  left: 110%;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 70%);
  width: 100%;
  height: 100vh;
  transition: 340ms;
}
.mob_bg_burger_act {
  left: 0%;
}
.global_nav {
  display: none;
}
/* Header */

/* Main */

.main {
  background-image: url("/img/Xiaomi/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 60rem;
  display: flex;
  align-items: center;
}
.main .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem 2rem;
  column-gap: 5rem;
}
.main_right img {
    width: 100%;
    max-height: 40rem;
    max-width: 50rem;
    padding: 1rem;
}
.main_title {
  font-size: 4.2rem;
  color: white;
  margin-bottom: 3rem;
  /* max-width: 50rem; */
}
.main_title {
    text-transform: uppercase;
}
.main_subtitle {
  font-size: 2rem;
  color: white;
  max-width: 48rem;
  margin-bottom: 5rem;
  font-weight: 300;
}
.main_advantages {
  display: flex;
  align-items: flex-start;
}
.main_advantages_left {
  display: flex;
  flex-wrap: wrap;
  height: 14rem;
  width: 15rem;
  margin-right: 1rem;
}
.main_advantages_right {
  font-size: 2rem;
  color: white;
}
.main_advantages_right_item {
  margin-bottom: 1rem;
  font-weight: 500;
}
.main_advantages_right_item:last-child {
  margin-bottom: 0rem;
}
.main_advantages_right_item span {
  margin-right: 0.4rem;
  font-weight: bolder;
}
.main_advantages_left img {
  width: 6.5rem;
  margin-right: 1rem;
}
.main_model_block .main_right img {
    width: auto;
    height: auto;
    max-height: 30rem;
    max-width: 30rem;
    padding: 0rem;
    margin: auto;
}
.main_model_block .main_right {
    border-radius: 100rem;
    background: white;
    width: 50rem;
    height: 50rem;
    min-width: 50rem;
    min-height: 50rem;
    display: flex;
    border: 4px solid var(--brand_collor);
    position: relative;
}
.main_right_promo_monel {
    position: absolute;
    right: 0;
    top: 0;
    width: 14rem;
    height: 14rem;
}
.main_right_promo_monel img {
    width: 14rem !important;
    height: 14rem !important;
}
.main_right_promo_monel_txt {
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -4px;
    right: 0;
    margin: auto;
    font-size: 2rem;
    color: white;
    text-align: center;
    height: fit-content;
    transform: rotate(-32deg);
}
.main_right_promo_monel_txt span {
    font-weight: 800;
}
.main_category_block .main_right {
    position: relative;
}
.content_block {
    padding: 5rem 1rem 1rem;
    max-width: 100rem;
}
.content_title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.content_title:first-child {
    margin-top: 0;
}
.content_txt {
    font-size: 1.4rem;
    font-weight: 100;
}
/* Main */

/* Advantages */

.advantages_title {
  text-align: center;
  font-size: 3rem;
  margin: 6rem 0 3rem;
}
.advantages_block_item svg {
  /* max-height: 5rem; */
  height: 6rem;
  width: 6rem;
  fill: var(--brand_collor);
  transition: .3s;
}
.advantages_block_item_title {
  font-size: 1.7rem;
  font-weight: 600;
}
.advantages_block_item_txt {
  font-size: 1.4rem;
  color: #707070;
}
.advantages_block_items {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  /* flex-wrap: wrap; */
  text-align: center;
  justify-items: center;
}
.advantages_block_item {
  /* width: 26rem; */
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-items: center;
	border: 1px solid #e8e8e8;
	padding: 1rem;
	border-radius: 10px;
	transition: .3s;
}

.advantages_block_item:hover {
	border: 1px solid var(--hover_color);
}
/* Advantages */

/* Poisk */
.poisk {
  background: var(--brand_collor);
  margin: 6rem 0;
  padding-bottom: 7rem;
}
.poisk .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.poisk_title {
  text-align: center;
  font-size: 3rem;
  margin: 6rem 0 4rem;
  color: white;
}
.poisk .select2 {
  width: 100% !important;
  max-width: 64rem !important;
}
.select2-container {
  font-size: 1.4rem;
}
.select2-search__field {
  outline: none;
}
/* Poisk */

/* Modal */
.modal_bg {
  background: rgb(0 0 0 / 68%);
  position: fixed;
  /* top: 120%; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: .3s;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal_active .modal_bg {
  /* top: 0%; */
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
form.modal_form {
  position: fixed;
  top: 0%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: white;
  width: 30rem;
  height: 28rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .3s;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal_active .modal_form {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}
.modal_form_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.modal_form_input {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.modal_form label {
  width: 22rem;
  display: flex;
  align-items: center;
}
.modal_form label input {
  height: 1.6rem;
  width: 1.6rem;
  margin-right: 0.4rem;
  margin-bottom: -3px;
}
.modal_form_input input,.modal_form_input textarea {
  width: 22rem;
  outline: none;
  padding: 1rem;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #b9b9b9;
}
.modal_form_input input:last-child {
  margin-bottom: 0rem;
  background-color: var(--brand_collor);
  color: white;
  cursor: pointer;
}
.label_txt {
  font-size: 1.3rem;
}
.closed_modal {
  position: absolute;
  top: -10px;
  right: 2px;
  cursor: pointer;
  font-size: 5rem;
  font-weight: bolder;
  transform: rotate(45deg);
}
/* Modal */

/* Tabs */
.tabs {
    background: var(--brand_collor);
    padding: 6rem 0;
    margin: 6rem 0;
}
#tabs {
    list-style: none;
    display: flex;
    justify-content: center;
}

#tabs li {

}

#tabs a {
    text-decoration: none;
    display: block;
    padding: .6rem 3rem;
    background: var(--brand_collor);
    border: 2px solid white;
    margin-right: 1rem;
    border-radius: 4px;
    font-size: 1.4rem;
    color: white;
}

#tabs a:hover {

}

#tabs a:focus {
  outline: 0;
}

#tabs #current a {
  background: white;
  color: black;
}
div#content {
    border-radius: 9px;
    width: 100%;
    max-width: 74rem;
    margin: auto;
    margin-top: 3rem;   
}
#content div {
  color: white;
}
.curier_block_left img {
    height: 100%;
    width: auto;
}
div#tab1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.curier_block_left img {
  max-height: 24rem;
}
.curier_block_right .modal_form_title {
  color: white;
}
.curier_block_right .modal_form_input input {
  background: none;
  color: white;
  border: 2px solid white;
}
.curier_block_right .modal_form_input input::placeholder {
  color: white;
}
.curier_block_right .modal_form_input input:last-child {
  margin-bottom: 0rem;
  background-color: white;
  color: black;
  cursor: pointer;
}
.curier_block_right label {
  display: flex;
  align-items: center;
}
.curier_block_right label input {
  margin-top: 3px;
  margin-right: 4px;
}
.curier_block_right .label_txt a {
  color: white;
}
.tabs .modal_form_input input {
  width: 32rem;
}

.curier_block_right .modal_form_input input.form_bnt_preload{
    background-color: transparent!important;
}

.form_bnt_preload {
    background-image: url('/assets/templates/img/rolling_small.svg')!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    color: transparent!important;
}



/* Tabs */

/* Category */

.category_title {
  text-align: center;
  font-size: 3rem;
  margin: 6rem 0 2rem;
}
.category_item {
  border-radius: 11px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow:  4px 4px 4px #dbdbdb, -4px -4px 4px #ffffff;
  text-align: center;
  padding: 2rem;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #545454;
  transform: scale(1);
  transition: 140ms;
}
.category_item:hover img {
  transform: scale(1.03);
}
.category_item img {
  max-height: 16rem;
  max-width: 100%;
  width: auto;
  transition: 140ms;
  padding: 1rem;
}
.category_item_title {
  font-size: 1.6rem;
}
.category_items {
  display: grid;
}
.category_items_xiaomy {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4"
                       "c_i_5 c_i_6 c_i_7 c_i_8";
}
.category_items_samsung {
  grid-template-areas: "c_i_2 c_i_1 c_i_3 c_i_4"
                       "c_i_6 c_i_1 c_i_5 c_i_7"
                       "c_i_8 c_i_9 c_i_10 c_i_11";
}
.category_items_none {
  /* grid-template-areas: "c_i_2 c_i_1 c_i_3 c_i_4"
                       "c_i_6 c_i_1 c_i_5 c_i_7"
                       "c_i_8 c_i_9 c_i_10 c_i_11"; */
 	display: flex;
 	flex-wrap: wrap;
}

.category_items_none .category_item {
	width: calc(20% - 4rem);
	height: auto;
}

.category_items_samsung .category_item_1 img {
  max-height: 42rem;
}
.category_items_samsung .category_item_5 img {
  max-height: 14rem;
}
.category_items_msi {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_6"
                       "c_i_1 c_i_4 c_i_5 c_i_6";
}
.category_items_msi img {
  max-height: 16rem;
}
.category_items_msi .category_item_1 img,
.category_items_msi .category_item_6 img {
  max-height: 40rem;
}
.category_items_asus {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4"
                       "c_i_1 c_i_6 c_i_3 c_i_8"
                       "c_i_5 c_i_6 c_i_7 c_i_8";
  grid-template-rows: repeat(auto-fill, [col-start] minmax(100px, 1fr) [col-end]);
}
.category_items_asus .category_item img {
  max-height: 14rem;
}
.category_items_asus .category_item_1 img,
.category_items_asus .category_item_3 img,
.category_items_asus .category_item_6 img,
.category_items_asus .category_item_8 img {
  max-height: 24rem;
}

.category_items_acer {
  grid-template-areas: "c_i_1 c_i_2 c_i_3"
                       "c_i_5 c_i_2 c_i_4";
}
.category_items_acer .category_item_2 img {
  max-height: 40rem;
}

.category_items_boshch {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4";
}
.category_items_dell {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_6"
                       "c_i_5 c_i_2 c_i_4 c_i_6";
}
.category_items_dell .category_item_2 img,
.category_items_dell .category_item_6 img {
  max-height: 40rem;
}

.category_items_gigabyte {
  grid-template-areas: "c_i_1 c_i_2 c_i_3"
                       "c_i_1 c_i_4 c_i_5";
}
.category_items_gigabyte .category_item img {
  max-height: 13rem;
}
.category_items_gigabyte .category_item_1 img {
  max-height: 35rem;
}

.category_items_honor {
  grid-template-areas: "c_i_1 c_i_2 c_i_3";
}
.category_items_philips {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4";
}
.category_items_sony {
  grid-template-areas: "c_i_1 c_i_2 c_i_3";
}
.category_items_miele {
  grid-template-areas: "c_i_1 c_i_2 c_i_3";
}
.category_items_indesit {
  grid-template-areas: "c_i_1 c_i_2 c_i_3";
}
.category_items_huawei {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4 c_i_5";
}
.category_items_hp {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4"
                       "c_i_5 c_i_2 c_i_6 c_i_7";
}
.category_items_hp .category_item_2 img {
  max-height: 40rem;
}

.category_items_lenovo {
  grid-template-areas: "c_i_1 c_i_2 c_i_3"
                       "c_i_4 c_i_2 c_i_5";
}
.category_items_lenovo .category_item_2 img {
  max-height: 40rem;
}

.category_items_lg {
  grid-template-areas: "c_i_1 c_i_2 c_i_3 c_i_4"
                       "c_i_5 c_i_6 c_i_7 c_i_8";
}


.category_item_1 {
  grid-area: c_i_1;
}
.category_item_2 {
  grid-area: c_i_2;
}

.category_item_3 {
  grid-area: c_i_3;
}

.category_item_4 {
  grid-area: c_i_4;
}

.category_item_5 {
  grid-area: c_i_5;
}

.category_item_6 {
  grid-area: c_i_6;
}

.category_item_7 {
  grid-area: c_i_7;
}

.category_item_8 {
  grid-area: c_i_8;
}


/* Category */

/* Sertif */

.certif_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.certif_left {
  max-width: 60rem;
  margin-right: 4rem;
}
.certif_left_title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.certif_left_txt {
  font-size: 1.8rem;
  font-weight: 100;
  color: #686868;
}
.certif_right img:first-child {
  margin-right: 2rem;
}
.certif_right img {
  max-width: 20rem;
}
.certif_right {
  display: flex;
}
.certif {
  padding: 0 0 4rem;
}
/* Sertif */

/* form */

.form {
  background: rgb(215,215,215);
  background: linear-gradient(343deg, rgba(215,215,215,1) 0%, rgba(52,52,52,1) 100%);
  padding: 4rem 0;
  margin: 4rem 0 0;
}
.form_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.form_block_right img {
  max-height: 40rem;
  max-width: 40rem;

}

.form_block_right.price img{
    width: 30rem;
    height: 30rem;
}


.form form {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background-color: white;
  border-radius: 4px;
  min-width: 42rem;
}
.form_title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.form_title_txt {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.form label {
  display: flex;
  align-items: center;
}
.form label input {
  margin-right: .4rem;
  margin-bottom: -3px;
}
.form form input[type = text],
.form form input[type = tel],
.form form input[type = submit]  {
  outline: none;
  padding: 1rem;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #b9b9b9;
}
.form form input[type = submit] {
  cursor: pointer;
  background-color: var(--brand_collor);
  color: white;
}
/* form */


/* review */
.rev_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 3rem;
  font-weight: 500;
  color: #9d9d9d;
}
.rev_bottom_text {
  text-align: left;
  padding: 1rem 3rem 0;
  font-size: 14px;
  color: #858585;
}
.carouselAnt_block_item:first-child {
  border-right: 1px solid #dadada;
}
.carouselAnt_block_item:last-child {
  border-left: 1px solid #dadada;
}
.car_block_item_top img {
 max-height: 5rem;  
}
.car_block_item_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.car_block_item_top_right {
  display: flex;
  align-items: center;
}
.car_b_i_t_r_rating {
  font-size: 3rem;
  margin-right: 1rem;
  font-family: system-ui;
  font-weight: 700;
  color: #005aae;
}
.car_b_i_t_r_star {
  font-size: 4rem;
  color: #f7e50e;
  margin-top: -8px;
}


.rev_items_marg h2 {
  text-align: center;
  font-size: 3rem;
  margin: 6rem 0 4rem;
  font-weight: 400;
}
/* review */
/* Carousel */
.carouselAnt_block_item {
  background-color: white;
}
.carouselAnt_block_item {
  border: 1px solid #dadada;
}

.carouselAnt_block_item:nth-child(3) {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
/*Отзывы карусель*/
.reviews_block {
  background: var(--brend-color);
  padding-bottom: 3rem;
}
.review_body {
  text-align: left;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-left: 2rem;
  color: var(--color-b);
  width: 100%;
}
#carouselAntOtzovik svg {
  color: var(--color-b);
}
#carouselAntOtzovik .ant-carousel-element {
  flex-flow: row;
  max-width: 108rem;
  width: 100%;
  padding: 2rem 7rem 2rem;
}
#carouselAntOtzovik .ant-carousel-element img {
  height: 13.5rem;
}
.review_name {
  font-size: 2.4rem;
  padding-bottom: 2rem;
}
.review_text {
  font-size: 1.8rem;
  font-weight: 300;
}

/*Карусель с типом техники*/
.ant-carousel {
  margin: 1rem auto;
  max-width: 28rem;
  background: blue;
  width: auto;
  position: relative;
}
.carouselAnt_block_all {
    justify-content: center;
    background: white;
    z-index: 1;
    position: relative;
    border-radius: 5px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.carouselAnt_block_item {
    margin: 2rem;
    padding: 2rem;
    border-radius: 8px;
}
/* General styles */

.ant-carousel-hider {
  overflow: hidden;
}

.ant-carousel-list {
  width: auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
}

.ant-carousel-element {
  display: flex;
  flex-flow: column;
  flex: 0 0 auto;
  font-size: 1.6rem;
  margin: 0px 0px;
  width: 28rem;
  height: 12rem;
  text-align: center;
  align-items: center;
  background: white;
}

/* Navigation item styles */
div.ant-carousel-arrow-left,
div.ant-carousel-arrow-right {
  width: 2.2rem;
  height: 4rem;
  position: absolute;
  cursor: pointer;
  opacity: 0.1;
  z-index: 1;
}
div.ant-carousel-arrow-left img,
div.ant-carousel-arrow-right img {
  width: 4rem;
  height: 4rem;
}

div.ant-carousel-arrow-left {
  left: 0rem;
  top: 0rem;
  bottom: 0rem;
  margin: auto;
  display: block;
  width: 1rem;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

div.ant-carousel-arrow-right {
  right: 0rem;
  top: 0rem;
  bottom: 0rem;
  margin: auto;
  display: block;
  width: 1rem;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: black;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

div.ant-carousel-arrow-left:hover {
  opacity: .5;
}

div.ant-carousel-arrow-right:hover {
  opacity: .5;
}

div.ant-carousel-dots {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -3rem;
  z-index: 30;
  text-align: center;
}

span.ant-dot {
  width: 1rem;
  height: 1rem;
  margin: 0.5rem 0.7rem;
  padding: 0;
  display: inline-block;
  background-color: #bbb;
  border-radius: 0.5rem;
  cursor: pointer;
}

.ant-carousel-element img {
  height: 9.5rem;
}
.ant-carousel-element a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 400;
}
.rev_bg {
  margin-bottom: 5rem;
}
/* Carousel */


/* Vopros */

.bg_vopros {
  background: var(--brand_collor);
  padding: 5rem 0;
}
.bg_vopros .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.vopros_right {
  margin-left: 3rem;
}
.vopros_right_block {
  width: 32rem;
  background: white;
  text-align: center;
  padding: 2.1rem;
  border-radius: 4px;
}
.vopros_right_title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.vopros_right_txt {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #767676;
}
.vopros_left_element {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 93rem;
  margin-right: 2rem;
  cursor: pointer;
  -ms-user-select: none; 
-moz-user-select: none; 
-webkit-user-select: none; 
user-select: none; 
}
.vopros_left_element_title {
  font-size: 1.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.arrow_quest {
  font-size: 1.4rem;
  margin-top: 2px;
  transition: 240ms;
  transform: rotate(0deg);
  color: var(--brand_collor);
}
.vopros_left_element_txt {
  font-size: 1.4rem;
  margin-top: 0rem;
  max-height: 0rem;
  color: #767676;
  overflow: hidden;
  transition: 240ms;
}
span.vopros_l_e_t_spn {
  color: var(--brand_collor);
  font-size: 2rem;
  margin-right: 0.5rem;
  font-family: monospace;
  font-weight: bolder;
}
.vopros_right_block svg {
  width: 5rem;
  margin-bottom: 2rem;
  color: var(--brand_collor);
}
.vopros_right_btn .modal_form_input input,.vopros_right_btn .modal_form_input textarea {
  margin: auto;
}
.vopros_right_btn label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vopros_right_btn label input {
  margin-top: 3px;
  margin-right: 4px;
}
.vopros_right_btn .modal_form_input input,.vopros_right_btn .modal_form_input textarea {
  margin-bottom: 1rem;
  font-family: inherit;
}
.vopros_right_btn .modal_form_input {
  margin-bottom: 0;
}
/* Vopros */
/* Model block */
.model_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.model_items a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    width: 22rem;
    margin: 2rem;
    padding: 2rem;
    border-radius: 5px;
    background: #ffffff;
    box-shadow:  5px 5px 10px #dedede,
             -5px -5px 10px #ffffff;
    transform: scale(1);
    transition: 220ms;
}
.model_items a:hover {
    transform: scale(.98);
    box-shadow: 2px 2px 4px #dedede, -2px -2px 2px #ffffff;
}
.block_title_model h2 {
    text-align: center;
    font-size: 3rem;
    margin: 6rem 0 4rem;
    font-weight: 400;
}
.model_items img {
    width: auto;
    height: auto;
    max-width: 20rem;
    max-height: 20rem;
}
span.model_txt {
    font-size: 1.6rem;
    margin-top: 1rem;
}

/* Model block */

/* Footer */
.footer_items_all {
    background: var(--brand_collor);
}
.footer_items_block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    justify-content: space-between;
    color: white;
    padding-top: 1rem;
    border-top: 1px solid;
    flex-wrap: wrap;
}
.footer_item_title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
    margin-top: 2rem;
}
.footer_item_title:first-child {
    margin-top: 0rem;
}
.footer_item * {
    margin-bottom: .3rem;
    color: white;
}

.copir {
    font-size: 1.4rem;
    padding: 1rem 0;
    border-top: 1px solid;
    color: white;
    text-align: center;
}
.copir a {
    color: white;
}
.footer_item {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
}
.footer_items {
    min-width: 26rem;
}
.footer_item *:last-child {
    margin-bottom: 2rem;
}
/* Footer */

/* Map */
.map_contacts_title {
    font-size: 4rem;
    text-align: center;
    margin: 5rem 0 2rem;
}
.map_contacts_items {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 4rem;
    text-align: center;
    flex-wrap: wrap
}
.map_contacts_item_title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.map_contacts_item_txt {
    font-size: 1.6rem;
}
.map_contacts_item_txt a {
    color: darkblue;
}
.map_contacts_item {
    padding: 2rem;
    /* min-width: 27rem; */
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    margin: 1rem;
    min-height: 125px;
}

#map {
    border-radius: 15px;
    overflow: hidden;
}
/* Map */
/* Price */
.price_items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.price_item {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 32rem;
    min-height: 20rem;
    margin: 2rem;
    padding: 2rem;
    border: 3px dashed #858585;;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 5px 5px 10px #dedede, -5px -5px 10px #ffffff;
    position: relative;
}
.price_button button {
    background-color: var(--brand_collor);
    color: white;
    padding: 1rem 4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.img_ico_top {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 60px;
    height: 60px;
    border-bottom: 60px solid #eee0;
    border-left: 60px solid var(--brand_collor);
    border-radius: 33px;
}
.price_title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 0 3rem;
    text-align: center;
}
.price_items_marg h2 {
    text-align: center;
    font-size: 3rem;
    margin: 6rem 0 4rem;
    font-weight: 400;
}
.img_ico_top img {
    width: 40px;
    position: absolute;
    left: -50px;
    top: 10px;
}
.price_money {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
/* Price */

.price_inner {
    display: flex;
    flex-direction: column;
    max-width: 930px;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    box-shadow:  41px 41px 82px #d9d9d9,
             -41px -41px 82px #ffffff;
    
}

.price_header {
    display: flex;
    background: var(--brand_collor);
    justify-content: space-between;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 10px 10px 0 0;
    column-gap: 10px;
}


.price_header-item {
    flex-grow: 1
}

.price_header-item:first-child {
    width: 17%;
}

.price_header-item:nth-child(2) {
    width: 1%;
}
.price_header-item:nth-child(3) {
    width: 1%;
}
.price_header-item:nth-child(4) {
    width: 20%;
}

.price_list-row {
    display: flex;
    column-gap: 10px;
    padding: 12px 20px;
    justify-content: space-between;
    transition: .3s;
}



.price_list-row:nth-child(even) {
    background: #fff;
}

.price_list-row:nth-child(odd) {
    background: #f4f4f4;
}

.price_list-row:last-child {
    border-radius: 0 0 10px 10px;
}

.price_list-row:hover {
    background: #e6e6e6;
}


.price_list-item {
    display: flex;
    font-size: 1.6rem;
    align-items: center;
    column-gap: 10px;
    flex: 1;
}

.price_list-item:first-child {
    flex: 2
}

.price_list-item:nth-child(3) {
    white-space: nowrap;
}

.price_list-item:not(:nth-child(4)) {
    border-right: 1px solid #d2d2d2;
}

.price_list-item:last-child {
    border: none;
}

.price_list-item button {
    border: 2px solid var(--brand_collor);
    color: #000;
    padding: 1rem 4rem;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
    background: #fff;
}

.price_list-item button:hover {
    color: #fff;
    background: var(--brand_collor);
    
}

.item-icon svg {
    width: 50px;
    height: 50px;
    color: var(--brand_collor);
    fill: transparent;
}

.price_bottom {
    background: var(--brand_collor);
    padding: 1rem 2rem;
    color: #fff;
    transition: .3s;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
    margin: 15px auto;
    display: block;
}

.price_bottom:hover {
    border: 2px solid var(--brand_collor);
    background: #fff;
    color: #000;
}


.stock_pulse {
    background: hsla(167 , 95% , 40%,.9);
    color: #fff;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.6rem;
   
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    /* box-shadow:  8px 8px 15px #d9d9d9,
             -8px -8px 15px #ffffff; */
    box-shadow: 0px 0px 15px hsla(167 , 95% , 40%,.5); 
    animation: pulse 2s ease infinite;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* @keyframes pulse {   
  0% {
   transform: scale(.9);

  }   
  70% {     
       transform: scale(1);
    filter: drop-shadow(0px 0px 15px 15px hsla(167 , 95% , 40%,.7)); 
  } 
  100% {
       transform: scale(.9);
    filter: drop-shadow(0px 0px 0px 0px hsla(167 , 95% , 40%,.3)); 
   }
} */

@keyframes pulse {
  0% {
   transform: scale(.9);
  }
  70% {
    transform: scale(1);
   /*  background: hsla(167 , 95% , 40%,1); */
    box-shadow: 0 0 10px 15px hsla(167 , 95% , 40%,.3);
  }
    100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 hsla(167 , 95% , 40%,.3);
  }
}

.stock_pulse svg {
    fill: #fff;
    height: 30px;
    width: 30px;
    /* animation: pulse 1.5s ease infinite; */
    /* filter: drop-shadow(0px 0px 5px hsla(167 , 95% , 40%,.3));  */
}

.inline_input-title {
	color: #fff;
	font-size: 22px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.inline_input input[type=tel], .inline_input input[name=message]{
	padding: 1rem 1.8rem;
	border-radius: 4px;
	border: none;
	margin-right: 7px;
}

.form_bnt_error {
    border: 2px solid red !important;
}
.inline_input input[type=submit] {
	padding: 1rem 1.2rem;
	border-radius: 4px;
	border: none;
	background-color: var(--brand_collor);
    color: #fff;
}

.inline_input label {
    display: flex;
    column-gap: 7px;
    margin-top: 5px;
}

.inline_input label a{
    color: #fff;
}

.simplesearch-result {
    display: flex;
    flex-direction: column;
    flex: 155px;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
    border:1px solid transparent;
    border-radius: 10px;
    transition: .3s;
    max-width: 180px;
}

.simplesearch-result:hover {
    /* border: 1px solid #e3e3e3; */
    box-shadow:  10px 10px 20px #d9d9d9,
             -10px -10px 20px #ffffff;
}

.search_img_inner {
    min-height: 250px;
}

.simplesearch-result img{
    max-width: 100%;
    max-height: 250px;
}

.search_choose {
    padding: .8rem 1.2rem;
    background: #fff;
    border: 1px solid var(--brand_collor);
    text-decoration:none;
    color: #000;
    transition: .3s;
    border-radius: 20px;
    margin-top: 5px;
    
}

.search_choose:hover {
    background: var(--brand_collor);;
    color: #fff;
}

.search_model_title {
    text-decoration: none;
    color: #000;
}

.search_model_title:hover {
    text-decoration: underline;
}


.simplesearch-results-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    margin: 20px 0;
}

.search_results {
    font-size: 1.6rem;
    margin: 30px auto;
    max-width: 100rem;
}

.simplesearch-search-form fieldset {
    border: none;
    position: relative;
}

.search_title {
	text-align: left;
	font-size: 3.5rem;
	margin-bottom: 2rem;
}

.simplesearch-search-form {
	max-width: 42rem;
	margin: 6rem auto;
}

#search {
	padding: 1rem 2rem;
	border: 2px solid var(--brand_collor);
	border-radius: 30px;
	outline: none;
	color: #3e3e3e;
	font-size: 1.7rem;
	position: relative;
	width: 100%;
}

.simplesearch-search-form input[type="submit"] {
	position: absolute;
	right: 0;
	display: block;
	top: 0;
	background: var(--brand_collor);
	border: none;
	border-radius: 30px;
	padding: 1.2rem 2.5rem;
	font-size: 1.7rem;
	color: #fff;
}

.search_pages {
	margin-top: 1.5rem;
	display: flex;
	column-gap: 7px;
	font-size: 1.5rem;
}

.simplesearch-page {
	padding: 0.8rem 1.4rem;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--brand_collor);
	cursor: pointer;
	width: 40px;
	height: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}

.simplesearch-page a {
    color: #000;
    text-decoration: none;
}

.simplesearch-page:hover {
    background: var(--brand_collor);  
    color: #fff;
}

.simplesearch-page:hover a{
    color: #fff;
}

.simplesearch-page.simplesearch-current-page {
	background: var(--brand_collor);
	color: #fff;
}

.simplesearch-paging {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	margin-top: 3rem;
	border-top: 1px solid #dedede;
}


.main_form_arrow {
	width: 65px;
	height: 70px;
	border: 3px dashed hsla(167 , 95% , 35%,.5);
	border-radius: 5px;
	padding: 7px;
	margin: 5px 0 0 7.5rem;
	display: flex;
	align-items: center;
}

.main_form_arrow svg {
    max-width: 100%;
    height: auto;
    max-height: 65px;
    fill: hsl(167 , 97% , 35%);
    animation: right 1.4s ease infinite;
    filter: drop-shadow(0px 0px 5px hsla(167 , 95% , 40%,.6));

    
}

@keyframes right {
  0% {
   transform: translateX(-3px)
  }
  70% {
    transform: translateX(19px)
  }
    100% {
    transform: translateX(-3px)
  }
}

.inline_input {
	display: flex;
	flex-wrap: wrap;
	margin: 2rem 0;
	/* align-items: center; */
	column-gap: 24px;
}

.about-text__section {
	margin: 5rem 0;
}

.block_title h2 {
	text-align: center;
	font-size: 3rem;
	margin: 3rem 0 2rem;
	font-weight: 400;
}

.about-text__wrapper {
	background: #FFF;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	box-shadow:  30px 30px 50px #dedede,
             -30px -30px 50px #ffffff;
	padding: 5rem;
	font-size: 1.8rem;
	text-align: justify;
	max-width: 100rem;
	margin: 0 auto;
	
}

.about-text__section .container {
	padding: 0 2rem;
}

.about-text__wrapper p:not(:last-child) {
	margin-bottom: 1rem;
}

.footer_item_img {
	margin-top: 1rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3,1fr);
}

.footer_item_img img {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	max-width: 4rem;
}

.footer_payments {
	min-width: auto;
}

.service .main_right img {
	max-width: 70rem;
}

.service .form_block_right img {
	max-width: 60rem;
}

.main_price .main_title {
	margin: 0;
}

.price-page .main_image {
	text-align: center;
}

.price-page .main_image img {
	width: 100%;
	max-height: 50rem;
	max-width: 50rem;
	padding: 1rem;
	height: 10rem;
}

.price-page .main {
	min-height: auto;
}

.garant_sert_block {
	font-size: 1.6rem;
}

.advantages_block_item:hover svg {
	fill: var(--hover_color);
}

.inline_main_form input[type="submit"] {
	transition: .3s;
	cursor: pointer;
}

.service .inline_main_form input[type="submit"]:hover {
	background: hsla(167 , 95% , 60%,.9);
	color: #111;
}

.header_btn .modal_call, .service .form_block_left input[type="submit"], .service .vopros_right_btn input[type="submit"]{
	transition: .3s;
}

.service .header_btn .modal_call:hover, .service .form_block_left input[type="submit"]:hover, .service .vopros_right_btn input[type="submit"]:hover {
	background: var(--hover_color);
	color: #111;
}

#mapFooter {
	height: 260px;
	width: 100%;
	min-width: 32rem;
	border-radius: 5px;
	overflow: hidden;
}

.work-stages__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.work-stages {
	margin: 7rem 0 5rem;
}

.work-stages .block_title h2 {
	margin-bottom: 4rem;
}

.stage-item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: calc(20% - 2rem);
	align-items: center;
	background: #f8f8f8;
	border-radius: 10px;
	padding: 2rem;
	outline: 2px solid transparent;
	transition: .3s;
	position: relative;
}

.stage-item:not(:last-child):after {
	content: '';
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	background-color: #f8f8f8;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 6.35 6.35' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cpath d='M2.258 1.315a.265.265 0 0 0-.174.469L3.703 3.17l-1.62 1.386a.265.265 0 1 0 .345.4L4.28 3.373a.265.265 0 0 0 0-.403L2.428 1.382a.265.265 0 0 0-.17-.067z' data-original='%23000000'/%3E%3C/svg%3E");
	background-size: 80%;
	background-position: center;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: 3px solid #FFF;
	right: -30px;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
}

.stage-item__title {
	font-size: 1.8rem;
	font-weight: 600;
}

.stage-item__text {
	font-size: 1.6rem;
}

.stage-item__icon {
	background: #fff;
	padding: 1rem;
	margin-top: -4rem;
	border-radius: 10px;
	border: 1px solid #eee;
	transition: .3s;
	will-change: transform;
}

.stage-item__icon svg {
	width: 60px;
	height: 60px;
}

.stage-item:hover {
	outline: 2px solid #dbdbdb;
}

.stage-item:hover .stage-item__icon {
	transform: translateY(-10px);
}

.stage-item:not(:last-child):after:hover {
	border: 3px solid #dbdbdb;
}

.index_page .container {
	display: block;
}

.index_page .main-content {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 3rem 2rem;
	column-gap: 5rem;
}

.index_page .main_title {
	margin-bottom: 1rem;
}

.index_page .main_subtitle {
	margin-bottom: 1rem;
}

.service .main_price .container {
	display: flex;
	flex-direction: column;
}

.service .main_image img {
	height: auto;
}

.service .form_block_right.price img {
	height: auto;
	width: auto;
}

.footer_item.small-text {
	margin-top: 1rem;
}

.map_contacts_item_txt span {
	display: block;
}

.index_page .main-content-bt {
	justify-content: flex-start;
}

.nav-bt, .nav-prom {
	flex-wrap: wrap;
	gap: 17px;
  row-gap: 17px;
	justify-content: flex-start;
	padding: 1.5rem 0;
}

.nav-prom {
	justify-content: space-between;
}

.submenu__item {
	position: relative;
}

.submenu__item:hover .submenu__content {
	visibility: visible;
	opacity: 1;
}

.submenu__title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.submenu__title:after {
	content: '';
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	transform: rotate(45deg);
	height: 8px;
	width: 8px;
}

.submenu__content {
	background: #FFF;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 10px;
	/* border-radius: 5px; */
	min-width: 240px;
	margin-top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.category_items-bt {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.more-category {
	flex-direction: column;
	display: flex;
	align-items: center;
}

.category-bt .category_item {
	margin: 0;
	width: calc(25% - 20px);
	gap: 15px;
}

.category-prom .category_item {
	margin: 0;
	flex: 1;
	gap: 15px;
}

.category-bt .category_item img {
	height: 100%;
	max-height: 17rem;
	padding: 0;
}

.category-bt .category_item_title {
	font-weight: 600;
	font-size: 1.8rem;
}

@media (max-width: 1240px) {
  .main_advantages_left img {
    width: 5.5rem;
  }
  .main_advantages_left {
    height: 13rem;
  }
  .main_advantages_left img {
    width: 4.8rem;
  }
  .main_advantages_right_item {
    font-size: 1.8rem;
  }
  .header_address {
    display: none;
  }
  .advantages_block_items {
    align-items: stretch;
  }
  nav {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    top: 0;
    bottom: 0;
    left: -110%;
    background: white;
    min-width: 28rem;
    padding: 3rem;
    transition: 340ms;
  }
  .nav_act {
    left: 0%;
  }
  nav a {
    color: black;
  }
  .nav a {
    margin-right: 1rem;
  }
  .burger {
    display: block;
  }
  .service .main .container, .index_page .main-content {
  	flex-direction: column;
	}
	
	.category_items_none .category_item {
  	width: calc(20% - 2rem);
		height: auto;
		margin: 1rem;
  }
  
  nav, .nav-bt, .nav-prom {
  	gap: 10px;
  	padding: 1.5rem;
  	flex-wrap: nowrap;
  	overflow-y: scroll;
  }
  
  
	
}

@media (max-width: 1023px) {
  .main .container {
    flex-direction: column;
  }
  .main_title {
    font-size: 3.2rem;
    text-align: center;
  }
  .main_left {
    margin-top: 3rem;
  }
  .main_subtitle {
    text-align: center;
    margin: auto;
    margin-bottom: 4rem;
  }
  .main_advantages {
    align-items: center;
    justify-content: center;
  }
  .main_right img {
    max-height: 35rem;
    margin-top: 4rem;
  }
  .global_nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    gap: 5px;
  }
  .nav {
    display: none;
  }
  #tabs a {
    padding: 0.6rem 1rem;
  }
  .form form {
    min-width: 30rem;
  }
  .form_block_right img {
    max-height: 34rem;
    max-width: 30rem;
  }
  .certif_right img {
    max-width: 15rem;
  }
  .certif_left_title {
    font-size: 2.2rem;
  }
  .certif_left_txt {
    font-size: 1.6rem;
    color: #2a2a2a;
  }
  .bg_vopros .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    flex-direction: column;
  }
  .vopros_left {
    width: 100%;    
  }
  .vopros_left_element {
    margin: auto;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  .vopros_right {
    margin: 3rem 0 0;
    width: 100%;
  }
  .vopros_right_block {
    width: 100%;
    max-width: 46rem;
    margin: auto;
  }
  .vopros_left_element_title {
    font-size: 1.6rem;
  }
  .rev_items_marg h2 {
    font-size: 3rem;
    margin: 2rem 0 1rem;
  }
  .category_item img {
    max-width: 16rem !important;
    max-height: 13rem !important;
  }
  .category_item {
    width: 20rem;
    height: 20rem;
  }
  .category_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .main_model_block .main_right {
    margin-top: 3rem;
  }
  .main_category_block .main_right_promo_monel_txt {
    top: 80px;
    bottom: 0;
    left: -4px;
    font-size: 1.6rem;
  }
  .advantages_block_items {
  	grid-template-columns: repeat(2,1fr);
  }
  
  .stage-item {
  	width: calc(33.333% - 2rem);
  }
  .work-stages__wrapper {
  	row-gap: 4rem;
  }
  .category_items_none .category_item {
  	width: calc(20% - 2rem);
		height: auto;
		margin: 1rem;
  }
  .category_items_none .category_item {
  	width: calc(50% - 2rem);
		height: auto;
		margin: 1rem;
  }
  
}

@media (max-width: 767px) {
  .main_advantages_right_item {
    font-size: 1.4rem;
  }
  .header_btn button {
    padding: 1rem;
  }
  .main_model_block .main_right {
    margin-top: 3rem;
    width: 30rem;
    height: 30rem;
    min-width: 30rem;
    min-height: 30rem;
  }
  .main_model_block .main_right img {
    max-height: 20rem;
    max-width: 20rem;
  }
  .main_right_promo_monel img {
    width: 10rem !important;
    height: 10rem !important;
  }
  .main_right_promo_monel {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 11rem;
    height: 11rem;
  }
  .main_right_promo_monel_txt {
    top: -16px;
    left: -12px;
    font-size: 1.6rem;
  }
  .main_category_block .main_right_promo_monel_txt {
    top: 80px;
    bottom: 14px;
    left: -14px;
    font-size: 1.4rem;
  }
  span.model_txt {
    font-size: 1.4rem;
    text-align: center;
  }
  .model_items img {
    max-width: 12rem;
    max-height: 12rem;
  }
  .model_items a {
    width: 14rem;
    margin: 1rem;
    padding: 1rem;
   }
  .stage-item {
  	width: calc(50% - 2rem);
  }
  .stage-item:nth-child(2n):after {
  	content: unset;
  }
  .work-stages__wrapper {
  	justify-content: center
  }
  .index_page .main-content {
  	padding: 0 2rem;
  }
  
  .category_items-bt {
  	gap: 15px;
  }
  
  .category-bt .category_item {
  	width: calc((100% / 3) - 20px);
  }
  
}

@media (max-width: 650px) {
  .header_btn {
    display: none;
  }
  .header_tel a {
    font-size: 14px;
  }
  .main_advantages {
    flex-direction: column;
  }
  .main_advantages_left {
    width: 100%;
    margin: 0;
    justify-content: space-around;
    height: auto;
		margin-bottom: 1.5rem;
  }
	
	.main_left {
		margin-top: 1.5rem;
	}
  
  .inline_main_form input[type="tel"] {
  	max-width: 190px;
  }
  
  .main_advantages_left img {
    margin: 0;
  }
  .main_subtitle {
    margin-bottom: 3rem;
  }
  .main_title {
    font-size: 2.4rem;
  }
  .advantages_title {
    font-size: 2.4rem;
    margin: 3rem 0 2rem;
  }
  .advantages_block_item_title {
    font-size: 1.5rem;
  }
  nav {
    min-width: 22rem;
  }
  #tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 30rem;
    margin: auto;
  }
  div#tab1 {
    flex-direction: column;
  }
  .certif_block {
    flex-direction: column;
  }
  .certif_left {
    text-align: center;
    margin: auto;
  }
  .certif_right {
    margin-top: 2rem;
  }
  .form_block_right {
    display: none;
  }
  .tabs .modal_form_input input {
    width: 28rem;
  }
  .certif_right img {
    max-width: 10rem;
  }
  .form form {
    min-width: 28rem;
  }
  .car_block_item_top img {
    max-height: 4rem;
  }
  .ant-carousel {
    max-width: 26rem;
  }
  .ant-carousel-element {
    max-width: 26rem;
  }
  .vopros_right_title {
    font-size: 2rem;
  }
  .vopros_left_element_title {
    font-size: 1.4rem;
  }
  .category_title {
    margin: 3rem 0 2rem;
    font-size: 2.2rem;
  }
  .rev_items_marg h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
  }
  .vopros_right_block svg {
    display: none;
  }
  .tabs {
    padding: 3rem 0 3rem;
    margin: 6rem 0 3rem;
  }
  .category_item {
    padding: 1rem;
    margin: 0.5rem;
    width: 12rem;
    height: 12rem;
  }
  .category_item img {
    max-width: 9rem !important;
    max-height: 7rem !important;
  }
  .category_item_title {
    font-size: 1.3rem;
  }
  .category_items {
    justify-content: center;
  }
  .main_model_block .main_right img {
    max-height: 16rem;
    max-width: 16rem;
  }
  .main_model_block .main_right {
    width: 26rem;
    height: 26rem;
    min-width: 26rem;
    min-height: 26rem;
  }
  .footer_items_block {
    text-align: center;
  }
  
  .item-icon svg {
      width: 35px;
      height: 35px;
  }
  
  .price_list-item:nth-child(2) {
      display: none;
  }
  
  .price_list-item:nth-child(4) {
      display: none;
  }
  .price_list-item:nth-child(3) {
      border: none;
  }
  
  .price_list-item button {
      padding: 1rem 1.5rem;
  }
  
  .price_header-item:nth-child(2) {
      display: none;
  }
  
  .price_header-item:nth-child(3) {
      width: 25%;
  }
  
  .price_header-item:nth-child(4) {
      display: none;
  }
  
  .price_list-row {
      padding: 12px 5px;
  }
  .stock_pulse {
      padding: 1rem 1.5rem;
      
      right: 1rem;
      bottom: 1rem;
  }
  
  .stock_pulse svg {
      height: 20px;
      width: 20px;
  }
  
  .logo a {
      font-size: 1.2rem;
  }
  
  .price_list-item {
      font-size: 1.4rem;
  }
  
  .search_title {
      font-size: 2.6rem;
      margin-bottom: 1.2rem;
  }
 
 .simplesearch-search-form {
     margin: 4rem auto;
 }
 
 .block_title_model h2 {
     margin-top: 4rem;
 }
 
 .main_form_arrow {
     display: none;
 }
 
 .inline_input {
     justify-content: center;
 }
 
 .advantages_block_items {
	grid-template-columns: auto;
}

.advantages_block_item {
	max-width: 35rem;
}

.about-text__wrapper {
	padding: 3rem;
	text-align: left;
	font-size: 1.6rem;
}

.category_items-bt {
	gap: 10px;
}
  
.category-bt .category_item {
	width: calc((100% / 2) - 20px);
}

.category-bt .category_item_title {
	font-size: 1.4rem;
}

.index_page .main_subtitle {
	font-size: 1.8rem;
}

.main .container {
	padding: 3rem 1rem;
}

.main.index_page {
	position: relative;
	z-index: 1;
	background-position: 70% 50%;
}

.main.index_page:after {
	content: '';
	position: absolute;
	background-color: rgba(0,0,0,.4);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.footer_items_block {
	justify-content: center;
}

.footer_payments {
	margin-bottom: 2rem;
}
  
}

@media screen and (max-width: 475px) {
	.stage-item {
  	width: 100%;
  }
  
  .work-stages__wrapper {
  	row-gap: 5rem
  }
  
  .stage-item:nth-child(2n):after {
  	content: '';
  }
  
  .stage-item:not(:last-child)::after {
  	top: unset;
  	right: unset;
  	transform: translateX(-50%) rotate(90deg);
  	bottom: -30px;
  	left: 50%;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus, textarea:focus, input:focus {
          font-size: 16px;
      }
  }