@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Semibold.eot');
  src: url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Semibold.woff2') format('woff2'), url('../fonts/ProximaNova-Semibold.woff') format('woff'), url('../fonts/ProximaNova-Semibold.ttf') format('truetype'), url('../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Regular.eot');
  src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Regular.woff2') format('woff2'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Bold.eot');
  src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.woff2') format('woff2'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype'), url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

select::-ms-expand {
  /* IE */
  display: none;
}

body {
  font-family: 'Proxima Nova';
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  color: #2E373F;
}

html {
  overflow-x: hidden;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.wrapper {
  max-width: 1700px;
  padding: 0 10px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Header */

.alert {
  padding: 16px 0;
  background-color: #04BF68;
  position: relative;
}

.alert .wrapper {
  padding-left: 170px;
  padding-right: 170px;
}

.alert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 149px;
  background-image: url('../img/alert-img.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.alert__text {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.burger {
  width: 24px;
  height: 16px;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  margin-left: auto;
}

.burger__item {
  position: absolute;
  right: 0;
  width: 23px;
  height: 2px;
  background-color: #FF6200;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger__item:nth-child(1) {
  top: 0;
}

.burger__item:nth-child(2) {
  top: calc(50% - 1px);
}

.burger__item:nth-child(3) {
  bottom: 0;
}

.burger.active .burger__item:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__item:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 20px;
}

.burger.active .burger__item:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
}

.top-header {
  display: none;
}

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0px 4px 4px 1px rgba(42, 56, 92, 0.16);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.scroll-header.active {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 18px 0;
}

.header__logo {
  display: block;
}

.header__logo img {
  display: block;
}

.header__time {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-transform: uppercase;
}

.header__time_num {
  font-weight: 700;
  font-size: 60px;
  color: #FD3900;
  display: inline-block;
  margin-right: 6px;
}

.header__time_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.header__time_min {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #FD3900;
}

.header__sel_title {
  color: #2B3F64;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.header__sel_main {
  padding: 8px 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  border: 2px solid #F1EBD6;
  border-radius: 4px;
  width: 400px;
  box-sizing: border-box;
  position: relative;
}

.header__sel_main select {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.header__sel_main img {
  display: block;
  margin-right: 6px;
}

.header__sel_main::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../img/icons/arrow-down.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
  pointer-events: none;
}

.header__phone_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.header__phone_top img {
  display: block;
  margin-right: 12px;
}

.header__phone_num {
  font-size: 30px;
  font-weight: 700;
}

.header__phone_num span {
  color: #FD3900;
}

.header__phone_descr {
  display: block;
  text-align: right;
  font-size: 18px;
  margin-top: 8px;
}

.header__bottom {
  background-color: #fff;
  border-top: 1px solid #DADADA;
  box-shadow: 2px 2px 8px 2px rgba(56, 55, 121, 0.08);
}

.nav {
  padding: 30px 0;
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.nav__link {
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-transform: uppercase;
  color: #4449DB;
}

.nav__link img {
  vertical-align: middle;
  margin-right: 12px;
}

.nav__link span {
  display: inline;
  text-decoration: none;
  border-bottom: 1px dashed #4449DB;
}

.nav__link:hover span {
  border-bottom: none;
}

/* / Header */

/* Hero */

.hero {
  margin-bottom: 32px;
  padding-top: 30px;
  overflow: hidden;
}

.hero__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.hero__slider {
  position: relative;
  padding-left: 52px;
  padding-right: 52px;
  width: calc(100% - 720px);
  box-sizing: border-box;
}

.hero__slide {
  height: 237px;
}

.hero__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-btn-prev,
.hero-btn-next {
  position: absolute;
  top: calc(50% - 18px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.hero-btn-prev {
  left: 0;
}

.hero-btn-next {
  right: 0;
}

.hero-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 18px;
}

.hero-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #EAEAEA;
  border-radius: 50px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.hero-pagination-bullet-active {
  background-color: #FFDD2D;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__descr {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero__descr span, .fast__descr span {
  padding: 1px 6px;
  background-color: #FFDD2D;
}

.h-form {
  border-radius: 10px;
  background-color: #FFF5D5;
  padding: 20px 25px;
}

.h-form__fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.h-form__fields .h-form__field {
  width: calc(50% - 8px);
}

.h-form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 22px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.h-form__field img {
  display: block;
  margin-right: 12px;
}

.h-form__submit {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  padding: 25px 0;
  background-color: #FFDD2D;
  border-radius: 10px;
  cursor: pointer;
}

/* / Hero */

/* Срочная техпомощь */

.fast {
  margin-bottom: 40px;
}

.fast__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.fast__cols-hidden {
  display: none;
}

.fast__col {
  width: calc(20% - 20px);
  margin-left: 10px;
  margin-right: 10px;
}

.fast__letter {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 22px;
}

.fast__list {
  margin-bottom: 35px;
}

.fast__list li {
  padding-left: 26px;
  position: relative;
}

.fast__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
}

.fast__list li:not(:last-child) {
  margin-bottom: 10px;
}

.fast__list li a {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #4449DB;
}

.fast__list li a:hover {
  color: #FD3900;
}

.fast__list li.fast-darkbrown::before {
  background-color: #BF9F00;
}

.fast__list li.fast-green::before {
  background-color: #027C39;
}

.fast__list li.fast-orange::before {
  background-color: #D47D01;
}

.fast__list li.fast-blue::before {
  background-color: #0C83AB;
}

.fast__list li.fast-gray::before {
  background-color: #8A8A8A;
}

.fast__list li.fast-lightblue::before {
  background-color: #49BBB7;
}

.fast__list li.fast-purple::before {
  background-color: #B6127D;
}

.fast__list li.fast-lightgreen::before {
  background-color: #95AE0E;
}

.fast__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 50px;
  border-bottom: 4px solid #EAEAEA;
  margin-bottom: 25px;
}

