@charset "UTF-8";

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #31343D;
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
  max-width: 100%;
}

body.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 31px;
  line-height: 36px;
  color: #31343D;
  margin: 0;
}

p {
  margin: 0;
}

p + p {
  margin-top: 15px;
}

p.big {
  font-size: 18px;
  line-height: 22px;
  color: #333F51;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

img[align=left] {
  margin-right: 20px;
}

img[align=right] {
  margin-left: 20px;
}

textarea,
input,
select,
radio,
button {
  font-family: 'Arimo', sans-serif;
  font-size: 14px;
  color: #333F51;
}

button {
  cursor: pointer;
}

button:hover {
  text-decoration: none;
  opacity: 0.8;
}

b,
strong {
  font-weight: bold;
}

a {
  color: #131B32;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

table {
  border-collapse: collapse;
}

table p {
  margin: 0;
}

table td,
table th {
  padding: 5px 10px;
}

.container {
  width: 100%;
  max-width: 1150px;
  padding: 0 20px;
  margin: 0 auto;
}

.mt40 {
  margin-top: 40px;
}

.mt145 {
  margin-top: 145px;
}

.mb-145 {
  margin-bottom: -145px;
}

/* Шапка */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  background-color: #fff;
  border-bottom: 1px solid #D9DADE;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 104px;
}

.header a {
  text-decoration: none;
}

.header .logo-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}

.header .logo-address .logo img {
  vertical-align: top;
}

.header .address {
  font-weight: 600;
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .menu a {
  color: #7A7D84;
  border-bottom: 1px solid transparent;
}

.header .menu a.active {
  border-bottom: 1px solid #666666;
  color: #31343D;
}

.header .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .contacts a {
  color: #2782EE;
}

.header .contacts img {
  vertical-align: top;
}

.header .contacts .phone a {
  font-weight: 600;
}
.header .contacts .phone .mobile {
  display: none;
}

.mobilemenu .phone .mobile{
	display: none;
}

.header .contacts .callback a {
  width: 146px;
  height: 48px;
  border: 1px solid #2782EE;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.header .openmenu {
  width: 36px;
  height: 36px;
  display: none;
  background: url(../images/menu.svg) no-repeat center/cover;
}

.header .openmenu.open {
  background: url(../images/close-menu.svg) no-repeat center/cover;
}

/* Мобильное меню */

.mobilemenu {
  position: fixed;
  top: 104px;
  left: 0;
  width: 100%;
  height: calc(100vh - 104px);
  padding: 24px;
  overflow-y: auto;
  display: none;
  background-color: #fff;
  z-index: 7;
}

.mobilemenu.open {
  display: none;
}

.mobilemenu .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobilemenu .menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  padding: 16px;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  border-bottom: 1px solid #D9DADE;
}

.mobilemenu .menu li a:after {
  content: '';
  width: 15px;
  height: 11px;
  background: url(../images/menu-arrow.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobilemenu .menu li a.active {
  border-bottom: 1px solid #2782EE;
  color: #2782EE;
}

.mobilemenu .menu li a.active:after {
  display: none;
}

.mobilemenu .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  gap: 24px;
}

.mobilemenu .contacts li a {
  color: #2782EE;
  text-decoration: none;
}

.mobilemenu .contacts li a + a {
  margin-left: 24px;
}

.mobilemenu .contacts li a img {
  width: 28px;
}

.mobilemenu .contacts li.phone {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: right;
}

.mobilemenu .contacts li.phone a {
  font-size: 20px;
  line-height: 24px;
}

.mobilemenu .contacts li.callback {
  width: 100%;
}

.mobilemenu .contacts li.callback a {
  width: 100%;
  height: 48px;
  border: 1px solid #2782EE;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.mobilemenu .address {
  margin-top: 40px;
  font-size: 14px;
  line-height: 20px;
  color: #31343D;
}

/* Слайдер */

.slider {
  background: -o-linear-gradient(2.37deg, #2782EE -25%, #378DF3 88.22%);
  background: linear-gradient(87.63deg, #2782EE -25%, #378DF3 88.22%);
  position: relative;
  padding-top: 104px;
  overflow: hidden;
}

.slider.black{
  background: rgb(14, 14, 19)
}
.slider.black li{
  background: rgb(14, 14, 19)
}

.slider.grey {
  padding: 104px 0 0;
}

.slider.grey .container .text {
  gap: 0;
}

.slider.grey .container .text .title,
.slider.grey .container .text .desc {
  color: #31343D;
}

.slider.grey .container .text .button a {
  background: #2782EE;
  color: #FFFFFF;
}

.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.slider .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 460px;
  gap: 30px;
}

.slider .container .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
}

.slider .container .text .title {
  font-size: 36px;
  line-height: 38px;
  color: #FFFFFF;
}

.slider .container .text .desc {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 8px;
}

.slider .container .text .button {
  margin-top: 22px;
}

.slider .container .text .button a {
  padding: 14px 16px;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #3B404B;
  text-decoration: none;
  white-space: nowrap;
}

.slider .container .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider .container .image img {
  max-width: 100%;
}

.slider > .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  position: absolute;
  bottom: 36px;
  left: 0;
  height: 50px;
}

