@charset "UTF-8";

.active-animation nav a,
.active-animation a,
.active-animation button,
.active-animation svg,
.active-animation img,
.active-animation a img,
.active-animation a path,
.active-animation .sub-menu,
.active-animation textarea,
.active-animation input {
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus,
* {
  outline: 0 !important;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-font-smoothing: antialiased;
}

body {
  padding: 0;
  margin: 0;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

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

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

small {
  font-size: 80%;
}

img {
  border: 0;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
img,
legend {
  border: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
button {
  outline: none;
  border: none;
  background: transparent;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
}

input:focus:-moz-placeholder {
  color: transparent !important;
}

input:focus:-ms-input-placeholder {
  color: transparent !important;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}

textarea:focus:-moz-placeholder {
  color: transparent !important;
}

textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}

input::-webkit-input-placeholder {
  color: #2B2B2B;
}

input::-moz-placeholder {
  color: #2B2B2B;
}

input:-ms-input-placeholder {
  color: #2B2B2B;
}

textarea::-webkit-input-placeholder {
  color: #2B2B2B;
}

textarea::-moz-placeholder {
  color: #2B2B2B;
}

textarea:-ms-input-placeholder {
  color: #2B2B2B;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #2B2B2B !important;
}

@keyframes autofill {
  100% {
    background: transparent;
    color: #2B2B2B;
  }
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

@-webkit-keyframes autofill {
  100% {
    background: transparent;
    color: #2B2B2B;
  }
}

/*
 start  menu-mobile
*/

.menu-btn {
  display: none;
}

.menu-mobile {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  visibility: hidden;
  display: block;
  opacity: 0;
  -webkit-transition: visibility 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: visibility 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: visibility 0.5s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-mobile__body {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 30;
  padding: 20px 20px;
  overflow: auto;
}

.menu-mobile.active {
  opacity: 1;
  visibility: visible;
}

.menu-mobile__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(29, 29, 29, 0.7);
}

.menu-mobile.active .menu-mobile__body {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu__close {
  width: 50px;
  position: fixed;
  right: 0;
  top: 0;
  height: 50px;
  background: #000;
}

ul.menu-mobile__list {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  overflow: auto;
  list-style: none;
  padding: 0;
}

ul.menu-mobile__list ul {
  list-style: none;
  margin: 10px 0;
  padding-left: 15px;
}

ul.menu-mobile__list a {
  color: #364351;
  display: block;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 0;
}

.menu-mobile__fix {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #fff;
  margin-top: auto;
}

.menu-mobile__fix a {
  color: #fff;
}

.menu-mobile__body {
  padding-top: 40px;
}

.popup-close.mobile-menu__close {
  width: 41px;
  position: fixed;
  right: 20px;
  top: 13px;
  height: 41px;
  background-color: transparent;
}

.menu-mobile__fix .btn-site {
  width: 100%;
}

.menu-mobile__list--appendTo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  overflow: auto;
  list-style: none;
  padding: 0;
  margin: 20px 10px;
}

/*
 end  menu-mobile
*/

body *,
body *:before,
body *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body *::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

body *::-webkit-scrollbar-thumb {
  background: #de363e;
  border-radius: 100px;
}

body *::-webkit-scrollbar-track {
  background-color: #364351;
  border: none;
}

html,
body {
  font: 400 16px/1.4 "Montserrat", sans-serif;
  color: #364351;
  height: 100%;
}

body {
  overflow-x: hidden;
  background: #fff no-repeat left top;
}

.page-main {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.disabled-scroll {
  overflow: hidden;
}

.page-main__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

.wrap {
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
}

picture {
  display: inline-block;
  vertical-align: top;
}

picture img {
  display: block;
}

/*
 start  content-text
*/

/* start content */

.content-text p {
  margin-bottom: 20px;
}

.content-text p:last-child {
  margin-bottom: 0;
text-align: justify;
}

.content-text {
  font-size: 16px;
  line-height: 1.4;
}

.content-text:after {
  content: "";
  display: block;
  clear: both;
}

.content-text--custom ul {
  padding-left: 49px;
}

.content-text--custom ul,
.content-text ol {
  padding: 0;
  list-style-type: none;
}

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

.content-text li:last-child {
  margin-bottom: 0;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.content-text ul,
.contents-wraps,
.gallery-single,
.content-text .adaptivevideowrapper,
.content-text .contents-wraps,
.content-text p,
.content-text ol,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text blockquote,
.content-text .tableContainer {
  margin: 0 0 20px;
}

.content-text blockquote p {
  margin: 0 0 10px;
}

.content-text .wp-caption {
  max-width: 100%;
  height: auto;
  text-align: center;
  background: rgba(157, 157, 156, 0.06);
  overflow: hidden;
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
  margin: auto auto 20px;
}

.wp-caption img {
  display: block;
}

.content-text .wp-caption-text {
  padding: 5px;
  margin: 0;
}

.wp-caption.aligncenter {
  text-align: center;
}

.wp-caption.aligncenter img {
  margin: auto;
}

.content-text table {
  border-collapse: collapse;
  width: 100%;
}

.adaptivevideowrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  display: block !important;
}

.adaptivevideowrapper iframe,
.adaptivevideowrapper embed,
.adaptivevideowrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-text table {
  width: 100%;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: rgba(9, 9, 9, 0.8);
}

.content-text table td,.content-text table th {
  padding: 15px 24px;
}

.content-text table tr:nth-child(even) td {
  background-color: rgba(157, 157, 156, 0.06);
}

.content-text ol {
  counter-reset: counter;
}

.content-text ol li:before {
  counter-increment: counter;
  content: counter(counter) ".";
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}

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

.content-text ol ol li {
  padding-left: 25px;
}

.content-text ol li ul,
.content-text ol li ol,
.content-text ul li ul,
.content-text ul li ol {
  margin: 8px 0;
}

.content-text ul li {
  padding-left: 10px;
  margin: 0 0 8px;
}

.content-text--custom ul li {
  padding-left: 32px;
}

.content-text--custom ul li:before {
  content: "";
  display: inline-block;
  color: #fff;
  font-weight: 600;
  width: 31px;
  height: 18px;
  text-align: center;
  margin-left: -40px;
  margin-right: 9px;
  vertical-align: top;
  margin-top: 2px;
  counter-increment: none;
  background: url(../img/tabs/ul.svg) no-repeat center center;
}

.content-text a {
  color: #3EB9FC;
  text-decoration: none;
}

.content-text a:hover {
  color: #0B0F14;
  text-decoration: underline;
}

blockquote {
  padding-left: 16px;
  margin: 0 0 20px;
  border-left: 7px solid #3EB9FC;
  position: relative;
}

.tableContainer {
  overflow: hidden;
  overflow-x: auto;
}

.tableContainer table {
  width: 100%;
}

/*
 end  content-text
*/

/*
 start  form
*/

.item-input,
.item-select__current {
  border-radius: 8px;
  border: 1px solid rgba(103, 116, 130, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.375px;
  display: block;
  padding: 15px 24px;
  width: 100%;
}

textarea.item-input {
  height: 170px;
}

.flex-ithree__item .btn-site {
  width: 100%;
}

input.btn-site,
button.btn-site {
  width: 100%;
}

.item-check, .item-check label {
  position: relative;
}

.item-check a {
  position: relative;
  z-index: 50;
}

.item-check__hidden, .item-check input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 15;
  opacity: 0;
}

.item-check__text, .item-check .wpcf7-list-item-label {
  color: #364351;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.4px;
  font-family: "M PLUS 1p", sans-serif;
  padding: 7px 0;
  padding-left: 47px;
  position: relative;
}

.item-check__text a, .item-check .wpcf7-list-item-label a {
  color: #364351;
}

.item-check__text a:hover, .item-check .wpcf7-list-item-label a:hover {
  text-decoration: none;
}

.item-check__text:before, .item-check .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  border: 1px solid rgba(103, 116, 130, 0.5);
}

.item-check__text:after, .item-check .wpcf7-list-item-label:after {
  content: "";
  width: 31px;
  height: 31px;
  background: url(../img/down2.png) no-repeat center center;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  opacity: 0;
}

.item-check__hidden:checked + .item-check__text:after {
  opacity: 1;
}
.item-check label input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.item-select {
  position: relative;
  color: #555;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
}

.item-select__current {
  padding-right: 50px;
  cursor: pointer;
}

.item-select__current:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: url(../img/down2.png) no-repeat center center;
}

.item-select__list {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 47px;
  z-index: 20;
  border: 1px solid #CECECE;
  background: #FFF;
  display: none;
  max-height: 149px;
  overflow: auto;
}

.item-select__hidden {
  display: none;
}

.item-select__option {
  cursor: pointer;
  border-bottom: 1px solid rgba(103, 116, 130, 0.5);
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.375px;
  display: block;
  padding: 15px 24px;
}

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

.item-select__option:hover {
  background: #fbfbfb;
}

.active .item-select__list {
  display: block;
}

.item-form__label {
  color: #364351;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.4px;
  font-family: "M PLUS 1p", sans-serif;
  margin-bottom: 14px;
  text-align: center;
}

.item-form__label span,
.item-form__label sup {
  color: #de363e;
}

.flex-ithree__item {
  width: calc(30% - 36px);
  margin: 0 18px;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 30px;
}

.flex-ithree__item:nth-child(1) {
  width: calc(40% - 36px);
}

.flex-ithree:last-child .flex-ithree__item {
  margin-bottom: 0;
}

/*
 end  form
*/

/*
 start  styles
*/

h1,
.h1 {
  font-weight: 600;
  letter-spacing: -0.25px;
  font-size: 36px;
  line-height: 140%;
  margin: 0 0 30px;
}

h2,
.h2 {
  line-height: 140%;
  margin: 0 0 30px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.25px;
}

h3,
.h3 {
  font-weight: 600;
  letter-spacing: -0.25px;
  font-size: 22px;
  line-height: 140%;
  margin: 0 0 30px;
}

h4,
.h4 {
  font-weight: 600;
  letter-spacing: -0.25px;
  font-size: 22px;
  line-height: 120%;
  margin: 0 0 30px;
}

h5,
.h5 {
  font-weight: 600;
  letter-spacing: -0.25px;
  font-size: 18px;
  line-height: 140%;
  margin: 0 0 30px;
}

h6,
.h6 {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(9, 9, 9, 0.5);
  margin: 0 0 30px;
}

hr {
  margin: 30px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-bottom: 2px solid #f8f8f8;
}

/*
 end  styles
*/

/*
 start  index
*/

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

.header-site__mobile-top {
  display: none;
}

.header-site {
  padding: 15px 0;
  line-height: 1.6;
  position: relative;
  z-index: 9999;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 14px;
  line-height: 125%;
  color: #364351;
  text-decoration: none;
}

.logo__icon {
  margin-right: 42px;
}

.logo__text span {
  display: block;
  font-weight: 800;
}

.logo__text {
  max-width: 130px;
}

.address-item {
  padding-left: 28px;
  background: url(../img/address.svg) no-repeat left 12px;
  font-size: 13px;
  font-family: "M PLUS 1p", sans-serif;
}

.address-item__value {
  font-size: 14px;
  font-weight: bold;
}

.address-item__link {
  color: #de363e;
  text-decoration: underline;
}

.phone-item__value {
  display: block;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: #191919;
  font-family: "M PLUS 1p", sans-serif;
}

.phone-item {
  padding-left: 28px;
  background: url(../img/phone.svg) no-repeat left 13px;
  font-family: "M PLUS 1p", sans-serif;
}

.callback-item {
  color: #364351;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  font-family: "M PLUS 1p", sans-serif;
  border-bottom: 1px dashed #de363e;
  text-decoration: none;
}

.callback-item:hover {
  border-color: transparent;
}

.socials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socials-item__link {
  margin: 7px;
}

.socials-item__link:hover {
  opacity: 0.7;
}

.socials-item__link img {
  display: block;
}

.btn-site {
  padding: 14px 26px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 8px;
  background: #de363e;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
}

.btn-site:hover {
  background-color: #364351;
}

.header-site__burger {
  display: none;
}

ul.site-nav__list,
ul.site-nav__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px !important;
}

.site-nav__list ul {
  display: none;
}

.site-nav__list a {
  display: block;
  text-decoration: none;
  color: #364351;
  font-size: 15px;
  font-family: "M PLUS 1p", sans-serif;
  padding: 10px 22px;
}

nav.site-nav {
  margin-top: 15px;
  border-top: 1px solid rgba(54, 67, 81, 0.12);
  margin-bottom: -10px;
}

.site-nav .menu-item-has-children > a:after {
  content: "";
  width: 14px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/down.png) no-repeat center center;
  margin-left: 5px;
}
.item-input {
  text-align: center;
}
.header-site .phone-item__value:nth-child(2) {
  margin-left: -10px;
}
.sl-overlay {
  background: #000 !important;
}

.sl-wrapper .sl-navigation button {
  color: #fff !IMPORTANT;
}

.sl-wrapper .sl-close {
  color: #fff !important;
}

.current-menu-item > a,
.site-nav__list li:hover > a {
  color: #de363e;
}

.site-nav__list li:hover > ul {
  position: absolute;
  left: 0;
  display: block;
  -webkit-box-shadow: 1px 1px 5px #c1c1c1;
          box-shadow: 1px 1px 5px #c1c1c1;
  border-radius: 3px;
  width: 280px;
  padding: 13px 0;
  top: 43px;
  background-color: #fff;
}

.site-nav__list li {
  position: relative;
}

.site-nav__list ul a {
  padding-top: 5px;
  padding-bottom: 5px;
}

.section-first {
  background: #EEE no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 25;
}

.section-first__index {
  padding-top: 85px;
  padding-bottom: 130px;
}

.section-first__title {
  color: #364351;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 25px;
}

.section-first__index .section-first__title {
  font-size: 52px;
}

.section-first__title span {
  color: #de363e;
}

.list-custom {
  margin-top: 25px;
  margin-bottom: 30px;
  font-family: "M PLUS 1p", sans-serif;
}

.section-first__btns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -7px;
}

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