.fast__content {
  display: none;
  padding: 0 50px;
}

.fast__content.active {
  display: block;
}

.fast__tab {
  display: inline-block;
  font-size: 22px;
  padding: 32px 0;
  cursor: pointer;
  position: relative;
}

.fast__tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 4px;
  background-color: #EAEAEA;
}

.fast__tab.active {
  color: #FD3900;
}

.fast__tab.active::before {
  background-color: #FD3900;
}

.fast__tab:not(:last-child) {
  margin-right: 60px;
}

.fast__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 32px;
  font-weight: 600;
}

.fast__imgs {
  margin-right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.fast__img {
  display: block;
}

.fast__img:not(:first-child) {
  margin-left: -24px;
}

.fast__showmore {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}

.fast__showmore::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 25px;
  background-color: #EAEAEA;
  height: 1px;
  width: 100%;
}

.fast__showmore_txt {
  text-align: center;
  font-size: 14px;
  color: #4449DB;
  display: inline-block;
  margin-bottom: 10px;
}

.fast__showmore_rds {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0px 0px 20px 20px;
}

.fast__showmore_rd {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #FFDD2D;
  margin-left: 5px;
  margin-right: 5px;
}

/* / Срочная техпомощь */

/* Услуги */

.service {
  margin-bottom: 30px;
}

.service__slider {
  padding-left: 52px;
  padding-right: 52px;
  position: relative;
}

.service__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  height: unset;
  box-sizing: border-box;
  padding: 30px 15px;
  background-color: #fff;
  border: 2px solid #EAEAEA;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.service__slide:hover {
  box-shadow: 0px 10px 20px 10px rgba(42, 56, 92, 0.14);
}

.service__slide img {
  display: block;
  margin-bottom: 30px;
}

.service-btn-prev,
.service-btn-next {
  position: absolute;
  top: calc(50% - 18px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.service-btn-prev {
  left: 0;
}

.service-btn-next {
  right: 0;
}

.service-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 18px;
}

.service-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #EAEAEA;
  border-radius: 50px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.service-pagination-bullet-active {
  background-color: #FFDD2D;
}

.service__btn {
  display: inline-block;
  padding: 12px 0;
  width: 200px;
  background-color: #FFDD2D;
  border-radius: 4px;
  margin-bottom: 10px;
}

.service__name {
  font-size: 22px;
  font-weight: 600;
  color: #2E373F;
  margin-bottom: 10px;
  margin-top: auto;
}

.service__name:hover {
  color: #4449DB;
}

.service__cost {
  color: #4449DB;
  font-size: 24px;
  font-weight: 600;
}

/* / Услуги */

/* Мастера */

.master {
  margin-bottom: 40px;
}

.master__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-bottom: 10px;
}

