* {
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "system-ui", sans-serif;
}
a {
  text-decoration: none;
  color: var(--color_b);
}
html {
  font-size: 10px;
}
body {
  background: url(/assets/img/fone-all.svg);
}
h1  {
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
  margin: 4rem 0 1rem;
}
h2 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  padding: 4rem 0 1rem;
  color: var(--color-w);
}
.black_title {
  color: var(--color-b);
}
h3.black_title {
    padding: 2rem 0 .5rem;
}
:root {
  --bacground-mass: #106479;
  --brend-color: #009cff;
  --color-b: rgb(12, 12, 12);
  --color-w: rgb(252, 250, 250);
}
.container {
  max-width: 138rem;
  margin: auto;
  width: 100%;
}
.button_h,
.button_s{
    cursor: pointer;
}
svg {
  width: 4rem;
  height: 4rem;
  color: var(--brend-color);
}
ol.breadcrumb {
    display: flex;
    padding: .5rem 0;
}
.category_obl_crumbs .breadcrumb li span {
    padding: 1rem;
    color: #b0b0b0;
}
.category_obl_crumbs .breadcrumb li a span{
    color: var(--brend-color);
}
.category_obl_crumbs ol.breadcrumb {
    font-size: 16px;
    margin-top: 1rem;
}
.breadcrumb li {
    list-style: none;
}
.breadcrumb li::after {
    content: '/';
}
.breadcrumb li:last-child:after {
    content: '';
}
.breadcrumb li a {
    color: var(--brend-color);
    padding: 0;
}
.breadcrumb li span {
    padding: 1rem;
}
.top20 {
    padding-left: 2rem;
}
.phone_static {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: var(--brend-color);
    padding: 2rem;
    border-radius: 50%;
}
/*Шапка*/
header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas: 
  "logo address header_tel header_tel header_button"
  ;
  padding: 1.5rem 0;
}
.flex_revers_text {
    display: flex;
    flex-direction: column-reverse;
}
.logo {
  grid-area: logo;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.logo a img {
  max-width: 18rem;
  max-height: 4rem;
  width: 100%;
}
.address {
  grid-area: address;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.address_mob {
    display: none;
}
.address_text_city {
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}
.header_tel {
  grid-area: header_tel;
}
.tel_text_number {
  font-weight: 700;
  color: var(--brend-color);
}
.header_tel_items {
  display: flex;
}
.tel_1 {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.tel_2 {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-left: 3rem;
}
.rezhim {
  font-size: 1.6rem;
  padding-left: 6px;
}
.header_button {
  grid-area: header_button;
  display: flex;
  align-items: center;
}
.header_button button {
  width: 100%;
  margin-right: 1rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background: rgb(39, 150, 255);
  color: var(--color-w);
  font-weight: 600;
  line-height: 1.4rem;
  cursor: pointer;
  transition: 200ms;
}
.header_button button:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}

.nav {
  background: var(--brend-color);
  position: sticky;
  top: 0;
  color: var(--color-w);
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 200;
}
nav a {
  padding: 0.8rem 1.3rem 1.3rem 1.3rem;
  transition: 200ms;
  max-width: 30rem;
  text-align: center;
  width: 100%;
}
nav a:hover {
  color: var(--brend-color);
  background: var(--color-w);
}
.open_menu_uslug {
  padding: 0.8rem 1.3rem 1.3rem 1.3rem;
  transition: 200ms;
  max-width: 30rem;
  text-align: center;
  width: 100%;
  position: relative;
}
.open_menu_uslug:hover {
  color: var(--brend-color);
  background: var(--color-w);
}
.open_menu_uslug a:hover {
  color: none;
  background: none;
}
.open_menu_uslug:hover .open_menu_uslug_on {
  max-height: 60rem;
}
.open_menu_uslug_on a {
  padding-bottom: .5rem;
  display: block;
  padding: 1rem;
}
.reviews_block_btn_otz button {
    width: 20rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 0.4rem;
    background: rgb(39, 150, 255);
    color: var(--color-w);
    font-weight: 600;
    line-height: 1.4rem;
    cursor: pointer;
    transition: 200ms;
    margin-top: 1rem;
    text-transform: uppercase;
}
.open_menu_uslug_on a:hover {
  background: var(--brend-color);
  color: var(--color-w);
}
.open_menu_uslug_on {
  position: absolute;
  background: var(--color-w);
  color: var(--brend-color);
  width: 100%;
  max-height: 0;
  left: 0;
  top: 48px;
  transition: 300ms;
  overflow: hidden;
}
.burger {
  width: 4rem;
  height: 4rem;
  background: var(--brend-color);
  display: none;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
}
.burger_element {
  width: 80%;
  height: 5px;
  background: #def2f1;
  transition: 300ms;
}
.b_e_1 {
  transform: rotate(0deg);
  position: absolute;
  top: 0.5rem;
}
.b_e_3 {
  transform: rotate(0deg);
  position: absolute;
  bottom: 0.5rem;
}

.b_e_1_active {
  transform: rotate(135deg);
  position: absolute;
  top: 1.8rem;
  width: 100%;
}
.b_e_2_active {
  background: #ffffff;
  transform: rotate(1deg);
  width: 0%;
}
.b_e_3_active {
  transform: rotate(45deg);
  position: absolute;
  bottom: 1.7rem;
  width: 100%;
}
.mob_nav_button,
.mob_nav_block,
.mob_nav_title {
  display: none;
}
/*Обложка*/
.main {
  display: flex;
}
.main_left {
  background: var(--bacground-mass);
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--color-w);
}
.main_left_category {
  justify-content: center;    
}

.main_content {
  margin-right: 10%;
  margin-left: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.main_left_category .main_content {
    margin: auto;
}
.main_content > * {
  margin-bottom: 3rem;
}
.main_title div:first-child,
.main_title_category{
  font-size: 4.6rem;
}
.main_title div:last-child {
  font-size: 1.8rem;
}
.main_slogan button {
  font-size: 2rem;
  padding: 1rem;
  background: var(--brend-color);
  border-radius: 0.4rem;
  color: var(--color-w);
  background: rgb(39, 150, 255);
}
.main_slogan button:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}
.main_priem_item {
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.main_priem_item span {
  color: #FFF;
  font-weight: 700;
  padding: 5px 10px;
  margin-left: 1.5rem;
  border-radius: 10px;
  border: 2px solid #FFF;
}
.main_priem_item img {
  margin-right: 1rem;
}
.main_button button {
  width: 100%;
  font-size: 2rem;
  padding: 1rem;
  background: var(--brend-color);
  border-radius: 0.4rem;
  color: var(--color-w);
  cursor: pointer;
  transition: 200ms;
  background: rgb(39, 150, 255);
}
.main_button button:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}
.main_right {
  width: 50%;
}
.main_right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main_right_model {
  display: flex;
  align-items: center;
  justify-content: center;  
}
.main_right_model img {
  height: 70%;
  width: auto; 
  max-height: 600px;
}
.sposob_oplat_nw ul {
    padding-left: 2rem;
}
.category_obl_items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.category_obl_item {
    display: flex;
    align-items: flex-start;
    width: 25rem;
    margin: 2rem;
}
.category_obl_item img {
    margin-right: 1rem;
}
.category_obl_item_title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.category_obl_item_body {
    font-size: 14px;
    color: #8e8e8e;
}
/*Карусель с типом техники*/
.ant-carousel {
  margin: 3rem auto;
  padding-top: 1rem;
  max-width: 108rem;
}
#carouselAntOtzovik {
  margin: 0rem auto;
}