.list-custom li {
  padding: 3px 0;
  padding-left: 37px;
  font-size: 18px;
  background: url(../img/first/dot2.svg) no-repeat 12px 8px;
  line-height: 29px;
}

.list-custom b,
.list-custom strong {
  font-weight: 800;
}

.list-custom {
  font-weight: 400;
}

.list-custom li:nth-child(2n) {
  background: url(../img/first/dot2.svg) no-repeat 12px 12px;
}

.list-custom li:nth-child(3n) {
  background: url(../img/first/dot3.svg) no-repeat left 6px;
}

.btn-border {
  padding: 13px 26px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 8px;
  background: 0;
  border: 1px solid #677482;
  text-decoration: none;
  text-align: center;
  color: #364351;
  font-size: 15px;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
}

.btn-border:hover {
  background: #677482;
  color: #fff;
}

.btn-border-bg {
  padding: 13px 26px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #de363e;
  text-decoration: none;
  text-align: center;
  color: #de363e;
  font-size: 15px;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
}

.section-first__btn {
  margin: 7px;
}

.section-first__wrap {
  position: relative;
  z-index: 30;
}

.section-first__elm-left {
  position: absolute;
  left: 0;
  width: 135px;
  height: 600px;
  top: -153px;
  background: url(../img/first/left.svg) no-repeat right top;
  z-index: 25;
}

i.section-first__elm-right {
  position: absolute;
  right: 0;
  width: 135px;
  height: 600px;
  top: -153px;
  background: url(../img/first/right.svg) no-repeat right top;
}

.section-first__elm-1 {
  position: absolute;
  left: -95px;
  width: 312px;
  height: 312px;
  top: 0;
  background: url(../img/first/cel-bg.png) no-repeat right top;
  z-index: 20;
}

.section-first__elm-3 {
  position: absolute;
  left: auto;
  right: 26%;
  width: 312px;
  height: 312px;
  top: auto;
  bottom: 60px;
  background: url(../img/first/cel-bg.png) no-repeat right top;
  z-index: 20;
  margin: auto;
}

.section-first__elm-4 {
  position: absolute;
  left: 0;
  right: 0;
  width: 150px;
  height: 100px;
  top: 24px;
  bottom: auto;
  background: url(../img/first/cel-grey.png) no-repeat right top;
  z-index: 20;
  margin: auto;
}

.section-first__elm-5 {
  position: absolute;
  left: 89px;
  width: 90px;
  height: 90px;
  bottom: 73px;
  background: url(../img/first/cel.png) no-repeat right top;
  z-index: 20;
  margin: auto;
  background-size: contain;
}

.section-first__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-first__left {
  padding-top: 35px;
  padding-bottom: 70px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.brs-list {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #4A5662;
  font-size: 15px;
  font-weight: 400;
  line-height: 166.5%;
  letter-spacing: -0.15px;
}
.brs-list a {
  color: #4A5662;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}
.brs-list > span {
  color: #4A5662;
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px;
  text-decoration: none;
}

.section-first__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 25;
}

.section-first.usluga .section-first__image {
/*  padding-right: 60px;
  padding-left: 30px;*/
}

.section-first__cir {
  position: absolute;
  left: 26%;
  top: 47px;
  bottom: 0;
  background: url(../img/first/el.svg) no-repeat center center;
  width: 210px;
  height: 210px;
  margin: auto;
}

.section-first.inner .section-first__elm-4 {
  left: auto;
  right: 150px;
  top: 20%;
}

.section-first.inner .section-first__elm-3 {
  left: auto;
  right: 0;
  bottom: -120px;
}

.section-first.inner .section-first__elm-5 {
  display: none;
}

.usluga-cat .section-first__image {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 50px;
  padding-top: 45px;
}

.usluga-cat .section-first__cir {
  z-index: -1;
  top: -9px;
  left: 16%;
}

.usluga-vac .section-first__left {
  padding-bottom: 50px;
}

.usluga-vac .section-first__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-bottom: -60px;
}