.slider > .buttons .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
}

.slider .slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  gap: 12px;
}

.slider .slider-pagination span {
  width: 8px;
  height: 8px;
  background: #76ADEE;
  display: block;
  border-radius: 50%;
}

.slider .slider-pagination span.swiper-pagination-bullet-active {
  background: #FFFFFF;
}

/* Услуги на главной */

.services h1 {
  text-align: center;
}

.services .button {
  margin: 24px 0 40px;
  text-align: center;
}

.services .button a {
  background: #2782EE;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 16px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-decoration: none;
}

.services .cats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.services .cats .cat {
  background: #FAFAFA;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 360px;
  gap: 32px;
 text-decoration: none;
}

.services .cats .cat > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 16px);
}

.services .cats .cat .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .cats .cat .text .title {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.01em;
}

.services .cats .cat .text .brands {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.services .cats .cat .text .brands li {
	cursor:pointer;
  margin-top: 8px;
}

.services .cats .cat .text .brands li a{
  color: #7A7D84;
  text-decoration: none;
  border-bottom: 1px solid #D9DADE;
}
.services .cats .cat .text .brands li span{
  color: #7A7D84;
  text-decoration: none;
  border-bottom: 1px solid #D9DADE;
}
/*
.services ul.cats li.cat .text .brands li a:hover {
  border-bottom: 1px solid transparent;
}*/

.services .cats .cat .text .all-brands {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  text-decoration: none;
}

.services .cats .cat .text .all-brands img {
  position: relative;
  top: -2px;
}

.services .all {
  margin-top: 30px;
}

.services .all a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  width: 100%;
  border: 1px solid #2782EE;
  border-radius: 4px;
  color: #2782EE;
  text-decoration: none;
}

/* Страница услуг */

.services-page h1 {
  text-align: center;
  margin: 0 0 40px;
  font-size: 31px;
  line-height: 36px;
}

.services-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.services-page ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
}

.services-page ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 4px;
  text-decoration: none;
  font-size: 21px;
  line-height: 25px;
  height: 100%;
}

.services-page ul li a > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.services-page ul li a .text {
  padding-left: 48px;
}

.services-page ul li a .image {
  text-align: center;
}

.services-page ul li a .image img {
  vertical-align: top;
}

/* Блок текста со спойлером */

.text-block .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.text-block .container h2 {
  margin: 0;
  font-size: 31px;
  line-height: 36px;
}

.text-block .container > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
}

.text-block .container .text ul {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.text-block .container .text ul li {
  padding-left: 28px;
  position: relative;
}

.text-block .container .text ul li:after {
  content: '';
  width: 8px;
  height: 1px;
  background: #2782EE;
  position: absolute;
  top: 10px;
  left: 6px;
}

.text-block .container .text ul li + li {
  margin-top: 10px;
}

.text-block .container .text-hide {
  height: 195px;
  overflow: hidden;
  color: #7A7D84;
}

.text-block .container .text-hide.open {
  height: auto;
}

.text-block .container .text-hide b {
  color: #31343D;
}

.text-block .container a.more {
  margin-top: 10px;
  display: inline-block;
  color: #7A7D84;
}

/* Вакансии */

.vacancy .vacancy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vacancy .vacancy-list > li {
  background: #FAFAFA;
  border-radius: 4px;
}

.vacancy .vacancy-list > li + li {
  margin-top: 16px;
}

.vacancy .vacancy-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  color: #31343D;
}