/* General styles */
.ant-carousel {
  width: auto;
  position: relative;
}

.ant-carousel-hider {
  overflow: hidden;
}
.new_off_oblozhka_adv_block {
    background: #2796ff;
    padding: 5rem;
    color: white;
}
.new_off_oblozhka_adv_items {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.n_o_o_a_i {
    max-width: 550px;
    width: 100%;
    margin: 14px;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-left: 30px;
    font-weight: 100;
}
.n_o_o_a_i_1 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_1.svg);
}
.n_o_o_a_i_2 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_2.svg);    
}
.n_o_o_a_i_3 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_3.svg);    
}
.n_o_o_a_i_4 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_4.svg);    
}
.n_o_o_a_i_5 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_5.svg);    
}
.n_o_o_a_i_6 {
    background-image: url(/assets/new-off-templates/images/images-all/n_o_o_a_i_6.svg);    
}
.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 1px;
  width: 35.9rem;
  text-align: center;
  align-items: center;
}

/* Navigation item styles */
div.ant-carousel-arrow-left,
div.ant-carousel-arrow-right {
  width: 2.2rem;
  height: 4rem;
  position: absolute;
  cursor: pointer;
  opacity: 0.6;
  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: -5rem;
  top: 0rem;
  bottom: 0rem;
  margin: auto;
  display: block;
  width: 4rem;
  height: 4rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div.ant-carousel-arrow-right {
  right: -5rem;
  top: 0rem;
  bottom: 0rem;
  margin: auto;
  display: block;
  width: 4rem;
  height: 4rem;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

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: .5rem .7rem;
  padding: 0;
  display: inline-block;
  background-color: #BBB;
  border-radius: .5rem;
  cursor: pointer;
}

.ant-carousel-element img {
   max-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;
}

/*ПЕриемущества*/
.priem_item {
  width: 25rem;
}
.ptiem_item_top {
  font-size: 5rem;
  font-weight: 500;
  border-bottom: .5rem solid var(--brend-color);
}
.ptiem_item_bottom {
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  line-height: 2rem;
}
.ptiem_item_bottom svg {
  margin-right: 2rem;
}
.g-talon {
    text-align: center;
}
.g-talon img {
    width: 100%;
    max-width: 450px;
    box-shadow: 3px 3px 8px -7px;
    margin: 30px 0;
}
.priem {
  display: grid;
  margin: 5rem 0;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: 
  "priem_item_1 priem_images priem_item_4"
  "priem_item_2 priem_images priem_item_5"
  "priem_item_3 priem_images priem_item_6"
  ;
}
.priem_item {
  cursor: pointer;
  padding: 2rem;
  border-radius: 2.5rem 0;
  transition: 300ms;
}
.priem_item_1 {
  grid-area: priem_item_1;
}
.priem_item_2 {
  grid-area: priem_item_2;
}
.priem_item_3 {
  grid-area: priem_item_3;
}
.priem_item_4 {
  grid-area: priem_item_4;
}
.priem_item_5 {
  grid-area: priem_item_5;
}
.priem_item_6 {
  grid-area: priem_item_6;
}
.priem_images {
  grid-area: priem_images;
  position: relative;
}
.priem_mobile_1 {
  position: absolute;
  top: 0px;
  bottom: 0px;
  opacity: 1;
  left: 0px;
  right: 7px;
  margin: auto;
  width: 80%;
  height: 50%;
  text-align: center;
  transition: 300ms;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 2rem;
}
.priem_item_1 {
  background: rgb(0 0 0 / 10%);
}
.priem_mobile_text {
  position: absolute;
  top: 0px;
  bottom: 0px;
  opacity: 0;
  left: 0px;
  right: 7px;
  margin: auto;
  width: 80%;
  height: 50%;
  text-align: center;
  transition: 300ms;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 2rem;
}
.priem .priem_item:hover ~ .priem_item_1 {
  background: rgb(0 0 0 / 0%);
}
.priem_item:hover {
  background: rgb(0 0 0 / 10%);
}
.priem_item:hover ~ .priem_images .priem_mobile_1 {
  opacity: 0;
}
.priem_item_1:hover ~ .priem_images .priem_mobile_1 {
  z-index: 1;
  opacity: 1;
}
.priem_item_2:hover ~ .priem_images .priem_mobile_2 {
  z-index: 1;
  opacity: 1;
}
.priem_item_3:hover ~ .priem_images .priem_mobile_3 {
  z-index: 1;
  opacity: 1;
}
.priem_item_4:hover ~ .priem_images .priem_mobile_4 {
  z-index: 1;
  opacity: 1;
}
.priem_item_5:hover ~ .priem_images .priem_mobile_5 {
  z-index: 1;
  opacity: 1;
}
.priem_item_6:hover ~ .priem_images .priem_mobile_6 {
  z-index: 1;
  opacity: 1;
}
.priem_images svg {
  width: 65%;
  height: 50%;
  margin-bottom: 1rem;
}
.priem_mobile_title {
  margin-bottom: 2rem;
  font-size: 2.6rem;
}

/*форма с текстом*/
.form_text {
  background: linear-gradient(to right, var(--brend-color) 55%, var(--bacground-mass) 45%);
}
.form_text .container {
  display: flex;
}
.full_b_f_right .downloads_form input[type="submit"] {
    height: 5rem;
    margin-bottom: 2rem;
}
.form_text_l {
  width: 55%;
  background: var(--brend-color);
  color: var(--color-w);
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 6rem 2rem;
  font-weight: 300;
}
.form_text_r {
  width: 45%;
  background: var(--bacground-mass);
  display: flex;
  justify-content: center;
}
.form_text_l div {
  font-size: 2.2rem;
  margin: 1rem 0;
}
.form_text_l div:last-child {
  font-size: 2.8rem;
}
.form_text_priziv {
  display: flex;
  align-items: center;
}
.form_text_priziv img {
  margin-left: 3rem;
}

.main_form {
  padding: 2rem;
  margin: 5rem 4rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.4rem;
  border: 2px solid white;
  max-width: 40rem;
  width: 100%;
}
.main_form input {
  width: 100%;
  height: 5rem;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.main_form_timer {
  padding: 2rem;
  margin: 1.5rem;
  max-width: 40rem;
  width: 100%;
}
.main_form_timer input {
  width: 100%;
  height: 5rem;
  border-radius: 14px 0;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.modal_formTimer h2 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  padding: 0rem 0 1rem;
  color: var(--color-w);
}
.timer_full_contebt_text {
  font-size: 1.6rem;
  padding: 0 3.5rem;
}
.main_form_timer input[type="submit"] {
    font-size: 2.4rem;
    color: var(--color-w);
    background: red;
    border: 2px solid red;
    margin-top: 0rem;
    cursor: pointer;
    transition: 300ms;
    width: 100%;
}
.check_box {
  width: 1.8rem !important;
  height: 1.8rem !important;
  margin: 0 !important;
  margin-right: 1rem !important;
}
.main_form input::placeholder {
  font-size: 2rem;
}

input[type="submit"] {
  font-size: 2rem;
  line-height: 2rem;
  color: var(--color-w);
  background: red;
  margin-top: 2rem;
  cursor: pointer;
  transition: 400ms;
  width: 100%;
  background: rgb(39, 150, 255);
}
input[type="submit"]:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}
input[type="text"],
input[type="tel"],
input[type="mail"]{
  padding-left: 1rem;
}
.modal_form_title {
  font-size: 2.4rem;
  color: var(--color-w);
  margin-bottom: .5rem;
}
.cards_payment img {
  width: 5rem;
}
/*Картинка и текст*/
.text_image_block {
  display: flex;
  padding-top: 6rem;
  align-items: center;
  margin-bottom: 5rem;
}
.text_image_block_l img {
  border-radius: 35px 0;
  box-shadow: -25px -25px 0px 0px var(--brend-color);
}
.text_image_block_l,
.text_image_block_r {
  width: 50%;
}
.text_image_block_r {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-w);
  background: var(--bacground-mass);
  height: 100%;
  padding: 2rem 3rem;
  border-radius: 0.4rem 0.4rem 0.4rem 0.4rem;
}