.master__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.master__item {
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  padding: 24px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 5px 20px 2px rgba(56, 55, 121, 0.1);
  border-radius: 6px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.master__item:hover {
  box-shadow: 0px 20px 30px 20px rgba(42, 56, 92, 0.21);
}

.master__slider {
  width: 300px;
  margin-right: 30px;
  position: relative;
}

.master__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.master__position {
  color: #2B3F64;
  margin-bottom: 5px;
}

.master__name {
  font-size: 24px;
  font-weight: 700;
  color: #2B3F64;
  margin-bottom: 5px;
}

.master__year {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 15px;
}

.master__year img {
  display: block;
  margin-right: 4px;
}

.master__loc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.master__loc img {
  display: block;
  margin-right: 10px;
}

.master__locs {
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 15px;
}

.master__locs li:not(:last-child) {
  margin-right: 5px;
}

.master__locs li a {
  color: #4449DB;
  text-decoration: underline;
}

.master__locs li a:hover {
  text-decoration: underline;
}

.master__img {
  height: 215px;
}

.master__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.master__phone_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.master__phone_top img {
  display: block;
  margin-right: 8px;
}

.master__phone_descr {
  display: block;
  text-align: right;
  font-size: 14px;
}

.master__call {
  font-size: 22px;
  font-weight: 700;
}

.master__call span {
  color: #FD3900;
}

.master-pagination {
  position: absolute;
  left: 4px;
  width: calc(100% - 8px);
  bottom: 4px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  z-index: 10;
}

.master-pagination-bullet {
  display: inline-block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  height: 6px;
  margin-left: 3px;
  margin-right: 3px;
  background-color: #D9D9D9;
  cursor: pointer;
}

.master-pagination-bullet-active {
  background-color: #FFDD2D;
}

.master__metro_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 17px;
}

.master__metro_title img {
  display: block;
  margin-right: 5px;
}

.master__metro_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.master__metro_list li {
  margin-bottom: 10px;
  width: calc(20% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 22px;
  position: relative;
  box-sizing: border-box;
}

.master__metro_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50px;
  border: 3px solid transparent;
  box-sizing: border-box;
}

.master__metro_list li.master-green::before {
  border-color: #00A34B;
}

.master__metro_list li.master-purple::before {
  border-color: #A01B8B;
}

.master__metro_list li.master-blue::before {
  border-color: #0564B1;
}

.master__metro_list li.master-gray::before {
  border-color: #8C8C8C;
}

.master__metro_list li.master-lightgray::before {
  border-color: #A4C1E0;
}

.master__metro_list li.master-orange::before {
  border-color: #F68220;
}

.master__metro_list li a {
  font-size: 14px;
  text-decoration: underline;
}

.master__metro_list li a:hover {
  color: #4449DB;
}

.master__table table {
  display: block;
  width: 100%;
}

.master__table table thead,
.master__table table tbody {
  display: block;
}

.master__table table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  text-align: left;
  padding: 8px 12px;
}

.master__table table tr td,
.master__table table tr th {
  display: block;
  font-size: 15px;
}

.master__table table tr td:last-child,
.master__table table tr th:last-child {
  width: 25.88%;
}

.master__table table tr td:nth-child(2),
.master__table table tr th:nth-child(2) {
  width: 22.84%;
}

.master__table table tr td:first-child,
.master__table table tr th:first-child {
  width: calc(100% - 25.88% - 22.84% - 15px);
}

.master__table table tbody tr:nth-child(2n + 1) {
  background-color: #ECF1F7;
}

.master__table table tr:hover .master__btn {
  opacity: 1;
  pointer-events: auto;
}

.master__table_name:hover {
  color: #4449DB;
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
          text-decoration-style: dashed;
}

.master__cost {
  font-weight: 600;
  color: #365DD6;
}

