@charset "UTF-8";

/* Normalize */

/* # =================================================================
   # Global selectors
   # ================================================================= */

   html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Prevent adjustments of font size after orientation changes in iOS */
    word-break: normal;
  }

  *,
  ::before,
  ::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    background-repeat: no-repeat;
    /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  }

  ::before,
  ::after {
    text-decoration: inherit;
    /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
    vertical-align: inherit;
  }

  * {
    margin: 0;
    padding: 0;
    /* Reset `padding` and `margin` of all elements */
  }

/* # =================================================================
     # General elements
     # ================================================================= */

     hr {
      height: 0;
      /* Add the correct box sizing in Firefox */
      overflow: visible;
      /* Show the overflow in Edge and IE */
      color: inherit;
      /* Correct border color in Firefox. */
    }

    details,
    main {
      display: block;
      /* Render the `main` element consistently in IE. */
    }

    summary {
      display: list-item;
      /* Add the correct display in all browsers */
    }

    small {
      font-size: 80%;
      /* Set font-size to 80% in `small` elements */
    }

    [hidden] {
      display: none;
      /* Add the correct display in IE */
    }

    abbr[title] {
      /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
      text-decoration: underline;
      -webkit-text-decoration: underline dotted;
      text-decoration: underline dotted;
      border-bottom: none;
      /* Remove the bottom border in Chrome 57 */
    }

    a {
      color: inherit;
      background-color: transparent;
      /* Remove the gray background on active links in IE 10 */
    }

    a:active,
    a:hover {
      outline-width: 0;
      /* Remove the outline when hovering in all browsers */
    }

    code,
    kbd,
    pre,
    samp {
      font-family: monospace, monospace;
      /* Specify the font family of code elements */
    }

    pre {
      font-size: 1em;
      /* Correct the odd `em` font sizing in all browsers */
    }

    b,
    strong {
      font-weight: bolder;
      /* Add the correct font weight in Chrome, Edge, and Safari */
    }

/* https://gist.github.com/unruthless/413930 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
}

/* # =================================================================
     # Forms
     # ================================================================= */

     input {
      border-radius: 0;
    }

/* Replace pointer cursor in disabled elements */

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  outline-offset: -2px;
  /* Correct the outline style in Safari */
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  color: inherit;
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Firefox 36+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentcolor;
  /* Internet Explorer 11+ */
}

legend {
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
}

::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  appearance: button;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */

     img {
      border-style: none;
      /* Remove border when inside `a` element in IE 8/9/10 */
    }

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */

progress {
  vertical-align: baseline;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */

/* Specify the progress cursor of updating elements */

[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */

[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */

[aria-disabled=true] {
  cursor: default;
}

address {
  font-style: inherit;
}

/* Доступное скрытие элементов */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

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

:root {
  --color-light: #fff;
  --color-dark: #000;
  --color-gray: #ccc;
  --color-gray-secondary: #eaeaea;
  --color-accent: #ffd426;
  --color-blue: #1295f0;
  --color-blue-light: #0cabf4;
  --color-red: #fc3838;
  --radius: 4px;
  --shadow: 12px 12px 2px 1px #ccc;
  --outline: 2px solid #ffd426;
  --font-primary: "Open Sans", sans-serif;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: var(--outline);
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  fill: currentcolor;
}

.icon--map-pointer {
  background-image: url("../img/icons/map-pointer.png");
}

.icon--settings {
  background-image: url("../img/icons/settings.png");
}

.icon--helmet {
  background-image: url("../img/icons/helmet.png");
}

.icon--route {
  background-image: url("../img/icons/route.png");
}

.icon--rating {
  background-image: url("../img/icons/rating.png");
}

.icon--phone-call {
  background-image: url("../img/icons/phone-call.svg");
}

.icon--pdf {
  background-image: url("../img/icons/pdf.png");
}

.icon--gosuslugi {
  background-image: url("../img/icons/gosuslugi.png");
}

.icon--road {
  background-image: url("../img/icons/road.png");
}

.page {
  height: 100%;
}

.page__body {
  height: 100%;
  min-height: 100%;
  color: var(--color-dark);
  background-color: var(--color-light);
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-primary);
  line-height: 1.2;
}

.page__body.lock {
  overflow: hidden;
}

.page__wrapper {
  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-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 100%;
  overflow: hidden;
}

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

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

.responsive-image {
  position: relative;
  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;
  width: 100%;
  padding-bottom: 100%;
  text-decoration: none;
}

.responsive-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.button {
  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;
  min-width: 236px;
  min-height: 62px;
  padding: 3px;
  color: var(--color-light);
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-blue);
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, background-image 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, background-image 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  -o-transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out, background-image 0.3s ease-out;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out, background-image 0.3s ease-out;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out, background-image 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}

.button:hover:not([disabled]),
.button:hover:not(:disabled) {
  background-image: -o-linear-gradient(49deg, #1295f0 30%, #20aff2 70%);
  background-image: linear-gradient(41deg, #1295f0 30%, #20aff2 70%);
  -webkit-box-shadow: 6px 11px 21px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 6px 11px 21px 0 rgba(0, 0, 0, 0.12);
}

.button:disabled,
.button[disabled] {
  cursor: default;
  opacity: 0.5;
}

.button--secondary {
  background-color: var(--color-red);
}

.button--secondary:hover:not([disabled]),
.button--secondary:hover:not(:disabled) {
  background-image: none;
  -webkit-box-shadow: 6px 11px 21px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 6px 11px 21px 0 rgba(0, 0, 0, 0.12);
}

.input__label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.input__box {
  position: relative;
  width: 100%;
}

.input__control {
  width: 100%;
  height: 46px;
  padding: 5px 16px;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1;
  border: 1px solid var(--color-blue);
  border-radius: 6px;
  resize: none;
}

.input__control:disabled {
  opacity: 0.5;
}

.input__control::-webkit-input-placeholder {
  color: var(--color-gray);
}

.input__control::-moz-placeholder {
  color: var(--color-gray);
}

.input__control:-ms-input-placeholder {
  color: var(--color-gray);
}

.input__control::-ms-input-placeholder {
  color: var(--color-gray);
}

.input__control::placeholder {
  color: var(--color-gray);
}

.input__control:focus {
  outline: 0 !important;
}

.input__control:focus-visible {
  outline: var(--outline) !important;
}

.input--textarea .input__control {
  min-height: 130px;
}

.input--error .input__control {
  border-color: red;
}

.input--success .input__control {
  border-color: green;
}

.logo {
  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;
  width: 100%;
  max-width: 67px;
  text-decoration: none;
}

.logo__img,
.logo img,
.logo svg {
  width: 100%;
  height: auto;
}

.menu {
  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-right: -36px;
  margin-bottom: -10px;
  margin-left: -36px;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
}

.menu li {
  margin-right: 36px;
  margin-bottom: 10px;
  margin-left: 36px;
}

.menu a {
  text-decoration: none;
}

.menu a:hover {
  text-decoration: underline;
}

.title {
  font-weight: 700;
}

.title--sz-big {
  font-size: 48px;
}

.title--sz-medium {
  font-size: 30px;
}

.title--sz-small {
  font-size: 20px;
}

.title--align-center {
  text-align: center;
}

.text--sz-big {
  font-size: 20px;
}

.text--sz-medium {
  font-size: 18px;
}

.text--sz-small {
  font-size: 16px;
}

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

.text--lh-high {
  line-height: 1.5;
}

.list {
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 35px;
}

.list li:not(:last-child) {
  margin-bottom: 16px;
}

.list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 21px;
  height: 21px;
  background: url("../img/icons/list-icon.svg") center/100% 100% no-repeat;
  content: "";
}

.section {
  padding: 60px 0;
}

.section.section--pt-big {
  padding-top: 120px;
}

.section.section--pb-big {
  padding-bottom: 120px;
}

.section__title:not(:last-child) {
  margin-bottom: 30px;
}

.services-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -10px;
  margin-left: -10px;
}

.services-form__row > * {
  padding-right: 10px;
  padding-left: 10px;
}

.services-form__row > *.button {
  margin-right: 10px;
  margin-left: 10px;
  padding-right: 0;
  padding-left: 0;
}

.services-form__row .input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.services-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -2px;
  margin-bottom: -10px;
  margin-left: -2px;
}