/*Достижения*/
.dostijenia {
  background: var(--brend-color);
  color: var(--color-w);
}
.dostijenia_items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.dostijenia_item {
  max-width: 30rem;
  margin-bottom: 4rem;
}
.dostijenia_item_top {
  position: relative;
  width: 20rem;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: auto;
}
.dostijenia_item_top img {
  width: 20rem;
  height: 20rem;
  position: absolute;
  top: 0;
  left: 0;
}
.dostijenia_item_bottom {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 300;
}
.circle_an {
  animation: circle-animate 20s infinite linear;
}
@keyframes circle-animate {
  100% { transform: rotate(360deg); }
 }

 /*Блок с мастерами*/
.master_item {
  display: flex;
  align-items: center;
}
.master_item_text {
  text-align: right;
  max-width: 75rem;
}
.master_item_reverse {
  flex-flow: row-reverse;
  text-align: left;
}
.master_item_reverse .master_item_text {
  text-align: left;
}
.master_item_text_name {
  font-size: 2.8rem;
  font-weight: 300;
  text-decoration: underline;
}
.master_item_text_title {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.master_item_text_all {
  font-size: 1.8rem;
  font-weight: 300;
}
.master_item_text_img img {
  height: 26rem;
  margin: 2rem;
}
/*Сертификаты*/
.sertif_items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem 0rem 3rem;
}
.sertif_item {
  background: var(--brend-color);
  padding: 2rem 3rem;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
  cursor: pointer;
}
.img_on_sert_active {
  position: fixed;
  top: 0px;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 100;
  background: rgba(25,25,25,0.8);
  padding: 10%;
}
/*Форма с таймером*/
.form_timer {
  background: linear-gradient(to right, var(--brend-color) 50%, var(--bacground-mass) 50%);
}
.form_timer .container {
  display: flex;
}
.form_timer_l {
  width: 50%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}
.form_timer_r {
  width: 50%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.countdown {
  color: var(--color-w);
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  background: aliceblue;
  padding: 2rem;
  border-radius: 0.4rem;
}

.countdown_number {
  padding: 10px;
  border-radius: 3px;
  display: inline-block;
}

.countdown_time {
  padding: 15px;
  border-radius: 3px;
  font-size: 3rem;
  font-weight: 600;
  background: red;
  display: inline-block;
  width: 7rem;
}

.countdown_text {
  display: block;
  padding-top: 5px;
  font-size: 1.6rem;
  color: var(--color-b);
}
.countdown_title {
  text-align: center;
  font-size: 3rem;
  color: var(--color-w);
  margin-bottom: 2rem;
}
.countdown_vosk {
    font-size: 9rem;
    color: red;
    text-align: center;
}
.form_timer_l_text {
  color: var(--color-w);
  font-size: 2.2rem;
  font-weight: 300;
  max-width: 50rem;
  text-align: center;
  padding-top: 3rem;
}
/*Этапы работ*/
.etap_items {
  display: flex;
  justify-content: space-around;
  margin-top: 5rem;
}
.etap_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 26rem;
  padding: 1rem;
}
.etap_item_arrow {
  width: 14rem;
  margin-bottom: 9rem;
}
.etap_item_title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: .5rem;
}
.etap_item button {
  width: 100%;
  margin-right: 1rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background: rgb(39, 150, 255);
  color: var(--color-w);
  font-weight: 600;
  line-height: 1.4rem;
  cursor: pointer;
  transition: 200ms;
  margin-top: 1rem;
  text-transform: uppercase;
}
.etap_item_text {
  font-size: 1.4rem;
  text-align: center;
}
.etap_item svg {
  width: 15rem;
  height: 15rem;
  margin-bottom: 1rem;
}
@media(max-width: 1200px) {
  .etap_item_arrow {
    display: none;
  }
  .etap_items {
    flex-wrap: wrap;
  }
  .etap_item {
    padding: 2rem 1rem;
  }
}
/*Текстовый блок*/
.text_block_all h2 {
  color: var(--color-b);
}
.text_block_all {
  font-size: 1.8rem;
  padding: 2rem;
  margin-bottom: 1rem;
}
img.item-text-img {
    max-width: 40rem;
    width: 100%;
}
.text_block_all p,
.text_block_all ul,
.text_block_all ol {
  margin: 2rem 0;
}
.text_block_all ul,
.text_block_all ol {
  padding-left: 3rem;
}
/*Отзывы карусель*/
.reviews_block_btn_otz {
    text-align: right;
    padding: 10px;
}
.reviews_block_btn_otz buttom {
    width: 100%;
    font-size: 2rem;
    padding: 1rem;
    background: var(--brend-color);
    border-radius: 0.4rem;
    color: var(--color-w);
    cursor: pointer;
    transition: 200ms;
    background: rgb(39, 150, 255);
}
.reviews_block {
  background: none;
  padding-bottom: 3rem;
}
.review_body {
  text-align: left;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-left: 2rem;
  color: black;
  width: 100%;
}
#carouselAntOtzovik svg {
  color: var(--color-w);
}
#carouselAntOtzovik svg svg {
  color: var(--color-w);
}
#carouselAntOtzovik .ant-carousel-element {
  flex-flow: row;
  max-width: 36rem;
  width: 100%;
  padding: 2rem;
  align-items: flex-start;
}
#carouselAntOtzovik .ant-carousel-element img {
  height: 13.5rem;
  border-radius: 35px 0;
}
.review_name {
  font-size: 2rem;
  display: flex;
  align-items: center;
}
/*рейтинг*/
.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  white-space: nowrap;
  margin-right: 1rem;
}
.date {
    white-space: nowrap;
}