.usluga-vac .section-first__elm-3 {
  display: none;
}

.section-heading__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.36px;
}

.section-heading__title span {
  font-weight: 700;
}

.section-heading {
  margin-bottom: 24px;
}

.section-prs {
  padding-top: 65px;
  padding-bottom: 70px;
  position: relative;
  z-index: 25;
  border-bottom: 1px solid rgba(74, 86, 98, 0.2);
}

.item-video {
  border-radius: 6px;
  background: #FFF url(../img/prs/play.png) no-repeat 92% 35px;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  padding: 25px 35px;
}

.item-video__link {
  text-decoration: none;
  color: #364351;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  display: block;
  margin-top: 15px;
}

.item-video__img {
  width: 81px;
  height: 81px;
}

.item-video__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-prs__flex {
  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;
}

.section-prs__left {
  width: calc(100% - 495px);
}

.section-prs__text {
  color: #364351;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
}

.section-prs__right {
  width: 450px;
}

.section-prs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 85px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-prs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "M PLUS 1p", sans-serif;
}

.item-prs__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin-right: 5px;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item-prs__title {
  color: #4A5662;
  font-weight: 800;
  line-height: 190%;
  letter-spacing: -0.2px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 20px;
}

.item-prs__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 152.5%;
  letter-spacing: -0.16px;
}

.section-order {
  margin: 50px 0;
  position: relative;
  z-index: 7;
}

.item-order {
  padding: 0 70px;
  padding-bottom: 33px;
  background: url(../img/pre/bg/1.svg) no-repeat center center;
  background-size: 100% 100%;
  color: #fff;
}

.item-order__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

.item-order__title {
  color: #FFF;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.36px;
}

.item-order__text {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.18px;
  margin-top: 10px;
}

.item-order__btn {
  margin-left: -6px;
  margin-top: 20px;
}

.item-order__left {
  width: 62%;
}

.item-order__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 38%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: url(../img/pre/shadow.png) no-repeat left center;
}

.btn-site.green {
  background: #58CE5D;
}

.item-order.auto {
  padding-right: 25px;
}

.item-order.auto .item-order__right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: -67px;
}

.item-order.auto .item-order__left {
  padding: 30px 0;
}

.section-order--2 {
  background-image: url(../img/pre/bg/2.svg);
}

.text-tr {
  text-transform: uppercase;
}

.section-order--2 .item-order__title {
  font-size: 22px;
}

.section-order--2 .item-order__text {
  font-size: 16px;
}

.section-reviews__heading {
  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: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.section-reviews__title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.36px;
  margin-bottom: 5px;
}

.section-reviews__text {
  color: #364351;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.28px;
  line-height: 1.3;
}

.section-reviews__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36%;
}

.section-reviews__img {
  width: 85px;
  height: 85px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.section-reviews__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-reviews__user-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.section-reviews__user-txt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.18px;
}

.section-reviews__user-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3px;
}

.section-reviews__user-link {
  margin-right: 15px;
}

.section-reviews__left {
  width: 50%;
}

.section-reviews__text {
  max-width: 500px;
}

.section-reviews__item {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  padding: 38px;
  border-radius: 6px;
  padding-bottom: 20px;
}

.section-reviews__swiper {
  padding: 35px !important;
  margin: -35px !important;
}

.section-reviews__foot {
  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;
  margin-top: 25px;
}

.section-reviews__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
}

.section-reviews__logo {
  width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.bg-grey {
  padding: 35px 0;
  background: #F5F5F5;
  position: relative;
  padding-bottom: 70px;
}

.bg-grey:after {
  content: "";
  height: 291px;
  position: absolute;
  left: 0;
  right: 0;
  top: -233px;
  background: url(../img/reviews/bg.svg) no-repeat center top;
  z-index: -1;
}

.section-reviews__clone {
  display: none;
}

.swiper-arrow-left,
section-reviews__nav-left,
.swiper-arrow-right,
.section-reviews__nav-right {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/nav-swiper.png) no-repeat center center;
  z-index: 30;
  cursor: pointer;
}

.swiper-button-disabled {
  opacity: 0;
}

.swiper-arrow-left,
.section-reviews__nav-left {
  left: -35px;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.section-reviews__slider {
  position: relative;
}

.swiper-arrow-right,
.section-reviews__nav-right {
  right: -35px;
}

.section-heading__sub {
  margin-top: 5px;
  font-size: 26px;
}

.section-tabs {
  padding-top: 70px;
  background: url(../img/tabs/bg.png) no-repeat center bottom;
}

.tabs-block {
  margin-top: 65px;
  padding-bottom: 150px;
}

.item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  border-radius: 6px;
  background: #EBEEF1;
  text-decoration: none;
  color: #4A5662;
}

.item-icon__icon {
  position: relative;
  width: 40px;
  height: 40px;
  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;
  background: #fff;
  border-radius: 60px;
  margin-right: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.item-icon__text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.18px;
  line-height: 18px;
  margin: 0;
}
.popup-phone__item .item-input {
  text-align: center;
}
.item-icon__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.item-icon__h {
  opacity: 0;
}

.item-icon.active,
.item-icon:hover {
  background: #de363e;
  color: #fff;
}

.item-icon.active .item-icon__d,
.item-icon:hover .item-icon__d {
  opacity: 0;
}

.item-icon.active .item-icon__h,
.item-icon:hover .item-icon__h {
  opacity: 1;
}

.tabs-block__body {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  padding: 34px 48px;
}

.tabs-block__item {
  display: none;
}

.tabs-block__item.active {
  display: block;
}

.tabs-block__content {
  margin-top: 40px;
}

.tabs-block__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tabs-block__img {
  max-width: 251px;
  max-height: 246px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 50px;
}

.tabs-block__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
  letter-spacing: -0.16px;
}

.tabs-block__img img {
  border-radius: 6px;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.flex-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}

.flex-ul__item {
  margin: 0 15px;
  width: calc(33.3333% - 30px);
}

.tabs-block__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.tabs-block__btn {
  margin: 7px;
}

.btn-border-bg.wr {
  border-color: #ABB7C5;
  color: #364351;
}

.btn-border-bg.wr:hover {
  background: #ABB7C5;
  color: #fff;
}

.tabs-block__header {
  position: relative;
}

.section-heading--center {
  text-align: center;
}

.section-heading span {
  color: #de363e;
}

.section-service__slider {
  position: relative;
  padding-top: 25px;
}

.section-service {
  padding: 50px 0;
}

.item-service {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
}

.item-service.important {
  background: #364351;
  color: #fff;
  margin-top: -30px;
}

.item-service.important .item-service__body {
  background: rgba(245, 245, 245, 0.1) !important;
}

.item-service__body {
  padding: 30px 42px;
  border-radius: 6px;
  background: #F5F5F5;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  line-height: 19px;
}

.item-service__heading {
  padding: 42px;
}

.item-service__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.25px;
}

.item-service__price {
  color: #de363e;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.25px;
  margin-top: 7px;
}

.item-service__text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.14px;
  margin-top: 13px;
}

.item-service__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
}

.item-service__td.price {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.17px;
  margin-left: 6px;
}

.item-service__b {
  display: block;
}

.item-service__btn {
  margin-top: 30px;
}

.item-service-all {
  text-align: center;
  color: #364351;
  font-size: 15px;
  font-weight: 700;
  line-height: 125%;
  /* 18.75px */
  font-family: "M PLUS 1p", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 0;
  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;
}

.item-service-all a {
  color: #364351;
  text-decoration: underline;
  display: block;
}

.section-service__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-service-all a:hover {
  text-decoration: none;
}

.swiper.section-service__js {
  padding: 70px 40px !important;
  margin: -70px -40px !important;
}

.section-service .section-heading {
  margin-bottom: 50px;
}

.item-service.important .item-service__btn {
  margin-top: 55px;
}

.section-service__slider .swiper-slide:nth-child(1) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.section-service__slider .swiper-slide:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.section-service__slider .swiper-slide:nth-child(3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.swiper-slide.nth-child-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-slide.nth-child-2 {
  height: 100% !important;
}

.section-form {
  position: relative;
  padding-top: 50px;
  margin-top: 35px;
  background: -o-linear-gradient(358deg, rgba(239, 239, 239, 0.5) 18.11%, rgba(255, 255, 255, 0.4) 61.36%), #EEE;
  background: linear-gradient(92deg, rgba(239, 239, 239, 0.5) 18.11%, rgba(255, 255, 255, 0.4) 61.36%), #EEE;
  margin-bottom: 135px;
}

.section-form__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-bottom: -30px;
}

.section-form__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-left: 25px;
  width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-form__header span {
  color: #364351;
  font-weight: 800;
  display: block;
}