.services-form__group > * {
  width: calc(50% - 4px);
  margin-right: 2px;
  margin-bottom: 10px;
  margin-left: 2px;
}

.feature-card {
  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;
}

.feature-card__icon {
  position: relative;
  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;
  width: 100%;
  max-width: 170px;
  margin-bottom: 20px;
  color: var(--color-blue);
  border: 1px dashed var(--color-blue);
  border-radius: 50%;
}

.feature-card__icon-box {
  position: relative;
  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;
  width: 100%;
  padding-bottom: 100%;
}

.feature-card__icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58.5%;
  height: 58.5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.staff-short {
  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;
}

.staff-short__img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 31px;
}

.staff-short__img-box {
  position: relative;
  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;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
}

.staff-short__img-box::before {
  position: absolute;
  top: -18px;
  right: -18px;
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-blue-light);
  border-radius: 50%;
  content: "";
}

.staff-short__img-box img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
}

.staff-short__name {
  margin-bottom: 20px;
}

.staff-short__position {
  color: var(--color-blue);
  font-weight: 600;
  font-style: italic;
}

.staff-info__list {
  padding-right: 110px;
  list-style: none;
}

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

.staff-info__item:not(:last-child) {
  margin-bottom: 45px;
}

.staff-info__item-dates {
  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;
  min-height: 43px;
  margin-top: 15px;
  padding: 5px 10px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--color-blue);
  border-radius: 30px;
}

.slider {
  position: relative;
}

.slider__item {
  width: 100%;
}

.slider__pagination.swiper-pagination-lock {
  display: none;
}

.slider__navigation {
  position: absolute;
  bottom: 65px;
  left: 50%;
  z-index: 1;
  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;
  width: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider__navigation.swiper-navigation-lock {
  display: none;
}

.slider__btn {
  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;
  width: 53px;
  height: 53px;
  color: var(--color-light);
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.slider__btn .icon,
.slider__btn svg,
.slider__btn img {
  width: 100%;
  height: 100%;
}

.slider__btn:hover {
  opacity: 0.75;
}

.slider__btn--prev {
  margin-right: 6px;
}

.slider--visible .swiper {
  overflow: visible;
}

.modal {
  background-color: rgba(0, 0, 0, 0.75);
}

.modal__wrapper {
  padding: 15px;
}

.modal__content {
  position: relative;
  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;
  width: 100%;
  max-width: 473px;
  min-height: 269px;
  padding: 30px;
  color: #000;
  background-color: #fff;
  border: 2px solid #0cabf4;
  border-radius: 20px;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  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;
  width: 25px;
  height: 25px;
  color: var(--color-blue);
}

.modal__close .icon {
  width: 100%;
  height: 100%;
}

.modal__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.modal__text {
  text-align: center;
}

.content > * {
  margin: 15px 0;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-bottom: 0;
}

.content img {
  display: block;
  width: 100%;
  height: auto;
}

.content ul,
.content ol {
  -webkit-padding-start: 30px;
  padding-inline-start: 30px;
}

.socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -5px;
  margin-left: -5px;
  list-style: none;
}

.socials__item {
  margin-right: 5px;
  margin-left: 5px;
}

.socials__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

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

.useful-card {
  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;
}

.useful-card:hover .useful-card__icon {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.useful-card__icon {
  width: 100%;
  max-width: 140px;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.3s ease-out;
  transition: -webkit-filter 0.3s ease-out;
  -o-transition: filter 0.3s ease-out;
  transition: filter 0.3s ease-out;
  transition: filter 0.3s ease-out, -webkit-filter 0.3s ease-out;
}

.useful-card__icon .icon,
.useful-card__icon svg,
.useful-card__icon img {
  width: 100%;
  padding-bottom: 100%;
}

.useful-card__link {
  margin-top: 15px;
  color: var(--color-blue);
  font-style: italic;
  text-decoration: none;
}

.useful-card__content {
  width: 100%;
  margin-top: 20px;
  word-wrap: break-word;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 23px 0;
  color: var(--color-light);
}

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

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

.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
}

.header__group-text {
  margin-left: 19px;
  font-weight: 700;
}

.header__contacts {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 23px;
  text-decoration: none;
}

.header__phone .color-accent {
  color: var(--color-blue);
}

.header__phone img,
.header__phone svg,
.header__phone .icon {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}

.header__email {
  font-weight: 600;
  text-decoration: none;
}

.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

.header__burger {
  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-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 27px;
  height: 20px;
  margin-left: auto;
}

.header__burger.active::before,
.header__burger.active::after {
  width: 100%;
}

.header__burger::before,
.header__burger::after,
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-light);
  border-radius: 3px;
  -webkit-transition: width 0.3s ease-out;
  -o-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  content: "";
}