.rating > span {
  display: inline-block;
  position: relative;
  width: 18px;
  color: gold;
}
.rew_img_nw {
    height: 2rem !important;
    width: 2rem !important;
    margin-right: 5px;
    border-radius: 0 !important;
}
.star_1 > span:last-child:before {
  content: "\2605";
  position: absolute;
}
.star_2 > span:last-child:before,
.star_2 > span:nth-child(4):before{
  content: "\2605";
  position: absolute;
}
.star_3 > span:last-child:before,
.star_3 > span:nth-child(4):before,
.star_3 > span:nth-child(3):before{
  content: "\2605";
  position: absolute;
}
.star_4 > span:last-child:before,
.star_4 > span:nth-child(4):before,
.star_4 > span:nth-child(3):before,
.star_4 > span:nth-child(2):before{
  content: "\2605";
  position: absolute;
}
.star_5 > span:before {
  content: "\2605";
  position: absolute;
}
.review_text {
  font-size: 1.4rem;
  font-weight: 300;
}
/*Третяя форма*/
.tree_form {
  max-width: 100rem;
  background: var(--bacground-mass);
  margin: auto;
  padding: 2rem 5rem;
  border-radius: 0.4rem;
  margin: 5rem auto;
}
.tree_form .main_form {
  max-width: 60rem;
  margin: 4rem auto;
}
.tree_form .main_form input {
  width: 100%;
}
/*Карусель с моделями*/

#carouselAntModel .ant-carousel-element {
  width: 21.6rem;
}

/*Блок с поиском*/
.search {
  text-align: center;
}
.search input {
  max-width: 27rem;
  width: 100%;
  border: 2px solid var(--brend-color);
  height: 5rem;
  padding-left: 1rem;
}
.search button {
  width: 18rem;
  height: 5rem;
  border-radius: 15px 0;
  background: red;
  color: var(--color-w);
  font-size: 2rem;
  cursor: pointer;
}
.search input::placeholder {
  font-size: 2rem;
}
.search_text {
  display: flex;
  align-items: center;
  margin: 2rem;
}
.search_text button {
    width: 45rem;
    padding: 0 13px;
    border-radius: 0.4rem;
    transition: 400ms;
    background: white;
    color: black;
    border: 1px solid;
    white-space: nowrap;
    height: 4rem;
    line-height: 4rem;
}
.search_text_all {
  font-size: 1.6rem;
  margin-right: 3rem;
}

/*Модальное окно*/

/*Модальное окно с формой*/
.modal_window {
  position: relative;
}
.modal_form,
.modal_formS,
.modal_formSity,
.modal_formRew,
.modal_formStatus {
  display: flex;
  flex-flow: column;
  background-color: var(--bacground-mass);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  transition: 300ms;
  bottom: 0;
  margin: auto;
  height: 29rem;
  padding: 3rem;
  max-width: 44rem;
  color: var(--color-w);
  border: none;
}
.modal_formTimer{
  display: flex;
  flex-flow: column;
  background-color: var(--bacground-mass);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  transition: 300ms;
  bottom: 0;
  margin: auto;
  height: 29rem;
  padding: 3rem;
  max-width: 72rem;
  color: var(--color-w);
  border: none;
}
.formTimerImg {
  position: absolute;
  right: 9px;
  bottom: 0;
  width: 39rem;
}
.modal_formSity,
.modal_formTimer{
    height: 54rem;
}
.modal_formRew{
    height: 61rem;
}
.modal_form_active {
  top: 0;
  opacity: 1;
  z-index: 0;
  transform: scale(1);
}
.modal_form_soglasie {
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center
}

.button_wiev {
  background-color: var(--bg_color);
  background-position: 0 0;
  width: 100%;
  height: 5rem;
  color: var(--color_w);
  padding: 0 1rem;
  transition: 300ms;
  cursor: pointer;
  font-size: 14px;
}
.downloads_form {
  position: relative;
}
.downloads_line {
  color: white;
  display: flex;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 5rem;
  background: rgb(33, 223, 0);
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 2rem;
  transition: 400ms;
  overflow: hidden;
  border-radius: .4rem;
}
.main_form_timer  .downloads_line {
  margin-top: 0rem; 
}
.downloads_line_text {
  font-weight: 800;
  color: var(--color_w);
  opacity: 0;
  position: absolute;
}
.downloads_line_text_active {
  opacity: 1;
}
.downloads_line_text_error {
  font-weight: 800;
  color: var(--color_w);
  opacity: 0;
  position: absolute;
}
.downloads_line_text_error_active {
  opacity: 1;
}
.downloads_line_active {
  width: 100%;
  transition: 1s ease;
}
.downloads_line_active_error {
  background: red;
  transition: 1s;
}

.button_wiev:hover {
  background-color: var(--color_elem);
}
.closed_modal {
  background-color: var(--bg_color);
  height: 3rem;
  width: 3rem;
  position: absolute;
  right: 3px;
  top: 3px;
  cursor: pointer;
  transition: 300ms;
}
.closed_modal:hover {
  background-color: var(--bg_button);
}
.closed_modal img {
  width: 100%;
}
.background_modal,
.background_modalS,
.background_modalSity,
.modal_formRew,
.background_modalJ{
  transition: 600ms;
}
.background_modal_active {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
}
/*Модальное окно с формой*/

/*Подвал*/