.vacancy .vacancy-list > li > a:after {
  content: '';
  width: 16px;
  height: 16px;
  background: url("../images/chevron-down.svg") no-repeat center;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.vacancy .vacancy-list > li > .text {
  display: none;
}

.vacancy .vacancy-list > li.open > a {
  color: #2782EE;
}

.vacancy .vacancy-list > li.open > a:after {
  background: url("../images/chevron-up.svg") no-repeat center;
}

.vacancy .vacancy-list > li.open > .text {
  display: block;
  border-top: 1px solid #D9DADE;
  padding: 24px;
}

.vacancy .vacancy-list > li .blue-button {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 14px 16px;
  background: #2782EE;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 16px;
}

.vacancy .vacancy-list > li ul {
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.vacancy .vacancy-list > li ul li {
  padding-left: 28px;
  position: relative;
}

.vacancy .vacancy-list > li ul li:after {
  content: '';
  width: 8px;
  height: 1px;
  background: #2782EE;
  position: absolute;
  top: 10px;
  left: 6px;
}

.vacancy .vacancy-list > li ul li + li {
  margin-top: 10px;
}

/* Форма на главной */

.grey {
  background: #F0F2F5;
  padding: 120px 0;
}

.grey .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grey h2 {
  margin: 0 0 8px;
  font-size: 31px;
  line-height: 36px;
}

.grey p {
  margin: 0;
}

.grey .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.grey .text a {
  margin-top: 8px;
  text-decoration: none;
  font-size: 31px;
  line-height: 36px;
}

.grey .form-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form .form-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(50% - 15px);
  position: relative;
}

.form .form-item .err-block {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: #E2453B;
  display: none;
}

.form .form-item.error .err-block {
  display: block;
}

.form .form-item.big {
  width: 100%;
}

.form .form-item.res:empty {
  display: none;
}

.form .form-item.res,
.form .form-item.button,
.form .form-item.yes {
  width: 100%;
}

.form .form-item.res {
  text-align: center;
}

.form .form-item label {
  font-size: 13px;
  line-height: 18px;
  color: #7A7D84;
  position: absolute;
  top: 48px;
  left: 22px;
  right: 22px;
  cursor: text;
}

.form .form-item label.hide {
  display: none;
}

.form .form-item input,
.form .form-item textarea {
  height: 48px;
  background: #FFFFFF;
  border-radius: 4px;
  border: none;
  width: 100%;
  padding: 14px 22px;
  resize: none;
  line-height: 20px;
}

.form .form-item textarea {
  height: 161px;
  vertical-align: top;
}

.form .form-item button {
  border: none;
  height: 48px;
  background: #2782EE;
  border-radius: 4px;
  width: 100%;
  color: #fff;
}

.form .form-item.file {
  position: relative;
  height: 48px;
  width: 100%;
}

.form .form-item.file label {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 48px;
  border: 1px solid #2782EE;
  border-radius: 4px;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #2782EE;
  z-index: 1;
  background-color: #fff;
  cursor: pointer;
}

.form .form-item.file label img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}

.form .form-item.file label span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: calc(100% - 66px);
  white-space: nowrap;
  overflow: hidden;
}

.form .form-item .yes {
  margin-top: 8px;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #7A7D84;
}

.form .form-item .yes a {
  color: #7A7D84;
}

/* Поломки */

.repair {
  background: #FAFAFA;
  border-radius: 4px;
}

.repair .title {
  font-size: 16px;
  line-height: 19px;
  color: #31343D;
  padding: 24px;
  border-bottom: 1px solid #D9DADE;
}