.header__burger::before {
  width: 70%;
}

.header__burger::after {
  width: 40%;
}

.footer {
  padding: 25px 0;
  color: var(--color-light);
  background-color: #414141;
}

.footer__inner {
  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-right: -5px;
  margin-bottom: -10px;
  margin-left: -5px;
}

.footer__inner > * {
  margin-right: 5px;
  margin-bottom: 10px;
  margin-left: 5px;
}

.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 23px;
  text-decoration: none;
}

.footer__phone .color-accent {
  color: var(--color-blue);
}

.footer__phone img,
.footer__phone svg,
.footer__phone .icon {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}

.footer__email {
  font-weight: 600;
  text-decoration: none;
}

.footer__copyright {
  font-weight: 600;
  font-size: 12px;
}

.footer__privacy {
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}

.footer__privacy:hover {
  text-decoration: underline;
}

.hero {
  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;
  min-height: 750px;
  padding: 190px 0;
  color: var(--color-light);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.75))), url("../img/hero-bg.png") center/cover no-repeat;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../img/hero-bg.png") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../img/hero-bg.png") center/cover no-repeat;
}

.hero__inner {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width:900px) {
  .hero__inner {
    margin-top: 100px !important;
  }
}

.hero__title {
  text-transform: uppercase;
}

.hero__btn {
  margin-top: 42px;
}

.services__inner {
  max-width: 890px;
  margin-right: auto;
  margin-left: auto;
}

.services__box {
  margin-bottom: 75px;
  padding: 45px 70px;
  border: 2px solid var(--color-blue-light);
  border-radius: 30px;
}

.services__box-title {
  margin-bottom: 12px;
}

.services__list {
  width: 100%;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.features__title:not(:last-child) {
  margin-bottom: 55px;
}

.features__logo {
  max-width: 107px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.features__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-right: -66px;
  margin-bottom: -40px;
  margin-left: -66px;
  list-style: none;
}

.features__item {
  width: calc(20% - 132px);
  margin-right: 66px;
  margin-bottom: 40px;
  margin-left: 66px;
}

.staff {
  color: var(--color-light);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.67)), to(rgba(0, 0, 0, 0.67))), -webkit-gradient(linear, left top, left bottom, from(rgba(4, 137, 180, 0.67)), to(rgba(4, 137, 180, 0.67))), url("../img/staff-bg.jpg") center/cover no-repeat;
  background: -o-linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), -o-linear-gradient(rgba(4, 137, 180, 0.67), rgba(4, 137, 180, 0.67)), url("../img/staff-bg.jpg") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), linear-gradient(rgba(4, 137, 180, 0.67), rgba(4, 137, 180, 0.67)), url("../img/staff-bg.jpg") center/cover no-repeat;
}

.staff__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -70px;
  margin-bottom: -30px;
  margin-left: -70px;
}

.staff__short {
  width: calc(50% - 140px);
  margin-right: 70px;
  margin-bottom: 30px;
  margin-left: 70px;
}

.staff__info {
  width: calc(50% - 140px);
  margin-right: 70px;
  margin-bottom: 30px;
  margin-left: 70px;
}

.slider-section__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: unset;
}

.slider-section__slider .slider__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.slider-section__slide {
  width: 100%;
  height: 750px;
}