.section-heading__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 154.5%;
  /* 24.72px */
  letter-spacing: -0.16px;
  margin-top: 20px;
}

.section-form__body {
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 0px 7px 31px -6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 7px 31px -6px rgba(0, 0, 0, 0.25);
  padding: 50px 150px;
  bottom: -60px;
  position: relative;
}

.flex-ithree {
  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;
  margin: 0 -18px;
}

.btn-site.black {
  background-color: #364351;
}

.btn-site.black:hover {
  opacity: 0.9;
}

.section-form .section-first__elm-3 {
  right: 0;
  bottom: 10px;
}

.section-form__wrap {
  position: relative;
  z-index: 22;
}

.section-form .section-first__elm-4 {
  right: 10%;
  top: 70px;
  left: auto;
  bottom: auto;
}

.section-grey {
  padding-top: 190px;
  margin-top: -170px;
  z-index: 1;
  position: relative;
  background: url(../img/grey.svg) no-repeat center top;
  background-size: cover;
}

.section-sert__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: url(../img/sert/key.png) no-repeat 63% center;
}

.section-heading__b-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.28px;
  line-height: 1.2;
  margin-top: 15px;
}

.item-sert {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  padding: 32px 54px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #364351;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  width: 100%;
  height: 100%;
}

.item-sert__text {
  display: block;
  padding-top: 30px;
  text-align: center;
}

span.item-sert__img img {
  display: block;
}

.swiper.section-sert__js {
  padding: 35px !important;
  margin: -35px !important;
}

.section-sert__clone {
  margin-top: 30px;
  text-align: center;
  display: none;
}

.map-yandex {
  height: 660px;
}

.section-sert__slider {
  position: relative;
  bottom: -70px;
}

.section-map__map {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 22;
}

.map-yandex {
  height: 660px;
}

.section-sert {
  padding-bottom: 30px;
  z-index: 2;
}

.section-sert__slider {
  position: relative;
  bottom: -70px;
}

.section-map {
  min-height: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.section-map__content {
  position: relative;
  z-index: 25;
  background: #fff;
  margin-left: calc((100vw - 1200px) / 2);
  padding: 40px 44px;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section-map__title {
  color: #333F4C;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 34px;
}

.section-map__address {
  margin-bottom: 24px;
  color: #333F4C;
  font-size: 18px;
  font-weight: 600;
}

.section-map__cont a {
  display: block;
  margin: 6px 0;
}

.section-map__cont {
  color: #333F4C;
  font-size: 21px;
  font-weight: 800;
}

.section-map__cont a {
  color: #333F4C;
  text-decoration: none;
}

.section-map__mail {
  font-size: 18px;
  font-weight: 600;
}

.section-map__time {
  font-size: 13px;
  font-weight: 400;
  margin-top: 20px;
}

.section-map__link {
  color: #de363e;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.section-sert__right {
  background: url(../img/sert/key2.png) no-repeat center center;
  padding-top: 50px;
  padding-left: 50px;
}

.section-map__link a {
  color: #de363e;
  text-decoration: underline;
  display: block;
}

.section-map__link a:hover {
  text-decoration: none;
}



.footer-site {
  padding: 60px 0;
  background: #36424F;
  color: #fff;
}

.footer-site a {
  color: #fff;
  text-decoration: none;
  font-size: 21px;
}

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

.footer-site__widget {
  width: 50%;
  padding-right: 20px;
}

.footer-site__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-site__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.footer-site__menu li {
  margin-bottom: 12px;
}



.footer-site__text {
  font-size: 18px;
  font-weight: 600;
  margin-right: -80px;
}

.footer-site__text a {
  text-decoration: underline;
}

.footer-site__text a:hover {
  text-decoration: none;
}

.footer-site__cont a {
  display: block;
}

.footer-site__cont {
  margin: 30px 0;
  font-size: 15px;
  font-weight: 600;
}

.footer-site__tel {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-site___btn,
.footer-site__btn {
  display: block;
  margin-top: 23px;
  width: 100%;
}

.wr.footer-site__btn {
  background: transparent;
  color: #fff;
}

.wr.footer-site__btn:hover {
  background: #de363e;
  border-color: #de363e;
}

.popup-phone__head {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.popup-phone__desc {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.popup-phone__item {
  margin-bottom: 20px;
}

.popup-block {
  max-width: 560px !IMPORTANT;
}

.section-gallery__slider img {
  border-radius: 6px;
  -webkit-box-shadow: 4px 2px 15px -2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 2px 15px -2px rgba(0, 0, 0, 0.25);
  display: block;
}

.section-gallery__slider .section-gallery__js {
  padding: 15px;
  margin: -15px;
}

.section-gallery__slider img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;

}

.section-text {
  padding: 60px 0;
}

.section-text__desc {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  line-height: 1.2;
}

.section-text__flex {
  margin-bottom: 50px;
}

.section-text__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-text__flex-r {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 490px;
  margin-left: 40px;
}

.section-text__flex-l {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.section-grey.section-gallery {
  padding-top: 160px;
  margin-top: -70px;
  padding-bottom: 50px;
}

.section-gallery .section-heading {
  margin-bottom: 50px;
}

.section-gallery__slider {
  position: relative;
}

.section-gallery__footer {
  margin-top: 50px;
  text-align: center;
  letter-spacing: -0.16px;
}

.section-gallery__slider img {
  display: block;
}

.section-gallery__footer p {
  margin: 0;
}

.section-gallery__footer a {
  color: #de363e;
  text-decoration: none;
}

.section-gallery__footer a:hover {
  text-decoration: underline;
}

.section-cat {
  padding-top: 70px;
  margin-bottom: -20px;
}

.section-cat .section-heading__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 127.4%;
  /* 38.22px */
  letter-spacing: 0.6px;
}

.section-cat .section-heading {
  margin-bottom: 29px;
}

.section-cat__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 65px;
}

.section-cat__tabs-item {
  margin: 11px;
}

.section-cat__tabs-item .item-icon {
/*  max-width: 277px;*/
  max-width: 210px;
}

.flex-itwo__item {
  width: 48%;
  margin: 14px 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-itwo {
  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;
}

.content-text__title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 30px;
}

.content-text__title span {
  display: block;
  color: #de363e;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.35px;
}

.section-text--2 {
  padding-top: 0;
}

.item-dotted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 28px;
  border-radius: 6px;
  background: #EBEEF1;
  text-decoration: none;
  color: #4A5662;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.18px;
  line-height: 20px;
  max-width: 280px;
}

span.item-dotted__icon {
  margin-right: 18px;
}

.section-ret__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -13px;
}

.section-ret__item {
  margin: 13px;
}

.section-ret {
  padding-top: 20px;
  padding-bottom: 80px;
}

.section-ret .section-heading__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 127.4%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.item-dotted:hover {
  color: #fff;
  background: #de363e;
}

.item-dotted:hover rect:nth-child(1) {
  fill: #fff;
}

.section-text__flex:last-child {
  margin-bottom: 0;
}

.section-grey.section-cat {
  padding-top: 170px;
  margin-top: -75px;
  padding-bottom: 60px;
}

.section-grey.section-cat .section-heading {
  margin-bottom: 45px;
}

.section-cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-cat-list__item {
  margin: 9px;
}

.section-grey.section-cat + .section-item {
  padding-top: 80px;
  padding-bottom: 40px;
}

.section-text__order {
  margin-top: 50px;
  padding: 40px 30px;
}

.item-order__head {
  text-align: center;
  margin-bottom: 40px;
}

.item-order__wr {
  width: 100%;
}

.section-text__btns {
  text-align: center;
  margin-top: 30px;
}

.item-order__head-t {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.item-order__head-tx {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.18px;
}

.item-order__step {
  margin: 12px;
  width: calc(24.7% - 24px);
  padding: 36px;
  background: #fff;
  color: #364351;
  border-radius: 6px;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
}

.item-order__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -12px;
  padding-bottom: 5px;
}

.item-order__step-t {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.item-order__step-tt {
  color: #de363e;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.22px;
  line-height: 1.1;
  margin-top: 9px;
}

.item-order__step-tx {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: -0.14px;
}

.vac-form {
  position: relative;
}

.vac-form .flex-itwo {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-itwo.position {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 48%;
}

.flex-itwo.position .flex-itwo__item {
  width: 100%;
  margin: 8px 0;
}

.section-vac-list {
  padding: 40px 0;
  padding-bottom: 120px;
  position: relative;
  z-index: 200;
}

.section-vac-list__sub-title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 40px;
}

.section-vac-list__sub-title span {
  color: #de363e;
}

.section-vac-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1060px;
}

.section-vac-list__col {
  width: 25%;
  padding-right: 30px;
}

.section-vac-list__list.content-text a {
  color: #364351;
}

.section-vac-list__list.content-text li.active a {
  color: #de363e;
}

.content-text--custom ul li.active:before {
  background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="6" r="5" stroke="%23F70232" stroke-width="2"/></svg>');
}

.content-text--custom ul li.active {
  color: #de363e;
}

.section-actual__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 127.4%;
  /* 35.672px */
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.section-actual__title span {
  color: #de363e;
}

.section-actual__nav-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -8px;
  margin-bottom: 50px;
}