.repair ul {
  margin: 0;
  padding: 24px;
  list-style: none;
  -webkit-column-width: calc(50% - 15px);
     -moz-column-width: calc(50% - 15px);
          column-width: calc(50% - 15px);
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.repair ul li {
  padding-left: 28px;
  position: relative;
  color: #7A7D84;
}

.repair ul li:after {
  content: '';
  width: 8px;
  height: 1px;
  background: #2782EE;
  position: absolute;
  top: 10px;
  left: 6px;
}

.repair ul li + li {
  margin-top: 10px;
}

/* Категории */

.categories h1 {
  font-size: 31px;
  line-height: 36px;
  margin: 20px 0;
}

.categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.categories ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: #FAFAFA;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 20px;
}

.categories ul li.active a {
  background: #F1F7FE;
  color: #2782EE;
}

/* Бренды и Модели */

.brands-models .brands {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
}

.brands-models .brands li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 150px) / 6);
}

.brands-models .brands li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #F0F2F5;
  background: #F0F2F5;
  border-radius: 4px;
  height: 42px;
  color: #31343D;
}

.brands-models .brands li.all a {
  background-color: #fff;
  border: 1px solid #D9DADE;
}

.brands-models .brands li.hide {
  display: none;
}

.brands-models .brands li.active a {
  background: #2782EE;
  color: #fff;
}

.brands-models .brands.open li.hide {
  display: block;
}

.brands-models .models {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
}

.brands-models .models li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc((100% - 150px) / 6);
}

.brands-models .models li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: #7A7D84;
  height: 42px;
  border-bottom: 1px solid #D9DADE;
}

.brands-models .models li a:hover {
  opacity: 1;
}

/* Прайс */

.price-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #FAFAFA;
  border-radius: 4px;
}

.price-block ul li:not(.mod-schame),
.price-block ul li.mod-schame > div {
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.price-block ul li .title {
  padding: 24px;
}

.price-block ul li .price {
  padding: 24px;
  color: #2782EE;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  text-align: right;
}

.price-block ul li + li {
  border-top: 1px solid #D9DADE;
}

/* Отзывы */

.benefits-reviews h2 {
  text-align: center;
  margin-top: 0;
  font-size: 31px;
  line-height: 36px;
}

.benefits-reviews .benefits {
  margin: 40px 0;
  padding: 0 0 40px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
  border-bottom: 1px solid #D9DADE;
}

.benefits-reviews .benefits li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(25% - 21px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.benefits-reviews .benefits li .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  margin-right: 34px;
}

.benefits-reviews .benefits li .icon img {
  vertical-align: top;
}

.benefits-reviews .benefits li .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 82px);
  font-size: 16px;
  line-height: 19px;
  padding-right: 20px;
}