.slider-section__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.useful__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-right: -85px;
  margin-bottom: -50px;
  margin-left: -85px;
  list-style: none;
}

.useful__item {
  width: calc(33.3333333333% - 170px);
  margin-right: 85px;
  margin-bottom: 50px;
  margin-left: 85px;
}

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

.contacts__info {
  position: relative;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
  min-height: 550px;
  padding: 60px 0;
  padding-right: 150px;
  color: var(--color-light);
}

.contacts__info::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50vw;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 38, 74, 0.8)), to(rgba(3, 38, 74, 0.8))), url("../img/contacts-bg.png") center/cover no-repeat;
  background: -o-linear-gradient(rgba(3, 38, 74, 0.8), rgba(3, 38, 74, 0.8)), url("../img/contacts-bg.png") center/cover no-repeat;
  background: linear-gradient(rgba(3, 38, 74, 0.8), rgba(3, 38, 74, 0.8)), url("../img/contacts-bg.png") center/cover no-repeat;
  content: "";
}

.contacts__info::before .Фигура_15_копия {
  position: absolute;
  top: 5222px;
  left: -14px;
  z-index: 116;
  width: 972px;
  height: 555px;
  background-color: rgb(3, 38, 74);
}

.contacts__map {
  position: relative;
  width: 50%;
  min-height: 350px;
}

.contacts__map-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
}

.contacts__map-box > div {
  width: 100%;
  height: 100%;
}

.contacts__map-box > div iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.accreditation {
  margin-top: 100px;
  color: var(--color-light);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 38, 74, 0.8)), to(rgba(3, 38, 74, 0.8))), url("../img/accreditation-bg.png") center/cover no-repeat;
  background: -o-linear-gradient(rgba(3, 38, 74, 0.8), rgba(3, 38, 74, 0.8)), url("../img/accreditation-bg.png") center/cover no-repeat;
  background: linear-gradient(rgba(3, 38, 74, 0.8), rgba(3, 38, 74, 0.8)), url("../img/accreditation-bg.png") center/cover no-repeat;
}

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

.accreditation__img {
  width: calc(50% + 23px);
  margin-right: -23px;
  margin-bottom: -80px;
}

.accreditation__img-box {
  -webkit-transform: translateY(-140px);
  -ms-transform: translateY(-140px);
  transform: translateY(-140px);
}

.accreditation__img-box img {
  width: 100%;
  height: auto;
}

.accreditation__info {
  position: relative;
  z-index: 1;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 50%;
}

.accreditation__text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 26px 0 26px 42px;
}

.accreditation__text::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #052449;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  content: "";
}

.accreditation__text .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin-right: 30px;
}

.accreditation__btn {
  margin-top: 27px;
  margin-left: 115px;
}

@media only screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