.nav-slider {
  color: #4A5662;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
  padding: 20px;
  border-radius: 6px;
  background: #EBEEF1;
  text-decoration: none;
  margin: 8px;
}

.nav-slider.active {
  background: #4A5662;
  color: #fff;
}

.section-actual__slider {
  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;
  position: relative;
  z-index: 10;
}

.section-actual__right {
  width: 28.4%;
  margin-bottom: -70px;
}

.item-pr-big {
  border-radius: 6px;
  background: #364351 url(../img/pages/vacancy/bg.png) no-repeat center center;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 35px;
  background-size: cover;
  height: 100%;
}

.item-pr-big__title {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.item-pr-big__list {
  margin-top: 45px;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: -0.18px;
  font-family: "M PLUS 1p", sans-serif;
}

.item-pr-big__item {
  margin-bottom: 36px;
  padding-left: 35px;
  background: url(../img/pages/vacancy/check.png) no-repeat left 3px;
}

.item-pr-big__item:last-child {
  margin-bottom: 0;
}

.section-actual__left {
  width: 65%;
  margin-bottom: -70px;
  position: relative;
}

.section-actual {
  position: relative;
  z-index: 156;
  margin-bottom: 140px;
}

.item-vacancy {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 4px 1px 8px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 1px 8px 2px rgba(0, 0, 0, 0.25);
  padding: 33px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.item-file span {
  display: block;
  position: static !important;
}

.item-vacancy__form {
  margin-top: auto;
}

.item-vacancy__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.22px;
}

.item-vacancy__response {
  font-size: 15px;
  font-weight: 800;
}

.item-vacancy .wpcf7-response-output {
  font-size: 12px;
}

.item-vacancy__price {
  color: #de363e;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.21px;
  margin-top: 7px;
}

.item-vacancy__tr {
  margin-top: 20px;
  font-size: 13px;
  line-height: 145.4%;
  /* 18.902px */
  letter-spacing: -0.13px;
}

.item-vacancy__tr-t {
  font-weight: 700;
  margin-bottom: 15px;
}

.popup-phone__list-city {
  display: flex;
  flex-wrap: wrap;
  max-height: 300px;
  overflow: auto;
}

.popup-phone__item-city {
  padding: 10px 20px;
  display: block;
  cursor: pointer;
  width: 50%;
  color: #de363e;
  text-decoration: underline;
}

.popup-phone__item-city:hover {
  text-decoration: none;
}

.item-vacancy__tr-t ul {
  padding-left: 0;
}

.item-vacancy__tr ul {
  padding-left: 0;
  margin-left: 20px;
}

.item-vacancy__form {
  margin-left: -35px;
  margin-right: -35px;
  border-top: 1px solid rgba(54, 67, 81, 0.2);
  padding: 15px 35px;
}

.item-vacancy__item-form {
  margin-bottom: 20px;
}

.item-file {
  position: relative;
}

.item-file input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.item-file__text {
  color: #de363e;
  font-size: 14px;
  font-weight: 700;
  line-height: 118.5%;
  letter-spacing: -0.35px;
  text-decoration: underline;
  font-family: "M PLUS 1p", sans-serif;
  padding-left: 14px;
}

.item-file__text:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  color: #364351;
}

.swiper.swiper--actual {
  padding: 14px !important;
  margin: -14px !important;
}

.page-none {
  background: #fff;
}

.page-none .section-first__left {
  padding-bottom: 10px;
}

.section-contacts {
  padding-bottom: 30px;
}

.section-contacts + .section-form .section-first__elm-left {
  display: none;
}

.section-contacts + .section-form .section-first__elm-right {
  display: none;
}

.section-contacts__text {
  color: #364351;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.19px;
}

.section-contacts__item {
  padding-left: 50px;
  margin-bottom: 30px;
  background: no-repeat left top;
}

.section-contacts__text {
  margin-bottom: 40px;
}

.section-contacts__label {
  color: #808080;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 13px;
}

.section-contacts__tel {
  display: block;
  color: #2D2D2D;
  font-size: 22px;
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
}

.section-contacts__text2 {
  color: #808080;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

.section-contacts__val {
  color: #364351;
  font-size: 20px;
  font-weight: 700;
}

.section-contacts__link {
  display: block;
  color: #de363e;
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
}

.section-contacts__link:hover {
  text-decoration: none;
}

.section-contacts__mail {
  margin-top: 5px;
  color: #364351;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
}

.section-contacts__phone {
  background-image: url(../img/contacts/phone.png);
}

.section-contacts__address {
  background-image: url(../img/contacts/address.png);
}

.section-contacts__email {
  background-image: url(../img/contacts/mail.png);
}

.section-contacts__wrap {
  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;
}

.section-contacts__left {
  width: 32%;
}

.section-contacts__right {
  width: 60%;
  position: relative;
  max-height: 555px;
  overflow: hidden;
  border-radius: 18px;
}

div#map-contacts {
  width: 100%;
  height: 100%;
}

.section-contacts__inn {
  position: absolute;
  right: 29px;
  bottom: 29px;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.15px;
  border-radius: 8px;
  background: #364351;
  padding: 12px 20px;
}

.page-none .section-first__elm-3 {
  display: none;
}

.section-first.page-none .section-first__elm-4 {
  top: 61%;
  right: 180px;
}

.section-contacts__left,
.section-contacts__right {
  position: relative;
  z-index: 26;
}

.page-none--b {
  background: -o-linear-gradient(358deg, rgba(239, 239, 239, 0.5) 18.11%, rgba(255, 255, 255, 0.4) 61.36%), #EEE;
  background: linear-gradient(92deg, rgba(239, 239, 239, 0.5) 18.11%, rgba(255, 255, 255, 0.4) 61.36%), #EEE;
}

.brs-list {
  width: 100%;
}

.page-none--b .section-first__inner {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-first__l-post {
  width: 40%;
}

.section-first__l-post .section-first__title {
  margin: 0;
}

.section-first__r-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 58%;
}

.section-first__link {
  color: #364351;
  font-size: 15px;
  font-weight: 400;
  line-height: 182.4%;
  /* 27.36px */
  letter-spacing: -0.15px;
  text-decoration: none;
  margin-left: 20px;
}

.section-first__link.active,
.section-first__link:hover {
  color: #de363e;
  text-decoration: underline;
}

.section-posts {
  padding-top: 45px;
  padding-bottom: 10px;
}

.section-posts__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -21px;
}

.section-posts__item {
  margin: 21px;
  width: calc(50% - 42px);
}

.item-post {
  padding: 32px;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.item-post__img {
  width: 183px;
  height: 217px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-right: 20px;
}

.item-post__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.item-post__title {
  color: #364351;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.item-post__title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.item-post__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 145.4%;
  /* 18.902px */
  letter-spacing: -0.13px;
  margin-top: 13px;
}

.item-post__text2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-post__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-post__more {
  color: #de363e;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  text-decoration: underline;
}

.item-post__date {
  color: #364351;
  font-size: 13px;
  font-weight: 400;
  line-height: 145.4%;
  /* 18.902px */
  letter-spacing: -0.13px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: right;
}

.section-posts__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  color: #364351;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.section-posts__pages a,
.section-posts__pages span {
  text-decoration: none;
  color: #364351;
  margin: 5px 10px;
}

.section-posts__pages a:hover,.section-posts__pages .nav-pages__current {
  color: #de363e;
}

.item-post:hover .item-post__more {
  text-decoration: none;
}

.section-first__title-post {
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.3px;
  max-width: 655px;
}

.section-first__meta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-first__date {
  font-size: 15px;
  font-weight: 400;
  line-height: 182.4%;
  /* 27.36px */
  letter-spacing: -0.15px;
  margin-right: 60px;
}

.section-first__time {
  color: #364351;
  font-size: 15px;
  font-weight: 600;
  line-height: 182.4%;
  /* 27.36px */
  letter-spacing: -0.15px;
  margin-right: 60px;
  padding: 5px 0;
  padding-left: 40px;
  background: url(../img/pages/blog/time.png) no-repeat left center;
}

.section-first__views {
  color: #364351;
  font-size: 15px;
  font-weight: 600;
  line-height: 182.4%;
  letter-spacing: -0.15px;
  padding: 5px 0;
  padding-left: 40px;
  background: url(../img/pages/blog/views.png) no-repeat left center;
}

.section-single {
  padding: 65px 0;
  margin-bottom: -20px;
}

.section-single__article {
  font-size: 14px;
  font-weight: 400;
  line-height: 145.4%;
  /* 18.902px */
  letter-spacing: -0.13px;
}

.section-single__article h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.contents-wraps {
  padding: 44px;
  border-radius: 8px;
  background: #F3F3F3;
  padding-bottom: 35px;
}

.content-text ol ul {
  counter-reset: counter;
}

.content-text ol ul li:before {
  display: none;
}

.contents-wraps ol ul li {
  padding: 0;
}

.content-text .contents-wraps ol ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  padding-left: 25px;
}