.footer {
  background: var(--brend-color);
  color: var(--color-w);
}
.footer_item_title_soc img {
  height: 5rem;
}
.footer_item_title {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
.footer_item_logo {
  width: 80%;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 0.4rem;
}
.footer_item_logo a img {
  width: 100%;
}
.footer_item3 svg {
  color: var(--color-w);
}
footer {
  padding: 5rem 1rem 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas: 
  "footer_item1 footer_item2 footer_item3 footer_item4 footer_item5"
  ;
}
.footer a {
  font-size: 1.6rem;
  text-decoration: underline;
}
.footer_tel1 a,
.footer_tel2 a {
  font-size: 2rem;
}
.footer_tel1,
.footer_tel2 {
  padding-bottom: 1rem;
}
.footer_item1,
.footer_item2,
.footer_item3,
.footer_item4,
.footer_item5 {
  text-align: center;
}
.footer_item1 {
  grid-area: footer_item1;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.footer_item1 img {
  padding-bottom: 1rem;
  width: 6rem;
}
.footer_item2 {
  grid-area: footer_item2;
  display: flex;
  flex-flow: column;
}
.footer_item3 {
  grid-area: footer_item3;
}
.footer_item3 .address {
  text-align: left;
  padding: 1rem 0;
  justify-content: center;
}
.footer_item4 {
  grid-area: footer_item4;
  display: flex;
  flex-flow: column;
}
.footer_item5 {
  grid-area: footer_item5;
}

.copir {
  font-size: 1.4rem;
  padding: 1rem;
}
.footer_bottom {
  text-align: center;
  padding: 1rem;
  font-size: 1.8rem;
  padding-bottom: 4rem;
}
.footer_but_rew button {
  background: none;
  color: var(--color-w);
  cursor: pointer;
  font-size: 1.6rem;
}
.footer_but_rew {
    padding-top: 1rem;
}
/*Подвал*/
/*Прайс*/

.price {
  margin: 5rem auto;
  width: 100%;
}
tr:first-child .price {
  display: none;
}
.price table {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 200;
  text-align: center;
  padding: 2rem;
}
.price table button {
  background: rgb(39, 150, 255);
  color: var(--color-w);
  width: 100%;
  height: 4rem;
  border-radius: 0.4rem;
  cursor: pointer;
  max-width: 22rem;
  padding: 0 .5rem;
}
.price thead {
  background: var(--brend-color);
  color: var(--color-w);
  font-size: 1.8rem;
}
.price thead th {
  padding: 1rem;
  font-weight: 400;
}
th.tablet_totla_price {
    width: 10rem;
}
.price tbody td {
  padding: 1rem;
}
.price tbody tr:nth-child(2n) {
  background:#f2f6ff;
}
.price tbody tr {
  transition: 300ms;
}
.price tbody tr:hover {
  background: var(--brend-color);
  color: var(--color-w);
}
.price tbody tr button {
  transition: 300ms;
}
.price tbody tr:hover button {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}
.price tbody td input{
  width: 3rem;
  height: 3rem;
}
.tablet_naimen {
  text-align: left;
  max-width: 20rem;
}
.tablet_naimen a {
  text-decoration: underline;
}

.tablet_input {
  display: flex;
  align-items: center;
  justify-content: center;
}
.total_price button {
  background: rgb(39, 150, 255);
  color: var(--color-w);
  height: 4rem;
  border-radius: 0.4rem;
  cursor: pointer;
  width: 16rem;
  transition: 400ms;
  margin-right: .4rem;
}
.total_price button:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgba(39,150,255,.6);
}
.total_price {
  font-size: 1.6rem;
}
.total_price {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  margin-left: 2rem;
}
.total_price_text {
    text-decoration: line-through;
}
.total_price_text_percent {
    color: red;
}
.total_price_block {
    padding-right: 2rem;
}
/*Прайс*/
/*404*/
.erroe_title {
    font-size: 3.2rem;
    margin: 4rem 1rem;
}
.error_404 {
    font-size: 2.2rem;
    padding: 5rem 1rem;
}
.error_red {
    color: red;
}

/*404*/
/*Остальные страницы*/
.all_page_block {
  margin: 4rem auto;
  padding: 0 2rem;
}
.all_page_block h1 {
  font-size: 3.6rem;
}
.all_page_block div {
  font-size: 1.8rem;

}
.all_page_block_it {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem;
}
.rev_contact {
  background: var(--brend-color);
}
.all_page_block_img img {
  padding: 2rem;
  width: 100%;
  max-height: 21rem;
}
.balun_content {
  margin: 2rem 0;
}
.balun_content div {
  margin: 1rem 0;
}
.photo_master {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.4rem;
}
.photo_master img {
    margin: 1rem 0;
    max-width: 100%;
}
.reviews_block_p {
    font-weight: 400;
    text-align: center;
    padding: 4rem 0 1rem;
    color: black;
        font-size: 3rem;
}
div#balun_mobile,
.balun_item{
  display: flex;
align-items: center;
}
.balun_content svg {
  margin-right: 5px;
}
.balun_content {
  display: flex;
  justify-content: space-around;
}
.contact_citys {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.8rem;
  margin: 3rem 0;
  justify-content: space-between;
}
.contact_citys p {
  width: 24rem;
  text-align: center;
}
.contact_citys div {
  width: 20%;
  min-width: 27rem;
}
.contact_citys_modal p {
  width: 100%;
}
.contact_citys_modal {
  margin: 0;
}
/*Остальные страницы*/
.new_off_oblozhka_model_main .main_right img {
    width: 100%;
    max-width: 360px;
    max-height: 360px;
    object-fit: contain;
    padding: 2rem;
}
.new_off_oblozhka_model_main .black_title {
    color: white;
}
.new_off_oblozhka_model_main .main_priem ul {
    padding-left: 18px;
    margin: 6px 0;
}
.new_off_oblozhka_model_main h1 {
    font-size: 3.2rem;
    font-weight: 400;
    text-align: center;
    margin: 0;
    display: inline;
}
.new_off_oblozhka_model_main .main_title {
    font-size: 3.2rem;
    font-weight: 400;
}
.new_off_oblozhka_model_main .main_priem {
    font-size: 14px;
    text-align: left;
}
.new_off_oblozhka_model_main .main_content {
    max-width: 580px;
    padding: 50px;
}
.new_off_oblozhka_model_main .main_right {
    display: flex;
    align-items: center;
    justify-content: center;
}



.phone_static {
    animation: bounce  3s infinite ease-in-out;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  }
  40%, 43% {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
  }
  70% {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
  }
  90% {
  -webkit-transform: translate3d(0,-4px,0);
  transform: translate3d(0,-4px,0);
  }
  }
  
  @keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  }
  40%, 43% {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
  }
  70% {
  -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  -webkit-transform: translate3d(0, -15px, 0);
  transform: translate3d(0, -15px, 0);
  }
  90% { -webkit-transform: translate3d(0,-4px,0); transform: translate3d(0,-4px,0);
  }
  }
  
  
  
  
.tabs-links .tabs-links_vew {
    list-style: none;
    display: flex;
    color: #111;
    background: #fff;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    cursor: pointer;
    margin: 1rem;
    max-width: 22rem;
    width: 100%;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    transition: .3s;
    border: 2px solid var(--brend-color);
    /* text-decoration: underline; */
    /* text-decoration-style: dashed; */
}

.tabs-links_vew.tab__link--active {
	border: 2px solid transparent;
	background: var(--brend-color);
	color: white;
}