.benefits-reviews .reviews {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.benefits-reviews .reviews li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(33.333% - 20px);
  background: #FAFAFA;
  border-radius: 4px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.benefits-reviews .reviews li .title {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 8px;
}

.benefits-reviews .reviews li .text {
  font-size: 14px;
  line-height: 20px;
  color: #7A7D84;
  height: 120px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.benefits-reviews .reviews li .text:after {
  content: '';
  width: 100%;
  height: 60px;
  background: #fafafa;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #fafafa), to(rgba(250, 250, 250, 0)));
  background: -o-linear-gradient(bottom, #fafafa 35%, rgba(250, 250, 250, 0) 100%);
  background: linear-gradient(0deg, #fafafa 35%, rgba(250, 250, 250, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.benefits-reviews .reviews li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  height: 48px;
  border: 1px solid #2782EE;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #2782EE;
  text-decoration: none;
}

.benefits-reviews .reviews-scroll {
  height: 4px;
  background: #F4F6F8;
  border-radius: 2px;
  margin-top: 8px;
  display: none;
}

.benefits-reviews .reviews-scroll .swiper-scrollbar-drag {
  background: #2782EE;
  height: 4px;
  border-radius: 2px;
}

.benefits-reviews .all {
  margin-top: 30px;
}

.benefits-reviews .all a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 4px;
  color: #fff;
  background-color: #2782EE;
  text-decoration: none;
}

/* Бренды */

.brands h2 {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 31px;
  line-height: 36px;
}

.brands ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
}

.brands ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(25% - 21px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brands ul li img {
  vertical-align: top;
}

/* Слайдер о компании */

.about-slider {
  position: relative;
}

.about-slider .about-wrapper {
  overflow: hidden;
  position: relative;
}

.about-slider .about-wrapper::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.23)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.about-slider .about-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-slider .about-wrapper ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.about-slider .about-wrapper ul li img {
  vertical-align: top;
}

.about-slider .arrows {
  position: absolute;
  right: 52px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.about-slider .arrows img {
  vertical-align: top;
}

.about-slider .count {
  position: absolute;
  left: 52px;
  bottom: 31px;
  line-height: 19px;
  font-size: 16px;
  color: #fff;
}

/* Конакты в футере */

.bottom-contacts {
  background: #292D35 url(../images/footer.svg) no-repeat center;
  background: #0E0E13 url(../images/footer.svg) no-repeat center;
  border-bottom: 1px solid rgba(218, 218, 218, 0.07);
  padding: 56px 0;
  color: #F5F7F9;
}

.bottom-contacts a {
  color: #F5F7F9;
  text-decoration: none;
}

.bottom-contacts .phone {
  font-size: 31px;
  line-height: 36px;
}

.bottom-contacts .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bottom-contacts .map {
  margin-top: 25px;
}

.bottom-contacts .map iframe {
 /* pointer-events: none;*/
}

/* Футер */

.footer {
  background: #292D35;
  background: #0E0E13;
  padding: 56px 0;
  color: #F5F7F9;
}

.footer a {
  color: #F5F7F9;
  text-decoration: none;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 350px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.footer .menu > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.footer .menu .title {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.footer .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .menu ul li + li {
  margin-top: 16px;
}

.footer .menu ul a {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.footer .menu ul.brands {
  margin: 16px 0 0;
}

.footer .menu ul.brands li + li {
  margin-top: 5px;
}

.footer .menu ul.brands a {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #7B7D7E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .menu ul.brands a:hover {
  border-bottom: 1px solid transparent;
}

.footer .menu ul + .title {
  margin-top: 30px;
}

.footer .copyrights {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 310px;
  margin-left: 40px;
}

.footer .developer {
  padding-top: 15px;
}

.footer .copyrights .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.footer .copyrights .logo a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 86px;
  margin-right: 20px;
}

.footer .copyrights .logo a img {
  vertical-align: top;
}

.footer .copyrights .logo span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(100% - 106px);
}

.footer .copyrights ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer .copyrights ul img {
  vertical-align: top;
}

/* Обертка таблицы */

.table-container {
  position: relative;
}

.table-viewport {
  overflow: auto;
}

.table-container table {
  min-width: 800px;
}

.table-container.right-shadow:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(0, 0, 0, 0.07)));
  background: -o-linear-gradient(left, transparent 0%, rgba(0, 0, 0, 0.07) 100%);
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.07) 100%);
}

.table-container.left-shadow:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(rgba(0, 0, 0, 0.07)));
  background: -o-linear-gradient(right, transparent 0%, rgba(0, 0, 0, 0.07) 100%);
  background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.07) 100%);
}

/* Модалки */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(33, 44, 60, 0.68);
  z-index: 99;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.overlay.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overlay .modal {
  width: 100%;
  max-width: 410px;
  background: #fff;
  border-radius: 14px;
  padding: 45px;
  position: relative;
  overflow-y: auto;
  max-height: 100%;
  display: none;
}

.overlay .modal.open {
  display: block;
}

.overlay .modal .closemodal {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay .modal .closemodal img {
  vertical-align: top;
}

.overlay .modal h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 38px;
  margin: 0;
  text-align: center;
}

.overlay .modal .desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-top: 8px;
  text-align: center;
}

.overlay .modal .form {
  margin-top: 30px;
}

.overlay .modal .form .form-item {
  width: 100%;
}

.overlay .modal .form input,
.overlay .modal .form textarea {
  border: 1px solid #D9DADE;
}

.overlay .modal.big {
  max-width: 600px;
}

.overlay .modal.big .form .form-item {
  width: calc(50% - 15px);
}

.overlay .modal.big .form .form-item.button,
.overlay .modal.big .form .form-item.res,
.overlay .modal.big .form .form-item.yes {
  width: 100%;
}

/* Share */

.ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
  background: none !important;
  padding: 0 !important;
}

.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more {
  background-image: url(../images/share.svg) !important;
  background-size: 60% !important;
}