/* Подключение шрифтов */
@font-face {
  font-family: "SF Pro Text";
  src: url("/public/apple/fonts/SFProText-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("/public/apple/fonts/SFProText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("/public/apple/fonts/SFProText-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("/public/apple/fonts/SFProText-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src: url("/public/apple/fonts/SFProText-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Глобальные стили */
body {
  font-family: "SF Pro Text", sans-serif;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  color: var(--black);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;

}

:root {
  --black: #3f3f3f;
  --blue: rgba(18, 120, 242, 1);
  --silver: rgba(128, 128, 128, 1);
}

button,
ul,
li {
  font-family: "SF Pro Text", sans-serif;
}

section,
header,
footer {
  display: flex;
}

.container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container > .row {
  display: flex;
}

.container > .row-grid {
  display: grid;
}

a {
  text-decoration: none;
  color: var(--black);
  font-family: "SF Pro Text", sans-serif;
}

.menu ul {
  list-style-type: none;
  padding-left: 0;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pc-none {
  display: none !important;
}
.pc-none-flex {
  display: none !important;
}
.mob-none {
  display: block !important;
}
.mob-none-flex {
  display: flex !important;
}

@media (max-width: 992px) {
  .container {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  background-color: white;
  display: flex;
  gap: 8px;
}

.btn.black {
  color: var(--black);
  border: 1px solid;
  border-color: var(--black);
  border-radius: 100px;
  font-weight: 400;
  padding: 12px 20px;
  transition: all 0.3s;
}

.btn.black:hover {
  cursor: pointer;
  background-color: var(--black);
  color: white;
}

.btn.black:hover svg path {
  fill: white;
}

.btn span {
  display: inline-block;
}

.btn.underline {
  padding: 0;
  margin: 0;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

.btn.underline:hover {
  text-decoration: none;
}

/* header */

header{
    position: relative;
}
header::after{
    position: absolute;
    bottom: 56px;
    width: 100%;
    height: 1px;
    opacity: 0.5;
    background-color: var(--black);
    content: '';
}

.header-top {
  padding: 16px 0;
  display: flex;
  height: auto;
  align-items: center;
  gap: 32px;
}
.header-bot-time {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  color: var(--silver);
}
.header-bot-num {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.catalogBtn {
  padding: 16px 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: fit-content;
  transition: all 0.3s ease;
  background: white;
  color: var(--black);
  cursor: pointer;
  border: 1px solid var(--black);
}

.catalogBtn svg.opened-svg {
  opacity: 0;
  position: absolute;
}
.catalogBtn svg {
  transform: rotate(0);
  transition: all 0.5s ease-in-out;
}

.catalogBtn:hover {
  border-color: transparent;
  background: var(--blue);
  color: white;
  border: 1px solid transparent;
}
.catalogBtn:hover svg path {
  stroke: white;
}

.catalogBtn.open svg path {
  stroke: white;
}
.catalogBtn.open {
  border-color: transparent;
  background: var(--blue);
  color: white;
  border: 1px solid transparent;
}

.catalogBtn.open svg {
  opacity: 0;
  position: absolute;
}

.catalogBtn.open .opened-svg {
  opacity: 1;
  transform: rotate(360deg);
  position: relative;
}

.header_cat {
  position: relative;
}

.header_menu {
  display: none;
  left: 0;
  z-index: 5;
  top: calc(100% + 12px);
  margin: 0;
  /* bottom: -20px; */
  position: absolute;
  width: 295px;
  max-height: 572px;
  overflow-y: auto;
  /* display: flex;  */
  gap: 12px;
  flex-direction: column;
  padding: 20px;
  border-radius: 18px;
  list-style: none;
  background-color: white;
  box-shadow: 0px 0px 32px 0px #0000000f;
  /* transition: all 0.3s ease-in-out; */
}

.header_menu a {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  background-color: #EFEFF2;
  color: var(--black);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.header_menu li:last-child a {
  margin-bottom: 0;
}

.header_menu a img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  object-fit: contain;
}

.header_menu a:hover {
  background-color: var(--black);
  color: white;
}

.form-btn {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo a {
  display: flex;
  gap: 10px;
  flex-direction: column;
  /* margin-bottom: 32px; */
}

footer .logo a{
    margin-bottom: 32px;
}

.logo a img {
  width: 196px;
  height: 30px;
  object-fit: contain;
  object-position: left;
}

.logo a span {
  font-size: 12px;
}

.label-warranty {
  background: var(--blue);
}

.header-bottom {
  /* border-top: 1px solid var(--black); */
  padding: 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

.header-bottom .header-address {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  gap: 8px;
}

.header-bottom .header-address span {
  color: var(--blue);
  /* text-decoration: underline; */
  font-size: 16px;
  line-height: 1.2;
  /* padding-top: 3px; */
  position: relative;
}

.header-bottom .header-address span::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--blue);
  content: "";
  width: 100%;
  height: 1px;
}

.contacts-item button {
  background-color: var(--blue);
}

.contacts-item a,
.adress-cont,
.adress-cont-jur {
  color: var(--blue);
}

.menu-header {
  display: flex;
  align-items: center;
  /* margin: 0 auto; */
}

.menu-header ul {
  display: flex;
  gap: 32px;
  margin: 0;
}

.menu-header ul li a {
  font-size: 16px;
  font-weight: 500;
}

.icon {
  display: flex;
  align-items: center;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.contact .worktime {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}

.contact .phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@keyframes pulse_phone {
  0% {
    transform: scale(1);
    opacity: 0.4;
}

50% {
    transform: scale(2.4);
    opacity: 0.2;
}
100% {
    transform: scale(1);
    opacity: 0.4;
}
}

.contact .phone a {
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.header-contact.contact .phone a{
  padding-left: 15px;
  display: inline-block;
}

.header-contact.contact .phone a::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: rgb(28, 214, 28);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0px;
  z-index: 2;
}

.header-contact.contact .phone a::after{
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(28, 214, 28);
  opacity: 0.4;
  transform: scale(1);
  animation: pulse_phone 2s infinite;
  z-index: 1;
}

.header-bot-num{
  padding-left: 15px;
  display: inline-block;
  position: relative;
}

.header-bot-num::after{
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(28, 214, 28);
  opacity: 0.4;
  transform: scale(1);
  animation: pulse_phone 2s infinite;
  z-index: 1;
}

.header-bot-num::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: rgb(28, 214, 28);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0px;
  z-index: 2;
}

.contact .phone a:hover{
    text-decoration: underline;
}

.contact .phone span {
  /* font-weight: 700; */
  font-size: 12px;
  color: var(--silver);
}

@media (max-width: 1200px) {
  header .btn.underline {
    display: none;
  }
}
@media (max-width: 992px) {
  .catalogBtn {
    display: none;
  }
  header .form-btn {
    gap: 8px;
  }
  header .form-btn .btn.blue {
    height: 44px;
    font-size: 10px;
    gap: 8px;
  }
  .header-top {
    gap: 8px;
  }
  .logo a img {
    width: fit-content;
  }
  .logo a span {
    min-width: fit-content;
    text-wrap: nowrap;
  }
}

/* header */

.menu-devices ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(171px, 1fr));
  gap: 20px 13px;
  margin: 0;
  /* margin: 0 auto; */
  /* margin-left: 2rem; */
}

.menu-devices ul.mob-v a {
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  background: #EFEFF2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.menu-devices ul.bur-cats {
  margin: 20px 0 40px 0;
}

.bur-cats li div {
  height: 110px;
  width: 100%;
  border-radius: 18px;
  background: #EFEFF2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bur-cats li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  flex-direction: column;
}

.bur-cats li div img {
  width: 80px;
  height: 80px;
}

.menu-devices ul li {
  font-size: 16px;
  font-weight: 500;
}

.main-section {
  padding-top: 20px;
}

.main-section .main-section-price{
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 30px;
}

.page-device .main-section .list-advantage{
    margin-bottom: 20px;
}

.main-section .main-section-price span{
    font-weight: 700;
    color: var(--blue);
}

.main-section .container-max{
  max-width: 1432px;
}

.page-index .main-section {
  padding-top: 28px;
  padding-bottom: 40px;
}

.main-section .card-row-form {
  padding: 0;
}
.main-section .card-row-form .right {
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.main-section .card-row-form .right .content {
  padding: 0;
}

.main-section .row {
  padding: 56px;
  background-color: #EFEFF2;
  border-radius: 18px;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.main-section .row .left {
  max-width: 693px;
}

.main-section.about .row .left {
  max-width: 745px;
}
.main-section.full .row .left {
  max-width: 100%;
}

.main-section.about .row{
    align-items: stretch;
}

.main-section.about .right{
    border-radius: 18px;
    overflow: hidden;
    height: auto;
    min-width:270px ;
}

.main-section.about .right img{
    max-height: none;
    object-fit: cover;
}

.seo-par {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.3;
}

.seo-par.error_page a{ 
  color: var(--blue);
  text-decoration: underline;
}
.seo-par.error_page span.js-open-modal{ 
  color: var(--blue);
  text-decoration: underline;
}

.seo-par p {
  margin: 0;
  font-size: 20px;
}

.seo-par ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.main-section .list-advantage {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  flex-direction: row;
}
.main-section .list-advantage li {
  background: white;
  padding: 14px 20px;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 335px;
}
.main-section .list-advantage-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.main-section .list-advantage-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
}

.main-section h1 {
  font-weight: 700;
  font-size: 48px;
  margin: 0;
  max-width: 693px;
  margin-bottom: 32px;
}

.page-index .main-section h1 {
  max-width: 600px;
  margin-top: 0;
}

.main-section .right {
  margin-left: auto;
  width: 44%;
  /* margin-right: 10%; */
}

.main-section .right img {
  width: 100%;
  height: 100%;
  max-height: 490px;
  object-fit: contain;
  /* object-position: top; */
}

.page-index .main-section .right img {
  max-height: 456px;
}

.list-advantage {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  margin-bottom: 40px;
}

.list-advantage div {
  font-weight: 300;
  line-height: 28px;
  color: var(--black);
}

.btn.blue {
  height: 55px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: white;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .btn.blue {
  height: 51px;
  font-weight: 500;
  padding: 16px 24px;
}

.btn.blue:hover {
  background-color: white;
  color: var(--blue);
  cursor: pointer;
}
.btn.blue:hover svg path {
  fill: var(--blue);
}

.main-btn {
  padding: 20px 28px;
}

.box-btn .btn-text {
  margin-top: 18px;
  max-width: 374px;
  color: var(--silver);
  font-weight: 400;
  font-size: 16px;
  /* margin-bottom: 40px; */
}

.contact-mobile {
  display: none;
}

.burger-menu {
  display: none;
}

@media (max-width: 992px) {
  .block-utps{
    padding: 50px 0;
  }
    .main-section .main-section-price{
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .page-device .main-section .list-advantage{
        margin-bottom: 8px;
    }
    .block-utps.warranty-utp .utp-inner-item br{
        display: none;
    }

    .block-utps.warranty-utp .utp-inner-item .utp-item-title{
        max-width: 315px;
    }

  .seo-par p {
    font-size: 16px;
  }
  .seo-par ul{
    font-size: 16px;
}
  .header-top {
    padding: 12px 0 8px 0;
  }

  .header-bottom {
    padding: 12px 0;
  }

  .card-device .price {
    margin-bottom: 20px;
  }

  .menu.menu-header,
  header .contact .worktime,
  header .contact .phone {
    display: none;
  }

  .page-index .main-section {
    padding: 20px 0 40px 0;
  }

  .card-row-form .right .form-subtitle {
    font-size: 14px;
    text-align: center;
  }

  .card-row-form .right form [name="phone"],
  .card-row-form .right form button {
    text-align: center;
  }

  .card-row-form .right form {
    gap: 8px;
  }

  .menu.menu-devices {
    display: none;
  }

  .contact-mobile {
    display: flex;
    justify-content: space-between;
  }

  .contact-mobile span {
    color: var(--silver);
    font-size: 12px;
    opacity: 0.7;
  }

  .contact-mobile a {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
  }

  .main-section h1 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-index .main-section h1 {
    font-size: 32px;
    padding-right: 50px;
    margin-bottom: 0;
  }

  .main-section .row {
    position: relative;
  }

  .main-section .right {
    display: none;
  }

  /* .page-index .main-section .right {
        display: block;
        position: absolute;
        height: 76px;
        width: 42px;
        right: 0;
        margin-right: 0;
    } */

  .list-advantage {
    margin-bottom: 32px;
  }

  .main-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  header .btn.black {
    /* background-color: var(--blue); */
    /* border-color: var(--blue); */
    /* color: white; */
    font-weight: 600;
    font-size: 10px;
    line-height: 1.2;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
  }

  header .btn.black svg path {
    /* fill: white; */
  }

  .logo a img {
    height: 26px;
  }

  .logo a span {
    font-weight: 400;
    font-size: 10px;
  }

  header .form-btn {
    display: flex;
    margin-left: auto;
  }

  .header-contact {
    margin-left: auto;
  }

  .burger-menu {
    /* margin-left: 8px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 100%;
    border: 1px solid var(--black);
  }

  .burger-menu span {
    height: 2px;
    width: 17px;
    background-color: var(--black);
    display: block;
    margin: 2px;
    transition: all 0.3s ease;
  }

  .box-btn .btn-text {
    font-weight: 400;
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

.block-utps {
  padding: 62px 0;
}
.block-utps-inner {
  /* display: flex; */
  /* flex-wrap: wrap; */
  gap: 24px 48px;
  /* justify-content: space-between; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.open-advan{
 max-width: 240px;
 width: 100%;
 margin: 20px auto 0;
}
.utp-inner-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  /* max-width: 22%; */
  /* flex: 1 0 22%; */
}

.utp-inner-item:nth-child(n+5){
  display: none;
}
.block-utps-inner.open .utp-inner-item:nth-child(n+5){
  display: flex;
}
.block-utps.warranty-utp .utp-inner-item {
  max-width: 465px;
}

.block-utps.warranty-utp h2 {
  font-size: 32px;
  margin: 0;
  margin-bottom: 32px;
  font-weight: 700;
  text-align: center;
}

.title-icon{
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    margin-bottom: 32px;
}
.title-icon h1{
    max-width: 755px;
    margin-bottom: 0;
}
.utp-item-title {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}
.utp-item-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
  text-align: center;
}

section.devices {
  padding-top: 62px;
  padding-bottom: 62px;
}

.devices-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-device {
  padding: 32px;
  /* box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1); */
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  background-color: #EFEFF2;
}

.card-device .btn.blue {
  height: 50px;
  width: 100%;
  background-color: transparent;
  color: white;
  max-width: fit-content;
  margin: 0 auto;
  color: #3f3f3f;
  gap: 8px;
  border: 1px solid var(--silver);
}

.card-device .title {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}

.card-device .price {
  color: var(--blue);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  font-weight: 600;
  /* margin-bottom: 31px; */
}

.box-img-btn {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* height: 220px; */
  margin-top: auto;
}

.box-img-btn img {
  object-fit: contain;
  width: 100%;
  max-width: 360px;
  height: 100%;
  max-height: 190px;
  object-position: center;
}

.btn-sum a {
  padding: 16px 24px;
  border-radius: 100px;
}

.card-device .btn.blue svg {
  transform: translateY(5px);
}

.card-device .btn.blue:hover svg path {
  fill: white;
}
.card-device .btn.blue:hover {
  color: white;
  background-color: var(--blue);
  border: 1px solid transparent;
}

.showDevice {
  padding: 0 28px;
  margin: 32px auto 0 auto;
}

h2{
  font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
}

/* .card-device:nth-child(1) { */
/* background: conic-gradient(from 230.91deg at 58.05% 116.84%, #1550AE -41.54deg, #9ED2E6 34.62deg, #031B58 188.65deg, #1550AE 318.46deg, #9ED2E6 394.62deg); */
/* } */
/*  */
/* .card-device:nth-child(2) { */
/* background: linear-gradient(141.03deg, #D5EAF6 7.61%, #F8FAF9 102.04%); */
/* } */

/* .card-device:nth-child(1) .title,
.card-device:nth-child(1) .price {
    background: linear-gradient(90deg, #fff 0%, #fff 22.63%, #fff 68%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
} */

@media (max-width: 992px) {
    .title-icon{
        margin-bottom: 20px;
    }
    .title-icon svg{
        display: none;
    }
  .devices-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .block-utps.warranty-utp h2 {
    margin-bottom: 20px;
  }

  .card-device {
    padding: 24px;
    position: relative;
  }

  .card-device .title {
    font-size: 18px;
  }

  .card-device .price {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .box-img-btn {
    height: 116px;
    align-items: center;
  }
  .box-img-btn img {
    max-height: 116px;
  }

  .btn-sum {
    /* display: none; */
  }

  .card-device .btn-sum .btn.blue {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 18px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .card-mob-link {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 18px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .card-device .btn.blue span {
    display: none;
  }

  .btn-sum a {
    padding: 15px 24px;
  }

  section.devices {
    padding: 50px 0;
  }
}

section.work {
  max-width: 1296px;
  margin: 62px auto;
}

section.work h2 {
  margin: 0;
  margin-bottom: 32px;
  max-width: 528px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}
.work_inner {
  box-shadow: 0px 0px 32px 0px #0000000f;
    border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 42px;
}
.work_inner .work-img {
  max-width: 630px;
  height: auto;
  border-radius: 18px 0 0 18px;
}
.work_inner .work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
}
.work_inner .work-text-box {
  padding: 32px 32px 32px 0;
}
.work_inner .work-title {
}
.work_inner .work-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.work_inner .work-list li {
  position: relative;
}
.work_inner .work-list li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 24px);
  background-color: #808080;
  top: 0;
  left: 25px;
}
.work_inner .work-list li:last-child:before {
  display: none;
}
.work_inner .work-list-up {
  display: flex;
  gap: 16px;
  align-items: center;
}
.work_inner .work-up-icon {
  width: 51px;
  height: 51px;
  min-width: 51px;
  border-radius: 100%;
  border: 1px solid #808080;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.work_inner .work-up-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.work_inner .work-up-text span {
  font-size: 16px;
  color: var(--blue);
}
.work_inner .work-list-bot {
  margin-top: 18px;
  max-width: 560px;
  font-size: 16px;
  color: #808080;
  padding-left: 67px;
}

@media (max-width: 992px) {
  .work-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .card-work {
    padding: 24px;
  }

  section.work {
    margin: 50px auto;
    padding: 32px 0;
  }
}

.stock {
  padding: 56px 0;
}

.stock-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stock-1 {
  height: 368px;
}

.stock-2 {
  height: 172px;
}

.one.stock-2 {
  margin-bottom: 24px;
}

.card-stock {
  border-radius: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.btn.white {
  color: var(--black);
  background-color: white;
  border: 1px solid white;
}

.card-stock .text {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: white;
  margin-left: 40px;
  margin-bottom: 20px;
  margin-top: auto;
}

.card-stock .btn {
  padding: 16px 24px;
  margin-bottom: 40px;
  margin-left: 40px;
}

.card-stock.stock-big .text {
  max-width: 347px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .stock-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .card-stock {
    height: 185px;
  }

  .card-stock .text {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -1px;
    margin-left: 32px;
    margin-right: 32px;
  }

  .card-stock .btn {
    margin-left: 32px;
    margin-bottom: 32px;
  }

  .stock {
    padding: 32px 0;
  }
}

.form-delivery {
  padding: 32px;
}

.card-row-form {
  gap: 24px;
}

.card-row-form .left {
  height: 201px;
  border-radius: 18px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 526px;
  display: flex;
  padding: 0 25px;
}

.card-row-form .left .img {
  display: flex;
  align-items: center;
}

.card-row-form .left .box-text {
  margin-left: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-row-form .left .box-text .title {
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.card-row-form .left .box-text .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--silver);
}

.card-row-form .right {
  height: 201px;
  border-radius: 18px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  background: linear-gradient(141.03deg, #d5eaf6 7.61%, #f8faf9 102.04%);
}

.card-row-form .right .content {
  padding: 20px 25px;
}

.card-row-form .right .form-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.card-row-form .right .form-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 12px;
}

.card-row-form .right .form-subtitle span {
  font-weight: 700;
  color: var(--blue);
}

.card-row-form .right form {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.card-row-form .right form [name="phone"] {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 24px;
  max-width: 270px;
  border: 1px solid var(--silver);
  color: var(--silver);
  height: 57px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  outline: none;
  /* text-align: center; */
}

.card-row-form .right form button {
  width: 100%;
  max-width: 270px;
  height: 57px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  text-align: center;
}

.text-politika {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--silver);
}

.text-politika a{
  text-decoration: underline;
}


@media (max-width: 992px) {
  .card-row-form {
    flex-direction: column;
  }

  .card-row-form .right {
    height: auto;
  }

  .card-row-form .right form {
    flex-direction: column;
    gap: 12px;
  }

  .block-utps-inner {
    justify-content: center;
  }
  .utp-inner-item {
    gap: 6px;
    max-width: 355px;
    width: 100%;
  }
  .utp-inner-item:nth-child(1) br {
    display: none;
  }
  .utp-item-title {
    margin: 0;
    margin-bottom: 6px;
    font-size: 18px;
  }
  .utp-item-text {
    font-size: 14px;
  }

  .text-politika {
    text-align: center;
    font-size: 14px;
  }

  .text-seo ul {
    padding-left: 1rem;
  }

  .select-faq.active span {
    text-decoration: underline;
  }

  .card-row-form .left {
    width: inherit;
    flex-direction: column;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .form-delivery {
    padding-left: 0;
    padding-right: 0;
  }

  .card-row-form .left .box-text {
    margin-left: 0;
  }

  .card-row-form .left .box-text .title,
  .card-row-form .left .box-text .subtitle {
    text-align: center;
  }

  .card-row-form .left .box-text .title br,
  .card-row-form .left .box-text .subtitle br {
    display: none;
  }

  .card-row-form .left .img {
    justify-content: center;
    height: 100px;
  }

  .card-row-form .left .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .card-row-form .right form [name="phone"],
  .card-row-form .right form button {
    max-width: 100% !important;
  }
}

section.map {
  background-color: white;
  padding: 0;
}

section.map .container {
  padding: 0;
}

.map .title-section h2 {
  margin-bottom: 16px;
}

.map .title-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.row-map {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#map {
  height: 614px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}

#map ymap,
#map div,
#map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .title-section h2 {
    font-size: 32px;
  }

  .row-map {
    grid-template-columns: repeat(1, 1fr);
  }

  #map {
    max-height: 346px;
  }

  .right-map .review {
    position: relative;
    top: -50px;
  }

  section.map {
    padding-bottom: 0;
  }
}

.new-reviews {
  padding: 26px;
  background-color: white;
  box-shadow: 0px 4px 12px 0px #0000001a;
  border-radius: 20px;
  height: 614px;
}

.new-reviews .title-block {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 0;
}

.new-reviews .title-block img {
  margin-left: auto;
  max-width: 133px;
  height: 33px;
  object-fit: contain;
}

.new-reviews .title-block .h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 0;
}

.new-reviews .new-reviews-ratings {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.new-reviews .new-reviews-ratings span {
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}

.new-reviews .ratings-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.new-reviews .ratings-block-text {
  position: relative;
}

.new-reviews .ratings-block-text ::after {
  content: "•";
  position: absolute;
  left: 100px;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%);
  color: #3f3f3f;
  font-weight: 300;
}

.new-reviews .ratings-block-text span {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #3f3f3f;
}

.new-reviews .ratings-block-text span:nth-child(2) {
  padding-left: 20px;
}

.new-reviews .new-reviews-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 0;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  justify-content: center;
  border-radius: 8px;
}

.new-reviews .new-reviews_inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
  max-height: 380px;
}

.new-reviews .content_slide {
  padding: 0;
  border: none;
}

.new-reviews .review_head {
  margin-bottom: 12px;
  display: flex;
}

.new-reviews .img-people {
  width: 48px;
  height: 48px;
  margin-right: 16px;
  overflow: hidden;
  border-radius: 100%;
}

.new-reviews .img-people img {
  width: 48px;
  height: 48px;
}

.new-reviews .data-people {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-reviews .fio {
  font-size: 16px;
  margin-bottom: 4px;
}

.new-reviews .reting_star span {
  width: fit-content;
}

.new-reviews .review_body {
  margin-bottom: 0;
}

.new-reviews .txt {
  font-size: 16px;
  line-height: 22px;
  overflow-y: hidden;
  max-height: 70px;
}

.new-reviews .txt.show {
  max-height: 1000px;
}

.new-reviews .review_footer button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  font-size: 16px;
  text-decoration: underline;
  padding-left: 0;
}

.new-reviews .open-reviews {
  display: block;
  border: none;
  margin: 0 auto;
  margin-top: 20px;
  background: #f4f6f9;
  padding: 7px 23px;
  border-radius: 8px;
  color: var(--blue);
  font-size: 12px;
}

@media (max-width: 992px) {
  .new-reviews {
    padding: 20px;
  }

  .new-reviews .title-block {
    margin-bottom: 10px;
  }

  .new-reviews .title-block img {
    display: none;
  }

  .new-reviews .title-block .h2 {
    font-size: 16px;
  }

  .new-reviews .new-reviews-ratings {
    gap: 12px;
    margin-bottom: 16px;
  }

  .new-reviews .new-reviews-ratings span {
    font-size: 54px;
  }

  .new-reviews .ratings-block-text span {
    font-size: 14px;
  }

  .new-reviews .new-reviews-btns {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .new-reviews-btns .btn-repair {
    margin-right: 0;
  }

  /* .new-reviews .content_slide:nth-child(n+2) {
        display: none;
    } */

  .new-reviews.show .content_slide:nth-child(n + 2) {
    display: block;
  }

  .new-reviews {
    height: 455px;
  }

  .new-reviews .new-reviews_inner {
    max-height: 230px;
  }
}

@media (max-width: 411px) {
  .new-reviews .new-reviews_inner {
    max-height: 200px;
  }

  .new-reviews .new-reviews-btns span {
    padding-left: 10px;
  }
}

.new-reviews-btns .blue {
  padding: 12px 23px;
  border-radius: 8px;
  height: 34px;
  font-size: 12px;
}

section.seo {
  padding: 62px 0;
}

section.seo .title-section h2 {
  max-width: initial;
}

section.seo h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
section.seo h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}
section.seo h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.text-seo {
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding-bottom: 25px;
}

.text-seo p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 20px;
}

.text-seo ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 2rem;
  font-size: 20px;
  margin: 0;
}

@media (max-width: 992px) {
  section.seo {
    padding: 50px 0;
  }
  section.sale-form{
    padding: 50px 0;
  }
  section.seo .title-section h2 {
    margin-bottom: 16px;
  }

  .text-seo h3 {
    font-size: 24px;
    margin: 32px 0 16px 0;
  }
}

section.sale-form {
  padding: 62px 0;
}

section.sale-form .sale-form_inner {
  padding: 56px;
  background-color: var(--blue);
  color: white;
  box-shadow: 0px 0px 32px 0px #0000000f;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

section.quiz {
  padding: 62px 0;
}
section.quiz h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 32px;
}
section.quiz .quiz_inner {
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0px 0px 32px 0px #0000000f;
}

section.quiz .quiz_inner-calc {
  display: flex;
  flex-direction: column;
}
section.quiz .quiz-calc-item {
  margin-bottom: 24px;
  position: relative;
  flex-wrap: wrap;
}
section.quiz .quiz-calc-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 25px;
  height: calc(100% + 24px);
  width: 1px;
  background-color: #808080;
}
section.quiz .quiz-calc-item:last-child {
  margin-bottom: 0;
}
section.quiz .quiz-calc-item:last-child::before {
  height: 100%;
}
section.quiz .quiz-item-title {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  background-color: white;
}
section.quiz .quiz-item-title-icon {
  width: 51px;
  height: 51px;
  min-width: 51px;
  border-radius: 100%;
  border: 1px solid #808080;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.quiz .quiz-item-title-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 20px;
  font-weight: 600;
}
section.quiz .quiz-item-title-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}
section.quiz .quiz-item-title-text .text span {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
}
section.quiz .quiz-item-body {
  padding-left: 67px;
  flex: 1 0 100%;
}
section.quiz .quiz-body-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
section.quiz .quiz-cat-item {
  background-color: #EFEFF2;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  width: fit-content;
  padding: 12px 20px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
  transition: all 0.3s ease;
}
section.quiz .quiz-cat-item:hover {
  background-color: var(--black);
  color: white;
}
section.quiz .quiz-cat-item.active {
  background-color: var(--black);
  color: white;
}
section.quiz .quiz-cat-item-img {
  pointer-events: none;
  width: 32px;
  height: 32px;
  min-width: 32px;
}
section.quiz .quiz-cat-item-img img {
  width: 100%;
  height: 32px;
  object-fit: contain;
}

section.quiz .quiz-calc-item#slide2 .quiz-item-body {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-select {
  background-color: #EFEFF2;
  border-radius: 100px;
  position: relative;
  padding: 19px 44px 19px 24px;
  max-width: 792px;
  width: fit-content;
  cursor: pointer;
}