.tabs-content {
    position: relative;
}
.tabs-content .tabs_new_all {
    opacity: 0; 
    position: absolute; 
    transition: all  ease-in;
    width: 100%;
    overflow: hidden;
    max-height: 0px;
}
.tabs-content .tabs_new_all:first-child {
    opacity: 1;
    display: contents;
}
ul.tabs-links {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.author_block_item img {
    width: auto;
    max-width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
}
.author_block_i_fio {
    margin-right: 40px;
}
.author_block_item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    padding: 20px;
    color: #9d9d9d;
}
.author_block_i_stag {
    font-size: 14px;
    color: #9d9d9d;
}


.rating-area {
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-right: -4px;
}
.rating-area:not(:checked) > input {
	display: none;
}
.rating-area:not(:checked) > label {
    padding: 0;
    cursor: pointer;
    font-size: 34px;
    color: lightgrey;
    margin-left: 6px;
}
.rating-area:not(:checked) > label:before {
	content: '★';
}
.rating-area > input:checked ~ label {
	color: gold;
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
	color: gold;
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
	color: gold;
}
.rate-area > label:active {
	position: relative;
}
span.form_rating_bl_al {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
}
.review_form .check-block {
    display: block;
    text-align: left;
    margin-bottom: 25px;
}

.review_form .check-block #check {
    margin-right: 15px;
}
.review_form .modal_form__title_r {
    margin-bottom: 10px;
}
.revers_grid_tx h2 {
    color: black;
}
.revers_grid_tx {
    padding: 5rem 1rem;
    font-size: 14px;
}