.master__btn {
  display: block;
  width: 100%;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  background-color: #FFDD2D;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* / Мастера */

/* Цены */

.price {
  margin-bottom: 40px;
}

.price__table table {
  display: block;
  width: 100%;
}

.price__table table thead,
.price__table table tbody {
  display: block;
}

.price__table table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

.price__table table tr td,
.price__table table tr th {
  text-align: center;
  font-weight: 400;
}

.price__table table tr td:first-child,
.price__table table tr th:first-child {
  text-align: left;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  padding-right: 10px;
}

.price__table table tr td:nth-child(2),
.price__table table tr th:nth-child(2) {
  width: 167px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.price__table table tr td:nth-child(3),
.price__table table tr th:nth-child(3) {
  width: 167px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.price__table table tr td:last-child,
.price__table table tr th:last-child {
  width: 200px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.price__table table thead {
  color: #fff;
  padding: 22px 0;
  background-color: #04BF68;
}

.price__table table tbody tr {
  padding-top: 15px;
  padding-bottom: 15px;
  border: 4px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.price__table table tbody tr:nth-child(2n) {
  background-color: #ECF1F7;
}

.price__table table tbody tr:hover {
  border-color: #04BF68;
}

.price__btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  background-color: #FFDD2D;
  border-radius: 4px;
}

/* / Цены */

/* Маркм */

.mark {
  margin-bottom: 50px;
}

.mark__slider {
  position: relative;
  padding-left: 52px;
  padding-right: 52px;
  box-sizing: border-box;
}

.mark-btn-prev,
.mark-btn-next {
  position: absolute;
  top: calc(50% - 18px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.mark-btn-prev {
  left: 0;
}

.mark-btn-next {
  right: 0;
}

.mark-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 30px;
}

.mark-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #EAEAEA;
  border-radius: 50px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.mark-pagination-bullet-active {
  background-color: #FFDD2D;
}

.mark__slide {
  width: unset;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  text-decoration: underline;
}

.mark__slide:hover {
  text-decoration: none;
}

.mark__slide img {
  display: block;
  margin-bottom: 12px;
}

/* / Маркм */

/* Выезд */

.viezd {
  background-color: #EEF6FF;
  padding: 30px 0;
}

.viezd__slider {
  position: relative;
  padding-left: 52px;
  padding-right: 52px;
  box-sizing: border-box;
}

.viezd-btn-prev,
.viezd-btn-next {
  position: absolute;
  top: calc(50% - 18px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.viezd-btn-prev {
  left: 0;
}

.viezd-btn-next {
  right: 0;
}

.viezd-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 18px;
}

.viezd-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}

.viezd-pagination-bullet-active {
  background-color: #FFDD2D;
}

.viezd__slide {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.viezd__img {
  min-height: 213px;
  width: 45%;
  position: relative;
}

.viezd__img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.viezd__list {
  padding-left: 26px;
  padding-right: 26px;
}

.viezd__list li {
  padding-left: 20px;
  position: relative;
}

.viezd__list li:not(:last-child) {
  margin-bottom: 14px;
}

.viezd__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #4449DB;
}

.viezd__list li a:hover {
  color: #4449DB;
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
          text-decoration-style: dashed;
}






.viezd__list_string {
  padding-top: 10px;
  padding-right: 26px;
}

.viezd__list_string li {
  padding-left: 20px;
  position: relative;
  display: inline;
}

.viezd__list_string li:not(:last-child) {
  margin-bottom: 14px;
}

.viezd__list_string li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50px;
  background-color: #4449DB;
}


/* / Выезд */

/* Помощь */

.help {
  background-color: #FFDD2D;
}

.help .wrapper {
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
}

.help__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.help__img {
  height: 324px;
  width: 383px;
  margin-right: 45px;
}

.help__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.help__main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  box-sizing: border-box;
  padding: 25px 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.help__title {
  font-size: 36px;
  font-weight: 600;
  max-width: 677px;
  margin-bottom: 10px;
}

.help__descr {
  max-width: 677px;
  font-size: 18px;
  margin-bottom: 35px;
}

.help__phone {
  display: inline-block;
}

.help__phone_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 30px;
  font-weight: 700;
}

.help__phone_top span {
  color: #E72121;
}

.help__phone_top img {
  display: block;
  margin-right: 12px;
}

.help__phone_descr {
  text-align: right;
  display: block;
  font-size: 18px;
}

.b-form {
  display: block;
  width: 100%;
  max-width: 320px;
}

.b-form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 22px;
  margin-bottom: 12px;
  box-sizing: border-box;
  width: 100% l;
}

.b-form__icon {
  display: block;
  margin-right: 12px;
}

.b-form__inp {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.b-form__submit {
  display: block;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background-color: #FD3900;
  border-radius: 4px;
}

/* / Помощь */

/* Футер */

.footer {
  padding: 35px 0;
  background-color: #F1EBD6;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 45px;
}

.footer__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer__phone {
  display: inline-block;
}

.footer__phone_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 30px;
  font-weight: 700;
}

.footer__phone_top span {
  color: #E72121;
}

.footer__phone_top img {
  display: block;
  margin-right: 12px;
}

.footer__phone_descr {
  text-align: right;
  display: block;
  font-size: 18px;
}

.footer__pay {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.footer__pay img {
  display: block;
  margin-top: 7px;
}

.footer__cols {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 100px;
}

.footer__col {
  width: 50%;
}

.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.footer__list li {
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 14px;
}

.footer__list li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.footer__list li a img {
  display: block;
  margin-right: 8px;
}

.footer__copyright {
  text-transform: uppercase;
  font-size: 14px;
  color: #767676;
}

/* / Футер */

@media screen and (max-width: 1600px) {
  .section-title {
    font-size: 28px;
  }

  .alert {
    padding: 12px 0;
  }

  .alert::before {
    width: 110px;
  }

  .alert__text {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .header__logo {
    max-width: 320px;
  }

  .header__phone_top img {
    width: 22px;
    margin-right: 8px;
  }

  .header__phone_num {
    font-size: 24px;
  }

  .header__phone_descr {
    font-size: 14px;
  }

  .header__sel_main {
    width: 300px;
  }

  .header__sel_main img {
    width: 26px;
    margin-right: 4px;
  }

  .header__time_num {
    font-size: 45px;
  }

  .header__time_min,
  .header__time_txt {
    font-size: 14px;
  }

  .nav__link {
    font-size: 15px;
  }

  .nav__link img {
    width: 23px;
    margin-right: 8px;
  }

  .hero__slider {
    -webkit-align-self: start;
                -ms-grid-row-align: start;
            align-self: start;
    width: calc(100% - 620px);
  }

  .hero__slide {
    height: 14vw;
  }

  .hero__title {
    font-size: 40px;
    max-width: 500px;
  }

  .hero__text {
    max-width: 605px;
  }

  .h-form {
    padding: 12px 14px;
  }

  .h-form__field {
    padding: 16px;
  }

  .h-form__submit {
    font-size: 20px;
    padding: 20px 0;
  }

  .master__metro_list li {
    width: calc(25% - 20px);
  }

  .help__img {
    margin-right: 15px;
  }

  .help__main {
    padding: 15px;
  }

  .help__text {
    margin-right: 15px;
  }

  .help__title {
    font-size: 28px;
  }

  .help__descr {
    font-size: 16px;
  }
}

@media screen and (max-width: 1500px) {
  .viezd__slider {
    padding-left: 30px;
    padding-right: 30px;
  }

  .viezd__list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .viezd__list li {
    padding-left: 14px;
  }

  .viezd__list li::before {
    width: 5px;
    height: 5px;
  }

  .viezd__img {
    width: 40%;
  }

  .viezd-btn-prev,
  .viezd-btn-next {
    width: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .master__slider {
    width: 240px;
  }

  .master__metro_list li {
    width: calc(100% / 12 * 4 - 20px);
  }

  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .footer__top > *:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1250px) {
  .top-header {
    display: block;
    padding: 10px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
  }

  .header__mob {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    position: relative;
  }

  .header__top .header__phone {
    display: none;
  }

  .nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    padding-top: 90px;
    z-index: 99;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: #fff;
    max-width: unset;
  }

  .nav.active {
    opacity: 1;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }

  .nav__list {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .nav__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .nav__link img {
    width: 28px;
  }

  .hero__text {
    margin-bottom: 30px;
    text-align: center;
  }

  .hero__title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .hero__text {
    width: 100%;
    max-width: 600px;
  }

  .hero__slider {
    -webkit-align-self: unset;
                -ms-grid-row-align: unset;
            align-self: unset;
    width: 100%;
    max-width: 700px;
  }

  .hero__slide {
    height: 200px;
  }

  .fast__top {
    padding-left: 0;
    padding-right: 0;
  }

  .fast__content {
    padding-left: 0;
    padding-right: 0;
  }

  .master__items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }

  .master__item {
    width: calc(100% - 20px);
    max-width: 700px;
    padding: 15px;
  }

  .viezd__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .viezd-swiper .swiper-wrapper {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  .viezd__slide {
    width: calc(50% - 15px);
    margin-bottom: 20px;
  }

  .viezd__img {
    width: 50%;
  }

  .viezd-btn-prev,
  .viezd-btn-next {
    display: none;
  }

  .help__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .help__img {
    margin-right: 0;
  }

  .help__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .help__text {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .alert .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .alert__text {
    font-size: 14px;
  }

  .alert::before {
    display: none;
  }

  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .header__logo {
    margin-bottom: 25px;
  }

  .header__time {
    display: none;
  }

  .header__bottom {
    box-shadow: unset;
    border: none;
  }

  .header__phone_num {
    font-size: 20px;
  }

  .nav {
    padding-top: 70px;
  }

  .fast__left {
    font-size: 22px;
  }

  .fast__imgs {
    margin-right: 15px;
  }

  .fast__img {
    width: 45px;
  }

  .fast__tab {
    padding: 15px 0;
    font-size: 18px;
  }

  .fast__tab:not(:last-child) {
    margin-right: 30px;
  }

  .fast__col {
    width: calc(100% / 12 * 4 - 20px);
  }

  .service {
    overflow: hidden;
  }

  .service-swiper {
    overflow: unset;
  }

  .service__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .service-btn-prev,
  .service-btn-next {
    display: none;
  }

  .service__name {
    font-size: 22px;
  }

  .service-pagination-bullet {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .price__table table {
    font-size: 13px;
  }

  .price__table table thead {
    padding: 0;
  }

  .price__table table tbody tr {
    padding: 8px;
  }

  .price__table table tr {
    padding: 8px;
  }

  .price__table table tr td:nth-child(2),
  .price__table table tr th:nth-child(2) {
    display: none;
  }

  .price__table table tr td:last-child,
  .price__table table tr th:last-child {
    display: none;
  }

  .price__table table tr td:nth-child(3),
  .price__table table tr th:nth-child(3) {
    width: 100px;
  }

  .price__table table tr td:nth-child(3) {
    color: #365DD6;
  }

  .footer__cols {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .footer__col {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .viezd__slide {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .fast__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }

  .fast__col {
    width: calc(50% - 20px);
  }

  .mark {
    overflow: hidden;
  }

  .mark__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .mark__slide {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mark-btn-prev,
  .mark-btn-next {
    display: none;
  }

  .mark-swiper {
    overflow: unset;
  }
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 18px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__descr {
    font-size: 14px;
  }

  .hero__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-btn-prev,
  .hero-btn-next {
    display: none;
  }

  .hero__slide {
    height: 60vw;
  }

  .hero-swiper {
    overflow: unset;
  }

  .hero-pagination-bullet {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .h-form__fields {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .h-form__fields .h-form__field {
    width: 100%;
  }

  .fast__descr {
    font-size: 14px;
  }

  .fast__list li {
    padding-left: 20px;
  }

  .fast__list li::before {
    width: 12px;
    height: 12px;
  }

  .fast__list li a {
    font-size: 13px;
  }

  .master__item {
    padding: 8px;
  }

  .master__metro_list li {
    width: calc(50% - 20px);
  }

  .master__metro_list li a {
    font-size: 13px;
  }

  .master__table table tr td,
  .master__table table tr th {
    font-size: 13px;
  }

  .master__table table tr td:first-child,
  .master__table table tr th:first-child {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    width: unset;
    box-sizing: border-box;
    padding-right: 10px;
  }

  .master__table table tr td:last-child,
  .master__table table tr th:last-child {
    display: none;
  }

  .master__table table tr td:nth-child(2),
  .master__table table tr th:nth-child(2) {
    min-width: 100px;
  }

  .master__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .master__slider {
    width: 100%;
    margin-bottom: 15px;
  }

  .master__img {
    height: 200px;
  }

  .mark-pagination-bullet {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .viezd__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
            align-items: unset;
  }

  .viezd__img {
    width: 100%;
  }

  .viezd__list {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .help__img {
    width: 100%;
  }

  .help__title {
    font-size: 24px;
  }

  .help__phone_num {
    font-size: 24px;
  }

  .help__phone_descr {
    font-size: 13px;
  }

  .footer__list li {
    width: 100%;
  }

  .footer__phone_num {
    font-size: 24px;
  }

  .footer__phone_descr {
    font-size: 14px;
  }
}
.text-align-right {text-align: right;}

.footer__cols2 {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}
.red-txt {color: #FFDD2D;}

.popup__wrap {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.5);
  z-index: 100;

}
.popup__sending {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #FFDD2D;
    border-radius: 10px; 
    font-size: 28px;
    font-weight: 900;
    flex-flow: column;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.17);
    box-sizing: border-box;
    padding: 30px;
    position: relative;
    line-height: 1.3;
    color: #26364B;
}

.popup__sending:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 8px;
}

.viezd__list {
	margin-top: 20px;
	margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.viezd__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.4;
}

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