section.quiz
  .quiz-calc-item#slide2
  .quiz-item-body
  .quiz-body-select
  .quiz-select-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
section.quiz
  .quiz-calc-item#slide2
  .quiz-item-body
  .quiz-body-select.active
  svg {
  transform: rotate(180deg) translateY(50%);
}

section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-select-item {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  cursor: pointer;
}
section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-select-item:hover {
  text-decoration: underline;
}
section.quiz
  .quiz-calc-item#slide2
  .quiz-item-body
  .quiz-body-select
  .quiz-select-item.active {
  display: block;
}
section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-selectors {
  display: none;
  background-color: #EFEFF2;
  border-radius: 18px;
  position: relative;
  /* display: flex; */
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: var(--black);
  padding: 19px 24px;
  max-width: 792px;
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
}
section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-select-btn {
  font-size: 16px;
  font-weight: 600;
  color: white;
  border: 1px solid transparent;
  background-color: var(--blue);
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 26px;
}

section.quiz
  .quiz-calc-item#slide2
  .quiz-item-body
  .quiz-body-select-btn:hover {
  background-color: white;
  border: 1px solid var(--blue);
  color: var(--blue);
}
section.quiz .quiz-calc-item#slide3 .quiz-item-body .main-section {
  padding: 0;
}
section.quiz
  .quiz-calc-item#slide3
  .quiz-item-body
  .main-section
  .card-row-form
  .right
  form
  button {
  max-width: 240px;
  border: 1px solid transparent;
}
section.quiz
  .quiz-calc-item#slide3
  .quiz-item-body
  .main-section
  .card-row-form
  .right
  form
  button {
  border: 1px solid var(--blue);
}