@media only screen and (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }

  .page__body {
    font-size: 16px;
  }

  .title--sz-big {
    font-size: 40px;
  }

  .title--sz-medium {
    font-size: 28px;
  }

  .staff-info__list {
    padding-right: 50px;
  }

  .slider__navigation {
    bottom: 60px;
  }

  .useful-card__icon {
    max-width: 125px;
  }

  .header {
    padding: 20px 0;
  }

  .header__phone {
    font-size: 21px;
  }

  .header__bottom {
    margin-top: 15px;
  }

  .footer__phone {
    font-size: 21px;
  }

  .hero {
    min-height: 700px;
    padding: 170px 0;
  }

  .features__logo {
    max-width: 97px;
  }

  .features__list {
    margin-right: -55px;
    margin-left: -55px;
  }

  .features__item {
    width: calc(20% - 110px);
    margin-right: 55px;
    margin-left: 55px;
  }

  .slider-section__slide {
    height: 650px;
  }

  .useful__list {
    margin-right: -75px;
    margin-left: -75px;
  }

  .useful__item {
    width: calc(33.3333333333% - 150px);
    margin-right: 75px;
    margin-left: 75px;
  }

  .contacts__info {
    min-height: 500px;
    padding-right: 100px;
  }

  .accreditation {
    margin-top: 90px;
  }

  .accreditation__img {
    margin-bottom: -70px;
  }

  .accreditation__img-box {
    -webkit-transform: translateY(-130px);
    -ms-transform: translateY(-130px);
    transform: translateY(-130px);
  }

  .accreditation__text .icon {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

  .button {
    min-width: 210px;
    min-height: 56px;
    font-size: 20px;
  }

  .title--sz-big {
    font-size: 35px;
  }

  .title--sz-medium {
    font-size: 26px;
  }

  .title--sz-small {
    font-size: 18px;
  }

  .section {
    padding: 50px 0;
  }

  .section.section--pt-big {
    padding-top: 100px;
  }

  .section.section--pb-big {
    padding-bottom: 100px;
  }

  .staff-info__list {
    padding-right: 0;
  }

  .slider__navigation {
    bottom: 50px;
  }

  .useful-card__icon {
    max-width: 110px;
  }

  .useful-card__link {
    margin-top: 10px;
  }

  .useful-card__content {
    margin-top: 15px;
  }

  .header__logo {
    max-width: 60px;
  }

  .header__company-info {
    display: none;
  }

  .header__phone {
    font-size: 20px;
  }

  .footer__phone {
    font-size: 20px;
  }

  .hero {
    min-height: 650px;
    padding: 150px 0;
  }

  .services__box {
    margin-bottom: 60px;
  }

  .features__title:not(:last-child) {
    margin-bottom: 40px;
  }

  .features__list {
    margin-right: -40px;
    margin-left: -40px;
  }

  .features__item {
    width: calc(20% - 80px);
    margin-right: 40px;
    margin-left: 40px;
  }

  .slider-section__slide {
    height: 550px;
  }

  .useful__list {
    margin-right: -40px;
    margin-bottom: -40px;
    margin-left: -40px;
  }

  .useful__item {
    width: calc(33.3333333333% - 80px);
    margin-right: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
  }

  .contacts__info {
    padding: 50px 0;
  }

  .contacts__info {
    min-height: 450px;
    padding-right: 50px;
  }

  .accreditation {
    margin-top: 70px;
  }

  .accreditation__img {
    margin-bottom: -60px;
  }

  .accreditation__img-box {
    -webkit-transform: translateY(-110px);
    -ms-transform: translateY(-110px);
    transform: translateY(-110px);
  }

  .accreditation__text {
    padding: 22px 0 22px 26px;
  }

  .accreditation__btn {
    margin-top: 25px;
    margin-left: 80px;
  }
}