.content-text .contents-wraps ol ul li {
  padding-left: 20px;
  font-weight: 500;
  background: url(../img/pages/blog/ul-toc.png) no-repeat left center;
}

ol.contents {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.15px;
  margin-bottom: 0;
}

.content-text a {
/*  color: #de363e;*/
  color: #4A5662;
}

.content-text a:hover {
  color: #de363e;

}

.content-text .contents-wraps a {
  color: #364351;
}

.contents-wraps {
  margin-bottom: 40px !important;
}

.content-text .item-order__body {
  padding: 20px 0;
}

.content-text .item-order__right {
  padding: 0;
  margin: -38px 0;
  margin-top: -70px;
}

.content-text .item-order {
  margin: 30px 0;
  margin-top: 50px;
}

.content-text .item-order a {
  color: inherit;
  text-decoration: none !important;
}

.content-text .item-order .btn-border-bg {
  color: #de363e;
}

.section-retel {
  margin-top: 40px;
  padding-top: 40px;
}

.section-retel__title {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.section-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-services__item {
  padding: 30px 40px;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.section-services__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  width: 237px;
  margin-right: -40px;
}

.section-services__title-post {
  color: #364351;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.section-services__title-post:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.section-services__tt {
  font-size: 13px;
  font-weight: 400;
  line-height: 182.4%;
  letter-spacing: -0.13px;
  margin-bottom: 25px;
}

.section-services__p-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
}

.section-services__cont {
  margin-right: 15px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-services__item {
  width: 48%;
}

.section-services__img img {
  max-width: 100%;
  z-index: 2;
  position: relative;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.section-services__img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/pages/uslugi/ellipse.svg) no-repeat center 14px;
  z-index: 1;
}

.section-services__img.z img {
  z-index: 0;
}

.section-services__more {
  margin-right: 35px;
  text-decoration: underline;
}

.section-services__item:hover .section-services__more {
  text-decoration: none;
}

a.section-services__order {
  color: #de363e;
  position: relative;
  z-index: 4;
}

a.section-services__order:hover {
  text-decoration: none;
}

.section-first__r-post.usligi {
  max-width: 420px;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.section-first__inner {
  position: relative;
  z-index: 34;
}

.section-first__r-post--price {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  padding-right: 47px;
  margin-bottom: -30px;
  margin-top: -52px;
}

.brs-list {
  margin-left: -6px;
}

.section-form + .section-map {
  margin-top: -135px;
}

.page-price {
  padding-top: 45px;
  padding-bottom: 70px;
}

.page-price__btn {
  border-radius: 6px;
  border: 1px solid rgba(74, 86, 98, 0.35);
  background: #FFF;
  color: #364351;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  text-decoration: none;
  padding: 22px;
  display: inline-block;
  vertical-align: middle;
  line-height: 18px;
  margin: 10px;
}

.page-price__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
  margin-bottom: 55px;
}

.page-price__btn.active,
.page-price__btn:hover {
  background: #de363e;
  -webkit-box-shadow: 4px 5px 22px -4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 5px 22px -4px rgba(0, 0, 0, 0.25);
  color: #fff;
  border-color: #de363e;
}

.item-price {
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-price__top {
  padding: 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.item-price__text {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.14px;
   text-align: left;
}

.item-price__bottom {
  padding: 25px;
  border-radius: 6px;
  background: #F5F5F5;
  margin-top: auto;
}

.item-price__har {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.item-price__har-l {
  font-size: 15px;
  font-weight: 600;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.item-price__har-r {
  font-size: 16px;
  font-weight: 800;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-left: 10px;
  text-align: right;
}

.item-price__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
}

.item-price__link {
  color: rgba(54, 67, 81, 0.6);
  font-size: 16px;
  font-weight: 800;
  line-height: 125%;
  text-decoration: underline;
  font-family: "M PLUS 1p", sans-serif;
  display: inline-block;
}

.item-price__link:hover {
  text-decoration: none;
}

.list-price__item {
  margin: 10px;
  width: calc(33.3333% - 20px);
}

.list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.item-price__btn {
  width: 160px;
}

.item-price__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 54px;
  height: 54px;
  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;
  margin-left: 10px;
}

.item-price__title {
  text-decoration: none;
  color: #364351;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.18px;
  width: calc(100% - 64px);
}

.item-price__title span {
  font-weight: 600;
}

.item-price__title:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.item-price__title:hover {
  color: #de363e;
}

.loading-price-mobile {
  margin-top: 38px;
  text-align: center;
  color: #364351;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.13px;
  display: none;
}

.loading-price-mobile__link {
  color: #364351;
  display: inline-block;
  text-decoration: none;
  padding: 15px;
}

.loading-price-mobile__link:hover {
  text-decoration: underline;
}

.btn-link {
  color: #de363e;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  text-decoration-line: underline;
}

.btn-link.wr {
  color: #364351;
}

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

.price-order {
  margin-top: 65px;
}

.price-order__title {
  width: 100%;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.25px;
  margin-bottom: 30px;
}

.price-order .item-order__body {
  width: 100%;
  padding: 44px 0;
}

.price-order__flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 44%;
}

.price-order__flex-icon {
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 100px;
  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;
  -webkit-box-flex: 1;
  margin-right: 30px;
}

.price-order__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 89%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.price-order__flex-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.18px;
}

.price-order__flex-content {
  margin-top: 8px;
}

.price-order__flex-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 186.9%;
  letter-spacing: -0.16px;
  margin-top: 5px;
}

.tabs-block__btn {
  margin: 10px 40px;
}

.section-services {
  position: relative;
  z-index: 25;
}

.section-first__l-at .list-custom {
  font-size: 14px;
  max-width: 500px;
}

.list-custom a {
  color: #364351;
}

.list-custom a:hover {
  text-decoration: none;
}

.section-page__text {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.section-page__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 30%;
  margin-bottom: -60px;
}

.section-page__desc {
  width: 63%;
  font-size: 14px;
  font-weight: 400;
  line-height: 145.4%;
  /* 18.902px */
  letter-spacing: -0.13px;
}