.container_ant {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.container_ant a {
    display: none;
    flex-direction: column;
    align-items: center;
    transition: 140ms;
    font-size: 1.4rem;
    padding: 2rem;
    margin: 2rem;
    width: 19rem;
    border-radius: 5px;
    background: #ffffff;
    box-shadow:  5px 5px 13px #bababa,
             -5px -5px 13px #ffffff;
     text-align: center;
}
.container_ant a:hover {
    box-shadow: 1px 1px 8px #bababa, 0px 0px 3px #ffffff;
}
.container_ant a:nth-child(-n+12) {
    display: flex;
}
.container_ant a img {
    max-height: 16rem;
    max-width: 16rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.container_ant_category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.container_ant_category a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 140ms;
    font-size: 1.4rem;
    padding: 2rem;
    margin: 2rem;
    width: 19rem;
    border-radius: 5px;
    background: #ffffff;
    box-shadow:  5px 5px 13px #bababa,
             -5px -5px 13px #ffffff;
     text-align: center;
}
.container_ant_category a:hover {
    box-shadow: 1px 1px 8px #bababa, 0px 0px 3px #ffffff;
}
.container_ant_category a img {
    max-height: 16rem;
    max-width: 16rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.btn_more_container_ant button {
    width: 20rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 0.4rem;
    background: rgb(39, 150, 255);
    color: var(--color-w);
    font-weight: 600;
    line-height: 1.4rem;
    cursor: pointer;
    transition: 200ms;
    margin-top: 1rem;
    text-transform: uppercase;
}
.btn_more_container_ant {
    text-align: center;
}





.full_block_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10px;
  flex-direction: column;
}
.full_b_f_left {
  position: relative;
  width: 100%;
}
.full_b_f_left_title {
  z-index: 0;
  color: white;
  font-size: 36px;
  text-align: center;
  margin-bottom: 4rem;
}
.full_b_f_right_input input {
  height: 53px;
  margin-bottom: 0;
  padding: 0 20px 0 55px;
  width: 100%;
  border: 1px solid rgb(223, 223, 223);
  margin-bottom: 20px;
  outline: none;
}
.full_b_f_right_input input {
  background: #fff url(/assets/new-off-templates/images/images-all/full_block_form-3.png) 20px center no-repeat;
}
.full_b_f_right_input:first-child input {
  background: #fff url(/assets/new-off-templates/images/images-all/full_block_form-2.png) 20px center no-repeat;
}
.full_b_f_right {
  min-width: 400px;
}
.full_b_f_right_input div {
  color: #cdcdcd;
  font-size: 14px;
  margin: 16px 0;
}
.full_b_f_right_submit button {
  background: rgb(39, 150, 255);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  height: 55px;
  line-height: 55px;
  margin-top: 14px;
  margin-bottom: 14px;
  moz-border-radius: 3px;
  text-align: center;
  webkit-border-radius: 3px;
  width: 100%;
  border: none;
  -webkit-transition: 140ms;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0;
}
.full_b_f_right_submit button:hover {
  background: #0060D2;
  box-shadow: 0 2px 12px 0 rgb(39 150 255 / 60%);
}
.full_b_f_right_kurer {
  display: flex;
  align-items: center;
  color: #cdcdcd;
  font-size: 14px;
}
.full_b_f_right_podtv a {
  color: #4faeff;
  text-decoration: none;
}
.full_b_f_right_podtv {
  font-size: 14px;
  color: #cdcdcd;
}
.tree_form_bg {
  background-image: url(/assets/new-off-templates/images/images-all/tree-form-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
}

.issues-items {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin: 2rem 0;
}

.issues-items--min-width {
    flex-wrap: wrap;
    justify-content: space-between;
}



.issues-items .button_h {
    text-transform: unset;
    margin: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 0.4rem;
    background: rgb(39, 150, 255);
    color: var(--color-w);
    font-weight: 600;
    line-height: 1.4rem;
    cursor: pointer;
    transition: 200ms;
}

.issues-items--min-width .button_h {
    width: fit-content;
    flex-basis: 250px;
    padding: 1rem 2rem;
    flex-grow: 1;
    
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.faq {
    font-size: 16px;
	margin: 1rem auto;
	max-width: 900px;
}

.faq__question {
	border: 1px solid #E0E0E0;
	padding: 15px 20px;
	border-radius: 10px;
	transition: .3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	font-weight: bold;
	background: #FFFFFF42;
    backdrop-filter: blur(2px);
}

.faq__question:hover {
	cursor: pointer;
	border: 1px solid #111;
}

.faq__question:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='512' height='512' x='0' y='0' viewBox='0 0 451.847 451.847' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M225.923 354.706c-8.098 0-16.195-3.092-22.369-9.263L9.27 151.157c-12.359-12.359-12.359-32.397 0-44.751 12.354-12.354 32.388-12.354 44.748 0l171.905 171.915 171.906-171.909c12.359-12.354 32.391-12.354 44.744 0 12.365 12.354 12.365 32.392 0 44.751L248.292 345.449c-6.177 6.172-14.274 9.257-22.369 9.257z' fill='%23000000' data-original='%23000000'/%3E%3C/g%3E%3C/svg%3E");
	height: 25px;
	width: 25px;
	min-height: 25px;
	min-width: 25px;
	background-size: cover;
	display: inline-flex;
	transition: .3s;
	will-change: transform;
}

.faq__question--active {
	border: 1px solid #afafaf;
	background: #efefef;
}

.faq__question--active:after {
	transform: scale(-1);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='512' height='512' x='0' y='0' viewBox='0 0 451.847 451.847' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M225.923 354.706c-8.098 0-16.195-3.092-22.369-9.263L9.27 151.157c-12.359-12.359-12.359-32.397 0-44.751 12.354-12.354 32.388-12.354 44.748 0l171.905 171.915 171.906-171.909c12.359-12.354 32.391-12.354 44.744 0 12.365 12.354 12.365 32.392 0 44.751L248.292 345.449c-6.177 6.172-14.274 9.257-22.369 9.257z' fill='%23A3A3A3' data-original='%23A3A3A3'/%3E%3C/g%3E%3C/svg%3E");
}

.faq__answer {
	overflow: hidden;
	padding: 0 20px;
	line-height: 24px;
	max-height: 0;
	transition: .3s;
	will-change: max-height;
}

.faq__answer--active {
	overflow: visible;
}


.collapsing-content {
	max-height: 200px;
	overflow: hidden;
	transition: .3s;
	will-change: transform;
	position: relative;
}


.content-toggle {
	margin: 1rem auto;
	display: block;
	color: #111;
	background: transparent;
	border: none;
	border-bottom: 1px solid #111;
	padding: 0;
	border-radius: 0;
}

@media(max-width: 1048px) {
  /*header*/
  .tel_1,
  .tel_2,
  .address_text {
    font-size: 1.4rem;
  }
  .header_button button {
    width: 20rem;
  }
  /*header*/

  /*Карусель*/
  .ant-carousel {
    max-width: 71rem;
  }
  #carouselAntModel .ant-carousel-element {
    width: 23.6rem;
  }
  #carouselAntOtzovik .ant-carousel-element img {
    height: auto;
    width: 30rem;
  }
  #carouselAntOtzovik .ant-carousel-element {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .review_body {
    width: 50rem;
  }
  #carouselAntOtzovik .ant-carousel-element {
    max-width: 71rem;
  }
  /*Карусель*/
  /*Поиск моделей*/
  .search_text {
    margin-top: 2rem;
    display: flex;
    padding: 1rem;
    align-items: center;
  }
  .search_text button {
    width: 90rem;
  }

  /*Поиск моделей*/
}
@media(max-width: 1023px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  /*header*/
  .burger {
    display: flex;
  }
  header {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: 
    "logo"
    "header_tel"
    "header_button"
    "address"
    ;
    padding: 1rem;
  }
  .header_button {
    display: none;
  }
  .address {
      display: none;
  }
  .address_mob {
    display: flex;
  }
  .address_mob svg {
      color: white;
  }
  .rezhim {
    display: none;
  }
  .logo {
    align-items: flex-start;
  }
  .header_tel_items {
    align-items: center;
    justify-content: center;
    padding: 1rem 0rem;
  }
  .header_button button {
    width: 100%;
  }
  .header_button br {
    display: none;
  }
  .address {
    padding: 1rem 0;
  }
  .nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    max-width: 25rem;
    transition: 300ms;
    overflow: auto;
    background: rgb(0 0 0 / 80%);
  }
  .nav_active {
    left: 0%;
  }
  nav {
    display: flex;
    flex-flow: column;
    font-size: 1.6rem;
    font-weight: 200;
    margin-top: 1rem;
  }  
  nav a {
    padding: .5rem 1rem;
    transition: 200ms;
    max-width: 30rem;
    text-align: left;
    font-weight: 200;
    width: 100%;
  }
  .mob_nav_button {
    margin-top: 1rem;
  }
  .mob_nav_title {
    padding: .3rem;
    font-weight: 500;
    display: block;
  }
  .mob_nav_block {
    display: flex;
    flex-flow: column;
    font-size: 1.6rem;
    font-weight: 200;
  }
  .mob_nav_block a {
    padding: .5rem 1rem;
  }
  .mob_nav_button {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
  }
  .mob_nav_button button {
    width: 100%;
    padding: .7rem;
    border-radius: .4rem;
    background: rgb(39, 150, 255);
    color: var(--color-w);
  }
  .open_menu_uslug {
      display: none;
  }
  /*header*/

  /*Обложка*/
  .main {
    display: flex;
    flex-flow: column-reverse;
  }
  .main_model {
    flex-flow: column;  
  }
  .main_right {
    width: 100%;
    height: 30rem;
    display: none;
  }
  .main_right img {
    height: 30rem;
    object-fit: cover;
    width: 100%;
  }
    .main_right_model {
    height: auto;
  }
  .main_right_model img {
    height: 34rem;
    object-fit: cover;
    width: auto;
    margin-top: 3rem;
  }
  .main_left {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .main_content {
    margin: 0;
    padding: 5rem 0;
  }
  .main_content > * {
    margin-bottom: 1rem;
    text-align: center;
  }
  .main_title div:first-child,
  .main_title_category{
    font-size: 2.6rem;
  }
  .main_title div:last-child {
    font-size: 1.4rem;
  }
  .main_slogan {
    font-size: 1.6rem;
    text-align: center;
  }
  .main_priem_item {
    font-size: 2rem;
  }
  .main_button button {
    width: 100%;
    font-size: 1.6rem;
 }
  /*Обложка*/

  /*Карусель*/
  .ant-carousel {
    max-width: 18rem;
  }
  .ant-carousel-element {
    width: 18rem;
  }
  #carouselAntOtzovik .ant-carousel-element {
    max-width: 45rem;
    padding: 0;
  }
  #carouselAntOtzovik {
      max-width: 45rem;
      margin: 0 auto;
  }
  
  #carouselAntOtzovik .ant-carousel-element img {
    height: auto;
    width: 18rem;
    box-shadow: none;
  }
  .review_body {
    width: 32rem;
    padding: 0;
  }
  .review_text {
    font-size: 1.4rem;
    font-weight: 300;
  }
  .review_name {
    font-size: 1.7rem;
    padding: 1rem 0;
  }
  #carouselAntModel .ant-carousel-element {
    width: 18rem;
  }
  #carouselAntOtzovik div.ant-carousel-arrow-right {
    bottom: initial;
    top: 8rem; 
    right: 0;
  }
  #carouselAntOtzovik div.ant-carousel-arrow-left {
    bottom: initial;
    top: 8rem;
    left: 0;
  }
  /*Карусель*/

  /*Поиск моделей*/
  .search {
    padding: 1rem;  
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .search input {
    max-width: 52rem;
    width: 100%;
    border: 4px solid var(--brend-color);
    height: 5rem;
    margin-right: 0;
    margin-bottom: 2rem;
    border-radius: .4rem;
  }
  .search button {
    width: 100%;
    max-width: 52rem;
  }
  .search_text_all {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .search_text {
    flex-flow: column;
  }
  .search_text button {
    width: 100%;
    max-width: 52rem;
  }
  /*Поиск моделей*/

  /*Третяя форма*/
  input[type="submit"] {
    font-size: 2rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .tree_form {
    padding: 2rem 1rem;
  }
  .modal_form_title {
    font-size: 1.8rem;
    color: var(--color-w);
    margin-bottom: .5rem;
  }
  /*Третяя форма*/

  /*Текстовый блок*/
  .text_block_all {
    font-size: 1.4rem;
    padding: 1rem;
    padding-bottom: 2rem;
  }
  /*Текстовый блок*/

  /*Этапы работ*/
  .etap_items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .etap_item {
    max-width: 32rem;
    width: 100%;
  }
  /*Этапы работ*/
  /*Таймер с формой*/
  .form_timer {
    background: var(--brend-color);
  }
  .form_timer .container {
    display: flex;
    flex-flow: column;
  }
  .form_timer_l,
  .form_timer_r {
    width: 100%;
    padding: 4rem 1rem 0;
  }
  .form_timer_l_text {
    color: var(--color-w);
    font-size: 1.6rem;
    font-weight: 300;
    max-width: 50rem;
    text-align: center;
    padding-top: 3rem;
  }
  .countdown_number {
    padding: 2px;
  }
  .countdown  {
    padding: 1rem;
  }
  .countdown_title {
    font-size: 2rem;
  }
  /*Таймер с формой*/

  /*Сертификаты*/
  .sertif_item {
    padding: 2rem 2rem;
  }
  .sertif_items {
    padding: 1rem;
  }
  .sertif_item img {
    width: 100%;
  }
  /*Мастера*/
  .master_item_text {
    text-align: center;
    max-width: 60rem;
  }
  .master_item:first-child {
    display: flex;
    align-items: center;
    flex-flow: column-reverse;
  }
  .master_item_reverse {
    flex-flow: column-reverse;
  }
  .master_item_reverse .master_item_text {
    text-align: center;
  }
  .master_item {
    flex-flow: column-reverse;
    padding:4rem 1rem;
  }
  .master_item_text_img img {
    height: 18rem;
    margin: 0;
  }
  .master_item_text_name {
    font-size: 2rem;
  }
  /*Мастера*/

  /*Текст и картинка*/
  .text_image_block {
    display: flex;
    padding: 1rem;
    padding-top: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-flow: column;
  }
  .text_image_block_l, .text_image_block_r {
    width: 100%;
  }
  .text_image_block_r {
    font-size: 1.6rem;
    padding: 2rem 3rem;
  }
  .text_image_block_l img {
    border-radius: 35px 0;
    box-shadow: none;
    width: 100%;
    padding-bottom: 1rem;
    max-height: 30rem;
    object-fit: cover;
  }
  /*Текст и картинка*/
    .new_off_oblozhka_model_main .main_right {
        margin: 40px 0;
    }
  /*Форма с текстом*/
  .form_text .container {
    flex-flow: column;
  }
  .form_text_l,
  .form_text_r {
    width: 100%;
    padding: 1rem;
  }
  .form_text_l {
    padding: 5rem 1rem;
  }
  .form_text_priziv img {
    display: none;
  }
  .form_text_l div {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
  .form_text_l div:last-child {
    font-size: 2rem;
  }
  /*Форма с текстом*/

  /*Приемущества*/
  .priem {
    display: grid;
    margin: 5rem 0;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        "priem_item_1 priem_item_4"
        "priem_item_2 priem_item_5"
        "priem_item_3 priem_item_6";
  }
  .priem_images {
    display: none;
  }
  .priem_item_1 {
    background: none;
  }
  .priem_item:hover {
    background: none;
  }
  /*Приемущества*/
  /*подвал*/
  footer {
    padding: 5rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: 
    "footer_item1 footer_item3 footer_item5"
    "footer_item4 tek footer_item2"
    ;
  }
  .all_page_block_it {
    flex-flow: column;
  }
  .balun_content {
    flex-flow: column;
  }
  .reviews_block_p {
      font-size: 2rem;
      padding: 4rem 1rem;
  }
}
@media(max-width: 767px) {
    .background_modalTimer,
    .modal_formTimer {
        display: none;
    }
    .full_block_form {
        flex-direction: column;
    }
    .full_b_f_left {
        text-align: center;
    }
}
@media(max-width: 600px) {
  .priem {
    display: grid;
    margin: 5rem 0;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
        "priem_item_1"
        "priem_item_2"
        "priem_item_3"
        "priem_item_4"
        "priem_item_5"
        "priem_item_6";
  }
  .tel_1, .tel_2, .address_text {
    font-size: 1.3rem;
  }
  .price tbody td {
    font-size: 12px;
  }
  .tel_2 {
    margin-left: .5rem;
  }
  footer {
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: 
    "footer_item3"
    "footer_item2"
    "footer_item4"
    "footer_item1"
    "footer_item5"
    ;
  }
  .footer_item1,
  .footer_item2,
  .footer_item3,
  .footer_item4,
  .footer_item5 {
    margin: 3rem 0;
  }
  .tablet_time,
  .tablet_time,
  .tablet_garant,
  .tablet_time_td,
  .tablet_garant_td{
    display: none;
  }
  .top20 {
    display: none;
  }
  .contact_citys {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    margin: 3rem 0;
    justify-content: center;
  }
  .issues-items--min-width .button_h {
      flex-grow: 0;
  }
  
  .issues-items--min-width {
      justify-content: center;
  }
}
@media(max-width: 500px) {
   button.button_h {
    width: 70%;
    margin: auto;
   } 
   .price thead {
    font-size: 1.4rem;
   }
  #carouselAntOtzovik .ant-carousel-element {
    max-width: 36rem;
    padding: 0;
  }
  #carouselAntOtzovik {
      max-width: 36rem;
  }
  
  .review_body {
    width: 26rem;
    padding: 0;
  }
  .price table {
    padding: 2px;
  }
  .price thead th {
    font-size: 12px;
  }
  .total_price {
    display: flex;
    flex-direction: column;  
  }
  .total_price p {
      margin-bottom: 1rem;
  }
  .full_b_f_right {
    min-width: 280px;
  }
  .full_b_f_left_title {
    font-size: 22px;
  }
  .container_ant a {
    margin: 1rem;
    padding: 1rem;
    width: 13rem;
  }
  .container_ant a img {
    max-height: 10rem;
    max-width: 10rem;
  }
  .container_ant_category a {
    margin: 1rem;
    padding: 1rem;
    width: 13rem;
  }
  .container_ant_category a img {
    max-height: 10rem;
    max-width: 10rem;
  }
}
@media(max-width: 400px) {
  #carouselAntOtzovik .ant-carousel-element {
    max-width: 27rem;
    padding: 0;
  }
  #carouselAntOtzovik {
      max-width: 27rem;
  }
  
  .review_body {
    width: 18rem;
    padding: 0;
  }
   
}
@media (max-width: 380px){
  .header_tel_items svg {
    display: none;
  }
  .header_tel_items {
    justify-content: space-between;
  }
  .total_price,
  .tablet_totla_price{
      display: none;
  }
}