@media only screen and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  .button {
    min-width: 190px;
    min-height: 53px;
    font-size: 18px;
  }

  .title--sz-big {
    font-size: 30px;
  }

  .title--sz-medium {
    font-size: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .section.section--pt-big {
    padding-top: 80px;
  }

  .section.section--pb-big {
    padding-bottom: 80px;
  }

  .services-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .services-form__row > *.button {
    margin-top: 15px;
  }

  .services-form__group {
    width: calc(100% + 4px);
  }

  .feature-card__icon {
    max-width: 150px;
  }

  .staff-short__img {
    margin-bottom: 25px;
  }

  .slider__navigation {
    bottom: 40px;
  }

  .slider__btn {
    width: 45px;
    height: 45px;
  }

  .useful-card__icon {
    max-width: 95px;
  }

  .header {
    padding: 15px 0;
  }

  .header__logo {
    max-width: 55px;
  }

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

  .footer__copyright {
    margin-top: 10px;
  }

  .footer__socials {
    margin-top: 10px;
  }

  .services__box {
    margin-bottom: 50px;
  }

  .features__item {
    width: calc(33.3333333333% - 80px);
  }

  .staff__inner {
    margin-right: -20px;
    margin-left: -20px;
  }

  .staff__short {
    width: calc(50% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .staff__info {
    width: calc(50% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }

  .slider-section__slide {
    height: 450px;
  }

  .useful__list {
    margin-right: -15px;
    margin-left: -15px;
  }

  .useful__item {
    width: calc(33.3333333333% - 30px);
    margin-right: 15px;
    margin-left: 15px;
  }

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

  .contacts__info {
    padding: 40px 0;
  }

  .contacts__info {
    width: 100%;
    min-height: 350px;
    padding-right: 0;
  }

  .contacts__info::before {
    left: 50%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .contacts__map {
    width: 100%;
  }

  .contacts__map-box {
    left: 50%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

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

  .accreditation__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: -40px;
  }

  .accreditation__img-box {
    -webkit-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    transform: translateY(-70px);
  }

  .accreditation__info {
    width: 100%;
  }

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

@media only screen and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }

  .button {
    min-width: 180px;
    min-height: 50px;
    font-size: 16px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    width: 100%;
    max-width: 290px;
    padding: 15px;
    background: var(--color-light);
    border-radius: 10px;
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }

  .nav.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .menu {
    margin-right: -15px;
    margin-left: -15px;
    color: var(--color-dark);
  }

  .menu li {
    width: calc(100% - 30px);
    margin-right: 15px;
    margin-left: 15px;
  }

  .title--sz-big {
    font-size: 26px;
  }

  .title--sz-medium {
    font-size: 22px;
  }

  .section {
    padding: 30px 0;
  }

  .section.section--pt-big {
    padding-top: 60px;
  }

  .section.section--pb-big {
    padding-bottom: 60px;
  }

  .section__title:not(:last-child) {
    margin-bottom: 25px;
  }

  .services-form__row > *.button {
    margin-top: 10px;
  }

  .services-form__group > * {
    width: calc(100% - 4px);
  }

  .feature-card__icon {
    max-width: 140px;
  }

  .staff-short__img {
    margin-bottom: 20px;
  }

  .staff-short__name {
    margin-bottom: 15px;
  }

  .staff-info__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .slider__navigation {
    bottom: 30px;
  }

  .slider__btn {
    width: 40px;
    height: 40px;
  }

  .useful-card__icon {
    max-width: 80px;
  }

  .header__inner > *:not(:last-child) {
    margin-right: 15px;
  }

  .header__logo {
    max-width: 50px;
  }

  .header__group-text {
    display: none;
  }

  .header__contacts {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header__phone img,
  .header__phone svg,
  .header__phone .icon {
    display: none;
  }

  .header__bottom {
    position: relative;
    margin-top: 0;
  }

  .footer__phone img,
  .footer__phone svg,
  .footer__phone .icon {
    display: none;
  }

  .hero {
    min-height: 550px;
    padding: 100px 0;
  }

  .services__box {
    margin-bottom: 40px;
    padding: 15px 10px;
    border-radius: 20px;
  }

  .features__item {
    width: calc(50% - 80px);
  }

  .staff__short {
    width: calc(100% - 40px);
  }

  .staff__info {
    width: calc(100% - 40px);
  }

  .slider-section__slide {
    height: 300px;
  }

  .useful__item {
    width: calc(100% - 30px);
    margin-right: 15px;
    margin-left: 15px;
  }

  .contacts__info {
    padding: 30px 0;
  }

  .accreditation__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }

  .accreditation__text::before {
    display: none;
  }

  .accreditation__text .icon {
    display: none;
  }
}

@media only screen and (max-width: 575.98px) {
  .feature-card__icon {
    max-width: 120px;
  }

  .features__item {
    width: calc(100% - 80px);
  }
}


.modal_window {
  display: none;
  position: fixed;
  overflow: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal_container {
  background-color: #fff;
  position: relative;
}


form.form_zakaz_modal {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 20px;
}

.modal {
  width: 600px;
}

form.form_zakaz_modal input {
  background: #fff;
  border: 1px solid #4192c9;
  margin: 5px 0;
  padding: 10px;
}

form.form_zakaz_modal button {
  background: #4192c9;
  color: #fff;
  width: fit-content;
  padding: 10px;
  border-radius: 20px;
  margin: 10px auto 0px auto;
}

.modal_container h2 {
  padding: 20px;
}

.close_window {
  position: absolute;
  right: 10px;
  top: 3px;
  cursor: pointer;
}

h3.top_h3 {
  margin-left: 155px;
  margin-top: 50px;
}

@media (max-width: 850px) {
  h3.top_h3 {
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
  }
}