.section-page {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-page__tabs {
  margin-top: 60px;
}

.section-documents {
  padding: 50px 0;
  border-top: 1px solid #DFDFDF;
}

.section-page__img img {
  display: block;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.section-documents__title {
  color: #364351;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.25px;
  text-align: center;
}

.section-documents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -10px auto;
  margin-top: 40px;
  max-width: 950px;
}

.section-page__tabs-body .content-text {
  font-size: 14px;
}

.section-page__tabs-heading {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-page__btn {
  margin-right: 25px;
  margin-bottom: 10px;
  color: rgba(54, 67, 81, 0.4);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  position: relative;
  line-height: 22px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.section-page__btn.active {
  color: #364351;
  border-color: #de363e;
}

.item-document {
  border-radius: 6px;
  background: #FFF url(../img/pages/att/word.png) no-repeat 20px center;
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.25);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 32px;
  color: #364351;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: -0.12px;
  text-decoration: none;
  max-width: 290px;
  margin: 10px;
  min-height: 105px;
  padding-left: 95px;
}

.item-document:hover {
  -webkit-box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 27px 3px rgba(0, 0, 0, 0.1);
}

.sub-menu {
  margin-top: 5px;
  list-style-type: square;
}
/*
 end  index
*/

/*
 start  media
*/

/*
 end  media
*/

@media screen and (min-width: 1024px) {
  .section-gallery__slider .swiper-slide-next img {
    -webkit-filter: none;
            filter: none;
  }
}

@media screen and (min-width: 1170px) {
  .item-order.section-order--2 .item-order__left {
    padding: 52px 0;
    width: 61%;
  }

  .item-order.section-order--2 .item-order__right {
    width: 35%;
  }
}

@media screen and (max-width: 1600px) {
  .section-first__elm-left {
    left: -70px;
  }

  i.section-first__elm-right {
    right: -2px;
    left: auto;
    top: -195px;
    background-position: left top;
    width: 59px;
  }
}

@media screen and (max-width: 1260px) {
  .wrap {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1180px) {
  .wrap {
    max-width: 1024px;
  }

  .logo__icon {
    margin-right: 15px;
  }

  .header-site__callback {
    display: none;
  }

  .section-first__title,
  .section-first__index .section-first__title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .list-custom {
    margin: 25px 0;
  }

  .section-first__index {
    padding: 30px 0;
  }

  .section-first__btn:nth-child(2),
  .section-first__btn:nth-child(3) {
    display: none;
  }

  .item-order__right {
    display: none;
  }

  .item-order__left {
    width: 100%;
    padding: 30px 20px !important;
    padding-bottom: 55px !important;
  }

  .item-order {
    padding: 0 !important;
    background: url(../img/pre/bg/1m.svg) no-repeat center center;
    background-size: 100% 100%;
    max-width: 460px;
    margin: auto;
  }

  .item-order__btn .section-first__btn {
    display: block;
  }

  .section-order--2 .item-order__title {
    font-size: 16px;
  }

  .section-order--2 .item-order__text {
    font-size: 12px;
  }

  .section-prs__left {
    width: 100%;
    margin-bottom: 35px;
  }

  .item-video {
    padding: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .section-prs__right {
    width: 100%;
  }

  .item-video__img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
  }

  .item-video__link br {
    display: none;
  }

  .item-video__link {
    margin: 0;
  }

  .item-video {
    padding: 12px 15px;
    background-position: 97% center;
    background-size: 21px;
  }

  .section-prs__item-prs {
    width: 50%;
    margin: 10px 0;
  }

  .section-prs__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }

  .section-prs {
    padding: 30px 0;
  }

  .item-prs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -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;
  }

  .item-prs__img {
    width: 45px;
    gap: 45px;
    margin: 0;
  }

  .item-prs__title {
    font-size: 14px;
  }

  .item-prs__desc {
    font-size: 14px;
    font-weight: 500;
  }

  .section-heading__title,
  .item-order__title {
    font-size: 26px;
  }

  .item-video {
    padding-right: 50px;
  }

  .item-video__link {
    font-size: 14px;
  }

  .section-reviews__left {
    width: 100%;
    text-align: center;
  }

  .section-reviews__text {
    margin: auto;
    font-size: 18px;
    max-width: 320px;
  }

  .section-reviews__title {
    font-size: 25px;
  }

  .section-reviews__user {
    width: 100%;
  }

  .section-reviews__heading .section-reviews__user {
    display: none;
  }

  .section-reviews__clone {
    display: block;
  }

  .section-reviews__item {
    width: 100%;
    margin: 30px 0;
    padding: 20px;
  }

  .section-reviews__list {
    display: block;
    margin: 0;
  }

  .item-order__text br {
    display: none;
  }

  .bg-grey {
    padding-top: 0;
    padding-bottom: 35px;
  }

  .section-reviews__user-name {
    color: #364351;
    font-size: 14px;
  }

  .section-reviews__user-txt {
    font-size: 12px;
  }

  .section-reviews__user-link {
    width: 24px;
    background-size: contain;
    margin-right: 5px;
  }

  .section-reviews__img {
    width: 63px;
    height: 63px;
  }

  .flex-ul__item {
    width: calc(50% - 30px);
  }

  .flex-ul__item ul {
    margin-bottom: 20px;
  }

  .section-form__body {
    padding: 30px;
  }

  .section-form__header .section-form__left {
    margin-bottom: 0;
  }

  .section-map__content {
    margin-left: 30px;
  }

  .section-text__flex {
    display: block;
    margin-bottom: 25px;
  }

  .section-text__flex-r {
    margin-top: 25px;
    margin-left: 0;
  }

  .section-cat__tabs-item {
    width: 100%;
    margin: 10px auto;
    max-width: 460px;
  }

  .section-cat__tabs-item .item-icon {
    max-width: 100%;
  }

  .section-cat__tabs {
    display: block;
    margin-bottom: 0;
  }

  .section-cat .section-heading__title,
  .section-ret .section-heading__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .section-text {
    padding: 30px 0;
  }

  .section-ret {
    padding-bottom: 50px;
  }

  .section-grey.section-cat {
    padding-top: 246px;
    margin-top: -170px;
  }

  .section-cat-list__item {
    width: 100%;
  }

  .item-order.section-text__order {
    max-width: 100%;
    margin-top: 30px;
    padding: 20px !important;
    background: url(../img/pre/bg/1.svg) no-repeat center center;
    background-size: 100% 100%;
  }

  .item-order__step-tt {
    font-size: 14px;
  }

  .item-order__step {
    padding: 15px;
  }

  .item-order__step-t {
    font-size: 14px;
  }

  .item-order__head {
    margin-bottom: 20px;
  }

  .usluga-vac .section-first__elm-left {
    left: -109px;
  }

  .section-contacts__val {
    font-size: 16px;
  }

  .section-contacts__link {
    font-size: 14px;
  }

  .section-contacts__text {
    font-size: 14px;
    font-weight: 400;
  }

  .section-contacts__tel {
    font-size: 18px;
  }

  .section-contacts__left,
  .section-contacts__right {
    width: 46%;
  }

  .section-posts {
    position: relative;
    z-index: 26;
  }

  .section-posts__item {
    width: 100%;
    margin: 10px 0;
  }

  .section-posts__flex {
    margin: 0;
  }

  .section-services__item {
    width: 100%;
    display: block;
    text-align: center;
    padding: 18px;
    margin-bottom: 30px;
  }

  .section-services__img {
    width: 150px;
    margin: auto;
  }

  .section-services__cont {
    margin-right: 0;
  }

  .section-services__p-foot {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .section-services__more {
    margin-right: auto;
  }

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

  .page-price__btns {
    margin-bottom: 30px;
  }

  .tabs-block__btns {
    margin-top: 30px;
  }

  .price-order {
    margin-top: 40px;
  }

  .price-order .item-order__body {
    padding: 60px 30px;
    padding-top: 30px;
  }

  .price-order__flex-item {
    width: 100%;
    margin: 10px 0;
  }

  .price-order__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .wrap {
    max-width: 768px;
  }

  .section-gallery__slider .swiper-slide-active img {
    -webkit-filter: none;
            filter: none;
  }

  .section-gallery__slider .section-gallery__js {
    overflow: inherit !important;
  }

  .section-gallery {
    overflow: hidden;
  }

  .section-map {

    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .section-map__content {
    margin-top: auto;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-map {
    min-height: 530px;
  }

  .map-yandex {
    height: 100%;
  }

  .section-map__content {
    padding: 30px;
  }

  .section-map__title {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .section-map__cont {
    font-size: 18px;
  }

  .section-map__link {
    font-size: 16px;
  }

  .section-form__body {
    padding: 25px 20px;
  }

  .section-form__header .section-form__left {
    margin-bottom: 0;
  }

  .section-form__right {
    display: none;
  }

  .flex-ithree__item,
  .flex-ithree__item:nth-child(1) {
    width: calc(100% - 36px);
    margin-bottom: 20px;
  }

  .flex-ithree:last-child .flex-ithree__item {
    margin-bottom: 25px;
  }

  .section-form__wrap {
    z-index: 50;
  }

  .header-site__address {
    display: none;
  }

  .header-site__phone {
    display: none;
  }

  .header-site__order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .header-site__socials {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .header-site__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header-site__mobile-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(54, 67, 81, 0.1);
  }

  .site-nav {
    display: none;
  }

  .header-site {
    padding-top: 10px;
  }

  .btn-mobile {
    padding: 10px;
  }

  .header-site__burger {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: -10px;
    display: block;
  }

  .section-first__title,
  .section-first__index .section-first__title {
    font-size: 28px;
  }

  .section-first__elm-5 {
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: -40px;
  }

  .section-first__cir {
    width: 120px;
    height: 120px;
    background-size: contain;
  }

  .section-first__left,
  .usluga-vac .section-first__left {
    padding: 25px 0;
  }

  .section-first__image img {
    max-width: 313px;
  }

  .usluga-vac .section-first__image {
    margin: auto;
  }

  .flex-ul__item {
    width: 100%;
    margin: 0;
  }

  .tabs-block__img {
    display: none;
  }

  .tabs-block__btn {
    width: 100%;
    margin: 7px 0;
  }

  .tabs-block__btns {
    display: block;
    margin-top: 30px;
  }

  .flex-ul__item br {
    display: none;
  }

  .section-heading__sub {
    font-size: 18px;
  }

  .item-icon__text {
    font-size: 16px;
  }

  span.item-icon__icon {
    width: 45px;
    height: 45px;
  }

  .item-icon__icon img {
    width: 50%;
    height: 50%;
  }

  .tabs-block {
    margin: 0;
    padding: 30px 0;
    background: 0;
  }

  .item-service.important {
    margin-top: 0;
  }

  .item-service-all {
    display: none;
  }

  .swiper.section-service__js {
    padding: 30px !important;
    margin: -30px !important;
  }

  .section-service__slider {
    padding: 0;
  }

  .item-service {
    -webkit-box-shadow: -1px 5px 14px 5px rgba(0, 0, 0, 0.1);
            box-shadow: -1px 5px 14px 5px rgba(0, 0, 0, 0.1);
  }

  .section-service__slider .swiper-slide.nth-child-2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .section-service__slider .swiper-slide:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .section-service__slider .swiper-slide:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .section-service__slider .swiper-autoheight .swiper-slide.nth-child-2 {
    height: auto !important;
  }

  .item-sert {
    padding: 25px;
    -webkit-box-shadow: 4px 4px 14px -2px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 14px -2px rgba(0, 0, 0, 0.25);
  }

  .section-sert__heading {
    display: block;
  }

  .section-sert__right {
    display: none;
  }

  .section-sert__clone {
    display: block;
    padding-bottom: 30px;
  }

  .section-heading__b-text {
    font-size: 18px;
    font-weight: 600;
  }

  .section-sert__left {
    text-align: center;
  }

  .section-sert__slider {
    bottom: auto;
  }

  .footer-site__widget {
    width: 50%;
    margin-bottom: 20px;
  }

  .page-main__footer {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .footer-site__title {
    margin-bottom: 10px;
  }

  .section-sert__heading {
    background: 0;
    padding-bottom: 30px;
  }

  .item-service__body {
    padding: 20px;
  }

  .item-service__heading {
    padding: 20px;
  }

  .item-service__title {
    font-size: 20px;
  }

  .item-service__price {
    font-size: 20px;
  }

  .section-gallery__slider img {
    height: 215px;
  }

  .section-grey.section-gallery {
    padding-top: 82px;
    margin-top: -40px;
    padding-bottom: 35px;
  }

  .section-gallery .section-heading {
    margin-bottom: 30px;
  }

  .section-gallery__footer {
    margin-top: 35px;
  }

  .section-cat {
    padding-top: 40px;
  }

  .flex-itwo__item {
    width: 100%;
    margin: 6px 0;
  }

  .item-check__text, .item-check .wpcf7-list-item-label {
    font-size: 13px;
  }

  .content-text__title {
    font-size: 18px;
  }

  .content-text__title span {
    font-size: 25px;
  }

  .section-ret__item {
    margin: 10px 0;
    max-width: 100%;
    width: 100%;
  }

  .section-ret__list {
    margin: 0;
  }

  .section-text.section-text--2 {
    padding-bottom: 16px;
  }

  .content-text br {
    display: none;
  }

  .item-dotted {
    font-size: 14px;
    padding: 12px 17px;
  }

  .flex-itwo.position {
    position: static;
    width: 100%;
  }

  .usluga-vac + .section-form {
    margin-bottom: 90px;
  }

  .section-vac-list__col {
    width: 50%;
  }

  .section-actual__left {
    width: 100%;
    margin-bottom: 30px;
  }

  .nav-slider {
    font-size: 14px;
    padding: 15px;
  }

  .section-actual__right {
    width: 100%;
  }

  .section-first__l-post {
    width: 100%;
  }

  .section-first__r-post {
    width: 100%;
    margin-top: 15px;
  }

  .tabs-block__btns .tabs-block__btn {
    margin: 5px !important;
  }

  .page-price .tabs-block__btns {
    text-align: center;
  }

  .section-first__r-post--price {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    right: 0;
    padding-right: 0;
    z-index: -1;
    opacity: 0.3;
  }

  .section-page__img {
    width: 100%;
    margin: 30px 0;
  }

  .section-page__desc {
    width: 100%;
  }

  .section-page {
    padding: 30px 0;
  }

  .section-page__tabs {
    margin-top: 30px;
  }

  .section-page__btn {
    font-size: 16px;
    margin: 10px;
  }

  .section-page__tabs-heading {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .section-documents {
    padding: 30px 0;
    padding-bottom: 0;
  }

  .section-documents__list {
    margin-top: 30px;
  }

  .section-documents__title {
    font-size: 18px;
  }

  .section-documents__item {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .wrap {
    max-width: 425px;
  }

  .section-first__r-post {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .section-first__link {
    margin: 5px;
  }

  .popup-block {
    padding: 20px !important;
  }

  .popup-phone__head {
    font-size: 18px;
  }

  .footer-site__text {
    font-size: 16px;
    margin-right: 0;
  }

  .footer-site__widget {
    width: 100%;
    padding-right: 0;
  }

  .footer-site__widget:nth-child(3) {
    display: none;
  }

  .section-first__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tabs-block__btn:nth-child(1) {
    display: none;
  }

  .tabs-block__btn:nth-child(3) {
    display: none;
  }

  .section-first__btn {
    display: block;
    padding: 14px;
  }

  .section-first__btn {
    display: block;
    padding: 14px;
  }

  .section-first__elm-left {
    left: -120px;
  }

  .section-first__title,
  .section-first__index .section-first__title {
    font-size: 23px;
  }

  .list-custom {
    font-size: 13px;
  }

  .list-custom li {
    font-size: 14px;
  }

  span.logo__text {
    display: none;
  }

  .logo__icon {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }

  .logo__icon svg {
    width: 50px;
    height: 50px;
  }

  .btn-site,
  .btn-border-bg {
    padding: 9px 15px;
    font-size: 14px;
  }

  .socials-item__link {
    margin: 4px;
    width: 23px;
  }

  .item-order__text br {
    display: none;
  }

  .item-order__text {
    font-size: 14px;
  }

  .header-site__order {
    margin: auto;
  }

  .section-first.inner .section-first__btn {
    display: block;
    padding: 10px 8px;
    border: 1px solid #de363e;
  }

  .section-first.inner .section-first__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .usluga-vac .section-first__image img {
    max-width: 180px;
    margin-left: auto;
    margin-right: -30px;
  }

  .usluga-vac .section-first__image {
    margin-left: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: -50px;
  }

  .usluga-vac .section-first__elm-right {
    display: none;
  }

  .usluga-vac .section-first__elm {
    display: none;
  }

  .usluga-cat .section-first__elm {
    display: none;
  }

  .section-first__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    position: absolute;
    right: 0;
  }

  .section-first__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }

  .usluga-cat .section-first__image {
    padding: initial;
    right: -150px;
    top: auto;
    bottom: 0;
    z-index: -1;
  }

  .section-first.usluga .section-first__image {
    padding: 0;
    right: -120px;
    bottom: 0;
    z-index: -1;
  }

  .section-first.usluga .section-first__elm {
    display: none;
  }

  .section-first.usluga .section-first__image .section-first__cir {
    right: 0;
    top: -150px;
  }

  .usluga-vac .section-first__title {
    margin-bottom: 0;
  }

  .item-order__step {
    width: calc(100% - 24px);
  }

  .item-order.section-text__order {
    background: url(../img/pre/bg/1m.svg) no-repeat center center;
    background-size: 100% 100%;
  }

  .section-grey.section-cat .section-heading {
    margin-bottom: 19px;
  }

  .section-vac-list__col {
    padding-right: 0;
    width: 100%;
  }

  .section-vac-list__sub-title {
    margin-bottom: 20px;
  }

  .section-vac-list {
    padding-bottom: 36px;
  }

  .section-actual__title,
  .item-pr-big__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .nav-slider {
    width: 100%;
  }

  .section-actual + .section-form {
    margin-bottom: 75px;
  }

  .section-contacts__left,
  .section-contacts__right {
    width: 100%;
  }

  .section-contacts__right {
    margin-top: 10px;
  }

  .section-contacts__inn {
    position: static;
    margin-top: 30px;
  }

  div#map-contacts {
    height: 540px;
  }

  .section-contacts__right {
    max-height: initial;
    border-radius: 0;
  }

  .item-post {
    display: block;
  }

  .item-post__img {
    width: 100%;
    height: 124px;
    margin-bottom: 20px;
  }

  .item-post__title {
    font-size: 18px;
  }

  .item-post__footer {
    margin-top: 15px;
  }

  .section-form__header .section-form__left {
    text-align: center;
  }

  .section-form__header .section-form__left br {
    display: none;
  }

  .section-form i.section-first__elm-right {
    right: -20px;
  }

  .list-price__item {
    width: calc(100% - 20px);
  }

  .page-price__btns {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
    margin: 0;
    margin-bottom: 25px;
  }

  .page-price__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding: 13px 20px;
    font-size: 14px;
  }

  .page-price__btn:first-child {
    margin-left: 0;
  }

  .section-first__r-post--price {
    display: none;
  }

  .item-price__icon {
    display: none;
  }

  a.item-price__title {
    width: 100%;
    font-size: 15px;
  }

  .tabs-block__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    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;
  }

  .page-price .tabs-block__btns .tabs-block__btn {
    display: block;
  }

  .list-price__item.hidden-mobile {
    display: none;
  }

  .loading-price-mobile {
    display: block;
    margin-top: 25px;
  }

  .price-order__flex-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -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%;
  }

  .price-order__flex-icon {
    margin-right: 0;
  }

  .price-order__title {
    text-align: center;
  }
}

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

  .page-h-price .section-first__elm-right {
    display: none;
  }

  .page-h-price .section-first__elm-1 {
    display: none;
  }

  .page-h-price .section-first__elm-4 {
    right: 0;
    top: auto;
    bottom: 140px;
    left: auto;
    display: none;
  }

  .page-price {
    padding: 30px 0;
  }
}

@media screen and (max-width: 359px) {
  .header-site__order {
    display: none;
  }

  .phone-item__value {
    font-size: 12px;
  }
}