section.masterSlider {
  padding: 62px 0;
  background-color: #EFEFF2;
}

section.masterSlider h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

section.masterSlider .masterSlider_inner {
  display: grid;
  grid-template-areas:
    " text image   "
    " form image   ";
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

section.masterSlider .text-slider {
  grid-area: text;
  max-width: 610px;
  pointer-events: none;
}

section.masterSlider .text-slider .text-slide-prof {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;
  border: 1px solid var(--blue);
  border-radius: 100px;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
}
section.masterSlider .text-slider .text-slide-name {
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
}
section.masterSlider .text-slider .text-slide-age {
  padding-top: 12px;
  font-size: 20px;
}
section.masterSlider .text-slider .text-slide-age span {
  font-weight: 700;
}
section.masterSlider .text-slider .text-slide-sert {
  max-width: 300px;
  max-height: 270px;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.masterSlider .text-slider .text-slide-sert img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

section.masterSlider .image-slider {
  grid-area: image;
  max-width: 526px;
  max-height: 426px;
  /* overflow: hidden; */
  /* border-radius: 18px; */
}
section.masterSlider .image-slider img {
  width: 100%;
  max-height: 426px;
  object-fit: cover;
}
section.masterSlider .masterSlider-nav {
  grid-area: form;
}

section.masterSlider .masterSlider-nav .main-section {
  padding: 0;
  margin-bottom: 24px;
}

section.masterSlider .controls {
  display: flex;
  gap: 16px;
}
section.masterSlider .control-btn {
}
section.masterSlider .prev-btn,
section.masterSlider .next-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3f3f3f;
  background: white;
  border-radius: 100%;
}

section.masterSlider .card-row-form .right form button {
  max-width: 200px;
  border: 1px solid transparent;
}
section.masterSlider .card-row-form .right form button:hover {
  border: 1px solid var(--blue);
}

section.sert {
  padding: 62px 0;
}

section.sert h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

section.sert .sert-inner {
  display: flex;
  gap: 40px;
  /* justify-content: center; */
  align-items: center;
}
section.sert .sert_inner-text {
  /* max-width: 580px; */
  font-size: 20px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
section.sert .sert_inner-text p {
  margin: 0;
  padding: 0;
}
section.sert .sert_inner-text ul {
  display: flex;
  gap: 12px;
  font-size: 20px;
  padding: 0;
  margin: 0;
  padding-left: 2rem;
  list-style: disc;
  flex-direction: column;
}
section.sert .sert_inner-img {
  max-width: 266px;
  width: 100%;
  max-height: 320px;
}
section.sert .sert_inner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 320px;
}

section.warranty {
  padding: 62px 0;
}

section.warranty h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

section.warranty .card-row-form .right form button {
  max-width: 240px;
  border: 1px solid transparent;
}
section.warranty .card-row-form .right form button:hover {
  border: 1px solid var(--blue);
}

.warranty_box {
  box-shadow: 0px 0px 32px 0px #0000000f;
  background-color: white;
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.warranty_box .warranty_cards {
  position: relative;
  z-index: 2;
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.warranty_box .warranty-card {
  background: #EFEFF2;
  border-radius: 18px;
  padding: 14px 20px;
  font-size: 16px;
  color: #808080;
  line-height: 1.25;
}
.warranty_box .warranty-card-title {
  color: var(--blue);
  display: flex;
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.warranty_box .warranty-card-title svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.warranty_box .main-section {
  padding: 0;
  padding-top: 32px;
  position: relative;
  z-index: 2;
}
.warranty_box .sale-form-back {
  z-index: 1;
  top: initial;
  right: 32px;
  bottom: -40px;
  opacity: 0.2;
}

.warranty_box .sale-form-back span {
  opacity: 0.2;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.warranty_box .sale-form-back span:nth-child(1) {
  font-size: 230px;
  grid-area: num;
}
.warranty_box .sale-form-back span:nth-child(2) {
  font-size: 95px;
  grid-area: per;
  align-self: flex-end;
  line-height: 0.9;
}
.warranty_box .sale-form-back span:nth-child(3) {
  font-size: 140px;
  grid-area: text;
  align-self: flex-start;
  line-height: 0.9;
}

section.sale-form .sale-form-women {
  position: absolute;
  bottom: -20px;
  right: -130px;
  max-height: 498px;
  z-index: 1;
  width: clamp(277px, calc(44.4vw + 101.61px), 741px);
}

.sale-form-back {
  position: absolute;
  right: 25px;
  top: -10px;
  opacity: 0.4;
  display: grid;
  grid-template-areas:
    "num per"
    "num text";
}

.sale-form-back span {
  opacity: 0.2;
  font-weight: 700;
  text-transform: uppercase;
}

.sale-form-back span:nth-child(1) {
  font-size: 458px;
  grid-area: num;
}
.sale-form-back span:nth-child(2) {
  font-size: 188px;
  grid-area: per;
  align-self: flex-end;
  line-height: 0.9;
}
.sale-form-back span:nth-child(3) {
  font-size: 220px;
  grid-area: text;
  align-self: flex-start;
  line-height: 0.9;
}

section.sale-form h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 768px;
  margin: 0;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

section.sale-form p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 608px;
  position: relative;
  z-index: 2;
}

section.sale-form .last-form-row {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

section.sale-form .last-form-row form {
  gap: 20px;
  margin-top: 0;
}

section.sale-form .last-form-row form [name="phone"] {
  padding: 18px 24px;
  max-width: 269px;
  min-width: 269px;
  background: white;
  border: none;
  text-align: left;
  font-size: 16px;
  height: 56px;
}
section.sale-form .last-form-row form button {
  background-color: white;
  color: var(--black);
  max-width: 197px;
  font-size: 16px;
  min-width: 197px;
  height: 56px;
}

section.sale-form .text-politika {
  color: white;
  opacity: 0.5;
}

section.sale-form .text-politika a{
  color: white;
}

.faq h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;

}

.faq .faq-head-row {
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.faq_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq {
  padding: 62px 0;
}

.select-faq {
  cursor: pointer;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  display: flex;
  border-radius: 130px;
  border: 1px solid var(--black);
  justify-content: space-between;
  pointer-events: all;
}

.select-faq:hover {
  background-color: rgba(63, 63, 63, 1);
  color: white;
  text-decoration: underline;
  border-color: rgba(63, 63, 63, 1);
}

.select-faq:hover svg {
  transform: rotate(180deg);
}

.select-faq:hover svg path {
  fill: white;
}

.select-faq.active {
  text-decoration: underline;
  background-color: var(--blue);
  color: white;
  border-color: var(--blue);
  pointer-events: none;
}

.select-faq h3{
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.box-faq p{
  font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;padding: 0;
}

.select-faq svg {
  transform: rotate(0deg);
  transition: all 0.3s;
}

.select-faq.active svg {
  transform: rotate(180deg);
}

.select-faq.active svg path {
  fill: white;
}

.box-faq {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(128, 128, 128, 1);
}

.box-faq.show {
  display: block;
}

.icon-faq {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.select-faq + .box-faq {
  /* display: none; */
}

.select-faq + .box-faq.table {
  display: none;
}

@media (max-width: 992px) {
  section.masterSlider .text-slider .text-slide-sert{
    margin: 12px auto 0 auto;
  }
  .faq h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
  .faq .faq-head-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .faq_wrapper {
    gap: 8px;
  }
  .select-faq {
    font-size: 14px;
  }
  .box-faq {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* .select-faq {
        display: flex;
        justify-content: center;
    } */

  .faq {
    padding: 50px 0;
  }
  section.reviews{
    padding: 50px 0;
  }
  .text-seo p:last-child {
    margin-bottom: 0;
  }

  .select-faq + .box-faq {
    display: none;
  }

  .select-faq.active + .box-faq {
    display: flex;
    color: rgba(128, 128, 128, 1);
  }

  .select-faq.active + .box-faq.table {
    flex-direction: column;
    color: rgba(128, 128, 128, 1);
  }
}

.faq .rep-head-row {
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.faq .rep-head-row {
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.rep_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rep_wrapper-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
}

.rep {
  padding: 56px 0;
}

.select-rep {
  cursor: pointer;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
  display: flex;
  border-radius: 130px;
  border: 1px solid var(--black);
  justify-content: space-between;
  pointer-events: all;
}

.select-rep:hover {
  background-color: rgba(63, 63, 63, 1);
  color: white;
  text-decoration: underline;
  border-color: rgba(63, 63, 63, 1);
}

.select-rep:hover svg {
  transform: rotate(180deg);
}

.select-rep:hover svg path {
  fill: white;
}

.select-rep.active {
  text-decoration: underline;
  background-color: var(--blue);
  color: white;
  border-color: var(--blue);
  pointer-events: none;
}

.select-rep svg {
  transform: rotate(0deg);
  transition: all 0.3s;
}

.select-rep.active svg {
  transform: rotate(180deg);
}

.select-rep.active svg path {
  fill: white;
}

.box-rep {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(128, 128, 128, 1);
}

.box-rep.show {
  display: block;
}

.icon-rep {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.select-rep + .box-rep {
  /* display: none; */
}

.select-rep + .box-rep.table {
  display: none;
  list-style: none;
  padding: 0;
}
.select-rep.active + .box-rep.table.show {
  display: block;
  list-style: none;
  padding: 0;
}

@media (max-width: 992px) {
  .rep .rep-head-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .rep_wrapper {
    gap: 8px;
  }
  .select-rep {
    font-size: 14px;
  }
  .box-rep {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* .select-rep {
        display: flex;
        justify-content: center;
    } */

  .rep {
    padding: 32px 0;
  }

  .text-seo p:last-child {
    margin-bottom: 0;
  }

  .select-rep + .box-rep {
    display: none;
  }

  .select-rep.active + .box-rep {
    display: flex;
    color: rgba(128, 128, 128, 1);
  }

  .select-rep.active + .box-rep.table {
    flex-direction: column;
    color: rgba(128, 128, 128, 1);
  }
}

.last-form-row {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  margin-top: 117px;
  margin-bottom: 32px;
  padding: 32px;
  border-radius: 18px;
  position: relative;
}

.last-form-row form {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}

.last-form-row .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.last-form-row .subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--silver);
}

.last-form-row form [name="phone"] {
  width: 100%;
  min-width: 324px;
  height: 57px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  outline: none;
  text-align: center;
  font-size: 18px;
}

.last-form-row form button {
  width: 100%;
  min-width: 324px;
  height: 57px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  text-align: center;
}

.last-form-row .right img {
  position: absolute;
  bottom: 0;
  right: 94px;
}

@media (max-width: 992px) {
  .last-form-row {
    flex-direction: column;
    margin-top: 0;
    padding: 24px;
  }

  .last-form-row form {
    flex-direction: column;
    gap: 12px;
  }

  .last-form-row .right {
    height: 280px;
    position: relative;
  }

  .last-form-row .right img {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -24px;
    height: 100%;
  }

  .last-form-row form [name="phone"] {
    min-width: initial;
  }

  .last-form-row form button {
    min-width: initial;
  }
}

footer {
  background-color: #EFEFF2;
  padding-top: 40px;
  padding-bottom: 40px;
}

footer .container > .row-grid {
  grid-template-areas:
    "left mid rig"
    "left req req"
    "par par par";
  gap: 28px 42px;
  grid-template-columns: 320px;
}

/* .footer-grid {
    grid-template-columns: repeat(4, 1fr);
} */

footer .logo span {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}

footer .footer-city {
  font-size: 16px;
  font-weight: 700;
  max-width: 270px;
  margin-bottom: 20px;
}

footer .footer-city b {
  text-decoration: underline;
  color: var(--blue);
}

footer .footer-city span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 400;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

.menu-footer ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.menu-footer ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.footer-row {
  justify-content: space-between;
}

.phone-footer {
  display: flex;
  flex-direction: column;
}

.logo .phone-footer {
  flex-direction: column;
}

.phone-footer a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.phone-footer a:hover {
  text-decoration: underline;
}

.phone-footer span {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: var(--silver);
  display: block;
  margin-bottom: 20px;
}

.menu-footer-little {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
}

.menu-footer-little ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.menu-footer-little ul li a {
  color: var(--silver);
}

.menu-footer-little ul li a:hover {
  text-decoration: underline;
}

.title-footer {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.req {
  display: flex;
  gap: 20px;
  grid-area: req;
}

.column-1 {
  grid-area: left;
  max-width: 290px;
}

.column-2 {
  grid-area: mid;
}

.column-2 .menu-footer {
  display: flex;
  gap: 42px;
}

.column-3 {
  grid-area: rig;
}

.column-3 ul {
  max-height: 360px;
  overflow-y: auto;
}
.column-3 ul a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
}

.footer-par {
  grid-area: par;
  font-size: 16px;
  color: var(--silver);
  opacity: 0.5;
}

.req div {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

@media (max-width: 992px) {
  .footer-row {
    flex-direction: column;
  }

  .logo .phone-footer {
    display: flex;
    justify-content: flex-end;
  }

  .phone-footer a {
    font-size: 14px;
  }

  .phone-footer span {
    margin-bottom: 6px;
  }

  .phone-footer a {
    margin-bottom: 0;
  }

  .menu-footer ul {
    flex-direction: row;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-top: 0;
    /* margin-bottom: 44px; */
  }

  .req div,
  .title-footer {
    display: flex;
    /* justify-content: center; */
  }

  .column-3 .phone-footer {
    display: none;
  }

  footer .logo {
    display: flex;
    justify-content: space-between;
  }

  .menu-footer-little ul {
    text-align: center;
    margin: 0 0 44px 0;
  }
  .req {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 12px;
  }
}

.breadcrumbs {
  display: flex;
  padding: 12px;
  border-radius: 18px;
  background: #EFEFF2;
  margin-bottom: 12px;
  width: fit-content;
  align-items: center;
}

.name-bread {
  display: flex;
  align-items: center;
}

.name-bread a {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  color: var(--silver);
}

.name-bread .icon {
  width: 20px;
  height: 20px;
  display: flex;
  padding-top: 2px;
  margin-right: 4px;
}

.name-bread .icon svg {
  width: 100%;
  height: 100%;
  min-width: 20px;
}

.name-bread a {
  border-bottom: 1px solid var(--silver);
}

.name-bread a:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.name-bread .name {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  color: var(--silver);
}

.breadcrumbs .separator {
  margin: 0 6px;
  font-size: 12px;
  font-weight: 400;
}

.select-model {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #EFEFF2;
  flex-direction: column;
}

.model-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-model-little {
  gap: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 18px;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-model-little .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-model-little .right {
  height: 90px;
}

.card-model-little .right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.card-model-little .name {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.card-model-little .price {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  background: linear-gradient(90deg, #1664bc 0%, #9e35ae 46.63%, #bd380b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.model-search {
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
}

.model-search input {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 100px;
  border: none;
  outline: none;
  width: 100%;
  max-width: 526px;
  padding-left: 28px;
  padding-right: 28px;
}

.model-search .btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 28px;
  padding-right: 28px;
}

.model-search .btn svg {
  position: relative;
  top: 2px;
}

.model-search .btn:hover svg path {
  stroke: var(--blue);
}

.btn-show-card .btn.blue {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--blue);
  height: 55px;
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-show-card .btn.blue:hover {
  background-color: white;
}

.all-size h2 {
  width: 100%;
  max-width: initial;
}

.repair-model {
  padding-top: 56px;
  padding-bottom: 56px;
  flex-direction: column;
}

.repair-model .container > .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 24px;
  align-items: start;
}

.repair-model h2 {
  margin: 0;
  margin-bottom: 32px;
  text-align: center;
}

.link-repair span {
  color: var(--black);
  border-bottom: 1px solid var(--black);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.link-repair::before {
  content: "·";
  padding-right: 10px;
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  position: relative;
  top: 5px;
}

.table.show {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.model-grid .card-model-little:nth-child(n + 10) {
  display: none;
}

.model-grid.show .card-model-little:nth-child(n + 10) {
  display: flex;
}

@media (max-width: 992px) {
  .repair-model .container > .row {
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
  }
  .repair-model h2 {
    margin-bottom: 20px;
  }
  .repair-model {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
  }

  /* .card-model-little .right, */
  /* .card-model-little .price, */
  .model-search {
    display: none;
  }

  .select-model {
    flex-direction: column;
    padding: 32px 0;
  }

  .model-grid {
    display: flex !important;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-model-little.active {
    background-color: white;
    color: white;
  }

  .card-model-little {
    padding: 12px 20px;
    width: 100%;
  }

  .card-model-little .name {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    color: var(--black);
    margin-bottom: 12px;
  }

  .card-model-little .right img {
    width: 70px;
    object-fit: contain;
    height: 70px;
  }

  .card-model-little .right {
    height: auto;
  }

  .btn-show-card {
    display: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.phone_block {
  z-index: 7;
  right: 25px;
  position: fixed;
  bottom: 25px;
}

.overlay_phone {
  /* transform: translateX(54px); */
  position: relative;
  width: 69px;
  height: 69px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* right: -100%; */
  background: var(--blue);
}

.overlay_phone svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.overlay_phone::after,
.overlay_phone::before {
  content: "";
  position: absolute;
  border: 2px solid var(--blue);
  left: -15px;
  opacity: 0;
  right: -15px;
  top: -15px;
  bottom: -15px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}

.overlay_phone::after {
  animation-delay: 1.25s;
}

@media (max-width: 992px) {
  .phone_block {
    right: 10px;
    bottom: 35px;
  }
}

.single-price {
  background-color: #EFEFF2;
  padding-top: 62px;
  padding-bottom: 62px;
}

.single-price h2 {
  margin: 0;
  margin-bottom: 32px;
  text-align: center;
}

.single-price .text-seo {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

.row-table-uslugi {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.row-table-uslugi .bottom {
  flex: 1 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.row-table-uslugi .price-method {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--black);
  padding: 14px 20px;
  border-radius: 80px;
  background-color: white;
}
.row-table-uslugi .price-method img {
  max-width: 64px;
  width: fit-content;
  height: auto;
}
.row-table-uslugi .price-method img:nth-child(3) {
  max-width: 32px;
  width: fit-content;
  height: auto;
}

.row-table-uslugi .left {
  width: 45%;
}

.row-table-uslugi img {
  max-height: 600px;
  /* max-width: 480px; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.row-table-uslugi .right {
  width: 55%;
  flex: 1 0 45%;
}

.row-table-uslugi .right .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--blue);
  margin-bottom: 20px;
}
.table-service {
  width: 100%;
}

.line-table.table-head {
  display: flex;
}

.line-table.table-head .line-1,
.line-table.table-body .line-1 {
  width: 60%;
}

.line-table.table-head .line-1 {
  width: calc(60% - 27px);
  display: flex;
}

.line-table.table-head .line-2,
.line-table.table-body .line-2 {
  width: 20%;
  text-align: center;
}

.line-table.table-head .line-3,
.line-table.table-body .line-3 {
  width: 20%;
}

.line-table.table-head .line {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.line-table.table-head .line-1 {
  padding-left: 20px;
}

.table-body {
  display: flex;
  align-items: center;
}

.line-table.table-body {
  background-color: white;
  padding: 12px 20px;
  border-radius: 100px;
}

.table-service .line-table.table-body:nth-child(even) {
  background-color: #EFEFF2;
}

.line-table.table-body .line-1 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
}

.line-table.table-body .line-1 a{
  position: absolute;
  width: 100%;
  height: 100%;
}
.line-table.table-body .line-2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  /* background: linear-gradient(90deg, #1664BC 0%, #9E35AE 46.63%, #BD380B 100%); */
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* text-fill-color: transparent; */
}

.line-table.table-body .line-3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--blue);
  display: flex;
  justify-content: flex-end;
}

.line-table.table-body .line-3 span {
  cursor: pointer;
}

.box-list-table {
  overflow-y: auto;
  max-height: 430px;
  display: block;
}

.box-list-table::-webkit-scrollbar {
  width: 3px;
}

.box-list-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.7);
}

.box-list-table::-webkit-scrollbar-thumb {
  background: var(--silver);
  border-radius: 3px;
}

.box-list-table::-webkit-scrollbar-thumb:hover {
  background: darken(var(--silver), 10%);
}

.box-list-table {
  scrollbar-width: thin;
  scrollbar-color: var(--silver) rgba(255, 255, 255, 0.7);
}

.text-mobile {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--silver);
  margin-bottom: 28px;
}

.link-model {
  display: flex;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-left: auto;
  width: fit-content;
  padding: 12px 24px;
}

.link-model svg path {
  fill: white;
}

.link-model:hover svg path {
  fill: var(--blue);
}

@media (max-width: 992px) {
  .single-price h2 {
    margin-bottom: 20px;
  }
  .row-table-uslugi .left {
    display: none;
  }

  .row-table-uslugi .right {
    width: 100%;
  }

  .line-table.table-body .line-3,
  .line-table.table-head .line-3 {
    display: none;
  }

  .line-table.table-head .line-1,
  .line-table.table-body .line-1 {
    width: 70%;
  }

  .line-table.table-head .line-2 {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 22px;
  }

  .line-table.table-body .line-2 {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .row-table-uslugi .right .title {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -1px;
  }

  .line-table.table-body .line-1 {
    font-weight: 600;
    font-size: 12px;
  }

  .line-table.table-body .line-2 {
    font-weight: 600;
    font-size: 12px;
    color: var(--blue);
    text-decoration: underline;
  }
  section.quiz{
    padding: 50px 0;
  }
  section.sert{
    padding: 50px 0;
  }
  section.masterSlider{
    padding: 50px 0;
  }
  section.warranty{
    padding: 50px 0;
  }
  .single-price {
    padding: 50px 0;
  }
  .row-tab-model {
    gap: 6px;
  }
  .row-table-uslugi .bottom {
    flex-direction: column-reverse;
  }
  .row-table-uslugi .price-method {
    justify-content: center;
    width: 100%;
    font-size: 11px;
  }
  .row-table-uslugi .bottom .btn.blue {
    max-width: 100%;
    width: 100%;
    height: 51px;
  }
  section.quiz .quiz-item-body {
    padding: 0;
  }
  section.quiz .quiz-item-title-text {
    font-size: 16px;
    justify-content: center;
  }
  section.quiz .quiz-item-title-text span {
    font-size: 14px;
  }
  section.quiz .quiz-item-title {
    gap: 10px;
  }
  section.quiz .quiz-item-title-icon{
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  section.quiz .quiz_inner{
    padding: 20px 18px;
  }
  section.quiz .quiz-item-body .text-politika span{
    display: none;
  }
  section.quiz .quiz-item-body .text-politika br{
    display: none;
  }
  section.quiz .quiz-calc-item::before {
    display: none;
  }
}

.single-price .row-table-uslugi {
  display: none;
}
.single-price .row-table-uslugi.show {
  display: flex;
  gap: 18px;
}

.card-all-device .col-1 .title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -1px;
  display: none;
}

.card-all-device .col-1 .subtitle {
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  display: none;
}

@media (min-width: 993px) {
  .mob-version,
  .text-mobile {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .pc-version {
    display: none !important;
  }

  section.quiz .quiz-body-cat {
    gap: 12px;
  }
  section.quiz .quiz-cat-item {
    padding: 8px 20px;
    font-size: 12px;
  }

  section.quiz .quiz-cat-item-img {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  section.quiz .quiz-cat-item-img img {
    height: 20px;
  }

  .menu.menu-devices {
    display: flex;
    right: -100%;
    position: fixed;
    transition: all 0.4s linear;
    height: calc(100% - 107px);
    bottom: 0;
    flex-direction: column;
  }

  .menu.menu-devices.active {
    display: flex;
    flex-direction: column;
    padding: 6px 20px;
    position: fixed;
    background: white;
    right: 0;
    width: 100%;
    z-index: 990;
    overflow-y: auto;
  }

  .menu-devices ul {
    flex-direction: column;
    /* padding-top: 70px; */
  }

  .menu-devices ul li:first-child {
    margin-left: 0;
  }

  .burger-menu {
    position: relative;
    z-index: 1000;
  }

  .burger-menu.active span:last-child {
    display: none;
  }

  .burger-menu.active span:nth-child(1) {
    position: absolute;
    transform: rotate(-45deg);
  }

  .burger-menu.active span:nth-child(2) {
    position: absolute;
    transform: rotate(45deg);
  }
}

/* .v1 block price  */
.select-price-tab {
  margin-bottom: 40px;
}

.row-tab-model {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.row-tab-model .card-tab-model:nth-child(n + 16) {
  display: none;
}
.row-tab-model.show .card-tab-model:nth-child(n + 16) {
  display: flex;
}

.card-tab-more {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}

.card-tab-model {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  border: 0;
  border-radius: 100px;
  background-color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-tab-model img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  object-fit: contain;
}

.card-tab-model.active {
  background-color: var(--black);
  color: white;
}

/* v2 block price  */
.row-v2-all-device {
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.card-all-device {
  width: 100%;
  display: flex;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 39px 32px 32px 32px;
  margin-bottom: 24px;
  border-radius: 18px;
}

.card-all-device:nth-child(n+4) {
  display: none;
}

.row-v2-all-device.open .card-all-device:nth-child(n+4) {
  display: flex;
}

.card-all-device .col-1 {
  width: 100%;
  height: 100%;
  max-width: 240px;
  height: 294px;
  margin-right: 20px;
}

.card-all-device .col-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-all-device .col-2 {
  margin-right: 20px;
  max-width: 415px;
  width: 40%;
}

.price-list-mod li:nth-child(n+6){
  display: none;
}
.price-list-mod.open li:nth-child(n+6){
  display: block;
}



.card-all-device .col-2 .title a {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -1px;
}

.card-all-device .col-2 .subtitle {
  margin-top: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  /* background: linear-gradient(90deg, #1664bc 0%, #9e35ae 46.63%, #bd380b 100%); */
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* text-fill-color: transparent; */
}

.card-all-device .col-2 ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.card-all-device .col-2 ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.card-all-device .col-2 button,
.card-all-device .col-3 button {
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--silver);
  background: none;
  border: none;
  padding: 0;
}

.card-all-device .col-3 {
  width: 460px;
}

.card-all-device .col-3 ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 12px;
}

.card-all-device .col-3 ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
}

.card-all-device .col-3 ul li {
  display: flex;
  justify-content: space-between;
}

.load-btn-card-type button{
  border-radius: 100px;
    max-width: 223px;
    width: 100%;
    height: 51px;
    border: 1px solid #3F3F3F;
    color: var(--black);
    margin: 0 auto;
    background-color: transparent;
    transition: all 0.3s ease;
    display: block;
    font-weight: 600;
}

.load-btn-card-type button:hover{
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: white;
}

.card-all-device .col-3 ul.price-list-rep li:nth-child(n+9){
  display: none;
}
.card-all-device .col-3 ul.price-list-rep.open li:nth-child(n+9){
  display: block;
}

.card-all-device .col-3 ul li span.span-1 {
  display: block;
  /* white-space: pre; */
}

.card-all-device .col-3 ul li span.span-3 {
  display: flex;
  /* white-space: pre; */
}

.card-all-device .col-3 ul li span.span-2 {
  /* display: flex; */
  /* width: 100%; */
  /* border-bottom: 1px solid var(--silver); */
  /* margin-left: 10px; */
  /* margin-right: 10px; */
  /* position: relative; */
  /* top: -8px; */
  flex-grow: 1;
    height: 1px;
    background-color: #000;
    margin: 3px 20px 0;
    opacity: 0.3;
}

.card-all-device .col-4 {
  margin-left: auto;
  margin-top: auto;
}

.card-all-device .col-4 a {
  font-family: "SF Pro Text", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--blue);
}

@media (max-width: 1050px) {
  
  .card-all-device .col-3 ul li{
    font-size: 12px;
  }
  .card-all-device .col-2 ul{
    font-size: 12px;
  }
  .card-all-device{
    flex-wrap: wrap;

  }
  .card-all-device .col-3 ul li{
    flex-direction: column;
  }
  .card-all-device .col-3 ul li span.span-2{
    display: none;
  }
  .card-all-device{
    margin-bottom: 16px;
    gap: 12px;
    justify-content: space-between;
    padding: 20px;
  }
  .card-all-device .col-1{
    flex: 1 0 100%;
    margin: 0;
    max-width: 100%;
  }
  .card-all-device .col-2{
    flex: 1 0 45%;
    width: 44%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .mod-list-open{
    margin-top: auto;
  }
  .card-all-device .col-3{
    flex: 1 0 45%;
    width: 44%;
  }
  .card-all-device .col-3 ul{
    gap: 6px;
  }
  .card-all-device .col-2 ul{
    gap: 6px;
    margin: 0;
  }
  .card-all-device .col-3 ul li a{
    flex-direction: column;
    font-size: 14px;
  }
  .card-all-device .col-3 ul.price-list-rep li:nth-child(n+6){
    display: none;
  }
  
  .card-all-device .col-1 .title{
    font-size: 18px;
    display: block;
    text-align: center;
  }
  .card-all-device .col-1 .subtitle{
    font-size: 12px;
    display: block;
    text-align: center;
  }
  .card-all-device .col-2 .title a{
    font-size: 18px;
    display: none;
  }
  .card-all-device .col-2 .subtitle{
    font-size: 12px;
    display: none;
  }
  .card-all-device .col-2 ul li a{
    font-size: 14px;
  }
  .card-all-device .col-1 img{
    max-height: 240px;
    margin-bottom: 12px;
  }
  .card-all-device .col-3 ul li span.span-3{
    font-weight: 700;
  }
}

.modal ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  align-items: center;
  justify-content: flex-start;
  max-height: 320px;
  overflow-y: auto;
}

.modal ul a {
  cursor: pointer;
  color: var(--darkgray);
  font-weight: 600;
}

.modal ul a:hover {
  color: var(--blue);
}

.js-open-modal {
  cursor: pointer;
}

.js-overlay-modal {
  background: #00000096;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.js-overlay-modal.active {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
  z-index: 999;
}

.modal-yes {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.modal-yes.active {
  display: flex;
}

.modal-block {
  background: white;
  max-width: 400px;
  width: 100%;
  height: auto;
  padding: 30px 15px 40px;
  border-radius: 4px;
  position: relative;
}

.modal-block .close {
  position: absolute;
  right: 7px;
  top: 4px;
  font-size: 23px;
  cursor: pointer;
}

.modal-block .title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.modal-block .description {
  text-align: center;
  font-size: 22px;
  line-height: 30px;
}

.modal-block .img {
  width: 60px;
  height: auto;
  margin: 0 auto 25px;
}

.modal-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal {
  top: 0%;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 355px;
  /* margin: 10px; */
  /* height: 340px; */
  padding: 27px 25px 20px 25px;
  background: white;
  border-radius: 10px;
  transition: 0.35s;
  box-shadow: 0 0 30px -20px #00000057;
  visibility: hidden;
  opacity: 0;
}

.modal > p {
  text-align: center;
  margin-bottom: 23px;
  font-size: 15px;
  padding: 0 14px;
  line-height: 1.3;
}

.modal.active {
  visibility: visible;
  opacity: 1;
  display: block;
  transition: 0.35s;
  z-index: 1000;
  top: 50%;
}

.modal.custom {
  padding: 32px 28px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
}

.modal.custom .js-modal-close {
  width: 13px;
  height: 13px;
  top: 10px;
  right: 10px;
  position: absolute;
}

.modal.custom legend {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.modal.custom p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(128, 128, 128, 1);
  padding: 0;
  margin: 0 auto;
  margin-bottom: 28px;
  max-width: 280px;
  text-align: center;
}

.modal.custom p:last-child {
  margin: 0 auto;
}

.modal.custom input {
  margin-bottom: 12px;
  padding: 18px 28px;
  border-radius: 100px;
  background: #EFEFF2;
  width: 100%;
  border: none;
}
.modal.custom textarea {
  margin-bottom: 12px;
  padding: 18px 28px;
  border-radius: 20px;
  background: #EFEFF2;
  width: 100%;
  border: none;
  resize: none;
  height: 100px;
}

.modal.custom input.submit {
  background-color: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.bg-modal-yes {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.modal-yes-img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.modal-yes-img svg {
  width: 100%;
  height: 100%;
}

.bg-modal-yes.custom .modal-dialog {
  padding: 32px 28px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 18px;
  position: relative;
}

.bg-modal-yes.custom .modal-dialog .modal-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 20px;
}

.bg-modal-yes.custom .modal-dialog .close {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 26px;
  height: 26px;
  outline: none;
  border: none;
  background: transparent;
  top: 10px;
  right: 10px;
}

.bg-modal-yes.custom .modal-dialog .success-text {
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 280px;
  color: rgba(128, 128, 128, 1);
  text-align: center;
}

.bg-modal-yes.custom .modal-dialog .ok-thankYou {
  padding: 18px;
  width: 100%;
  border-radius: 100px;
  background-color: var(--blue);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  outline: none;
}

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

  .menu.menu-devices {
    display: none;
    justify-content: center;
  }
}

.map .map_inner {
  box-shadow: 0px 0px 42px 0px #6767671f;
  background-color: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 52px;
  margin-bottom: 42px;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.map .map-text {
  display: flex;
  flex-direction: column;
}
.map .title-submain {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: var(--black);
  text-align: left;
}
.map .contact-phone {
  font-size: clamp(30px, calc(2.87vw + 18.66px), 60px);
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  margin-bottom: 56px;
}
.map .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  margin-bottom: 20px;
}
.map .city {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
}
.map .seo-map {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
  flex: 1 0 100%;
}
.map .time {
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
}
.map .time span {
  font-weight: 700;
}
.map #map {
  width: 100%;
  max-width: 495px;
  height: 290px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1050px) {
  .map .time {
    font-size: 16px;
  }
  .map .time span {
    font-size: 16px;
  }
  .map .city {
    font-size: 16px;
  }
  .map .map_inner {
    padding: 24px 20px;
  }
  .map .title-submain {
    margin-bottom: 12px;
  }
  .map .contact-phone {
    margin-bottom: 24px;
    font-size: 30px;
  }
}
section.form-block {
  margin-bottom: 40px;
}
.form-block .title-submain {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 32px;
}
.form-block .title-submain span {
  font-weight: 700;
}
.form-block .form-block_inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
}
.form-block .form_inner-img img {
  width: clamp(114px, calc(23.64vw + 20.64px), 361px);
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: -40px;
  right: 402px;
}
.form-block .form_inner-text ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 20px;
}
.form-block .form_inner-text ul li {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-block .form_inner-text ul .svg-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 51px;
  width: 51px;
  height: 51px;
  border-radius: 100%;
  border: 1px solid #808080;
}

.form-block .form-text-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.33;
  color: var(--blue);
  max-width: 420px;
  margin-bottom: 32px;
}
.form-block .form_inner-inputs {
  max-width: 420px;
  width: 100%;
}
.form-block .master-rght-form {
  position: relative;
  padding: 32px 28px 21px 28px;
  max-width: 420px;
  border-radius: 18px;
  background-color: var(--blue);
  overflow: hidden;
}
.form-block .master-rght-form form {
  width: 100%;
}
.form-block .master-rght-form .text-politika a {
  color: white;
  opacity: 0.5;
  font-size: 16px;
  width: 270px;
  display: block;
}
.form-block .master-form-text {
  max-width: 294px;
}
.form-block .master-form-btn {
  /* max-width: 333px; */
  width: 100%;
  height: 56px;
  color: #3f3f3f;
  margin: 0 auto;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 20px 10px;
  /* text-transform: uppercase; */
  margin-bottom: 12px;
}
.form-block p {
  max-width: 290px;
  margin: 0 auto;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: white;
  opacity: 0.5;
}

.form-input-wrapper {
  border-radius: 100px;
  border: none;
  outline: none;
  background-color: white;
  width: 100%;
  font-size: 16px;
  /* max-width: 333px; */
  height: 56px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 12px;
  position: relative;
}
.form-input-wrapper svg {
  position: absolute;
  width: 28px;
  height: 28px;
  min-width: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 55px;
}
.form-input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 36px 57px 36px 101px;
  font-size: 20px;
  color: var(--darkgray);
  box-shadow: none;
  border: none;
  outline: none;
}

.master-rght-form {
  color: white;
  position: relative;
  z-index: 3;
  background-color: var(--blue);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.master-rght-form .master-form-title {
  font-size: 20px;
  font-weight: 600;
  max-width: 290px;
  margin-bottom: 20px;
}
.master-rght-form .master-form-text {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  max-width: 309px;
  margin-bottom: 32px;
}
.master-rght-form .master-form-text span {
  font-weight: 700;
}
.master-rght-form .master-form-btn {
  background-color: white;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 18px;
}

@media (max-width: 1300px) {
  .master-rght-form .master-form-title {
    font-size: 18px;
  }
  .master-rght-form .master-form-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .master-rght-form .master-form-text span {
    font-weight: 700;
  }
  .master-rght-form .master-form-btn {
    padding: 20px 23px;
    font-size: 12px;
  }
}

section.reviews {
  padding: 62px 0;
  background-color: #f5f5f7;
}

.reviews_top {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-bottom: 32px;
}
.reviews_top .reviews_top-logo {
  width: 267px;
  height: 293px;
  position: relative;
}
.reviews_top .reviews_top-logo img {
  width: 267px;
  height: 293px;
}
.reviews_top .reviews-logo-text {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 52px 0px;
  position: absolute;
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
}
.reviews_top .reviews-logo-text span {
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #08020199;
}
.reviews_top .reviews_top-text {
  display: flex;
  flex-direction: column;
  /* max-width: 801px; */
  max-width: 890px;
  padding-top: 32px;
}
.reviews_top .reviews_top-text span {
  font-size: clamp(16px, calc(0.38vw + 14.49px), 20px);
}
.reviews_top .reviews_top-text h2 {
  font-weight: 700;
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  line-height: 1.22;
  color: #3f3f3f;
  margin: 0;
  margin-bottom: 24px;
}
.reviews_top .reviews_top-text h2 span {
  font-size: clamp(24px, calc(2.11vw + 15.68px), 46px);
  color: var(--blue);
}

.reviews_inner {
  padding: 36px;
  border-radius: 24px;
  background-color: white;
}
.reviews_inner .reviews_inner-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.reviews_inner .reviews-top-title {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.reviews_inner .reviews-top-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  min-width: 24px;
}
.reviews_inner .reviews-top-rat {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 64px;
  font-weight: 700;
}
.reviews_inner .reviews-top-rat .reviews-rat-star {
  font-size: 14px;
  font-weight: 300;
  color: #3f3f3f;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews_inner .reviews-top-utps {
  margin-left: auto;
  display: flex;
  padding: 10px 35px 12px 35px;
  background-color: #f5f5f7;
  border-radius: 8px;
  gap: 30px;
  overflow: auto;
}
.reviews_inner .reviews-top-utps::-webkit-scrollbar {
  display: none;
}
.reviews_inner .reviews-top-utps .reviews-top-utp {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: fit-content;
}
.reviews_inner .reviews-top-utps .text {
  font-size: 14px;
}
.reviews_inner .reviews-top-utps .text span {
  color: var(--blue);
  font-weight: 700;
}
.reviews_inner .reviews_inner-body {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.reviews_inner .reviews-body-item {
  flex: 1 0 45%;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reviews_inner .reviews_inner-body .reviews-body-item:nth-child(n + 3) {
  display: none;
}
.reviews_inner .reviews_inner-body.open .reviews-body-item:nth-child(n + 3) {
  display: flex;
}
.reviews_inner .reviews-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews_inner .reviews-profile-img img {
  max-width: 48px;
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  border-radius: 100%;
  overflow: hidden;
}
.reviews_inner .reviews-profile-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #3f3f3f;
}
.reviews_inner .reviews-text {
  color: #3f3f3f;
  font-size: 16px;
}
.reviews_inner .open-more {
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}
.reviews_inner .reviews_inner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-like {
  padding: 6px;
  background-color: #f5f5f7;
  display: flex;
  align-items: center;
  max-width: 404px;
  width: 100%;
  border-radius: 8px;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-like .text {
  font-size: 16px;
  font-weight: 700;
  color: #3b3b3b;
  margin: 0 auto;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-like .open-popup {
  height: 34px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 20px;
  background-color: #3a7ef7;
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #3a7ef7;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-like .open-popup:hover {
  background-color: white;
  color: #3a7ef7;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-more {
  background-color: #1278f21a;
  height: 46px;
  padding: 13px 17px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #3a7ef7;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.reviews_inner .reviews_inner-bottom .reviews-bottom-more:hover {
  border: 1px solid #3a7ef7;
}

@media (max-width: 1200px) {
  .reviews .container {
    padding: 0;
  }

  .reviews_top .reviews_top-logo {
    display: none;
  }

  .reviews_inner .reviews-top-utps {
    padding: 10px 16px 12px 16px;
  }
  .work_inner .work-img {
    max-width: 400px;
  }
  section.masterSlider .masterSlider_inner {
    gap: 20px;
    justify-content: start;
  }
  section.masterSlider .text-slider {
    max-width: 500px;
  }
  section.masterSlider .text-slider .text-slide-prof {
    padding: 12px 36px;
    margin-bottom: 20px;
  }
  section.masterSlider .text-slider .text-slide-name {
    font-size: 22px;
    margin-bottom: 0px;
  }
  section.masterSlider .text-slider .text-slide-age {
    padding-top: 20px;
    font-size: 18px;
  }
  section.masterSlider .image-slider {
    max-height: 360px;
    overflow: hidden;
    border-radius: 18px;
  }
  .form-block .form_inner-img img {
    display: none;
  }
  footer .container > .row-grid {
    gap: 28px 20px;
  }
}
@media (max-width: 1050px) {
  .reviews .reviews_inner {
    padding: 24px 20px;
    overflow: hidden;
  }
  .reviews .reviews_inner .reviews_inner-top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
  .reviews .reviews_inner .reviews-top-utps {
    margin-left: 0;
    gap: 6px;
    margin-top: 24px;
  }
  .reviews .reviews_inner .reviews_inner-bottom {
    justify-content: center;
  }
  .reviews .reviews_inner .reviews_inner-bottom .reviews-bottom-like {
    display: none;
  }
  .reviews .reviews_top .reviews_top-text {
    padding: 0 20px;
    gap: 20px;
  }
  .main-section .row {
    padding: 20px 18px;
  }
  .main-section .list-advantage {
    margin: 20px 0;
    gap: 8px;
  }
  .main-section .list-advantage li {
    padding: 14px 18px;
    gap: 6px;
  }
  .main-section .list-advantage-title {
    font-size: 16px;
    line-height: 1.3;
  }
  .main-section .list-advantage-text {
    font-size: 14px;
    line-height: 1;
  }
  h1 {
    font-size: 22px !important;
  }
  h2 {
    font-size: 22px !important;
  }
  .main-section .right {
    display: none;
  }
  .main-section .card-row-form .right {
    display: block;
  }
  .form-block .form-block_inner {
    flex-wrap: wrap;
  }
  .form-block .form-text-title {
    display: none;
  }
  .form-block .form_inner-text ul .svg-circle {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  .form-block .form_inner-text ul .svg-circle svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
  .form-block .form_inner-text ul li {
    gap: 10px;
    font-size: 16px;
  }
  .form-block .title-submain {
    margin: 0;
    margin-bottom: 20px;
    /* margin-top: 40px; */
  }
  .form-block .master-rght-form {
    padding: 20px;
  }
  .reviews_top .reviews_top-text h2 {
    margin-bottom: 0;
  }
  section.form-block {
    margin-bottom: 20px;
    padding-top: 50px;
  }
  .map .map_inner{
    padding: 50px 24px;
  }
}
@media (max-width: 992px) {
  .pc-none {
    display: block !important;
  }
  .mob-none {
    display: none !important;
  }
  .pc-none-flex {
    display: flex !important;
  }
  .mob-none-flex {
    display: none !important;
  }
  header::after{
    bottom: 40px;
  }
  section.sert .sert-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  section.masterSlider h2 {
    margin-bottom: 20px;
  }
  section.sert h2 {
    margin-bottom: 20px;
  }
  section.sert .sert_inner-text {
    font-size: 16px;
  }
  section.sert .sert_inner-text ul {
    font-size: 16px;
    gap: 6px;
  }
  .select-price-tab {
    margin-bottom: 32px;
  }
  section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-select {
    padding: 11px 40px 11px 20px;
    font-size: 12px;
  }
  section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-select .quiz-select-icon{
    right: 20px;
  }
  section.quiz .quiz-calc-item#slide2 .quiz-item-body {
    gap: 12px;
  }
  section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-body-selectors {
    padding: 11px 20px;
  }
  section.quiz
    .quiz-calc-item#slide3
    .quiz-item-body
    .main-section
    .card-row-form
    .right
    form
    button {
    max-width: 100%;
    width: 100%;
  }
  section.quiz .quiz-item-title-text .text span {
    font-size: 14px;
  }
  section.quiz .quiz-calc-item#slide2 .quiz-item-body .quiz-select-item {
    font-size: 12px;
  }
  .work_inner .work-img {
    display: none;
  }
  .work_inner .work-text-box {
    padding: 0;
  }
  .work_inner {
    padding: 20px 18px;
  }
  section.work h2 {
    margin-bottom: 20px;
  }
  .work_inner .work-list {
    gap: 20px;
  }
  .work_inner .work-up-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  .work_inner .work-list li::before {
    display: none;
  }
  .work_inner .work-up-text {
    font-size: 16px;
  }
  .work_inner .work-up-text span {
    font-size: 14px;
  }
  .work_inner .work-list-bot {
    font-size: 14px;
    padding: 0;
    margin-top: 12px;
  }
  .line-table.table-head {
    display: none;
  }
  .card-tab-model {
    padding: 8px 12px;
    gap: 8px;
    font-size: 12px;
  }
  .card-tab-model img {
    width: 20px;
    height: 20px;
  }
  section.masterSlider .masterSlider_inner {
    grid-template-areas:
      "text"
      "image"
      "form";
  }
  section.masterSlider .text-slider {
    text-align: center;
    width: 100%;
    max-width: calc(100vw - 40px);
  }
  .swiper {
    max-width: 1296px;
  }
  section.masterSlider .text-slider .text-slide-prof {
    margin: 0 auto 20px auto;
    width: 100%;
    padding: 12px;
    max-width: 100%;
    justify-content: center;
  }
  section.masterSlider .image-slider img {
    max-height: 300px;
  }
  section.masterSlider .image-slider {
    max-height: 300px;
    width: 100%;
    max-width: 900px;
  }
  section.masterSlider .controls {
    justify-content: center;
  }
  section.masterSlider .masterSlider-nav {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  section.masterSlider .masterSlider-nav .main-section {
    margin: 0;
  }
  section.masterSlider .card-row-form .right form button {
    max-width: 100%;
  }
  .warranty_box {
    padding: 20px 18px;
  }

  section.warranty h2 {
    margin-bottom: 20px;
  }
  .warranty_box .warranty_cards {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }
  .warranty_box .main-section {
    padding-top: 28px;
  }
  .warranty_box .sale-form-back {
    display: none;
  }
  .text-seo {
    gap: 16px;
  }
  section.seo h3 {
    font-size: 18px;
  }
  .text-seo p {
    font-size: 16px;
  }
  .text-seo ul {
    font-size: 16px;
  }
  section.sale-form .sale-form_inner {
    padding: 20px 18px;
  }
  section.sale-form h2 {
    margin-bottom: 0px;
    max-width: 317px;
  }
  section.sale-form p {
    margin-bottom: 179px;
    margin-top: 20px;
    font-size: 16px;
    max-width: 317px;
  }
  section.sale-form .last-form-row form [name="phone"] {
    max-width: 315px;
  }
  section.sale-form .last-form-row form button {
    max-width: 315px;
  }
  section.sale-form .last-form-row form {
    gap: 8px;
  }
  section.sale-form .sale-form-women {
    right: initial;
    left: 40px;
    bottom: 165px;
    width: 277px;
  }
  section.sale-form .sale-form-back {
    right: initial;
    top: initial;
    left: 20px;
    bottom: 155px;
  }
  .sale-form-back span:nth-child(1) {
    font-size: 142px;
  }
  .sale-form-back span:nth-child(2) {
    font-size: 58px;
  }
  .sale-form-back span:nth-child(3) {
    font-size: 68px;
  }
  footer {
    padding: 20px 0;
  }
  footer .container > .row-grid {
    grid-template-areas:
      "left"
      "mid"
      "rig"
      "req"
      "par";
    grid-template-columns: 1fr;
  }
  .column-1 {
    max-width: 100%;
  }
  .logo a {
    margin-bottom: 0;
  }
  .logo .phone-footer {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  footer .logo {
    align-items: flex-end;
    margin-bottom: 20px;
  }
  .column-1 .menu-footer ul li a {
    text-decoration: underline;
  }
  .column-1 .menu-footer ul {
    margin-bottom: 4px;
  }
  .column-2 .menu-footer {
    flex-direction: column;
    gap: 16px;
  }
  .column-2 .menu-footer ul {
    margin: 0;
    flex-direction: column;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 25;
    background: white;
  }
  section.sert .sert_inner-img{
    margin: 0 auto;
  }
}
.status-error a{
 text-decoration: underline;
 color: var(--blue);
 font-weight: 700;
}

.status-error{
  text-align: center;
}


.job_box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.job-card {
  flex: 1 0 30%;
  max-width: 386px;
  border-radius: 20px;
  background-color: #f8f8f8;
  padding: 20px 24px 28px;
  position: relative;
  min-height: 366px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1050px) {
  .job-card {
    flex: 1 0 45%;
  }
}

@media (max-width: 830px) {
  .job-card {
    flex: 1 0 100%;
  }

  .job_box {
    justify-content: center;
    gap: 20px;
  }
}

.job-card .title-submain {
  font-size: 22px;
  line-height: 28px;

  font-weight: 400;
  text-align: center;
  max-width: 251px;
  margin: 0 auto;
  margin-bottom: 20px;
  /* margin-bottom: 36px; */
}

.job-card-status {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 18px;
}

.job-card-search {
  max-width: 251px;
  font-size: 14px;
  font-weight: 500;

  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 24px;
  margin-top: auto;
}

.job-card-search span {
  color: var(--blue);
}

.job-card-price {
  max-width: 210px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 36px;
}

.job-card-price span {
  color: var(--blue);
}

.job_seo-text {
  font-size: 16px;
  font-weight: 500;
  max-width: 766px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
}

.popup.popup-job {
  padding: 32px;
  max-width: 736px;
  max-height: 660px;
  overflow: auto;
}

.popup.popup-job.active {
  transform: translate(-50%, 5%) scale(1);
}

@media (max-width: 830px) {
  .popup.popup-job {
    max-height: 550px;
    padding: 10px;
  }
}

.popup .item-block-text {
  display: flex;
  flex-direction: column;
}

.popup .popup-job-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: left;
}

.popup .item-block-text p {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}

.popup .item-block-text p.price {
  color: var(--blue);
}

.popup .item-block-text h3 {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.popup .item-block-text ul {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}

.job-form .consult__card .consult__card-title {
  margin: 0;
  color: white;
}

@media (min-width: 992px) {
  .job-form .consult__card .consult__card-img {
    right: 113px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.job-form .consult__inner {
  margin: 20px 0;
  padding: 32px;
  background-color: var(--blue);
  border-radius: 20px;
}

.content_form {
  width: 100%;
  display: flex;
}

.content_form input {
  width: 100%;
  height: 40px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid #727171;
  color: var(--black);
  font-size: 12px;
}

.content_form div.left,
.content_form div.right {
  width: 100%;
}

.content_form div.left {
  padding-right: 12px;
  position: relative;
}

.content_form div.right {
  padding-left: 12px;
}

.job-form .consult__card {
  height: auto;
}

.job-form .form .form__input-btn {
  max-width: inherit;
}

.content_form div.right .form__input-check {
  height: 40px;
}

.content_form div.right .form__input-check .check-label-text {
  font-weight: 400;
  line-height: 16px;
  font-size: 12px;
}

.content_form div.right .form__input-check .check-label-text a:hover {
  color: var(--black);
  text-decoration: underline;
}

.vakancii {
  position: absolute;
  z-index: 5;
  top: 100%;
  width: calc(100% - 12px);
  display: flex;
  flex-direction: column;
  border: 1px solid #c8c8c8;
  border-radius: 6px 0 0 6px;
  max-height: 155px;
  overflow-y: auto;
  background-color: white;
}

.vakancii span {
  font-size: 12px;
  cursor: pointer;
  padding: 6px 24px;
}

.vakancii span:hover {
  background-color: #e3e3e3;
}

.vakancii span:last-child {
  margin-bottom: 0;
}

.vakancii {
  display: none;
}

.vakancii.active {
  display: flex;
}

[name="work_input"] {
  cursor: pointer;
}

[name="work_input"]::after {
  content: ">";
  position: absolute;
  right: 15px;
}

.left.click_vak {
  position: relative;
}

.left.click_vak::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 37px;
  border: 5px solid transparent;
  border-top: 5px solid rgb(47, 47, 47);
}

@media (max-width: 768px) {
  .content_form {
    flex-direction: column;
  }

  .content_form div.left,
  .content_form div.right {
    padding: 0;
  }

  .content_form div.left {
    margin-bottom: 14px;
  }

  .vakancii {
    width: 100%;
  }
}

.icon-flag {
  position: relative;
}

.icon-flag::after {
  content: "";
  background-image: url(/public/images/flag.png);
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  left: 50px;
  top: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-flag input {
  padding-left: 68px;
}

.job-form .cform input {
  margin-bottom: 12px;
  padding: 18px 28px;
  border-radius: 100px;
  background: #EFEFF2;
  width: 100%;
  border: none;
}
.job-form .cform input.submit {
  background-color: white;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
}

.modal.custom.popup-job{
  padding: 20px;
    max-width: 736px;
    max-height: 460px;
    overflow: auto;
}
.modal.custom.popup-job p {
  max-width: 100%;
}

.info__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.info__inner .info__inner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
}
.info__inner .static-card {
}
.info__inner .card-text {
}
.info__inner .text-16 {
}
.info__inner .w-500 {
}
.info__inner .Black {
}
.info__inner .card-title {
  width: 146px;
  height: 146px;
  background-color: var(--blue);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 700;
  font-size: 36px;
}

.stats-container .stat {
  background: #ef233c;
  padding: 24px;
  text-align: center;
  color: #edf2f4;
}

.stats-container .stat .odometer {
  color: white;
  font-weight: 700;
  font-size: 36px;
  display: inline-block;
}


.odometer.plus {
  position: relative;
}

.open-models-btn{
  border-radius: 100px;
  max-width: 223px;
  width: 100%;
  height: 51px;
  border: 1px solid #3F3F3F;
  color: var(--black);
  margin: 0 auto;
  background-color: transparent;
  transition: all 0.3s ease;
  display: block;
  font-weight: 600;
}
.open-models-btn:hover{
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: white;
}

.model-block_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  padding: 0;
}

.model-card-name {
    display: inline-block;
    max-width: 100%; /* Или конкретная ширина */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width:992px) {
  .model-block_wrapper {
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
}
}
.model-block_wrapper .model-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 12px;
  background-color: #EFEFF2;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.model-block_wrapper .model-card a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.model-block_wrapper .model-card:hover{
  background-color: var(--blue);
  color: white;
}
.model-block_wrapper .model-card img{
  max-width: 172px;
  max-height: 93px;
  height: auto;
  width: 100%;
  object-fit: contain;
}
.model-block_wrapper .model-card:nth-child(n+13) {
  display: none;
}
.model-block_wrapper.open .model-card:nth-child(n+13) {
  display: flex;
}

.model-block{
  margin: 62px auto;
}

.all-devices{
  margin: 62px auto;

}

@media (max-width:992px) {
  .model-block_wrapper .model-card:nth-child(n+5) {
    display: none;
  }
  .model-block_wrapper.open .model-card:nth-child(n+5) {
    display: flex;
  }
  .all-devices{
    margin: 32px auto;
  }
}

.steps-nav {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 32px 0;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.step-number:hover {
  background-color: var(--blue);
}


.arrow {
  width: 16px;
  height: 2px;
  background-color: #d1d5db;
  margin: 0 16px;
}

.step-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step-button {
  padding: 8px 16px;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.step-button:hover {
  background-color: #dbeafe;
}
.step-button.active {
  background-color: var(--blue);
  color: white;
}

/* Стили для контента */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.image-placeholder {
  background-color: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  max-height: 420px;
  max-width: 600px;
  /* padding: 20px; */
}

.image-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder-text {
  color: #6b7280;
  font-size: 1rem;
  text-align: center;
}

.content-text {
  padding: 20px;
}

.content-text h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.content-text p {
  margin-bottom: 16px;
  color: #4b5563;
}

.content-text ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.content-text li {
  margin-bottom: 8px;
}

.highlight-box {
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.highlight-box h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #1e40af;
}

.highlight-box p {
  margin-bottom: 0;
}

.steps.block{
  padding: 62px 0;
}

.expand-button {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  text-decoration: underline;
  color: silver;
  font-size: 16px;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 10px;
  background-image: linear-gradient(0deg, #fff 40px, hsla(0, 0%, 100%, 0));
}

.expand-button.bg-show {
  background-image: none;
}




.box_partners {
  padding: 50px 0;
  /* margin: 50px 0; */
  position: relative;
}

.box_partners h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}


.box_partners .container {
  position: relative;
}

.slider_partners .swiper-wrapper {
  padding-bottom: 50px;
}

.arrow-partners {
  width: 90px;
  height: 50px;
  position: absolute;
  right: 14px;
  top: -10px;
  gap: 15px;
  display: flex;
}

.slide-partner div {
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

.slide-partner {
  padding: 10px;
}

.slide-partner .img-partner {
  height: 90px;
  display: block;
  padding: 10px;
  box-shadow: 0 0px 10px rgb(0 0 0 / 15%);
  transition: all .3s;
  border-radius: 6px;
  margin-bottom: 10px;
}

.slide-partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.box_partners .swiper-wrapper .swiper-slide {
  opacity: 1;
  cursor: pointer;
}

.box_partners .swiper {
  padding: 30px 0 0 0;
  height: max-content;
}

.box_partners .swiper-wrapper .swiper-slide .title {
  color: #666;
}

.box_partners .swiper-wrapper .swiper-slide:hover .title {
  text-decoration: underline;
}



.box_partners .swiper-button-prev,
.box_partners .swiper-button-next {
  opacity: .5;
}

.box_partners .swiper-button-prev:hover,
.box_partners .swiper-button-next:hover {
  opacity: 1;
}

.box_partners .swiper-button-next::after {
  content: "►";
  color: white;
  font-size: 20px;
  transform: rotate(180deg);
}

.box_partners .swiper-button-prev::after {
  content: "◄";
  color: white;
  font-size: 26px;
  position: relative;
  top: -2px;
}

.box_partners .swiper-slide-blank {
  display: none;
}

[data-modal="5"] {
  max-width:850px;
  
}

[data-modal="5"] ul {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(165px,1fr));
}
[data-modal="5"] li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    flex-direction: column;
}
[data-modal="5"] li div {
    height: 110px;
    width: 100%;
    border-radius: 18px;
    background: #EFEFF2;
    display: flex;
    justify-content: center;
    align-items: center;
}
[data-modal="5"] li div img {
    width: 100px;
    height: 100px;
    object-fit:contain;
}

.foot_brand_text{
      font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
    margin-top: 16px;
}

.foot_brand_text a {
  font-weight: 500;
    font-size: 16px;
  color: var(--blue);
  cursor: pointer;
}

.warranty_exBox{
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
  padding-bottom: 25px;
  z-index: 5;
}

.sert_inner-text{
    overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
  padding-bottom: 25px;
  z-index: 5;

}