@charset "UTF-8";
@import "./base/choices.min.css";
.wa-mediabox-frame .wa-mediabox-close:focus, .wa-mediabox-next:focus, .wa-mediabox-prev:focus {
  outline: 0;
}

.wa-mediabox-overlay {
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #333;
  background: rgba(20, 20, 20, 0.95);
  z-index: 1000;
  opacity: 0;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
}

.wa-mediabox-overlay.opened {
  opacity: 1;
}

.wa-mediabox-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
  -o-transition: width 0.5s, height 0.5s, margin 0.5s;
  transition: width 0.5s, height 0.5s, margin 0.5s;
  -webkit-transition: width 0.5s, height 0.5s, margin 0.5s;
}

.wa-mediabox-container {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

.wa-mediabox-frame.loaded .wa-mediabox-container {
  opacity: 1;
}

.wa-mediabox-container img {
  max-width: 100%;
  cursor: pointer;
}

.wa-mediabox-frame .wa-mediabox-close {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: #444;
  border: 0;
  border-radius: 36px;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  -o-transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  -webkit-transition: background 0.2s, box-shadow 0.2s;
}

.wa-mediabox-frame .wa-mediabox-close:hover {
  background: #D32F2F;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wa-mediabox-frame .wa-mediabox-close svg {
  width: 24px;
  height: 24px;
  fill: #aaa;
  -o-transition: fill 0.2s;
  transition: fill 0.2s;
  -webkit-transition: fill 0.2s;
}

.wa-mediabox-frame .wa-mediabox-close:hover svg {
  fill: #fff;
}

.wa-mediabox-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 52px 0 14px;
  line-height: 24px;
  font-size: 13px;
  font-weight: 300;
  background: #333;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  opacity: 0;
  -o-transition: opacity 0.3s, padding 0.3s;
  transition: opacity 0.3s, padding 0.3s;
  -webkit-transition: opacity 0.3s, padding 0.3s;
}

.wa-mediabox-frame.loaded.has-title .wa-mediabox-title {
  padding: 14px 52px 14px 14px;
  opacity: 1;
}

.wa-mediabox-frame .wa-mediabox-open {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px;
  display: none;
  opacity: 0;
  z-index: 20;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 2px;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

.wa-mediabox-frame .wa-mediabox-open svg {
  width: 24px;
  height: 24px;
  fill: #333;
}

.wa-mediabox-frame.can-open-in-new .wa-mediabox-open {
  display: block;
}

.wa-mediabox-frame.can-open-in-new:hover .wa-mediabox-open {
  opacity: 0.4;
}

.wa-mediabox-frame.can-open-in-new:hover .wa-mediabox-open:hover {
  opacity: 1;
}

.wa-mediabox-next, .wa-mediabox-prev {
  position: absolute;
  top: 50%;
  width: 74px;
  height: 74px;
  padding: 5px;
  margin-top: -32px;
  border: 0;
  background: 0 0;
  cursor: pointer;
  opacity: 0;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

.wa-mediabox-prev {
  left: -80px;
}

.wa-mediabox-next {
  right: -80px;
}

.wa-mediabox-frame.has-next .wa-mediabox-next, .wa-mediabox-frame.has-prev .wa-mediabox-prev {
  opacity: 1;
}

.wa-mediabox-next svg, .wa-mediabox-prev svg {
  width: 64px;
  height: 64px;
  fill: #999;
  -o-transition: fill 0.2s;
  transition: fill 0.2s;
  -webkit-transition: fill 0.2s;
}

.wa-mediabox-next:hover svg, .wa-mediabox-prev:hover svg {
  fill: #fff;
}

@media all and (max-width: 479px) {
  .wa-mediabox-prev {
    left: -40px;
  }

  .wa-mediabox-next {
    right: -40px;
  }

  .wa-mediabox-next, .wa-mediabox-prev {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }

  .wa-mediabox-next svg, .wa-mediabox-prev svg {
    width: 32px;
    height: 32px;
  }
}
.wa-mediabox-preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  opacity: 1;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
}

.wa-mediabox-preloader.hidden {
  opacity: 0;
}

.wa-mediabox-preloader .wa-mediabox-preloader-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 64px;
  height: 64px;
  -webkit-animation: wa-mediabox-preloader-container-rotate 1568ms linear infinite;
  animation: wa-mediabox-preloader-container-rotate 1568ms linear infinite;
}

.wa-mediabox-preloader .wa-mediabox-preloader-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-color: #2196F3;
  -webkit-animation: wa-mediabox-preloader-fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: wa-mediabox-preloader-fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper.left {
  float: left;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper.right {
  float: right;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper .wa-mediabox-preloader-circle {
  width: 200%;
  height: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper.left .wa-mediabox-preloader-circle {
  left: 0;
  border-right-color: transparent !important;
  -webkit-transform: rotate(129deg);
  -ms-transform: rotate(129deg);
      transform: rotate(129deg);
  -webkit-animation: wa-mediabox-preloader-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: wa-mediabox-preloader-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.wa-mediabox-preloader .wa-mediabox-preloader-clipper.right .wa-mediabox-preloader-circle {
  left: -100%;
  border-left-color: transparent !important;
  -webkit-transform: rotate(-129deg);
  -ms-transform: rotate(-129deg);
      transform: rotate(-129deg);
  -webkit-animation: wa-mediabox-preloader-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: wa-mediabox-preloader-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.wa-mediabox-preloader .wa-mediabox-preloader-patch {
  position: absolute;
  top: 0;
  left: 45%;
  width: 10%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}

.wa-mediabox-preloader .wa-mediabox-preloader-patch .wa-mediabox-preloader-circle {
  width: 1000%;
  left: -450%;
}

@-webkit-keyframes wa-mediabox-preloader-container-rotate {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes wa-mediabox-preloader-container-rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes wa-mediabox-preloader-fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
  }
}
@keyframes wa-mediabox-preloader-fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
            transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
            transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
            transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
            transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
            transform: rotate(1080deg);
  }
}
@-webkit-keyframes wa-mediabox-preloader-blue-fade-in-out {
  100%, 25%, 90%, from {
    opacity: 1;
  }
  26%, 89% {
    opacity: 0;
  }
}
@keyframes wa-mediabox-preloader-blue-fade-in-out {
  100%, 25%, 90%, from {
    opacity: 1;
  }
  26%, 89% {
    opacity: 0;
  }
}
@-webkit-keyframes wa-mediabox-preloader-left-spin {
  from, to {
    -webkit-transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
  }
}
@keyframes wa-mediabox-preloader-left-spin {
  from, to {
    -webkit-transform: rotate(130deg);
            transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes wa-mediabox-preloader-right-spin {
  from, to {
    -webkit-transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
  }
}
@keyframes wa-mediabox-preloader-right-spin {
  from, to {
    -webkit-transform: rotate(-130deg);
            transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.wa-mediabox-open {
  display: none !important;
}

/* This stylesheet generated by Transfonter (https://transfonter.org) on February 13, 2018 8:55 AM */
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 13, 2018 8:55 AM */
@font-face {
  font-family: "Lato Hairline";
  src: url("Lato-Hairline.eot");
  src: local("Lato Hairline"), local("Lato-Hairline"), url("../fonts/Lato/Lato-Hairline.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Hairline.woff") format("woff"), url("../fonts/Lato/Lato-Hairline.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Heavy.eot");
  src: local("Lato Heavy"), local("Lato-Heavy"), url("../fonts/Lato/Lato-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Heavy.woff") format("woff"), url("../fonts/Lato/Lato-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-HeavyItalic.eot");
  src: local("Lato Heavy Italic"), local("Lato-HeavyItalic"), url("../fonts/Lato/Lato-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-HeavyItalic.woff") format("woff"), url("../fonts/Lato/Lato-HeavyItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Regular.eot");
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/Lato/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Regular.woff") format("woff"), url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Black.eot");
  src: local("Lato Black"), local("Lato-Black"), url("../fonts/Lato/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Black.woff") format("woff"), url("../fonts/Lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-SemiboldItalic.eot");
  src: local("Lato Semibold Italic"), local("Lato-SemiboldItalic"), url("../fonts/Lato/Lato-SemiboldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-SemiboldItalic.woff") format("woff"), url("../fonts/Lato/Lato-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-BlackItalic.eot");
  src: local("Lato Black Italic"), local("Lato-BlackItalic"), url("../fonts/Lato/Lato-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-BlackItalic.woff") format("woff"), url("../fonts/Lato/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Lato Hairline";
  src: url("Lato-HairlineItalic.eot");
  src: local("Lato Hairline Italic"), local("Lato-HairlineItalic"), url("../fonts/Lato/Lato-HairlineItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-HairlineItalic.woff") format("woff"), url("../fonts/Lato/Lato-HairlineItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-MediumItalic.eot");
  src: local("Lato Medium Italic"), local("Lato-MediumItalic"), url("../fonts/Lato/Lato-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-MediumItalic.woff") format("woff"), url("../fonts/Lato/Lato-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-ThinItalic.eot");
  src: local("Lato Thin Italic"), local("Lato-ThinItalic"), url("../fonts/Lato/Lato-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-ThinItalic.woff") format("woff"), url("../fonts/Lato/Lato-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Thin.eot");
  src: local("Lato Thin"), local("Lato-Thin"), url("../fonts/Lato/Lato-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Thin.woff") format("woff"), url("../fonts/Lato/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Medium.eot");
  src: local("Lato Medium"), local("Lato-Medium"), url("../fonts/Lato/Lato-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Medium.woff") format("woff"), url("../fonts/Lato/Lato-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Italic.eot");
  src: local("Lato Italic"), local("Lato-Italic"), url("../fonts/Lato/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Italic.woff") format("woff"), url("../fonts/Lato/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Semibold.eot");
  src: local("Lato Semibold"), local("Lato-Semibold"), url("../fonts/Lato/Lato-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Semibold.woff") format("woff"), url("../fonts/Lato/Lato-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Bold.eot");
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/Lato/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Bold.woff") format("woff"), url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-BoldItalic.eot");
  src: local("Lato Bold Italic"), local("Lato-BoldItalic"), url("../fonts/Lato/Lato-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-BoldItalic.woff") format("woff"), url("../fonts/Lato/Lato-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-LightItalic.eot");
  src: local("Lato Light Italic"), local("Lato-LightItalic"), url("../fonts/Lato/Lato-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-LightItalic.woff") format("woff"), url("../fonts/Lato/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("Lato-Light.eot");
  src: local("Lato Light"), local("Lato-Light"), url("../fonts/Lato/Lato-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato/Lato-Light.woff") format("woff"), url("../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
}

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

button {
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}

button, input {
  font-family: inherit;
}

* {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

p a {
  border-bottom: 1px dashed var(--gray-text);
  color: inherit;
  -webkit-transition: border-bottom 0.4s ease;
  -o-transition: border-bottom 0.4s ease;
  transition: border-bottom 0.4s ease;
}

p a:hover {
  border-bottom: 1px dashed transparent;
}

p, h1, h2, h3, h4, h5 {
  margin: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 1160px;
  margin: 0 auto;
}

.page-main__title, .title {
  font-size: 34px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .page-main__title, .title {
    font-size: 22px;
  }
}

.title--blue-heading, .color-blue-heading {
  color: var(--blue-heading);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none !important;
  -webkit-text-fill-color: inherit !important;
  -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.page-main--fixed-menu {
  padding-top: 49px;
}
@media (max-width: 1199px) {
  .page-main--fixed-menu {
    padding-top: 0px;
  }
}

.no-wrap {
  white-space: nowrap;
}

.content-cms p {
  margin-bottom: 15px;
  color: var(--gray-text);
  font-size: 16px;
}
@media (max-width: 767px) {
  .content-cms p {
    font-size: 15px;
  }
}

.button {
  color: white;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  display: block;
  margin: 20 auto 0;
  width: 100%;
  height: 60px;
  background-color: var(--bor-gold);
  -webkit-transition: color 0.4s ease, background-color 0.4s ease;
  -o-transition: color 0.4s ease, background-color 0.4s ease;
  transition: color 0.4s ease, background-color 0.4s ease;
}
.button--simple {
  max-width: 270px;
  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;
  padding: 19px 5px;
}
@media (max-width: 1199px) {
  .button--simple {
    padding: 9px 5px;
    height: 40px;
    max-width: 260px;
  }
}
.button--simple:hover {
  background-color: var(--hover-button);
}
.button--transpatent {
  background-color: var(--bg-grey-light);
  color: var(--gray-text);
  border: 1px solid var(--lite-gray);
}
.button--transpatent:hover {
  background-color: var(--bg-grey-light);
  color: var(--hover-grey);
}

.block-padding {
  height: 80px;
}
@media (max-width: 1199px) {
  .block-padding {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .block-padding {
    height: 40px;
  }
}

.title-small-wrapper__tag {
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 1199px) {
  .title-small-wrapper__tag {
    font-size: 22px;
    text-align: center;
  }
}
.title-small-wrapper {
  margin: 50px 0 40px 0;
}

:root {
  --blue-heading: #283F75;
  --gray-text: #5B5B5B;
  --gold-light:#D9A77A;
  --blue-text:#8992A7;
  --lite-gray:#C6CDDA;
  --white: #ffffff;
  --gold-text: #B0865F;
  --blue-dark-heading: #151E30;
  --bg-dark:#18233A;
  --bg-blue:#8992A7;
  --bg-grey-light: #F9F9FE;
  --bg-white: #ffffff;
  --bg-grey: #2F3A55;
  --bor-grey: #C6CDDA;
  --bor-gold: #B0865F;
  --button-grey:#C6CDDA;
  --hover-grey: #8992A7;
  --hover-gold-light:#E89042;
  --hover-blue-heading: #2396DC;
  --hover-button: #9E7752;
}

header {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1199px) {
  .page-header--desltop {
    display: none;
  }
}
.page-header--tablet {
  display: none;
}
@media screen and (max-width: 1199px) {
  .page-header--tablet {
    display: block;
  }
  .page-header--tablet .page-header__search {
    display: block;
    margin-left: 20px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1199px) and (max-width: 1199px) {
  .page-header--tablet .page-header__search {
    margin-left: 0;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-header--tablet {
    display: none;
  }
}
.page-header--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header--mobile {
    display: block;
  }
}
.page-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.page-header__continer {
  margin: 0 auto;
  width: 1160px;
}
@media screen and (max-width: 1199px) {
  .page-header__continer {
    margin: 0 auto;
    width: 100%;
    padding: 0px 20px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-header__continer {
    padding: 8px 10px;
    border-bottom: 1px solid #8992a766;
  }
}

.page-header__text-wrap {
  width: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
  padding-bottom: 40px;
  top: 40%;
  position: absolute;
}
@media (max-width: 1199px) {
  .page-header__text-wrap {
    top: 60px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__text-wrap {
    position: absolute;
    top: 62%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 7;
    margin-top: 0;
  }
}
.page-header__text-wrap--smi {
  padding-top: 21px;
  padding-bottom: 0;
}

.page-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .page-header__wrapper {
    height: auto;
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .page-header__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-header__logo {
  width: 216px;
  height: 24px;
  margin-top: 23px;
}
.page-header__logo:hover .page-header__sublogo {
  fill: var(--hover-button);
}
.page-header__logo--footer {
  width: auto;
  height: auto;
  margin-top: 0;
}
.page-header__logo .page-header__sublogo {
  -webkit-transition: fill 0.4s ease;
  -o-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .page-header__logo {
    width: 182px;
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__logo {
    margin-top: 0px;
  }
}

.page-header__address {
  margin-top: 23px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}

.page-header__tel {
  margin-top: 24px;
  margin-left: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.page-header__tel:hover {
  color: #8992A7;
}
@media screen and (max-width: 1199px) {
  .page-header__tel {
    margin: 0 25px 0 0;
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .page-header__tel {
    height: 24px;
  }
}

.page-header__search {
  display: block;
  margin-left: 20px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .page-header__search {
    margin-left: 0;
    margin-right: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .page-header__link-telegram {
    height: 24px;
  }
}

.page-header__telegram {
  width: 24px;
  height: 24px;
  margin-top: 23px;
  margin-left: 0px;
}
.page-header__telegram:hover path {
  fill: var(--hover-button);
}
.page-header__telegram path {
  -webkit-transition: fill 0.4s ease;
  -o-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .page-header__telegram {
    margin: 0 25px 0 0;
  }
}

.page-header__whatsapp {
  margin-left: 20px;
  margin-right: 15px;
}

.page-header__cont {
  position: relative;
}

.page-header__search-form {
  position: absolute;
  width: 1px;
  height: 1px;
  right: 44px;
  z-index: 1;
}

.page-header__search-field {
  margin-top: 15px;
  padding: 8px 10px;
  height: 40px;
  width: 0px;
  float: right;
  background: #2F3A55;
  border: none;
  z-index: 2;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 0;
  color: #C6CDDA;
}
@media (max-width: 1199px) {
  .page-header__search-field {
    background: #FFFFFF;
    color: #5B5B5B;
  }
}

.page-header__search-close {
  position: absolute;
  right: 55px;
  top: 12px;
  z-index: 3;
  width: 0;
  display: none;
}

.form_opened {
  width: 260px;
  opacity: 100;
}

.close_opened {
  display: block;
  margin-right: 20px;
  margin-top: 15px;
}

.page-header__link-whapp--desc {
  display: block;
  margin-left: 20px;
  margin-right: 15px;
}

@media screen and (max-width: 1199px) {
  .page-header__telegram--whatsapp {
    margin-right: 15px;
  }
}

.page-header__link-whapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-header__button {
  width: 260px;
  height: 40px;
  margin-top: 15px;
  margin-left: 19px;
  background: var(--bor-gold);
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.page-header__button:hover {
  background-color: var(--hover-button);
}
@media screen and (max-width: 1199px) {
  .page-header__button {
    position: absolute;
    top: 20px;
    right: 0;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-header__button {
    top: 25px;
    right: auto;
    left: 30px;
    z-index: 10;
    position: relative;
    margin-top: 25px;
  }
}

.page-header__block-middle {
  background-color: var(--bg-grey-light);
  margin-bottom: -1px;
  padding-top: 79px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .page-header__block-middle {
    margin-bottom: 0;
    padding: 0 20px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__block-middle {
    padding: 0;
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__block-middle--service {
    background-color: var(--bg-dark);
    padding-top: 50px;
  }
  .page-header__block-middle--service .page-header__wrapper-midle {
    height: auto;
    padding-top: 0;
  }
  .page-header__block-middle--service .page-header__text-wrap {
    position: relative;
    top: 0;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    z-index: 7;
    margin: 0 auto;
    width: 100%;
  }
}

.page-header__wrapper-midle {
  position: relative;
  width: 1160px;
  margin: 0 auto;
  height: 361px;
  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;
}
@media screen and (max-width: 1199px) {
  .page-header__wrapper-midle {
    width: 100%;
    height: 330px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 60px;
    margin-top: -1px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__wrapper-midle {
    height: 480px;
    overflow: hidden;
  }
}

.page-header__block-center {
  background-color: var(--blue-dark-heading);
  margin-bottom: -1px;
  padding-top: 79px;
  overflow: hidden;
  position: relative;
}
.page-header__block-center::after {
  content: " ";
  background: url(/images/banner-transparent.webp);
  mix-blend-mode: color-dodge;
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 0% 40%;
}
@media screen and (max-width: 767px) {
  .page-header__block-center::after {
    background-size: 600vw;
    background-position: 0% 40%;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__block-center {
    margin-bottom: 0;
    padding: 0 20px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__block-center {
    padding: 0;
    padding-top: 30px;
  }
}

.page-header__wrapper-center {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-bottom: 115px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1190px;
}
@media screen and (max-width: 1199px) {
  .page-header__wrapper-center {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: -1px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__wrapper-center {
    overflow: hidden;
    padding-bottom: 11px;
    padding-top: 12px;
    margin-top: 15px;
  }
}
.page-header__wrapper-center-row {
  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;
  gap: 10px;
  padding-top: 8px;
}
@media screen and (max-width: 1199px) {
  .page-header__wrapper-center-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-header__wrapper-center-row {
    gap: 60px;
  }
}

.page-header__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 860px;
}
@media (max-width: 767px) {
  .page-header__content {
    width: 100%;
  }
}
.page-header__content-title {
  color: var(--gold-light);
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 57px;
  line-height: 122%;
  /* or 122% */
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  max-width: 718px;
  padding-bottom: 33px;
  margin-bottom: 38px;
  margin-top: 37px;
}
@media (max-width: 767px) {
  .page-header__content-title {
    font-size: 9.4vw;
    line-height: 120%;
    max-width: 100%;
    padding-bottom: 15px;
    margin-bottom: 20px;
    margin-top: 0px;
  }
}
.page-header__content-title::after {
  content: " ";
  display: block;
  background-color: var(--gold-light);
  width: 33px;
  height: 4px;
  position: relative;
  bottom: -32px;
}
@media (max-width: 767px) {
  .page-header__content-title::after {
    bottom: -15px;
    width: 23px;
    height: 3px;
  }
}
.page-header__content-wrapper {
  color: var(--lite-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  gap: 35px;
}
@media (max-width: 767px) {
  .page-header__content-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .page-header__content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
  }
}

@media (max-width: 767px) {
  .page-header__decor {
    margin-top: -40px;
  }
}

.page-header__benefits {
  min-width: 320px;
}
.page-header__benefits-item {
  line-height: 250%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 19px;
}
@media (max-width: 767px) {
  .page-header__benefits-item {
    font-size: 6vw;
    line-height: 1.4;
  }
}
.page-header__benefits-item:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .page-header__benefits-item:not(:last-child) {
    margin-bottom: 18px;
  }
}
.page-header__benefits-item img {
  margin-right: 25px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .page-header__benefits-item img {
    margin-right: 14px;
  }
}
.page-header__benefits-item:nth-child(1) img {
  width: 22px;
  height: 26px;
}
@media (max-width: 767px) {
  .page-header__benefits-item:nth-child(1) img {
    width: 5vw;
    height: 9vw;
  }
}
.page-header__benefits-item:nth-child(2) img {
  width: 23px;
  height: 23px;
}
@media (max-width: 767px) {
  .page-header__benefits-item:nth-child(2) img {
    width: 5vw;
    height: 9vw;
  }
}
.page-header__benefits-item:nth-child(3) img {
  width: 22px;
  height: 23.51px;
}
@media (max-width: 767px) {
  .page-header__benefits-item:nth-child(3) img {
    width: 5vw;
    height: 9vw;
  }
}

.page-header__statistic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  max-width: 370px;
  width: 100%;
  max-height: initial;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}
@media (max-width: 767px) {
  .page-header__statistic {
    max-width: 100%;
    max-height: 204px;
    gap: 30px;
  }
}
.page-header__statistic-item:nth-child(2) {
  -ms-flex-item-align: start;
      align-self: start;
  justify-self: end;
}
.page-header__statistic-item:nth-child(3) {
  -ms-flex-item-align: end;
      align-self: end;
  justify-self: start;
}

.page-header__statistic::before,
.page-header__statistic::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page-header__statistic::before {
  content: url(/images/line-horizontal.svg);
}

.page-header__statistic::after {
  content: url(/images/line-vertical.svg);
}

.statistic-item-title {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 17px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .statistic-item-title {
    font-size: 14px;
    font-size: 4.8vw;
    line-height: 1.4;
    margin-bottom: 2px;
  }
}
.statistic-item-subtitle {
  color: var(--lite-gray);
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 767px) {
  .statistic-item-subtitle {
    font-size: 3.3vw;
  }
}

.page-header__decor-title {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  bottom: 41px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .page-header__decor-title {
    width: 100%;
    font-size: 4vw;
    line-height: 1.1;
  }
}
.page-header__decor-subtitle {
  color: var(--white);
  opacity: 0.9;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}
@media (max-width: 767px) {
  .page-header__decor-subtitle {
    font-size: 3.4vw;
    margin-top: 2px;
    line-height: 1.1;
  }
}
.page-header__decor-img {
  position: relative;
  -webkit-transform: translateY(21px);
      -ms-transform: translateY(21px);
          transform: translateY(21px);
}
@media (max-width: 767px) {
  .page-header__decor-img {
    max-width: 258px;
  }
}
.page-header__decor-img::before {
  content: url(/images/ellipse.png);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .page-header__decor-img::before {
    -webkit-transform: translate(-50%, -50%) scale(0.75);
        -ms-transform: translate(-50%, -50%) scale(0.75);
            transform: translate(-50%, -50%) scale(0.75);
  }
}
.page-header__decor-img img {
  position: relative;
}

.page-header__apply {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 21px 20px 21px 0px;
  border-left: 5px solid var(--gold-light);
}
@media (max-width: 1099px) {
  .page-header__apply {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 120px;
  }
}
@media (max-width: 767px) {
  .page-header__apply {
    gap: 15px;
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .page-header__apply {
    border-left: none;
    border-top: 5px solid var(--gold-light);
  }
}
.page-header__apply-img-wrapper {
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
  position: relative;
}
@media (max-width: 1099px) {
  .page-header__apply-img-wrapper {
    grid-column: 2 span;
    justify-self: center;
  }
}
.page-header__apply-img {
  margin-top: -192px;
  -webkit-transform: translate(-34px, 105px);
      -ms-transform: translate(-34px, 105px);
          transform: translate(-34px, 105px);
}
@media (max-width: 1099px) {
  .page-header__apply-img {
    -webkit-transform: translate(0px, 105px);
        -ms-transform: translate(0px, 105px);
            transform: translate(0px, 105px);
  }
}
@media (max-width: 767px) {
  .page-header__apply-img {
    -webkit-transform: translate(0px, 112px);
        -ms-transform: translate(0px, 112px);
            transform: translate(0px, 112px);
  }
}
.page-header__apply-title {
  color: var(--white);
  -ms-flex-item-align: center;
      align-self: center;
  font-weight: 400;
}
.page-header__apply-title span {
  font-weight: 700;
}
@media (max-width: 1099px) {
  .page-header__apply-title {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .page-header__apply-title {
    font-size: 16px;
    text-align: center;
    padding: 0px 15px;
    grid-column: 2 span;
    justify-self: center;
    margin-left: 0px;
  }
}
.page-header__apply-title span {
  color: var(--gold-light);
}
.page-header__apply-btn {
  background-color: var(--bor-gold);
  color: var(--white);
  max-width: 270px;
  max-height: 60px;
  width: 100%;
  height: 60px;
  font-size: 15px;
  margin-left: auto;
  position: relative;
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.page-header__apply-btn:hover {
  background-color: var(--hover-button);
}
.page-header__apply-btn::before {
  content: url(/images/icon/arrow-brown-right.svg);
  position: absolute;
  left: -126px;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .page-header__apply-btn::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-header__apply-btn {
    grid-row: 3/4;
    grid-column: 2 span;
    justify-self: center;
    margin: 0 auto;
  }
}

.page-header__block-decor {
  position: absolute;
  top: 1px;
  right: 676px;
  z-index: 1;
  background-color: var(--bg-dark);
  width: 10000px;
  height: 360px;
  -webkit-transform: matrix(1, 0, 0.74, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.74, 1, 0, 0);
          transform: matrix(1, 0, 0.74, 1, 0, 0);
  padding: 19px 36px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .page-header__block-decor {
    height: 330px;
    right: 40.8%;
    -webkit-transform: matrix(1, 0, 0.6, 1, 0, 0);
        -ms-transform: matrix(1, 0, 0.6, 1, 0, 0);
            transform: matrix(1, 0, 0.6, 1, 0, 0);
    padding-bottom: 20px;
    padding: 20px 26px;
  }
}
.page-header__block-decor--revers {
  right: 0;
  left: calc(100% - 300px);
  -webkit-transform: matrix(1, 0, -0.74, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.74, 1, 0, 0);
          transform: matrix(1, 0, -0.74, 1, 0, 0);
  height: 100%;
  padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .page-header__block-decor--revers {
    right: 0;
    left: calc(100% - 236px);
    -webkit-transform: matrix(1, 0, -0.62, 1, 0, 0);
        -ms-transform: matrix(1, 0, -0.62, 1, 0, 0);
            transform: matrix(1, 0, -0.62, 1, 0, 0);
  }
}

.page-header__block-decor-inner {
  width: 100%;
  height: 100%;
  padding: 26px;
  border: 1px solid #B0865F;
  border-right-width: 2px;
  border-bottom-width: 1px;
}

@media screen and (max-width: 767px) {
  .page-header__block-decor-m {
    height: 1000px;
    width: 100%;
    margin-top: 86px;
    -webkit-transform: matrix(1, 0.2, 0, 1, 0, 0);
        -ms-transform: matrix(1, 0.2, 0, 1, 0, 0);
            transform: matrix(1, 0.2, 0, 1, 0, 0);
    padding: 11px 10px 0;
    background-color: var(--bg-dark);
    z-index: 1;
  }
}
@media screen and (max-width: 540px) {
  .page-header__block-decor-m {
    margin-top: 125px;
    -webkit-transform: matrix(1, 0.39, 0, 1, 0, 0);
        -ms-transform: matrix(1, 0.39, 0, 1, 0, 0);
            transform: matrix(1, 0.39, 0, 1, 0, 0);
  }
}

.page-header__block-decor-inner-m {
  width: 100%;
  height: 100%;
  padding: 26px;
  border: 1px solid #B0865F;
  border-top-width: 2px;
  border-bottom-width: 0px;
}

.page-header__block-decor-m-down {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100px;
  padding: 0 10px 10px;
  background-color: var(--bg-dark);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-header__block-decor-m-down {
    height: 140px;
  }
}

.page-header__block-decor-inner-m-down {
  width: 100%;
  height: 100%;
  border: 1px solid #B0865F;
  border-top: none;
}

.page-header__credo {
  position: relative;
  top: 0;
  left: 0;
  width: 310px;
  /* height: 78px; */
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gold-light);
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .page-header__credo {
    font-size: 18px;
    width: 280px;
    top: 14px;
    left: 20px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__credo {
    top: 40px;
    line-height: 23px;
    left: 30px;
    width: 260px;
    z-index: 6;
  }
}
.page-header__credo--service {
  width: 400px;
  top: 0;
}
@media screen and (max-width: 1199px) {
  .page-header__credo--service {
    top: 0;
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__credo--service {
    position: relative;
    font-size: 5.6vw;
    line-height: 130%;
    text-align: center;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
            font-feature-settings: "pnum" on, "lnum" on;
    text-align: center;
    margin: 30px auto 0;
    top: auto;
    left: auto;
    height: auto;
    margin-bottom: 28px;
    width: 84%;
  }
  .page-header__credo--service::after {
    position: absolute;
    display: block;
    content: " ";
    top: calc(100% + 13px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 67%;
    height: 1px;
    background-color: var(--gold-light);
  }
}
@media screen and (max-width: 767px) {
  .page-header__credo--smi {
    margin-bottom: 15px;
  }
  .page-header__credo--smi::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-header__credo--article {
    text-align: left;
    left: 30px;
    right: auto;
    margin-left: 0;
  }
}

.page-header__subtitle {
  position: relative;
  top: 0;
  left: 0;
  max-width: 317px;
  padding-top: 0;
  margin-top: 10px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--button-grey);
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .page-header__subtitle {
    font-size: 16px;
    width: 280px;
    top: 14px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__subtitle {
    top: 30px;
    left: 30px;
    width: 260px;
    z-index: 6;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__subtitle--service {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-header__subtitle--service {
    position: relative;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
            font-feature-settings: "pnum" on, "lnum" on;
    text-align: center;
    margin: 22px auto 0;
    top: auto;
    left: auto;
    width: 90%;
  }
}
.page-header__subtitle--smi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 72%;
  margin-top: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1199px) {
  .page-header__subtitle--smi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__subtitle--smi {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 20px;
    max-width: 100%;
    padding: 0 30px;
    width: 100%;
    left: 0;
    gap: 10px;
  }
}

.page-header__block-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 72px;
  margin-bottom: 61px;
  left: 0;
  z-index: 2;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1199px) {
  .page-header__block-download {
    display: block;
    left: 20px;
    margin-bottom: 41px;
  }
}
.page-header__block-download:hover .page-header__download-text {
  -webkit-transition: color 0.4s ease, border 0.4s ease;
  -o-transition: color 0.4s ease, border 0.4s ease;
  transition: color 0.4s ease, border 0.4s ease;
  color: var(--lite-gray);
  border: none;
}
.page-header__block-download:hover .page-header__download-text::after {
  border-bottom: none;
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

.page-header__download-text:hover {
  -webkit-transition: color 0.4s ease, border 0.4s ease;
  -o-transition: color 0.4s ease, border 0.4s ease;
  transition: color 0.4s ease, border 0.4s ease;
  color: var(--lite-gray);
  border: none;
}
.page-header__download-text:hover .page-header__download-text::after {
  border-bottom: none;
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

.page-header__download-link {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--lite-gray);
}
@media screen and (max-width: 1199px) {
  .page-header__download-link {
    font-size: 16px;
    line-height: 150%;
    display: block;
  }
}

.page-header__download-icon {
  margin: 0 6px;
}
@media screen and (max-width: 1199px) {
  .page-header__download-icon {
    margin-left: 0;
  }
}

.page-header__download-text {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .page-header__download-text {
    font-size: 16px;
    line-height: 150%;
    display: inline-block;
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.page-header__download-text::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  border-bottom: 1px dashed var(--bg-blue);
  z-index: 3;
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

.page-header__img-item {
  position: absolute;
  bottom: -4px;
  right: 0;
  z-index: 5;
  width: auto;
  height: 340px;
}
@media screen and (max-width: 1199px) {
  .page-header__img-item {
    width: 633px;
    height: initial;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-header__img-item {
    height: initial;
    width: 343px;
    right: 12px;
  }
}
@media screen and (max-width: 540px) {
  .page-header__img-item {
    height: initial;
    width: 343px;
    left: auto;
    right: -110px;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__img-item--service {
    width: 61vw;
    height: initial;
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__img-item--service {
    position: relative;
    display: block;
    bottom: auto;
    right: auto;
    width: 100%;
    height: initial;
    margin: 22px auto 0;
    left: auto;
  }
}

.page-header__block-down {
  background-color: var(--bg-dark);
  height: 50px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 6;
}
.page-header__block-down--fixed {
  position: fixed;
  z-index: 25;
  top: 39px;
  width: 100%;
  border-bottom: 1px solid var(--bg-grey);
  height: 39px;
  padding-top: 7px;
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  -o-transition: transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
}
.page-header__block-down--fixed .menu-services {
  height: 34px;
  margin-top: -4px;
}
.page-header__block-down .navigation__link::after {
  height: 41px;
}
.page-header__block-down--animate {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.page-header__block-down .page-header__search-field {
  margin-top: 10px;
  height: 30px;
}

.header-bottom {
  margin: 0 auto;
  width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.page-header__block-up {
  position: fixed;
  width: 100%;
  background-color: #fff;
  height: 80px;
  z-index: 11;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.page-header__block-up .page-header__search-field {
  margin-top: 10px;
  height: 30px;
}
@media (max-width: 1199px) {
  .page-header__block-up .page-header__search-field {
    width: 0;
    height: 40px;
    margin-top: -20px;
    margin-right: 100px;
  }
}
@media (max-width: 1199px) {
  .page-header__block-up .form_opened {
    width: 330px;
  }
}
.page-header__block-up .page-header__search-close {
  margin-right: 125px;
  margin-top: 5px;
  right: -55px;
}
@media (max-width: 1199px) {
  .page-header__block-up .page-header__search-close {
    right: 55px;
    top: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__block-up {
    height: 60px;
    background: #18233a;
  }
}
@media screen and (max-width: 767px) {
  .page-header__block-up {
    height: 40px;
    background: #18233a;
  }
}

.page-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
  margin-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-header__menu:hover {
  color: var(--blue-text);
}
@media screen and (max-width: 1199px) {
  .page-header__menu {
    margin-top: 0;
    color: #ffffff;
  }
}
.page-header__menu-img {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .page-header__menu-img {
    margin-right: 0;
  }
}

.menu-shell--wrapper .menu-form {
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .menu-shell--wrapper .menu-form {
    display: block;
  }
}
.menu-shell--wrapper .page-header__search-form {
  position: inherit;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  margin-bottom: 0px;
  margin-top: 10px;
}
.menu-shell--wrapper .page-header__search-field {
  width: 100%;
  height: 40px;
  z-index: 19999;
  opacity: 100;
  float: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  padding-left: 45px;
}
.menu-shell--wrapper .page-header__search {
  z-index: 999999;
  position: absolute;
  top: 18px;
  left: 30px;
}

@media (max-width: 1199px) {
  .page-header__block-up--fixed.page-header__block-up .page-header__search-close {
    top: 12px;
  }
}

.page-header__block-up .page-header__search-field {
  margin-top: 15px;
  height: 40px;
}
@media (max-width: 1199px) {
  .page-header__block-up .page-header__search-field {
    margin-top: -20px;
  }
}

.page-header__block-up .page-header__search-close {
  top: 20px;
}
@media (max-width: 1199px) {
  .page-header__block-up .page-header__search-close {
    top: 17px;
  }
}

.page-header__block-up--fixed .page-header__search-close {
  top: 12px;
}

.page-header__block-up--fixed .page-header__search-field {
  margin-top: 10px;
  height: 30px;
}
@media (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__search-field {
    width: 0;
    height: 40px;
    margin-top: -20px;
    margin-right: 100px;
  }
}
@media (max-width: 1199px) {
  .page-header__block-up--fixed .form_opened {
    width: 330px;
  }
}
.page-header__block-up--fixed .page-header__search-close {
  margin-right: 125px;
  margin-top: 5px;
  right: -55px;
}
@media (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__search-close {
    right: 55px;
  }
}
@media screen and (min-width: 1198px) {
  .page-header__block-up--fixed {
    background-color: #18233A;
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    -o-transition: transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
  }
}
.page-header__block-up--fixed .page-header__logo {
  margin-top: 13px;
}
@media screen and (min-width: 1198px) {
  .page-header__block-up--fixed .page-header__logo .page-header__sublogo-color {
    fill: #fff;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__logo {
    margin-top: 0;
  }
}
.page-header__block-up--fixed .page-header__address {
  color: var(--button-grey);
  margin-top: 13px;
}
.page-header__block-up--fixed .page-header__tel {
  color: var(--button-grey);
  margin-top: 13px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.page-header__block-up--fixed .page-header__tel:hover {
  color: #8992A7;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__tel {
    margin-top: 0;
    color: #ffffff;
  }
}
.page-header__block-up--fixed .page-header__telegram {
  margin-top: 13px;
}
@media screen and (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__telegram {
    margin-top: 0;
  }
}
.page-header__block-up--fixed .page-header__search {
  display: block;
  margin-left: 20px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__search {
    margin-left: 0;
    margin-right: 30px;
  }
}
.page-header__block-up--fixed .page-header__button {
  height: 30px;
  padding: 4px 29px;
  margin-top: 10px;
}
.page-header__block-up--fixed .page-header__wrapper {
  height: 50px;
}
@media screen and (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__wrapper {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__block-up--fixed .page-header__wrapper {
    margin-top: 0;
    height: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .page-header__block-up--fixed .page-header__menu {
    color: var(--white);
  }
}

@media screen and (min-width: 1198px) {
  .page-header__block-up--animate {
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
}

@media screen and (max-width: 1199px) {
  .page-header__sublogo-color {
    fill: #fff;
  }
}

.page-header__block-down--wpadminbar {
  top: 70px;
}

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

.burger {
  margin: 0 auto;
  width: 20px;
  height: 14px;
  position: relative;
  margin-right: 10px;
}

.burger-bar {
  padding: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bor-gold);
  display: block;
  border-radius: 1px;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
  position: absolute;
}

.burger-bar1 {
  top: 0;
}

.burger-bar2 {
  top: 6px;
  width: 50%;
  right: 0;
}

.burger-bar4 {
  bottom: 0;
}

.burger--active .burger-bar1 {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 15%;
      -ms-transform-origin: 15%;
          transform-origin: 15%;
  width: 24px;
}

.burger--active .burger-bar2 {
  -webkit-transform: translateX(40px);
      -ms-transform: translateX(40px);
          transform: translateX(40px);
  background-color: transparent;
}

.burger--active .burger-bar4 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 15%;
      -ms-transform-origin: 15%;
          transform-origin: 15%;
  width: 24px;
}

.header-smi {
  max-width: 170px;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .header-smi {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header-smi {
    margin-right: 0;
  }
}

.header-smi__top {
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .header-smi__top {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .header-smi__top {
    font-size: 5vw;
  }
}

.header-smi__bottom {
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media screen and (max-width: 1199px) {
  .header-smi__bottom {
    font-size: 15px;
  }
}
@media screen and (max-width: 460px) {
  .header-smi__bottom {
    font-size: 3.5vw;
  }
}

.page-header__telegram--whatsapp-desc {
  margin-right: 0px;
}

.menu-services {
  width: 1037px;
  height: 50px;
  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;
  position: relative;
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .menu-item--double {
    display: none;
  }
}
@media screen and (min-width: 1198px) {
  .menu-item:hover .navigation__link {
    color: #8992A7;
  }
  .menu-item:hover .navigation__link .navigation____arr {
    -webkit-transform: rotateZ(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotateZ(-90deg);
    fill: #8992A7;
  }
}
@media screen and (min-width: 1198px) {
  .menu-item {
    min-height: 40px;
  }
}
.menu-item .navigation__link.active {
  background: rgba(40, 63, 117, 0.1);
  color: #283F75;
}

@media screen and (max-width: 1199px) {
  .menu-item.active .navigation____arr {
    -webkit-transform: rotateZ(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotateZ(-90deg);
    fill: #8992A7;
  }
}

.navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: var(--white);
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 1198px) {
  .navigation__link::after {
    position: absolute;
    right: -34px;
    content: "";
    height: 40px;
    width: 65px;
    background-color: transparent;
    z-index: 2;
  }
}
@media screen and (max-width: 1199px) {
  .navigation__link {
    color: var(--gray-text);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 350px;
    height: 39px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
  }
  .navigation__link:hover .navigation____arr {
    fill: var(--blue-heading);
  }
}
@media screen and (max-width: 767px) {
  .navigation__link {
    width: 100%;
  }
}
.navigation____arr {
  margin-top: 2px;
  margin-left: 4px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  fill: var(--white);
  height: 20px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .navigation____arr {
    fill: var(--gray-text);
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
    margin: 0;
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .menu-item-has-children .navigation____arr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menu-item-has-children .navigation____arr {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (min-width: 1199px) {
  .menu-item-has-children:hover > .menu-item-link {
    background-color: rgba(40, 63, 117, 0.1);
  }
}

.navigation____arr > *,
.js-drop > * {
  pointer-events: none;
}

.dropdown {
  display: none;
}
.dropdown-menu {
  background-color: var(--bg-grey-light);
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  padding: 13px 0;
  width: 1160px;
  height: 346px;
  border: 1px solid #C6CDDA;
  z-index: 10;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  width: 1160px;
  height: 60px;
  left: 0;
  top: -39px;
  background-color: transparent;
}
@media screen and (max-width: 1199px) {
  .dropdown-menu::before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .dropdown-menu {
    grid-area: block-info;
    width: 350px;
    border: none;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .dropdown-menu {
    width: 100%;
    height: auto;
  }
}

.sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #C6CDDA;
}
@media screen and (max-width: 1199px) {
  .sub-menu {
    border-left: 1px solid #C6CDDA;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-right: none;
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .sub-menu {
    padding: 5px 0;
    border: 1px solid #C6CDDA;
    width: calc(100% - 44px);
    margin: 20px auto;
    border-right: none;
    border-left: none;
  }
}

@media screen and (max-width: 1199px) {
  .menu-item {
    position: relative;
  }
}

.menu-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  height: 40px;
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  .menu-item-link {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .menu-item-link {
    width: 100%;
  }
}
@media screen and (min-width: 1198px) {
  .menu-item-link:hover {
    background-color: rgba(40, 63, 117, 0.1);
  }
  .menu-item-link:hover .menu--link {
    color: var(--blue-heading);
  }
}
.menu-item-link:hover .icon--arr {
  fill: var(--blue-heading);
}
.menu-item-link:hover .icon {
  fill: var(--blue-heading);
}

@media screen and (max-width: 1199px) {
  .menu-item-link.active {
    background-color: rgba(40, 63, 117, 0.1);
  }
}

.menu--link {
  color: var(--gray-text);
  padding-left: 30px;
  max-width: 82%;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .menu--link {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .menu--link {
    padding-left: 10px;
  }
}

.icon {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  fill: #5B5B5B;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .icon {
    right: 22px;
  }
}

.menu-item:hover .dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .menu-item:hover .dropdown-menu {
    display: none;
  }
}

.icon--arr {
  fill: var(--gray-text);
}

.sub-menu .menu-item:hover .dropdown {
  display: block;
  position: absolute;
  top: 13px;
  left: 320px;
}
@media screen and (max-width: 1199px) {
  .sub-menu .menu-item:hover .dropdown {
    display: none;
    position: relative;
    top: 0px;
    left: 0;
    width: 350px;
    height: auto;
  }
}

.sub-menu .menu-item .dropdown .sub-menu {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 306px;
}
@media screen and (max-width: 1199px) {
  .sub-menu .menu-item .dropdown .sub-menu {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .sub-menu .menu-item .dropdown .sub-menu {
    padding: 5px 0;
    border: 1px solid #C6CDDA;
    border-left: none;
    margin: 20px auto 10px auto;
    border-right: none;
  }
}

.sub-menu .menu-item .dropdown .sub-menu .menu-item {
  width: 405px;
  padding: 7px 0 8px 0;
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-menu .menu-item .dropdown .sub-menu .menu-item:hover {
  background-color: rgba(40, 63, 117, 0.1);
}
.sub-menu .menu-item .dropdown .sub-menu .menu-item:hover a {
  color: var(--blue-heading);
}
@media screen and (max-width: 1199px) {
  .sub-menu .menu-item .dropdown .sub-menu .menu-item {
    width: 350px;
    height: 39px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}

.menu-main:hover .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .menu-main:hover .menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .menu-main {
    padding-top: 0;
  }
}

.menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 34px;
  right: 0;
  width: 267px;
  border: 1px solid #C6CDDA;
  background: #F9F9FE;
  padding: 20px 0;
  z-index: 2;
}
.menu-header--active {
  top: 50px;
}
.menu:before {
  position: absolute;
  top: -42px;
  content: "";
  width: 267px;
  height: 70px;
  background-color: transparent;
}
@media screen and (max-width: 1199px) {
  .menu:before {
    height: 1px;
    width: 300px;
    background-color: var(--button-grey);
    top: 0px;
    left: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .menu {
    position: relative;
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    padding: 0;
    padding-top: 10px;
  }
}

.menu-main .menu-item {
  padding: 7px 0 8px 0;
  width: 267px;
}
.menu-main .menu-item:hover {
  background-color: rgba(40, 63, 117, 0.1);
}
.menu-main .menu-item:hover .main-menu-link {
  color: #283F75;
}
@media screen and (max-width: 1199px) {
  .menu-main .menu-item {
    width: 350px;
  }
}

.main-menu-link {
  padding-left: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  width: 100%;
  text-align: left;
}

.menu-shell {
  display: none;
}
@media screen and (max-width: 1199px) {
  .menu-shell {
    width: 100vw;
    background-color: var(--bg-grey-light);
    margin: 0 -20px;
    position: absolute;
    top: 52px;
    left: 0;
    z-index: 20;
    height: calc(100vh - 52px);
    overflow: scroll;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .menu-shell {
    width: 100vw;
    width: -webkit-fill-available;
    top: 32px;
  }
}

@media screen and (max-width: 1199px) {
  .page-header__wrapper--active-js .menu-shell {
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .menu-services {
    width: 350px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .menu-services {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .menu-services .menu-item {
    position: relative;
    height: 39px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .menu-services .menu-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1199px) {
  .dropdown .sub-menu .menu-item {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1199px) and (min-width: 769px) {
  .sub-menu .menu-item .dropdown .sub-menu {
    height: auto;
    padding: 10px 0;
    border: 1px solid #C6CDDA;
    margin: 20px auto 0px auto;
    border-right: none;
    border-left: none;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .sub-menu .menu-item .dropdown .sub-menu {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1199px) {
  .sub-menu .menu-item .dropdown .sub-menu .menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .sub-menu .menu-item .dropdown .sub-menu .menu-item {
    width: 100%;
  }
}
.sub-menu .menu-item .dropdown .sub-menu .menu-item .menu--link {
  padding-left: 20px;
  max-width: 87%;
}
@media screen and (max-width: 1199px) {
  .sub-menu .menu-item .dropdown .sub-menu .menu-item .menu--link {
    padding-left: 10px;
    max-width: 100%;
  }
}

.submenu-additional {
  display: none;
}

.menu-shell .menu-item .dropdown-menu--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  padding-top: 0;
  left: 350px;
}
@media screen and (max-width: 1199px) {
  .menu-shell .menu-item .dropdown-menu--active {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .menu-shell .menu-item .dropdown-menu--active {
    position: static;
    padding: 0;
    width: 100%;
  }
}
.menu-shell .menu-item .dropdown-menu--active .icon-small {
  -webkit-transform: translateY(-50%) rotateZ(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotateZ(90deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 1199px) {
  .menu-shell .menu-item .dropdown-menu--active .icon-small {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .menu-shell .menu-item .dropdown-menu--active .icon-small {
    right: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .menu-shell .menu-item .dropdown .dropdown-menu--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    top: 0;
    padding-top: 0;
    left: 350px;
  }
  .menu-shell .menu-item .dropdown .dropdown-menu--active .icon-small {
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
}
@media screen and (max-width: 768px) {
  .menu-shell .menu-item .dropdown .dropdown-menu--active {
    width: 100%;
  }
}

.menu-item-link.active .icon.icon-small {
  -webkit-transform: translateY(-50%) rotateZ(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotateZ(-90deg);
  right: 4px;
}
@media screen and (max-width: 1199px) {
  .menu-item-link.active .icon.icon-small {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .menu-item-link.active .icon.icon-small {
    right: 0px;
  }
}

@media screen and (max-width: 768px) {
  .navigation__link.active .navigation____arr {
    -webkit-transform: rotateZ(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotateZ(-90deg);
  }
}

@media screen and (max-width: 768px) {
  .menu-item-link.active:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    left: 100%;
    background: #e4e6f0;
  }

  .menu-item-link.active:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    right: 100%;
    background: #e4e6f0;
  }
}
.footer {
  background-color: var(--bg-dark);
}
@media screen and (max-width: 767px) {
  .footer--desktop-tablet {
    display: none;
  }
}
.footer--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer--mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer {
    margin-bottom: 86px;
  }
}
@media (max-width: 550px) {
  .footer {
    margin-bottom: 71px;
  }
}
@media (max-width: 450px) {
  .footer {
    margin-bottom: 56px;
  }
}

.footer__menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--bor-gold);
  height: 86px;
  z-index: 19;
  padding: 10px;
}
@media (max-width: 550px) {
  .footer__menu {
    height: 71px;
    padding: 8px;
  }
}
@media (max-width: 450px) {
  .footer__menu {
    height: 56px;
    padding: 6px;
  }
}

.footer__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.footer__li {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 550px) {
  .footer__li {
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .footer__li {
    font-size: 10px;
    max-width: 48px;
  }
}

.footer__text {
  text-align: center;
}
@media (max-width: 450px) {
  .footer__text {
    line-height: 1;
    height: 20px;
  }
}

.footer__img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-bottom: 5px;
  display: block;
}
@media (max-width: 550px) {
  .footer__img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 450px) {
  .footer__img {
    width: 20px;
    height: 20px;
  }
}

.footer__box {
  position: fixed;
  width: 100%;
  background: #fff;
  padding: 45px 0 40px 0;
  -webkit-transition-duration: 0.7s;
       -o-transition-duration: 0.7s;
          transition-duration: 0.7s;
  bottom: 86px;
  left: 0;
  border-top: 1px solid #ccc;
  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;
  -webkit-transform: translateY(500px);
      -ms-transform: translateY(500px);
          transform: translateY(500px);
  opacity: 0;
  z-index: 18;
}
@media (max-width: 550px) {
  .footer__box {
    bottom: 71px;
    padding: 40px 0 35px 0;
  }
}
@media (max-width: 450px) {
  .footer__box {
    bottom: 56px;
    padding: 35px 0 30px 0;
  }
}
.footer__box_open {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.footer__close {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 60px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  padding: 5px;
  color: #2F3A55;
}

.footer__rect {
  width: 30px;
  background-color: var(--bg-dark);
  height: 5px;
  border-radius: 10px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 620px) {
  .footer__nav {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .footer__nav {
    width: 96%;
  }
}
.footer__nav::after {
  content: "";
  display: block;
  height: 1px;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 10%;
  background: #ecd3bc;
}
@media (max-width: 450px) {
  .footer__nav::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
  }
}
.footer__nav::before {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #fff;
  display: none;
}
@media (max-width: 450px) {
  .footer__nav::before {
    display: block;
  }
}

.footer__nav-link {
  font-size: 14px;
  color: #5B5B5B;
  line-height: 1;
  padding: 5px 0;
  width: 25%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__nav-link_top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 450px) {
  .footer__nav-link_top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__nav-link_bot {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 450px) {
  .footer__nav-link_bot {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 450px) {
  .footer__nav-link:nth-of-type(odd) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
    padding-right: 25px;
  }
}
@media (max-width: 450px) {
  .footer__nav-link:nth-of-type(even) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    padding-left: 25px;
  }
}
.footer__nav-link_for6 {
  width: 33.333%;
}
@media (max-width: 450px) {
  .footer__nav-link_for6 {
    width: 50%;
  }
}
.footer__nav-link_for4 {
  width: 50%;
}
.footer__nav-link_border {
  border-right: 1px solid #ecd3bc;
}
@media (max-width: 450px) {
  .footer__nav-link_border {
    border: none;
  }
}
@media (max-width: 450px) {
  .footer__nav-link {
    width: 50%;
    border-bottom: 1px solid #ecd3bc;
    font-size: 13px;
  }
}

.footer__wrapper {
  padding: 40px 0px;
  width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .footer__wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 40px 10px;
    overflow: hidden;
  }
}

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

.footer__logo-link {
  position: relative;
}

.footer__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 42px;
  padding-bottom: 41px;
}
@media screen and (max-width: 1199px) {
  .footer__down {
    margin-top: 23px;
  }
}
@media screen and (max-width: 767px) {
  .footer__down {
    display: block;
  }
}

.footer__style-text {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--button-grey);
}
@media screen and (max-width: 767px) {
  .footer__style-text--small {
    font-size: 13px;
  }
}

.footer__top, .footer__middle, .footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__top {
  margin-bottom: 1px;
}
.footer__middle {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .footer__middle {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .footer__middle {
    display: none;
  }
}
@media (max-width: 1199px) {
  .footer__bottom {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__logo .footer__sublogo-color {
  fill: white;
}
.footer__logo:hover .footer__sublogo {
  fill: var(--hover-button);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    display: block;
    margin: 0 auto;
  }
}

.footer__shell-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .footer__shell-info {
    height: 228px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .footer__shell-info {
    display: none;
  }
}

.footer__servis {
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .footer__servis {
    margin-right: 10px;
    width: 167px;
  }
}

.footer__servis-item {
  margin-bottom: 16px;
  color: #C6CDDA;
}
.footer__servis-item:hover .footer__servis-link {
  color: var(--gold-light);
}

.footer__about {
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .footer__about {
    margin-right: 0px;
    width: 167px;
  }
}

.footer__about-item {
  margin-bottom: 16px;
}
.footer__about-item:hover .footer__about-link {
  color: var(--gold-light);
}

@media screen and (max-width: 1199px) {
  .footer__info {
    margin-right: 0px;
    width: 167px;
  }
}

.footer__info-item {
  margin-bottom: 16px;
}
.footer__info-item:hover .footer__info-link {
  color: var(--gold-light);
}

.footer__block-social {
  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;
  width: 560px;
}
@media screen and (max-width: 767px) {
  .footer__block-social {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__decor-line {
  grid-area: decor;
  width: 100%;
  height: 1px;
  background-color: var(--bor-gold);
}
@media screen and (max-width: 1199px) {
  .footer__decor-line {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__decor-line {
    margin-top: 15px;
  }
}

.footer__copy {
  width: 560px;
}
@media (max-width: 1199px) {
  .footer__copy {
    display: none;
  }
}

.footer__subtitle {
  margin-bottom: 1px;
}
@media screen and (max-width: 1199px) {
  .footer__subtitle {
    display: inline;
  }
}

.footer__confidentiality {
  width: 560px;
  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;
}
@media screen and (max-width: 1199px) {
  .footer__confidentiality {
    margin-right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .footer__confidentiality {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .footer__conf-text {
    text-align: center;
  }
}

.footer__conf-link {
  margin-top: 1px;
  border-bottom: 1px dashed var(--gray-text);
}
@media screen and (max-width: 1199px) {
  .footer__conf-link {
    margin-right: -4px;
  }
}
@media screen and (max-width: 767px) {
  .footer__conf-link {
    margin: 0 auto;
    display: inline-block;
    border-bottom: 1px dashed var(--gray-text);
  }
}
.footer__conf-link:hover {
  border-bottom: 1px dashed var(--gold-light);
}

.connection {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .connection {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 330px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
@media screen and (max-width: 540px) {
  .connection {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.connection__item {
  margin-left: 20px;
  text-align: right;
  color: #C6CDDA;
}
.connection__item:nth-child(2) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .connection__item {
    text-align: center;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

.connection__descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}

.connection__link {
  color: #C6CDDA;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
}
.connection__link .connection__descr {
  border-bottom: 1px dashed #C6CDDA;
}
.connection__link .connection__descr:hover {
  border-bottom: 1px dashed #18233A;
}
@media screen and (max-width: 767px) {
  .connection__link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.footer__link.connection__link {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #C6CDDA;
  border-bottom: 1px dashed #C6CDDA;
}
.footer__link.connection__link:hover {
  border-bottom: 1px dashed #18233A;
}

.connection__phone-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
}

.connection__phone {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  color: #D9A77A;
  border-bottom: 1px dashed #D9A77A;
}
.connection__phone:hover {
  border-bottom: 1px dashed #18233A;
}

.connection__img {
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .connection__img {
    margin-top: 0;
    margin-right: 10px;
  }
}

.connection__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width: 1199px) {
  .connection__title {
    margin-top: 3px;
    margin-right: 1px;
  }
}
@media screen and (max-width: 767px) {
  .connection__title {
    margin: 1px 0 0 0;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 19px;
}
@media (max-width: 1199px) {
  .social {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .social {
    margin: 0 auto;
    margin-top: 15px;
    width: 261px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.social__item {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .social__item {
    margin-left: 0;
  }
}
.social__item:hover .social__link {
  border: none;
  background: rgba(176, 134, 95, 0.2);
}

.social__link {
  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;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--bg-grey);
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.social__img {
  display: block;
}

.company {
  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;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company {
    -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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 25px;
    width: 380px;
  }
}
@media screen and (max-width: 540px) {
  .company {
    display: block;
    margin-top: 25px;
    width: 100%;
  }
}

.company.footer__company {
  display: none;
}
@media (max-width: 1199px) {
  .company.footer__company .company__ip, .company.footer__company .company__ooo {
    text-align: left;
  }
}
@media (max-width: 1199px) {
  .company.footer__company {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 1199px) {
  .company.connection__company {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .company__ip,
.company__ooo {
    text-align: end;
  }
}
@media screen and (max-width: 767px) {
  .company__ip,
.company__ooo {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .company__ip {
    display: block;
    margin: 0 auto;
    width: 300px;
  }
}

.company__ooo {
  margin-top: 1px;
}
@media screen and (max-width: 1199px) {
  .company__ooo {
    margin-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .company__ooo {
    display: block;
    margin: 0 auto;
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .company__ooo {
    margin: 3px auto 0;
  }
}

.pop-up__wrapper {
  background-color: rgba(24, 35, 58, 0.4);
  z-index: 100;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 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;
  overflow: auto;
}
@media screen and (max-height: 600px) {
  .pop-up__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .pop-up__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: #f9f9fe;
  }
}

.pop-up__shell {
  width: 360px;
  padding: 40px 30px;
  position: relative;
  background-color: var(--bg-grey-light);
}
@media screen and (max-height: 600px) {
  .pop-up__shell {
    height: 100%;
    min-height: 520px;
  }
}
@media screen and (max-width: 768px) {
  .pop-up__shell {
    height: 100%;
    min-height: 520px;
  }
}

.pop-up__clouse {
  position: absolute;
  right: -38px;
  top: -38px;
}
@media screen and (max-height: 600px) {
  .pop-up__clouse {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pop-up__clouse {
    right: 8px;
    top: 8px;
  }
  .pop-up__clouse .pop-up__icon {
    fill: var(--bg-blue);
  }
}

.pop-up__icon {
  fill: white;
  width: 35px;
  height: 35px;
}
@media screen and (max-height: 600px) {
  .pop-up__icon {
    fill: #8992A7;
  }
}
@media screen and (max-width: 768px) {
  .pop-up__icon {
    fill: #8992A7;
  }
}

.pop-up__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  margin-bottom: 25px;
}
@media screen and (max-width: 1199px) {
  .pop-up__title {
    font-size: 18px;
  }
}

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

.pop-up__shell-form {
  position: relative;
}

.pop-up__data {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  border: none;
  padding-left: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  opacity: 0.6;
}
.pop-up__data::-webkit-input-placeholder {
  visibility: hidden;
}
.pop-up__data::-moz-placeholder {
  visibility: hidden;
}
.pop-up__data:-ms-input-placeholder {
  visibility: hidden;
}
.pop-up__data::-ms-input-placeholder {
  visibility: hidden;
}
.pop-up__data::placeholder {
  visibility: hidden;
}
.pop-up__data:focus {
  outline: 0;
}
.pop-up__data:focus::-webkit-input-placeholder {
  visibility: visible;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.pop-up__data:focus::-moz-placeholder {
  visibility: visible;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.pop-up__data:focus:-ms-input-placeholder {
  visibility: visible;
  -ms-transition: 0.6s;
  transition: 0.6s;
}
.pop-up__data:focus::-ms-input-placeholder {
  visibility: visible;
  -ms-transition: 0.6s;
  transition: 0.6s;
}
.pop-up__data:focus::placeholder {
  visibility: visible;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.pop-up__data:focus ~ .pop-up__desc {
  font-size: 13px;
  top: 7px;
}

.pop-up__desc {
  position: absolute;
  top: 19px;
  left: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pop-up__button {
  color: white;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  display: block;
  margin: 20 auto 0;
  width: 100%;
  height: 60px;
  background-color: #B0865F;
}

.pop-up .feedback__attention {
  margin-top: 25px;
  width: 100%;
  letter-spacing: -0.3px;
  text-align: center;
}

.pop-up .feedback__span:hover {
  border-bottom: 1px dashed var(--bor-gold);
  cursor: pointer;
}

.additional-blocks {
  background-color: var(--bg-grey-light);
  padding: 100px 0 110px;
}
@media (max-width: 1199px) {
  .additional-blocks {
    padding-top: calc(9.28vw - 11.27px);
    padding-bottom: calc(9.28vw - 1.27px);
  }
}
@media (max-width: 768px) {
  .additional-blocks {
    padding-top: calc(42.86px + 2.23vw);
    padding-bottom: calc(52.86px + 2.23vw);
  }
}

.additional-blocks__title {
  color: var(--blue-heading);
}

.additional-blocks__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  max-width: 760px;
  width: 100%;
  margin: 30px auto 0;
}
@media (max-width: 1199px) {
  .additional-blocks__subtitle {
    max-width: calc(203.62px + 46.4vw);
    margin-top: calc(2.18px + 2.32vw);
  }
}
@media (max-width: 768px) {
  .additional-blocks__subtitle {
    max-width: 560px;
    margin-top: calc(11.43px + 1.12vw);
  }
}

.additional-blocks .warning--w-100 {
  margin-bottom: -15px;
  padding-bottom: 0;
}

.even-odd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin: 50px 0 0;
}
@media (max-width: 1199px) {
  .even-odd {
    gap: calc(4.64vw - 5.64px);
    margin-top: calc(22.18px + 2.32vw);
  }
}
@media (max-width: 768px) {
  .even-odd {
    gap: 30px;
    margin-top: calc(5.71px + 4.46vw);
  }
}

.even-odd__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 40px;
}
@media (max-width: 1199px) {
  .even-odd__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 calc(12.18px + 2.32vw);
  }
}
@media (max-width: 768px) {
  .even-odd__item {
    gap: 0 calc(4.28px + 3.35vw);
  }
}
.even-odd__item:nth-child(even) {
  padding-left: 200px;
}
@media (max-width: 1199px) {
  .even-odd__item:nth-child(even) {
    padding-left: calc(20.65vw - 47.59px);
  }
}
@media (max-width: 768px) {
  .even-odd__item:nth-child(even) {
    padding-left: 0;
  }
}

.even-odd__number {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 140px;
  line-height: 85%;
  letter-spacing: -0.03em;
  color: var(--lite-gray);
  position: relative;
  top: 10px;
}
@media (max-width: 1199px) {
  .even-odd__number {
    font-size: calc(16.937vw - 63.08px);
    top: 0;
  }
}
@media (max-width: 768px) {
  .even-odd__number {
    font-size: calc(34.428px + 4.241vw);
  }
}

.even-odd__text {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  max-width: 760px;
}
@media (max-width: 768px) {
  .even-odd__text {
    font-size: 15px;
  }
}

.sheet-lines__list {
  margin-top: 100px;
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .sheet-lines__list {
    margin-top: calc(9.28vw - 11.27px);
    margin-bottom: calc(9.28vw - 1.27px);
  }
}
@media (max-width: 768px) {
  .sheet-lines__list {
    margin-top: calc(42.86px + 2.23vw);
    margin-bottom: calc(52.86px + 2.23vw);
  }
}

.sheet-lines__item {
  margin: 100px 0 0px;
  padding: 0 100px 110px;
  border-bottom: 1px solid var(--bor-grey);
  position: relative;
}
@media (max-width: 1199px) {
  .sheet-lines__item {
    padding-left: calc(72.18px + 2.32vw);
    padding-right: calc(23.2vw - 178.19px);
    margin-top: calc(9.28vw - 11.27px);
    padding-bottom: calc(9.28vw - 1.27px);
  }
}
@media (max-width: 768px) {
  .sheet-lines__item {
    margin-top: calc(42.86px + 2.23vw);
    padding-left: calc(15.625vw - 30px);
    padding-right: 0;
    padding-bottom: calc(52.86px + 2.23vw);
  }
}
.sheet-lines__item:last-child {
  border: none;
  padding-bottom: 0;
}
.sheet-lines__item--active .sheet-lines__text-block::before {
  display: none;
}
.sheet-lines__item--active .sheet-lines__button::before {
  content: "Свернуть";
}
.sheet-lines__item--active .sheet-lines__button svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sheet-lines__item::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 170px;
  background-color: var(--bg-blue);
  content: "";
}

.sheet-lines__title {
  text-align: start;
  color: var(--blue-heading);
  max-width: 760px;
}
@media (max-width: 1199px) {
  .sheet-lines__title {
    max-width: 451px;
  }
}

.sheet-lines__text-block {
  position: relative;
  margin-top: 30px;
  height: 164px;
  overflow: hidden;
  -webkit-transition: height 0.8s;
  -o-transition: height 0.8s;
  transition: height 0.8s;
}
@media (max-width: 1199px) {
  .sheet-lines__text-block {
    margin-top: calc(2.18px + 2.32vw);
  }
}
@media (max-width: 768px) {
  .sheet-lines__text-block {
    margin-top: calc(11.43px + 1.12vw);
  }
}
.sheet-lines__text-block::before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  display: block;
  content: "";
}
.sheet-lines__text-block--no-hidden {
  height: initial;
}
.sheet-lines__text-block--no-hidden::before {
  display: none;
}

.sheet-lines__text-shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.sheet-lines__text-shell p {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}
@media (max-width: 768px) {
  .sheet-lines__text-shell p {
    font-size: 15px;
  }
}

.sheet-lines__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.sheet-lines__button path {
  -webkit-transition: stroke 0.4s;
  -o-transition: stroke 0.4s;
  transition: stroke 0.4s;
}
.sheet-lines__button::before {
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  position: relative;
  content: "Читать далее";
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
}
.sheet-lines__button:hover::before {
  color: #8992A7;
}
.sheet-lines__button:hover path {
  stroke: #8992A7;
}

.preview {
  background-color: var(--bg-white);
  margin: 100px 0 110px 0;
}
@media screen and (max-width: 1199px) {
  .preview {
    margin-top: 60px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .preview {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
.preview--contact {
  background-color: var(--bg-grey-light);
  padding: 1px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .preview--contact {
    padding: 30px 0;
  }
}
.preview--heading-h1 + section {
  margin-top: 20px;
}
.preview--heading-h1 {
  margin-bottom: 20px;
}

.preview__wrapper {
  width: 1200px;
  padding: 0px 20px 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .preview__wrapper {
    width: 100%;
    padding: 0px 20px 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .preview__wrapper {
    padding: 0px 10px 0;
    margin-bottom: 10px;
  }
}
.preview__title {
  font-family: "Lato", sans-serif;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  text-align: center;
  font-weight: normal;
  font-size: 46px;
  letter-spacing: -0.5px;
  line-height: 130%;
  margin-bottom: 28px;
}
@media screen and (max-width: 1199px) {
  .preview__title {
    font-size: 24px;
    margin-bottom: 19px;
    letter-spacing: -0.8px;
  }
}
@media screen and (max-width: 767px) {
  .preview__title {
    letter-spacing: -0.4px;
    width: 90%;
    text-align: center;
    margin: 0 auto 13px;
  }
}

.preview__subtitle {
  color: var(--gray-text);
  width: 760px;
  margin: 0 auto 25px;
  line-height: 150%;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  .preview__subtitle {
    font-size: 16px;
    width: 559px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .preview__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 450px;
    line-height: 23px;
  }
}

.preview__description {
  display: grid;
  grid-template-areas: "video up" "video down";
  -webkit-column-gap: 105px;
     -moz-column-gap: 105px;
          column-gap: 105px;
  margin-bottom: 70px;
  margin-top: 55px;
}
.preview__description--full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .preview__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1199px) {
  .preview__description--contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
}

@media screen and (max-width: 1199px) {
  .preview__text-up--contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
  }
  .preview__text-up--contact p {
    margin-top: 16px;
  }
}

.preview__video {
  cursor: pointer;
  grid-area: video;
  width: 495px;
  height: 266px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.preview__video:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 1199px) {
  .preview__video {
    width: 450px;
    height: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .preview__video {
    display: block;
    margin: 0 auto 26px;
  }
}
@media screen and (max-width: 539px) {
  .preview__video {
    width: 100%;
    height: 49.6vw;
  }
}

.preview__text-up,
.preview__text-down {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 150%;
  width: 560px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .preview__text-up,
.preview__text-down {
    width: 728px;
  }
}
@media screen and (max-width: 767px) {
  .preview__text-up,
.preview__text-down {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
    max-width: 450px;
  }
}

.preview__text-up {
  grid-area: up;
  margin-top: 16px;
  margin-bottom: 6px;
}
@media screen and (max-width: 1199px) {
  .preview__text-up {
    margin-bottom: 20px;
    margin-top: 39px;
  }
}
@media screen and (max-width: 767px) {
  .preview__text-up {
    margin-top: 0;
  }
}
.preview__text-up p {
  margin-top: 16px;
  margin-bottom: 6px;
}
@media screen and (max-width: 1199px) {
  .preview__text-up p {
    margin-bottom: 20px;
    margin-top: 39px;
  }
}
@media screen and (max-width: 767px) {
  .preview__text-up p {
    margin-top: 0;
  }
}
.preview__text-up--full {
  width: 100%;
  margin-top: 0;
}

.preview__text-down {
  grid-area: down;
}
@media screen and (max-width: 1199px) {
  .preview__text-down {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .preview__text-down {
    margin-bottom: 27px;
  }
}

.preview__block-text {
  width: 960px;
  margin: 72px auto 0;
  background-color: var(--bg-grey-light);
  padding: 30px 20px;
  margin-bottom: 65px;
}
@media screen and (max-width: 1199px) {
  .preview__block-text {
    width: 100%;
    margin: 40px auto 0;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .preview__block-text {
    width: 100%;
    margin-top: -5px;
    padding: 30px 20px 25px;
  }
}

.preview__title-info {
  color: var(--blue-heading);
  line-height: 130%;
  margin: 0 auto 15px;
  text-align: center;
  font-weight: 400;
  font-size: 21px;
}
@media screen and (max-width: 1199px) {
  .preview__title-info {
    font-size: 19px;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .preview__title-info {
    margin: 0 auto 8px;
    max-width: 450px;
  }
}

.preview__subtitle-info {
  text-align: center;
  line-height: 150%;
  color: var(--gray-text);
  font-size: 18px;
  width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .preview__subtitle-info {
    width: 560px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .preview__subtitle-info {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
    max-width: 450px;
  }
}

.merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1160px;
  height: 60px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1199px) {
  .merit {
    margin-top: 70px;
    width: 560px;
    height: 116px;
    margin: 0 auto 40px;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .merit {
    width: 100%;
    margin: 0 auto 20px;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 539px) {
  .merit {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 20px;
  }
}

.merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 260px;
}
@media screen and (max-width: 1199px) {
  .merit__item {
    width: 240px;
  }
  .merit__item:nth-child(odd) {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .merit__item {
    margin-bottom: 25px;
    width: 255px;
  }
  .merit__item:nth-child(odd) {
    margin-right: 0;
  }
}
@media screen and (max-width: 539px) {
  .merit__item {
    margin-bottom: 10px;
  }
}
.merit__item + .merit__item {
  margin-top: 0px;
}
.merit__img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .merit__img {
    width: 40px;
    height: 48px;
  }
}

.merit__title {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 150%;
  width: 190px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  margin-top: 13px;
}
@media screen and (max-width: 1199px) {
  .merit__title {
    margin-top: 0;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .merit__title {
    width: 200px;
    letter-spacing: -0.5px;
  }
}

.history {
  background-color: var(--bg-dark);
  padding: 100px 0 110px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .history {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .history {
    padding: 50px 10px 60px;
  }
}

.history__wrapper {
  overflow: hidden;
  z-index: 2;
  position: relative;
  width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .history__wrapper {
    width: auto;
    padding-top: 30px;
  }
}

.history__decor-x {
  content: " ";
  display: block;
  position: absolute;
  background-color: var(--bg-grey);
  width: 262px;
  height: 200px;
  left: 0;
  top: -13px;
  -webkit-clip-path: polygon(26% 0%, 0% 0%, 36.5% 50%, 0% 100%, 27% 100%, 50% 68%, 73.5% 100%, 100% 100%, 63.5% 50%, 100% 0%, 74% 0%, 50% 32.5%);
          clip-path: polygon(26% 0%, 0% 0%, 36.5% 50%, 0% 100%, 27% 100%, 50% 68%, 73.5% 100%, 100% 100%, 63.5% 50%, 100% 0%, 74% 0%, 50% 32.5%);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .history__decor-x {
    top: 0px;
    left: 20px;
    width: 208px;
    height: 159px;
  }
}
@media screen and (max-width: 767px) {
  .history__decor-x {
    display: none;
  }
}

.history__decor-arr {
  content: " ";
  display: block;
  position: absolute;
  background-color: var(--bg-grey);
  width: 155px;
  height: 200px;
  left: 235px;
  top: -10px;
  -webkit-clip-path: polygon(57.5% 0%, 100% 0%, 42.5% 50%, 100% 100%, 57.5% 100%, 0% 50%);
          clip-path: polygon(57.5% 0%, 100% 0%, 42.5% 50%, 100% 100%, 57.5% 100%, 0% 50%);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .history__decor-arr {
    width: 123px;
    height: 159px;
    top: 0px;
    left: 207px;
  }
}
@media screen and (max-width: 767px) {
  .history__decor-arr {
    display: none;
  }
}

.history__title {
  color: var(--gold-light);
  text-align: center;
  z-index: 4;
  display: block;
  font-weight: 400;
  letter-spacing: -0.4px;
  width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .history__title {
    width: 354px;
  }
}
@media screen and (max-width: 767px) {
  .history__title {
    width: 100%;
  }
}

.history__subtitle {
  color: var(--button-grey);
  margin-top: 20px;
  text-align: center;
  line-height: 150%;
  z-index: 4;
  font-size: 18px;
  width: 760px;
  margin: 30px auto 0;
}
@media screen and (max-width: 1199px) {
  .history__subtitle {
    width: 560px;
    margin: 20px auto 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .history__subtitle {
    width: 100%;
  }
}

.history__year {
  color: var(--bg-grey);
  font-size: 67px;
  line-height: 80px;
  text-align: center;
  display: block;
  padding: 0 20px;
  width: 200px;
  border-right: 1px solid var(--bg-grey);
  z-index: 4;
  font-weight: 400;
  letter-spacing: -0.03em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
.slider__item:last-child .history__year {
  border-right: none;
}

.slider__item.slider__item--last-history .history__year {
  border-right: none;
}

.history__description {
  color: var(--button-grey);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  width: 260px;
  height: 96px;
  z-index: 10;
  margin: 16px 0 0 -30px;
  opacity: 0;
}
@media screen and (max-width: 1199px) {
  .history__description {
    width: 100%;
    height: 96px;
    z-index: 10;
    margin: 16px 0 0 0px;
  }
}
.history__shell {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .history__shell {
    width: 100%;
    text-align: center;
    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;
  }
}
.history__shell .history__year {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.history__shell .history__description {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.history__shell:hover .history__year {
  color: var(--gold-light);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.history__shell:hover .history__description {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.history__shell--js-active .history__year {
  color: var(--gold-light);
}
.history__shell--js-active .history__description {
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .swiper-slide-active .history__year {
    color: var(--gold-light);
    border-right: 1px solid transparent;
  }
  .swiper-slide-active .history__description {
    max-width: 100%;
    padding: 0 27%;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide-active .history__description {
    max-width: 700px;
    padding: 0;
    opacity: 1;
  }
}

.benefits {
  padding: 100px 0 110px;
  background: var(--bg-grey-light);
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .benefits {
    padding: 60px 0 70px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .benefits {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1199px) {
  .benefits__wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .benefits__wrapper {
    padding: 0 10px;
  }
}

.benefits__title {
  color: var(--blue-heading);
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  margin-bottom: 28px;
}
@media screen and (max-width: 1199px) {
  .benefits__title {
    margin-bottom: 20px;
    letter-spacing: -0.8px;
  }
}
@media screen and (max-width: 767px) {
  .benefits__title {
    width: 77%;
    margin: 0 auto 15px;
  }
}

.benefits__subtitle {
  width: 760px;
  color: var(--gray-text);
  line-height: 150%;
  font-size: 18px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .benefits__subtitle {
    width: 560px;
    font-size: 16px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .benefits__subtitle {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
  }
}

.achievements {
  counter-reset: my-counter;
  display: grid;
  grid-template-columns: 360px 360px 360px;
  grid-template-rows: auto auto;
  gap: 40px;
  margin: 68px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1199px) {
  .achievements {
    grid-template-columns: 46vw 46vw;
    grid-template-rows: 221px 221px 221px;
    gap: 20px;
    row-gap: 16px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .achievements {
    margin-top: 27px;
    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;
  }
}

@media screen and (max-width: 1199px) {
  .achievements__item {
    margin: 0;
    height: 217px;
  }
}
@media screen and (max-width: 767px) {
  .achievements__item {
    height: auto;
    width: 100%;
  }
}

.achievements__shell {
  background: var(--bg-white);
  display: grid;
  row-gap: 15px;
  width: 360px;
  height: 100%;
  padding: 33px 30px;
  grid-template-columns: 270px 30px;
  grid-template-rows: 54px auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-areas: "title number" "text text";
}
@media screen and (max-width: 1199px) {
  .achievements__shell {
    width: 46vw;
    height: 217px;
    padding: 30px 20px;
    grid-template-columns: 274px 30px;
    row-gap: 14px;
    -ms-flex-line-pack: start;
        align-content: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .achievements__shell {
    padding: 18px 0;
    grid-template-columns: 65px calc(100% - 105px) 40px;
    grid-template-rows: 42px auto;
    grid-template-areas: "number title decor" "text text text";
    height: auto;
    width: auto;
    border: 1px solid var(--bor-grey);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.achievements__shell::before {
  content: "0" counter(my-counter);
  counter-increment: my-counter;
  color: var(--blue-text);
  font-weight: bold;
  font-size: 23px;
  font-weight: bold;
  line-height: 90%;
  grid-area: number;
  text-align: start;
  margin: 5px 0 0 2px;
  opacity: 0.3;
  width: 30px;
}
@media screen and (max-width: 1199px) {
  .achievements__shell::before {
    margin: 6px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .achievements__shell::before {
    margin: 0 20px;
    width: 35px;
  }
}

@media screen and (max-width: 767px) {
  .achievements__text {
    padding: 10px 0;
  }
}

.achievements__title {
  font-size: 21px;
  width: 236px;
  line-height: 27px;
  font-weight: 400;
  color: var(--blue-heading);
  grid-area: title;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media screen and (max-width: 1199px) {
  .achievements__title {
    width: 228px;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 767px) {
  .achievements__title {
    width: 171px;
    font-size: 15px;
    font-weight: 700;
  }
}

.achievements__subtitle {
  font-size: 16px;
  line-height: 24px;
  width: 300px;
  margin: 0 auto 0px;
  grid-area: text;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  letter-spacing: 0.5px;
  color: var(--gray-text);
}
@media screen and (max-width: 1199px) {
  .achievements__subtitle {
    margin: 0;
    width: 100%;
    display: block;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .achievements__subtitle {
    width: 100%;
    display: block;
    margin: 5px auto;
    padding: 0px 20px;
    position: relative;
    top: 10px;
    margin: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.4s ease;
    -o-transition: height 0.4s ease;
    transition: height 0.4s ease;
  }
}

.achievements__item--active .achievements__subtitle {
  display: block;
}

.block-decor {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10px;
  height: 10px;
  grid-area: decor;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 768px) {
  .block-decor {
    display: none;
  }
}
.block-decor--services {
  margin-left: 13px;
  margin-bottom: 3px;
  display: block;
}
@media screen and (max-width: 1199px) {
  .block-decor--services {
    margin-left: 26px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .block-decor--services {
    margin-left: 27px;
    margin-bottom: 3px;
  }
}

.block-decor__left, .block-decor__right {
  content: " ";
  display: block;
  position: absolute;
  top: 5px;
  width: 7px;
  height: 2px;
  background-color: var(--blue-heading);
}

.block-decor__left {
  left: -0.5px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.block-decor__right {
  right: -0.5px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.decor-line {
  margin-bottom: 40px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .decor-line {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.decor-line__line {
  width: 100%;
  height: 1px;
  background-color: var(--bor-grey);
}

.decor-media-news {
  width: 20px;
  height: 30px;
  margin-left: 10px;
  fill: var(--gray-text);
}
@media screen and (max-width: 1199px) {
  .decor-media-news {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}
.decor-media-news--cases {
  fill: var(--white);
}

.decor-img {
  width: 10px;
  height: 10px;
}
.decor-img--media {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.decor-open-all__img {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.achievements__item--active .block-decor {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.services {
  padding: 0 20px 0;
  margin: 0 auto;
  width: 1200px;
  margin-top: 100px;
  margin-bottom: 110px;
}
@media screen and (max-width: 1199px) {
  .services {
    width: 100%;
    padding: 0 20px 0px;
    margin-top: 60px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .services {
    padding: 0 10px 0px;
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

.services__wrapper {
  padding-bottom: 0;
  margin-bottom: 88px;
}
@media screen and (max-width: 1199px) {
  .services__wrapper {
    padding-bottom: 0;
    margin-bottom: 58px;
  }
}
@media screen and (max-width: 767px) {
  .services__wrapper {
    padding-bottom: 0;
    margin-bottom: 49px;
  }
}

.services__m-title {
  color: var(--blue-heading);
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  margin-bottom: 68px;
}
@media screen and (max-width: 1199px) {
  .services__m-title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .services__m-title {
    width: 260px;
    margin: 0 auto 40px;
  }
}
.services__m-title--mar {
  margin-top: 82px;
}
@media screen and (max-width: 1199px) {
  .services__m-title--mar {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .services__m-title--mar {
    margin-top: 42px;
  }
}

.services__list {
  width: 1160px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .services__list {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .services__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.services__item {
  margin: 0 auto 20px;
  position: relative;
}
@media (min-width: 768px) {
  .services__item {
    margin: 0 0 20px;
    margin: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .services__item {
    width: 100%;
  }
}

.services__list--small {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.services__list--small .services__item {
  margin-right: 40px;
}

@media (min-width: 768px) {
  .services__item--right .services__sublist {
    left: initial;
    right: 0;
  }
}

.services__shell-up {
  display: grid;
  grid-template-columns: 58px 160px 42px;
  grid-template-rows: 24px auto;
  grid-template-areas: "icon title decor";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--bor-grey);
  padding: 27px 0;
  width: 260px;
  margin: 0 auto;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .services__shell-up {
    width: 46vw;
    grid-template-columns: 16% 68% 16%;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .services__shell-up {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .services__shell-up {
    width: 100%;
    grid-template-columns: 60px calc(100% - 119px) 44px;
  }
}
.services__shell-up--link {
  pointer-events: all;
}

.services__icon {
  grid-area: icon;
  margin-left: 21px;
}
@media screen and (max-width: 767px) {
  .services__icon {
    margin-left: 20px;
  }
}

.services__title {
  color: var(--blue-heading);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  grid-area: title;
  margin-left: 7px;
}

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

.services__sublist-ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px 30px;
}

.services__sublist {
  display: none;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 260px;
  max-height: 360px;
  background-color: var(--bg-white);
  border: 1px solid var(--bor-grey);
  padding: 20px 30px;
  z-index: 1;
  top: 100px;
  left: 0;
  gap: 15px 30px;
}
@media screen and (max-width: 1199px) {
  .services__sublist {
    min-width: calc(200% + 20px);
  }
}
@media screen and (max-width: 768px) {
  .services__sublist {
    width: 100%;
    max-height: none;
    min-width: 100%;
    position: relative;
    top: 4px;
    padding: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    display: block;
    border: 1px solid #ff000000;
  }
}

@media screen and (max-width: 768px) {
  .services__sublist-ul {
    padding: 20px 20px;
    width: 100%;
  }
}

.services__link {
  display: block;
  min-height: 23px;
  width: 185px;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: var(--gray-text);
}
.services__link:hover {
  color: #283F75;
}
@media screen and (max-width: 767px) {
  .services__link {
    width: 100%;
  }
}

.services__item--active .services__sublist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--bor-grey);
}

.services__item--active .services__shell-up {
  background-color: var(--bg-grey-light);
  border: 1px solid transparent;
}

.services__item--active .block-decor {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.services__subitem--parent {
  display: none;
}
@media screen and (max-width: 767px) {
  .services__subitem--parent {
    display: block;
  }
}

.criterion {
  margin: 72px auto 80px auto;
}
@media screen and (max-width: 1199px) {
  .criterion {
    margin: 43px auto 50px auto;
  }
}
@media screen and (max-width: 767px) {
  .criterion {
    margin: 32px auto 60px auto;
  }
}

.criterion__wrapper {
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px 0;
}
@media screen and (max-width: 1199px) {
  .criterion__wrapper {
    width: 100%;
    padding: 0 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .criterion__wrapper {
    padding: 0 10px 0;
  }
}

.toggle--block-criterion {
  scroll-behavior: smooth;
}

.criterion__title {
  color: var(--blue-heading);
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  width: 760px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 1199px) {
  .criterion__title {
    width: 354px;
    margin: 0 auto 38px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__title {
    margin: 0 0 38px;
    width: 100%;
  }
}

.criterion__subtitle {
  width: 758px;
  font-size: 18px;
  margin: 0 auto 69px;
  line-height: 150%;
  color: var(--gray-text);
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .criterion__subtitle {
    font-size: 16px;
    width: 560px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__subtitle {
    width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
            font-feature-settings: "pnum" on, "lnum" on;
  }
}

.criterion__block-info {
  width: 560px;
  padding-right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 1199px) {
  .criterion__block-info {
    width: auto;
    margin-right: 9px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__block-info {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.criterion__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .criterion__shell {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__shell {
    display: block;
    width: 100%;
    gap: 0;
  }
}

.criterion__block-left,
.criterion__block-right {
  position: absolute;
  opacity: 0;
  width: 0;
}
@media (max-width: 768px) {
  .criterion__block-left,
.criterion__block-right {
    position: static;
    opacity: 1;
    width: auto;
  }
}

.criterion__name {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
  .criterion__name {
    opacity: 1;
  }
}

.criterion__block-left {
  display: none;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
@media (min-width: 768px) {
  .criterion__block-left {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .criterion__block-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.criterion__shell--active .criterion__block-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .criterion__shell--active .criterion__block-left {
    width: 100%;
  }
}

.criterion__shell--active .criterion__name {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.criterion__shell--active .criterion__block-right {
  display: none;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media (max-width: 768px) {
  .criterion__shell--active .criterion__block-right {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .criterion__shell--active .criterion__block-right {
    margin-top: 40px;
    margin-right: 9px;
  }
}

.criterion__shell--active .criterion__block-right {
  display: block;
}

.criterion__block-left {
  background-color: var(--bg-grey-light);
  width: 354px;
  padding-top: 2px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 1199px) {
  .criterion__block-left {
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__block-left {
    margin-left: 0;
    width: 100%;
  }
}

.criterion__name {
  position: relative;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  letter-spacing: 0.1px;
  font-weight: 400;
  line-height: 130%;
  color: var(--blue-heading);
  font-size: 21px;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: calc(100% - 130px);
}
@media screen and (max-width: 1199px) {
  .criterion__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 19px;
    margin-top: 3px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__name {
    width: 300px;
    font-weight: bold;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.criterion__span {
  content: "";
  width: 40px;
  height: 2px;
  background-color: var(--blue-heading);
  display: block;
  margin: 0 30px;
}
@media screen and (max-width: 1199px) {
  .criterion__span {
    width: 25px;
    height: 1px;
    top: 11px;
    left: -44px;
  }
}
@media screen and (max-width: 767px) {
  .criterion__span {
    display: none;
    margin: 0 20px;
  }
}

.criterion__block-right {
  width: 560px;
}
@media screen and (max-width: 1199px) {
  .criterion__block-right {
    width: 46vw;
  }
}
@media screen and (max-width: 767px) {
  .criterion__block-right {
    width: 100%;
  }
}

.criterion__subtitle-up,
.criterion__subtitle-down {
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  padding: 0 10px;
}
@media screen and (max-width: 1199px) {
  .criterion__subtitle-up,
.criterion__subtitle-down {
    padding: 0;
  }
}

.criterion__subtitle-up {
  margin-top: 2px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .criterion__subtitle-up {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .criterion__subtitle-up {
    margin-top: 30px;
  }
}

.criterion__subtitle-down {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .swiper-wrapper--criterion {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: scroll;
  margin-bottom: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .toggle {
    width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .toggle {
    padding-left: 0;
    margin-bottom: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.toggle::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .toggle::-webkit-scrollbar {
    background-color: transparent;
  }
}
.toggle--commit {
  border-bottom: 1px solid var(--bor-grey);
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .toggle--commit {
    width: 100%;
  }
}
.toggle--commit::-webkit-scrollbar {
  display: none;
}

.toggle__button {
  color: var(--button-grey);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.toggle__button--active {
  color: var(--blue-heading);
  padding-bottom: 1px;
  border-bottom: 1px dashed var(--blue-heading);
}
.toggle__button:hover {
  color: var(--hover-grey);
}
@media screen and (max-width: 767px) {
  .toggle__button:hover {
    color: var(--blue-heading);
  }
}

.cases {
  background-color: var(--bg-dark);
  overflow: hidden;
  padding: 100px 0 110px;
}
@media screen and (max-width: 1199px) {
  .cases {
    padding: 60px 20px 86px;
  }
}
@media screen and (max-width: 767px) {
  .cases {
    padding: 50px 10px 60px;
  }
}
.cases__desc {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #C6CDDA;
  max-width: 760px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .cases__desc {
    max-width: 560px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .cases__desc {
    display: none;
  }
}
.cases__sum-title {
  margin-right: 3px;
}

.cases__wrapper {
  overflow: hidden;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .cases__wrapper {
    width: 100%;
  }
}

.cases__m-title {
  color: var(--gold-light);
  margin-bottom: 200px;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media screen and (max-width: 1199px) {
  .cases__m-title {
    margin-bottom: 151px;
  }
}
@media screen and (max-width: 767px) {
  .cases__m-title {
    margin-bottom: 110px;
  }
}

.cases__shell {
  position: relative;
  border: 1px solid var(--gold-light);
  z-index: 2;
  width: 360px;
  height: 360px;
  padding: 102px 0 55px;
  margin-right: 40px;
}
.cases__shell-link {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 9;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
@media screen and (max-width: 1199px) {
  .cases__shell {
    width: 280px;
    height: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .cases__shell {
    width: 100%;
    height: 300px;
    width: 280px;
  }
}

.cases__mirror {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  background-color: rgba(47, 58, 85, 0.6);
  position: relative;
  z-index: 9999;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 1;
  display: block;
}
.cases__mirror svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider__item--cases:hover .cases__title {
  color: #8992A7;
}
.slider__item--cases:hover .cases__mirror {
  opacity: 100%;
}
@media screen and (min-width: 1199px) {
  .slider__item--cases:hover .cases__shell-lable {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(-50%) translateY(-3px);
        -ms-transform: translateX(-50%) translateY(-3px);
            transform: translateX(-50%) translateY(-3px);
  }
}

.cases__title {
  display: block;
  color: var(--gold-light);
  font-size: 21px;
  z-index: 3;
  display: block;
  margin: 120px 0 0 30px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.9px;
  width: 300px;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
  min-height: 135px;
}
.cases__title:hover {
  color: #8992A7;
}
@media screen and (max-width: 1199px) {
  .cases__title {
    width: 240px;
    margin: 73px auto 0;
    line-height: 130%;
    letter-spacing: -0.2px;
    font-size: 18px;
    min-height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .cases__title {
    width: calc(100% - 40px);
    margin: 67px auto 0;
    line-height: 25px;
    letter-spacing: -0.2px;
    min-height: 91px;
  }
}

.cases__shell-lable {
  position: absolute;
  left: 50%;
  bottom: 195px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 190px;
  height: 265px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1199px) {
  .cases__shell-lable {
    top: -160px;
    left: 50%;
    width: 222px;
    height: 315px;
  }
  .cases__shell-lable:hover {
    top: -112px;
  }
}
@media screen and (max-width: 767px) {
  .cases__shell-lable {
    top: -85px;
    left: 50%;
    width: 162px;
    height: 230px;
    -webkit-transform: translateX(-52%);
        -ms-transform: translateX(-52%);
            transform: translateX(-52%);
  }
  .cases__shell-lable:hover {
    top: -85px;
  }
}

.cases__sum {
  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;
  color: var(--white);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  background-color: var(--bg-blue);
  z-index: 5;
  position: absolute;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  top: 47px;
  left: -15px;
  padding: 10px;
  width: 220px;
  max-width: 130%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .cases__sum {
    top: 99px;
    left: 10px;
    width: 205px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cases__sum {
    top: 12px;
    left: -20px;
    font-size: 15px;
    width: 205px;
  }
}

.cases__img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  width: 190px;
  height: 265px;
  top: 162px;
  left: 50%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
@media screen and (max-width: 1199px) {
  .cases__img {
    top: 200px;
    left: 50%;
    width: 162px;
    height: 230px;
  }
}
@media screen and (max-width: 767px) {
  .cases__img {
    top: 116px;
    left: 50%;
    width: 162px;
    height: 230px;
  }
}

.cases__block-subimg {
  position: absolute;
  top: 159px;
  left: 109px;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  height: 250px;
  width: 180px;
  background: var(--bg-grey);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.cases__block-subimg:after {
  content: "";
  width: 100%;
  height: 105%;
  position: absolute;
  top: 0;
  background: rgba(24, 35, 58, 0.7);
  left: 0;
}
@media screen and (max-width: 1199px) {
  .cases__block-subimg {
    top: 200px;
    left: 127px;
    width: 150px;
    height: 214px;
  }
}
@media screen and (max-width: 767px) {
  .cases__block-subimg {
    top: 113px;
    left: 96px;
    width: 150px;
    height: 214px;
  }
}

.cases__subimg {
  z-index: 3;
  opacity: 1;
  display: block;
}

.cases__link {
  color: var(--white);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  z-index: 3;
  margin: 20px 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.cases__link:hover {
  color: var(--hover-grey);
}
.cases__link:hover .decor-media-news {
  fill: var(--hover-grey);
}
@media screen and (max-width: 1199px) {
  .cases__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 29px 0 0 20px;
    display: none;
  }
}

.cases-new__wrapper {
  width: 900px;
}
@media (max-width: 1430px) {
  .cases-new__wrapper {
    width: 100%;
    max-width: 740px;
  }
}
@media (max-width: 1199px) {
  .cases-new__wrapper {
    max-width: unset;
  }
}

.cases-new__container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0px 30px;
}
@media (max-width: 767px) {
  .cases-new__container {
    padding: 0;
  }
}

.cases-new__inner {
  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;
  gap: 30px;
}

.cases-new__btn {
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media (max-width: 1199px) {
  .cases-new__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.all-cases__wrapper {
  border: 1px solid var(--Gold, #B0865F);
  padding: 35px;
}
@media (max-width: 1199px) {
  .all-cases__wrapper {
    display: none;
  }
}
.all-cases__inner {
  max-width: 400px;
  height: 550px;
  background: #2F3A55;
  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;
  padding: 50px 65px;
}
.all-cases__title {
  color: var(--gold-light);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 46px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  margin-bottom: 25px;
}
.all-cases__desc {
  color: var(--Gold-light, #D9A77A);
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.all-cases__logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.all-cases__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: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #B0865F;
  position: relative;
  -webkit-transition: background-color 0.4s, border 0.4s;
  -o-transition: background-color 0.4s, border 0.4s;
  transition: background-color 0.4s, border 0.4s;
}

.open__button--cases-new {
  gap: 10px;
}
.open__button--cases-new:hover .all-cases__btn {
  border-color: transparent;
  background-color: rgba(176, 134, 95, 0.2);
}

.cases-new-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
.cases-new-slide .cases-new-slide-wrap {
  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;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 108px;
}
@media (max-width: 1430px) {
  .cases-new-slide .cases-new-slide-wrap {
    padding-left: 50px;
  }
}
@media (max-width: 1199px) {
  .cases-new-slide .cases-new-slide-wrap {
    padding-left: 108px;
  }
}
@media (max-width: 964px) {
  .cases-new-slide .cases-new-slide-wrap {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .cases-new-slide .cases-new-slide-wrap {
    gap: 39px;
    padding: 25px 4px;
    background-color: #2F3A55;
    min-width: 240px;
  }
}
@media (max-width: 767px) {
  .cases-new-slide {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    border: 1px solid #B0865F;
    padding: 20px;
  }
}
.cases-new-slide__title {
  color: #D9A77A;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cases-new-slide__title {
    font-size: 18px;
  }
}
.cases-new-slide__title span {
  color: #FFF;
  font-family: Lato;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.34px;
}
@media (max-width: 767px) {
  .cases-new-slide__title span {
    font-size: 22px;
  }
}
.cases-new-slide__lists {
  position: relative;
  width: 250px;
  height: 355px;
}
@media (max-width: 767px) {
  .cases-new-slide__lists {
    width: 151px;
    height: 215px;
    margin-left: 51px;
  }
}
.cases-new-slide__lists-img {
  position: absolute;
  z-index: 5;
}
.cases-new-slide__lists img {
  width: 100%;
}
.cases-new-slide__link {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #2F3A55;
  padding: 20px;
  width: 220px;
  color: var(--gold-light);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  z-index: 9999;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.cases-new-slide__link:hover {
  color: #8992A7;
}
@media (max-width: 767px) {
  .cases-new-slide__link {
    padding: 11px 5px;
    font-size: 10px;
    line-height: 130%;
    width: 128px;
  }
}

.slider--cases-new .slider__list-cases-new {
  padding-bottom: 118px;
}
@media (max-width: 1199px) {
  .slider--cases-new .slider__list-cases-new {
    padding-bottom: 80px;
  }
}

.slider--cases-new .slider__navigation--normal {
  top: 0;
  left: 60px;
}
@media (max-width: 1430px) {
  .slider--cases-new .slider__navigation--normal {
    left: 25px;
  }
}
.slider--cases-new .swiper-pagination-fraction {
  margin: 0;
  margin-left: 60px;
  top: unset;
  bottom: -21px;
}
@media (max-width: 1430px) {
  .slider--cases-new .swiper-pagination-fraction {
    margin-left: 25px;
  }
}
@media (max-width: 1199px) {
  .slider--cases-new .swiper-pagination-fraction {
    margin: 0;
  }
}

.image-move {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.9;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  width: 215px;
  height: 300px;
  z-index: -1;
}
@media (max-width: 767px) {
  .image-move {
    width: 130px;
    height: 180px;
  }
}
.image-move.image-move-1 {
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
  left: -26px;
  top: -22px;
  z-index: 3;
}
@media (max-width: 767px) {
  .image-move.image-move-1 {
    left: -16px;
    top: -12px;
  }
}
.image-move.image-move-2 {
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
  left: -56px;
  top: -19px;
  z-index: 2;
}
@media (max-width: 767px) {
  .image-move.image-move-2 {
    left: -36px;
    top: -9px;
  }
}
.image-move.image-move-3 {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: -80px;
  top: -10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .image-move.image-move-3 {
    left: -50px;
    top: 0px;
  }
}

.cases-new__mirror {
  position: absolute;
  width: 60px;
  height: 60px;
  right: -30px;
  top: -30px;
  left: unset;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  background-color: #52555A;
}
@media (max-width: 767px) {
  .cases-new__mirror {
    width: 36px;
    height: 36px;
    top: -18px;
    right: -18px;
  }
  .cases-new__mirror svg {
    width: 18px;
    height: 18px;
  }
}
.cases-new__mirror svg path {
  fill: #B0865F;
}

.slider--cases-new {
  overflow: hidden;
}

.cases-new__header {
  color: var(--gold-light);
  display: none;
  -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;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cases-new__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cases-new__header-logo {
  max-width: 160px;
}
@media (max-width: 767px) {
  .cases-new__header-logo {
    max-width: 55px;
    max-height: 27px;
  }
}

.penalties {
  margin-top: 110px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .penalties {
    padding: 0 20px;
    margin-top: 70px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .penalties {
    padding: 0 10px;
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

.penalties__wrapper {
  padding: 100px 0 110px;
  border-top: 1px solid #C6CDDA;
  border-bottom: 1px solid #C6CDDA;
  width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .penalties__wrapper {
    width: 100%;
    padding: 60px 0px 70px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__wrapper {
    padding: 50px 0px 60px;
  }
}

.penalties__shell {
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--bor-grey);
  text-align: start;
  padding: 0 40px 0 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  height: 300px;
}
@media screen and (max-width: 1199px) {
  .penalties__shell {
    width: 47vw;
    height: 314px;
    padding: 0 38px 0 23px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__shell {
    width: 90%;
  }
}
.penalties__shell::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 5px;
  background: #8992A7;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.penalties__shell:hover .penalties__title-news {
  color: var(--blue-text);
}
.penalties__shell:hover::after {
  width: 320px;
}
.penalties__shell--first {
  border: none;
}

.penalties__shell .media-publications__button {
  display: none;
}
@media screen and (max-width: 1199px) {
  .penalties__shell .media-publications__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 48px;
    left: 21px;
  }
}
@media screen and (max-width: 1199px) {
  .penalties__shell .media-publications__button {
    bottom: 15px;
  }
}

.penalties__title {
  color: var(--blue-heading);
  margin-bottom: 40px;
  letter-spacing: -0.4px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (min-width: 768px) {
  .penalties__title {
    width: 440px;
    margin: 0 auto 50px;
    letter-spacing: -0.1px;
  }
}
@media (min-width: 1200px) {
  .penalties__title {
    width: 650px;
    text-align: center;
    margin: 0 auto 68px;
  }
}

.penalties__date,
.penalties__name {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 150%;
}

.penalties__date {
  letter-spacing: -0.7px;
}

.penalties__name {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) {
  .penalties__name {
    margin-top: 52px;
    margin-bottom: 17px;
  }
}
.penalties__title-news {
  color: var(--blue-heading);
  font-size: 21px;
  line-height: 130%;
  margin-bottom: 0;
  width: 300px;
  text-align: start;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .penalties__title-news {
    font-size: 19px;
    line-height: 25px;
    margin-bottom: 30px;
    width: 300px;
    letter-spacing: 0.2px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__title-news {
    width: 300px;
  }
}

.penalties__numbering {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
}

.penalties__button {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
}

.slider__list.slider__list--penalties {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.open {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.open--media {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .open--normal {
    margin-top: -24px;
  }
}
@media (min-width: 1200px) {
  .open--media-publications {
    margin-top: 29px;
  }
  .open--specialists {
    margin-top: 0px;
  }
  .open--normal {
    margin-top: -23px;
  }
  .open--slider1200 {
    margin-right: 20px;
  }
  .open--good-news {
    margin-top: 69px;
  }
}

.open__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-text);
  position: relative;
  -webkit-transition: background-color 0.4s, color 0.4s;
  -o-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
.open__button--cases {
  color: var(--bg-white);
}
.open__button--dark-arrow .open__span::after, .open__button--dark-arrow .open__span::before {
  background-color: var(--gray-text);
}
.open__button:hover {
  color: var(--hover-grey);
  -webkit-transition: background-color 0.4s, color 0.4s;
  -o-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
.open__button:hover .open__span::before,
.open__button:hover .open__span::after {
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
  background-color: var(--hover-grey);
}

.open__span {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(198, 205, 218, 0.2);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
tra .open__span--penalties {
  background-color: var(--bor-grey);
}
.open__span--cases {
  background-color: var(--bg-grey);
}
.open__span::before, .open__span::after {
  position: absolute;
  width: 7px;
  height: 2px;
  content: " ";
  display: block;
  background-color: var(--bg-white);
  top: 45%;
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.open__span--normal::before, .open__span--normal::after {
  background-color: var(--gray-text);
}
.open__span::before {
  left: 18px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open__span::after {
  right: 18px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.media-publications {
  background-color: var(--bg-grey-light);
  padding: 100px 0 110px;
}
@media screen and (max-width: 1199px) {
  .media-publications {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .media-publications {
    padding: 50px 0 60px;
  }
}

.media-publications__wrapper {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .media-publications__wrapper {
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .media-publications__wrapper {
    padding: 0 10px;
  }
}

.media-publications__title {
  color: var(--blue-heading);
  letter-spacing: -0.01em;
  margin-bottom: 70px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media screen and (max-width: 1199px) {
  .media-publications__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .media-publications__title {
    margin-bottom: 40px;
  }
}

.media-publications__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1199px) {
  .media-publications__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .media-publications__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.media-publications__item {
  background-color: var(--bg-white);
  width: calc(50% - 20px);
  margin: 0 0 0;
  padding: 27px 29px;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}
.media-publications__item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .media-publications__item {
    width: 46vw;
    margin: 0 0 13px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .media-publications__item {
    width: 100%;
  }
}
.media-publications__item:hover {
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.media-publications__item:hover .media-publications__text {
  color: var(--hover-grey);
}
@media (min-width: 1200px) {
  .media-publications__item--short {
    width: calc(32.7% - 20px);
    padding: 31px 29px;
  }
  .media-publications__item--short .media-publications__text {
    width: 293px;
  }
}

.media-publications__text {
  color: var(--blue-heading);
  line-height: 130%;
  display: inline-block;
  font-weight: 400;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  letter-spacing: -0.18px;
  width: 500px;
  font-size: 21px;
  margin-top: 27px;
  margin-left: 2px;
}
@media screen and (max-width: 1199px) {
  .media-publications__text {
    width: 100%;
    font-size: 19px;
    margin-top: 30px;
    margin-left: 0;
  }
}

.media-publications__down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 29px;
}

.media-publications__date {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 150%;
  margin-left: 2px;
}

.media-publications__button {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  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;
}
.media-publications__button:hover {
  color: var(--hover-grey);
}
.media-publications__button:hover .decor-media-news {
  fill: var(--hover-grey);
}

.penalties {
  margin-top: 110px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .penalties {
    padding: 0 20px;
    margin-top: 70px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .penalties {
    padding: 0 10px;
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

.penalties__wrapper {
  padding: 100px 0 110px;
  border-top: 1px solid #C6CDDA;
  border-bottom: 1px solid #C6CDDA;
  width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .penalties__wrapper {
    width: 100%;
    padding: 60px 0px 70px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__wrapper {
    padding: 50px 0px 60px;
  }
}

.penalties__shell {
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--bor-grey);
  text-align: start;
  padding: 0 40px 0 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  height: 300px;
}
@media screen and (max-width: 1199px) {
  .penalties__shell {
    width: 47vw;
    height: 314px;
    padding: 0 38px 0 23px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__shell {
    width: 90%;
  }
}
.penalties__shell::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 5px;
  background: #8992A7;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.penalties__shell:hover .penalties__title-news {
  color: var(--blue-text);
}
.penalties__shell:hover::after {
  width: 320px;
}
.penalties__shell--first {
  border: none;
}

.penalties__shell .media-publications__button {
  display: none;
}
@media screen and (max-width: 1199px) {
  .penalties__shell .media-publications__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 48px;
    left: 21px;
  }
}
@media screen and (max-width: 1199px) {
  .penalties__shell .media-publications__button {
    bottom: 15px;
  }
}

.penalties__title {
  color: var(--blue-heading);
  margin-bottom: 40px;
  letter-spacing: -0.4px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (min-width: 768px) {
  .penalties__title {
    width: 440px;
    margin: 0 auto 50px;
    letter-spacing: -0.1px;
  }
}
@media (min-width: 1200px) {
  .penalties__title {
    width: 650px;
    text-align: center;
    margin: 0 auto 68px;
  }
}

.penalties__date,
.penalties__name {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 150%;
}

.penalties__date {
  letter-spacing: -0.7px;
}

.penalties__name {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) {
  .penalties__name {
    margin-top: 52px;
    margin-bottom: 17px;
  }
}
.penalties__title-news {
  color: var(--blue-heading);
  font-size: 21px;
  line-height: 130%;
  margin-bottom: 0;
  width: 300px;
  text-align: start;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .penalties__title-news {
    font-size: 19px;
    line-height: 25px;
    margin-bottom: 30px;
    width: 300px;
    letter-spacing: 0.2px;
  }
}
@media screen and (max-width: 767px) {
  .penalties__title-news {
    width: 300px;
  }
}

.penalties__numbering {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
}

.penalties__button {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
}

.slider__list.slider__list--penalties {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.specialists {
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .specialists {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .specialists {
    margin-bottom: 60px;
  }
}

.specialists__wrapper {
  padding: 100px 10px 0px;
}
@media (max-width: 1199px) {
  .specialists__wrapper {
    padding: 60px 10px 0px;
  }
}
@media (max-width: 767px) {
  .specialists__wrapper {
    padding: 50px 10px 0px;
  }
}
@media (min-width: 767px) {
  .specialists__wrapper {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1199px) {
  .specialists__wrapper {
    padding-left: 20px;
    padding-right: 20px;
    width: 1200px;
  }
}

.specialists__title {
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
}

.specialists__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
  gap: 7vw;
}
@media (min-width: 768px) {
  .specialists__list {
    padding: 0 15px;
    margin-top: 50px;
    width: 100%;
    gap: 4.9vw;
  }
}
@media (min-width: 1200px) {
  .specialists__list {
    margin-top: 67px;
    padding: 0 10px;
    width: 1160px;
    gap: 0 60px;
  }
}

.specialists__item {
  display: block;
  cursor: auto;
  width: 43vw;
}
@media (min-width: 768px) {
  .specialists__item {
    width: 27vw;
  }
}
@media (min-width: 1200px) {
  .specialists__item {
    width: 240px;
    margin-bottom: 50px;
  }
}

.specialists__shell-img {
  width: 44vw;
  height: 44vw;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: block;
}
@media (min-width: 768px) {
  .specialists__shell-img {
    width: 27vw;
    height: 27vw;
  }
}
@media (min-width: 1200px) {
  .specialists__shell-img {
    width: 240px;
    height: 240px;
  }
}

.specialists__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 10px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 768px) {
  .specialists__img {
    width: 100%;
    height: 100%;
  }
}
.specialists__img:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media (min-width: 1200px) {
  .specialists__img {
    width: 100%;
    height: 100%;
  }
}

.specialists__name {
  color: var(--blue-heading);
  font-size: 19px;
  line-height: 130%;
  text-align: center;
  margin-top: 15px;
  display: block;
}
@media (min-width: 768px) {
  .specialists__name {
    margin-bottom: 6px;
  }
}
@media (min-width: 1200px) {
  .specialists__name {
    font-size: 21px;
    margin-top: 22px;
    margin-bottom: 0;
  }
}

.specialists__position,
.specialists__experience {
  display: none;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-text);
}
@media (min-width: 768px) {
  .specialists__position,
.specialists__experience {
    display: block;
  }
}

@media (min-width: 1200px) {
  .specialists__position {
    width: 226px;
    margin: 3px auto 1px;
  }
}

@media (min-width: 1200px) {
  .specialists__experience {
    margin-bottom: -3px;
  }
}

.good-news {
  background-color: var(--bg-grey-light);
  margin-top: 110px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .good-news {
    margin-top: 70px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .good-news {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

.good-news__wrapper {
  padding: 40px 10px 50px;
}
@media (min-width: 768px) {
  .good-news__wrapper {
    padding: 50px 20px 60px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .good-news__wrapper {
    padding: 70px 20px 80px;
    width: 1200px;
  }
}

.good-news__m-title {
  text-align: center;
  color: var(--blue-heading);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (min-width: 768px) {
  .good-news__m-title {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .good-news__m-title {
    margin-bottom: 49px;
  }
}

.good-news__link {
  padding: 25px 20px;
  border-bottom: 1px solid var(--button-grey);
}
@media (min-width: 768px) {
  .good-news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 0;
  }
}
@media (min-width: 1200px) {
  .good-news__link {
    padding: 19px 0;
    height: 81px;
    width: 1160px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .good-news__link:hover .good-news__date {
    -webkit-transform: translateX(3px);
        -ms-transform: translateX(3px);
            transform: translateX(3px);
  }
  .good-news__link:hover .good-news__title {
    -webkit-transform: translateX(3px);
        -ms-transform: translateX(3px);
            transform: translateX(3px);
    color: var(--blue-text);
  }
}
@media (max-width: 767px) {
  .good-news__link {
    padding: 25px 0;
    display: block;
  }
}

.good-news__date {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .good-news__date {
    width: 90px;
    margin-bottom: 0;
    margin-right: 30px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
}

@media (max-width: 768px) {
  .good-news__item {
    padding: 0 20px;
  }
}

.good-news__title {
  color: var(--blue-heading);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 15px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .good-news__title {
    width: 448px;
    margin-bottom: 0;
    margin-right: 60px;
  }
}
@media (min-width: 1200px) {
  .good-news__title {
    width: 540px;
    margin-right: 400px;
  }
}
@media (max-width: 767px) {
  .good-news__title {
    margin-top: 10px;
  }
}

.good-news__button {
  color: var(--gray-text);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  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;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  cursor: pointer;
}
.good-news__button:hover {
  color: var(--hover-grey);
}
.good-news__button:hover .decor-media-news {
  fill: var(--hover-grey);
}

.faq {
  margin-top: 74px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .faq {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 40px;
  }
}

.faq__wrapper {
  padding: 0 10px 0;
}
@media (min-width: 768px) {
  .faq__wrapper {
    padding: 0 20px 0px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .faq__wrapper {
    padding: 0 20px 0;
    width: 1200px;
  }
}

.faq__title {
  color: var(--blue-heading);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (min-width: 768px) {
  .faq__title {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .faq__title {
    margin: 0 auto 67px;
    width: 760px;
  }
}

@media (min-width: 768px) {
  .faq__mobile-list {
    display: none;
  }
}

.faq__tablet-desktop {
  display: none;
}
@media (min-width: 768px) {
  .faq__tablet-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .faq__tablet-desktop {
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.accordion__item {
  padding: 18px 20px;
  border: 1px solid var(--bor-grey);
  margin-bottom: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .accordion__item {
    width: 46vw;
  }
}
@media (min-width: 1200px) {
  .accordion__item {
    width: 560px;
    padding: 18px 29px;
    margin-bottom: 21px;
  }
}

.accordion__trigger {
  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;
  cursor: pointer;
}

.accordion__trigger-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  width: 75vw;
  color: var(--blue-heading);
  min-height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .accordion__trigger-title {
    width: 37vw;
  }
}
@media (min-width: 1200px) {
  .accordion__trigger-title {
    width: 400px;
  }
}

.accordion__content {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s ease height;
  -o-transition: 0.4s ease height;
  transition: 0.4s ease height;
  cursor: auto;
  position: relative;
  top: 15px;
}

.accordion__content-subtitle {
  display: block;
  font-size: 15px;
  line-height: 150%;
  color: var(--gray-text);
  margin-top: 0px;
}

.accordion__item--active-js {
  background-color: var(--bg-grey-light);
  border: 1px solid transparent;
}
.accordion__item--active-js .accordion__content-subtitle {
  display: block;
}
.accordion__item--active-js .accordion__img {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.feedback__m-wrapper {
  background-color: var(--bg-grey-light);
}
.feedback__wrapper {
  padding: 60px 10px 70px;
}
@media (min-width: 768px) {
  .feedback__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 768px;
    margin: 0 auto;
    padding: 70px 20px 80px;
  }
}
@media (min-width: 1200px) {
  .feedback__wrapper {
    padding: 49px 20px 0;
    width: 1200px;
  }
}

.feedback__title {
  color: var(--blue-heading);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (min-width: 768px) {
  .feedback__title {
    text-align: start;
    width: 374px;
    font-weight: normal;
    font-size: 23px;
  }
}
@media (min-width: 1200px) {
  .feedback__title {
    font-size: 34px;
    margin-top: 5px;
    margin-bottom: 29px;
    width: 560px;
  }
}

.feedback__subtitle {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-text);
}
@media (min-width: 768px) {
  .feedback__subtitle {
    text-align: start;
    width: 374px;
  }
}
@media (min-width: 1200px) {
  .feedback__subtitle {
    width: 500px;
  }
}

.feedback__attention {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-top: 25px;
  color: var(--gray-text);
}
@media (min-width: 768px) {
  .feedback__attention {
    text-align: start;
    width: 354px;
  }
}
@media (min-width: 1200px) {
  .feedback__attention {
    margin-top: 30px;
    width: 556px;
  }
}

.feedback__span {
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--gray-text);
  color: inherit;
}
.feedback__span:hover {
  border: none;
  cursor: pointer;
}

.feedback__block-person {
  display: none;
}
@media (min-width: 768px) {
  .feedback__block-person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: -110px;
  }
}
@media (min-width: 1200px) {
  .feedback__block-person {
    margin-top: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.feedback__img {
  display: block;
  margin: 40px auto 15px;
}
@media (min-width: 768px) {
  .feedback__img {
    margin: 0;
    margin-bottom: -81px;
    width: 354px;
    height: 514px;
  }
}
@media (min-width: 1200px) {
  .feedback__img {
    width: 360px;
    height: 527px;
    margin: 0 0 0 39px;
  }
}

.feedback__name {
  font-size: 18px;
  line-height: 150%;
  color: var(--blue-heading);
  text-align: center;
  margin-bottom: 5px;
  display: none;
}
@media (min-width: 768px) {
  .feedback__name {
    margin: 15px auto 5px;
  }
}
@media (min-width: 1200px) {
  .feedback__name {
    display: block;
    text-align: right;
    margin: 0 0 5px 0px;
  }
  .feedback__name--service {
    margin: 0 0 5px 0px;
  }
}

.feedback__position {
  display: none;
  font-size: 15px;
  line-height: 150%;
  color: var(--gray-text);
  text-align: right;
}
@media (min-width: 768px) {
  .feedback__position {
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .feedback__position {
    display: block;
    margin: 0 0 40px 0px;
    text-align: end;
  }
}

.commit {
  margin-top: 100px;
  margin-bottom: 110px;
}
@media screen and (max-width: 1199px) {
  .commit {
    margin-top: 60px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .commit {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

.slider--commit {
  overflow: hidden;
}

.slider__navigation--commit {
  top: 0;
}

.slider__pagination--commit {
  top: 434px;
}

.slider__navigation--commit {
  position: relative;
  margin: 50px auto 0;
  width: 160px;
  z-index: 1;
  top: -2px;
}

.commit__wrapper {
  padding: 0 0 0;
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .commit__wrapper {
    padding: 0 20px 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .commit__wrapper {
    padding: 0 10px 0;
  }
}

.commit__title {
  color: var(--blue-heading);
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  width: 768px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .commit__title {
    width: 354px;
  }
}
@media screen and (max-width: 767px) {
  .commit__title {
    width: 100%;
  }
}

.commit__shell-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 67px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 1199px) {
  .commit__shell-up {
    margin-top: 52px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .commit__shell-up {
    margin-right: 0;
  }
}

.commit__shell-down {
  margin-top: 25px;
}
.commit__shell {
  padding: 0 20px;
  width: 300px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.commit__shell:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (max-width: 1199px) {
  .commit__shell {
    width: 100%;
    padding: 0px;
  }
}
@media screen and (max-width: 767px) {
  .commit__shell {
    height: auto;
  }
}

.commit__rating-img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .commit__rating-img {
    top: 10px;
    left: 51px;
    position: static;
  }
}

.commit__rating-number, .commit__total {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}

.commit__rating-number {
  position: absolute;
  top: 20px;
  left: 54px;
}
@media screen and (max-width: 767px) {
  .commit__rating-number {
    top: 2px;
    left: 6px;
    position: relative;
  }
}

.commit__total {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .commit__total {
    top: 114px;
    left: 23px;
    position: static;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-bottom: 2px dashed #2f3a55;
  }
}

.commit__img {
  width: 300px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .commit__img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .commit__img {
    width: 100%;
    height: auto;
  }
}

.commit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .commit__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 767px) {
  .commit__list {
    gap: 10px;
  }
}

.commit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .commit__item {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .commit__item {
    width: calc(50% - 5px);
    margin-bottom: 0px;
  }
}

.rating-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.commit__platform {
  width: 260px;
  height: 260px;
  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;
  border: 1px solid var(--bor-grey);
  position: relative;
}
@media screen and (max-width: 1199px) {
  .commit__platform {
    width: 46vw;
    height: 186px;
  }
}
@media screen and (max-width: 767px) {
  .commit__platform {
    width: 100%;
    height: 46vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5%;
  }
}

@media screen and (max-width: 767px) {
  .commit__platform-img--yandex {
    width: 38%;
    height: initial;
  }
  .commit__platform-img--yell {
    width: 38%;
    height: initial;
  }
  .commit__platform-img--zoon {
    width: 38%;
    height: initial;
  }
  .commit__platform-img--google {
    width: 38%;
    height: initial;
  }
}

.commit__link {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.commit__link .decor-media-news {
  -webkit-transition: fill 0.4s ease;
  -o-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}
@media screen and (max-width: 767px) {
  .commit__link {
    display: none;
  }
}
.commit__link:hover {
  color: var(--hover-grey);
}
.commit__link:hover .decor-media-news {
  fill: var(--hover-grey);
}

.commit__toggle {
  display: none;
}

.commit__toggle--active {
  display: block;
}

.commit__platform-img svg {
  width: 100%;
}

.commit__item:hover #ya2 {
  fill: #FC3F1D;
}
.commit__item:hover #ya1 {
  fill: #1D1D1D;
}
.commit__item:hover #y3 {
  fill: #ED484A;
}
.commit__item:hover #g6 {
  fill: #4285F4;
}
.commit__item:hover #g1 {
  fill: #EA4335;
}
.commit__item:hover #g2 {
  fill: #FBBC05;
}
.commit__item:hover #g3 {
  fill: #4285F4;
}
.commit__item:hover #g4 {
  fill: #34A853;
}
.commit__item:hover #g5 {
  fill: #EA4335;
}
.commit__item:hover stop:first-child {
  stop-color: #6339F5;
}
.commit__item:hover stop:last-child {
  stop-color: #3D3F55;
}

stop {
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.commit-svg {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.form {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .form {
    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;
    -ms-flex-line-pack: justify;
        align-content: space-between;
    width: 354px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .form {
    width: 560px;
    height: 140px;
    margin-top: 30px;
  }
}

.form__shell {
  position: relative;
}

.form__shell--mask-phone:before {
  content: "+7 ";
  position: absolute;
  left: 21px;
  top: 29px;
  z-index: 9999999;
  display: block;
  color: #8f8f8f;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  display: none;
  z-index: 1;
}

@media (max-width: 1199px) {
  .form__shell--popup:before {
    top: 19px;
  }
}

.form__shell--sidebar:before {
  top: 12px;
  font-size: 15px;
  color: var(--lite-gray);
}
@media (max-width: 1199px) {
  .form__shell--sidebar:before {
    color: var(--gray-text);
  }
}

.set-cursor:before {
  display: block;
}

.form__desc {
  position: absolute;
  top: 21px;
  left: 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
.form__desc--sidebar {
  top: 11px;
  color: #8992A7;
}

@media (max-width: 1199px) {
  .pop-up__shell .form__desc {
    top: 11px;
  }
}

.form__data {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
  padding: 19px 20px 0px 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  border: 1px solid transparent;
}
.form__data::-webkit-input-placeholder {
  visibility: hidden;
}
.form__data::-moz-placeholder {
  visibility: hidden;
}
.form__data:-ms-input-placeholder {
  visibility: hidden;
}
.form__data::-ms-input-placeholder {
  visibility: hidden;
}
.form__data::placeholder {
  visibility: hidden;
}
.form__data:focus {
  border: 1px solid #C6CDDA;
  outline: 0;
}
.form__data:focus::-webkit-input-placeholder {
  visibility: visible;
}
.form__data:focus::-moz-placeholder {
  visibility: visible;
}
.form__data:focus:-ms-input-placeholder {
  visibility: visible;
}
.form__data:focus::-ms-input-placeholder {
  visibility: visible;
}
.form__data:focus::placeholder {
  visibility: visible;
}
.form__data:focus ~ .form__desc {
  font-size: 13px;
  top: 7px;
}
@media (max-width: 1199px) {
  .form__data:focus ~ .form__desc {
    top: 2px;
  }
}
.form__data--not-empty ~ .form__desc {
  font-size: 13px;
  top: 7px;
}
@media (max-width: 1199px) {
  .form__data--not-empty ~ .form__desc {
    top: 2px;
  }
}
@media (min-width: 768px) {
  .form__data {
    width: 354px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .form__data {
    width: 270px;
  }
}
.form__data--popup {
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .form__data--popup {
    height: 40px;
  }
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form__button {
  color: white;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  display: block;
  margin: 20 auto 0;
  width: 100%;
  height: 60px;
  background-color: #B0865F;
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.form__button:hover {
  background-color: var(--hover-button);
}
@media (min-width: 768px) {
  .form__button {
    width: 354px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .form__button {
    width: 270px;
  }
}

.form__data--hidden {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-transform: translateY(-1000000px);
      -ms-transform: translateY(-1000000px);
          transform: translateY(-1000000px);
}

.mask-phone {
  padding-left: 40px;
}

@media (min-width: 768px) {
  .form__data--new-form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form__data--new-form {
    margin-bottom: 10px;
  }
}

.slider {
  position: relative;
}
.slider--penalties {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .slider--history {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 4;
    margin-top: 72px;
  }
  .slider--history:after {
    content: "";
    left: 96%;
    background: #18233a;
    width: 400px;
    height: 85px;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .slider--history:before {
    content: "";
    right: 96%;
    background: #18233a;
    width: 400px;
    height: 85px;
    position: absolute;
    top: 0;
    z-index: 2;
  }
}

@media (max-width: 1199px) {
  .slider--history-section {
    margin-top: 40px;
  }
}

.slider__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-width: 0;
  padding: 0;
  position: relative;
}
@media (min-width: 1200px) {
  .slider__list {
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .slider__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.cases__wrapper-list {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.slider__item--cases {
  height: 378px;
  position: relative;
}
@media (min-width: 768px) {
  .slider__item--cases {
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .slider__item--cases {
    height: 442px;
  }
}
.slider__item--penalties {
  width: 360px;
  margin: 0;
}
.slider__item--commit {
  width: 300px;
}

.slider__pagination {
  width: auto;
  height: 8px;
  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;
  margin: 40px auto 0;
}
.slider__pagination--commit {
  margin: 9px auto 0;
}
.slider__pagination--penalties {
  margin: 30px auto 0;
}
.slider__pagination--cases {
  color: var(--white);
}
@media (min-width: 1200px) {
  .slider__pagination {
    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;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 200px;
    height: 40px;
  }
  .slider__pagination--cases {
    top: calc(509px - 110px);
  }
  .slider__pagination--penalties {
    top: 345px;
  }
  .slider__pagination--commit {
    top: 467px;
  }
}
@media (max-width: 1199px) {
  .slider__pagination--cases {
    margin: 0px auto 0;
  }
}

.slider__circle {
  width: 8px;
  height: 8px;
  background-color: var(--bg-grey);
  border-radius: 50px;
}
@media (min-width: 1200px) {
  .slider__circle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
}

.slider__circle {
  width: 8px;
  height: 8px;
  background-color: var(--bg-grey);
  border-radius: 50px;
}
.slider__circle + .slider__circle {
  margin-left: 10px;
}
.slider__circle--small {
  width: 4px;
  height: 4px;
}
.slider__circle--active {
  background-color: var(--bg-blue);
}

.slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1160px;
  position: absolute;
  top: 16px;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .slider__navigation {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
}
.slider__navigation--all {
  width: 160px;
  top: 530px;
  left: 501px;
  z-index: 1;
}
.slider__navigation--normal {
  position: relative;
  margin: -40px auto 0;
  width: 160px;
  z-index: 1;
}
.slider__navigation--penalties {
  position: relative;
  margin: 40px auto 0;
  width: 160px;
  z-index: 1;
}
.slider__navigation--commit {
  position: relative;
  margin: 50px auto 0;
  width: 160px;
  z-index: 1;
  top: 0;
}
.slider__navigation--dark .swiper-button-prev,
.slider__navigation--dark .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #B0865F;
  position: relative;
}
.slider__navigation--dark .swiper-button-prev::after, .slider__navigation--dark .swiper-button-prev::before,
.slider__navigation--dark .swiper-button-next::after,
.slider__navigation--dark .swiper-button-next::before {
  position: absolute;
  width: 7px;
  height: 2px;
  content: " ";
  display: block;
  background-color: #B0865F;
  top: calc(50% - 2px);
}
.slider__navigation--dark .swiper-button-prev::before,
.slider__navigation--dark .swiper-button-next::before {
  left: 18px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slider__navigation--dark .swiper-button-prev::after,
.slider__navigation--dark .swiper-button-next::after {
  right: 18px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.slider__navigation--dark .swiper-button-prev:hover,
.slider__navigation--dark .swiper-button-next:hover {
  border-color: transparent;
  background-color: rgba(176, 134, 95, 0.2);
}
.slider__navigation--dark .swiper-button-prev:hover::after, .slider__navigation--dark .swiper-button-prev:hover::before,
.slider__navigation--dark .swiper-button-next:hover::after,
.slider__navigation--dark .swiper-button-next:hover::before {
  background-color: #B0865F;
  width: 8px;
  height: 2px;
}
.slider__navigation .swiper-button-disabled {
  opacity: 0.5;
  border-color: #8992A7;
  cursor: auto;
}
.slider__navigation .swiper-button-disabled::after, .slider__navigation .swiper-button-disabled::before {
  background-color: #8992A7;
}
.slider__navigation .swiper-button-disabled:hover {
  border: 1px solid #8992A7;
  background-color: transparent;
}
.slider__navigation .swiper-button-disabled:hover::after, .slider__navigation .swiper-button-disabled:hover::before {
  background-color: #8992A7;
  width: 7px;
  height: 2px;
}

.swiper-button-prev,
.swiper-button-next {
  pointer-events: all;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bor-grey);
  position: relative;
  -webkit-transition: background-color 0.4s, border 0.4s;
  -o-transition: background-color 0.4s, border 0.4s;
  transition: background-color 0.4s, border 0.4s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  -webkit-transition: background-color 0.4s, border 0.4s;
  -o-transition: background-color 0.4s, border 0.4s;
  transition: background-color 0.4s, border 0.4s;
  border: none;
  background-color: #c6cdda;
}
.swiper-button-prev:hover::after, .swiper-button-prev:hover::before,
.swiper-button-next:hover::after,
.swiper-button-next:hover::before {
  background-color: var(--hover-grey);
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.swiper-button-prev--history:hover,
.swiper-button-next--history:hover {
  background-color: #b0865f;
  border: none;
  -webkit-transition: background-color 0.4s, border 0.4s;
  -o-transition: background-color 0.4s, border 0.4s;
  transition: background-color 0.4s, border 0.4s;
}
.swiper-button-prev--history:hover::after, .swiper-button-prev--history:hover::before,
.swiper-button-next--history:hover::after,
.swiper-button-next--history:hover::before {
  background-color: var(--gold-light);
  -webkit-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.swiper-button-prev::after, .swiper-button-prev::before,
.swiper-button-next::after,
.swiper-button-next::before {
  position: absolute;
  width: 7px;
  height: 2px;
  content: " ";
  display: block;
  background-color: var(--bor-grey);
  top: 50%;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  left: 18px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  right: 18px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swiper-button-prev {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.swiper-button-next {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.swiper-button-prev,
.swiper-button-next {
  border: 1px solid var(--blue-text);
}
.swiper-button-prev::after, .swiper-button-prev::before,
.swiper-button-next::after,
.swiper-button-next::before {
  background-color: var(--blue-text);
}

.swiper-pagination-fraction {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
}

.history .slider__item {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease 0.1s;
  -o-transition: opacity 0.2s ease 0.1s;
  transition: opacity 0.2s ease 0.1s;
}

.history .swiper-slide-prev {
  opacity: 0;
  -webkit-transition: opacity 0.1s eases;
  -o-transition: opacity 0.1s eases;
  transition: opacity 0.1s eases;
}

.history .slider__item-next-el {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.1s eases;
  -o-transition: opacity 0.1s eases;
  transition: opacity 0.1s eases;
}

.doc-slider {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .doc-slider {
    margin-bottom: 40px;
  }
}

.cases .cases__wrapper .swiper-button-prev,
.cases .cases__wrapper .swiper-button-next {
  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;
}
.cases .cases__wrapper .swiper-button-prev::before, .cases .cases__wrapper .swiper-button-prev::after,
.cases .cases__wrapper .swiper-button-next::before,
.cases .cases__wrapper .swiper-button-next::after {
  display: none;
}
.cases .cases__wrapper .swiper-button-prev svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.cases .cases__wrapper .swiper-button-next svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.service-cost__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1099px) {
  .service-cost__wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.service-cost__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1145px) {
  .service-cost__list {
    -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;
    gap: 20px;
  }
}
.service-cost__item {
  max-width: 430px;
  width: 100%;
}

.service-cost-item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
  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;
  font-family: "Lato", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1145px) {
  .service-cost-item--shadow {
    -webkit-box-shadow: 0 5px 20px rgba(24, 35, 58, 0.14);
            box-shadow: 0 5px 20px rgba(24, 35, 58, 0.14);
    z-index: 1;
  }
}
.service-cost-item__head {
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  margin: 25px 0;
  color: var(--gold-light);
  min-height: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-cost-item__price {
  width: 100%;
  height: 110px;
  background: #F9F9FE;
  color: var(--blue-heading);
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  padding: 25px 0;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
.service-cost-item__price-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 4px;
  color: #5B5B5B;
}
.service-cost-item__benefits {
  width: 100%;
}

.service-cost-item-benefits {
  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;
  gap: 19px;
}
.service-cost-item-benefits__item {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.service-cost-item-benefits__item:first-child {
  padding-top: 19px;
}
.service-cost-item-benefits__item:last-child {
  padding-bottom: 22px;
}
.service-cost-item-benefits__item--border {
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.service-cost-item-benefits__text {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.service-cost-item-benefits__text--blue {
  font-weight: 700;
  font-size: 16px;
  color: #283F75;
}

.section-services__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 39px;
}
@media screen and (max-width: 1199px) {
  .section-services__wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .section-services__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.section-services_title {
  background: #18233A;
  font-size: 34px;
  color: white;
  min-height: 66px;
  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;
}
@media screen and (max-width: 1199px) {
  .section-services_title {
    font-size: 22px;
    line-height: 130%;
  }
}
@media screen and (max-width: 767px) {
  .section-services_title {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    min-height: 44px;
  }
}

.section-services_list {
  padding: 30px;
  background: #F9F9FE;
}
@media screen and (max-width: 1199px) {
  .section-services_list {
    padding: 20px;
  }
}
.section-services_item-p {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-services_item {
  margin-top: 30px;
  padding-left: 91px;
  list-style: initial !important;
}
@media screen and (max-width: 1199px) {
  .section-services_item {
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-services_item {
    margin-bottom: 15px;
  }
}

.section-services_block {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section-services_block {
    max-width: 400px;
    width: 100%;
  }
}

.section-services_link {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  text-decoration: underline;
  position: relative;
  text-align: left;
}
.section-services_link:hover {
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .section-services_link {
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}
@media screen and (max-width: 767px) {
  .section-services_link {
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
  }
}

.section-services_item-span {
  border-bottom: 1px solid #283f7500;
}
.section-services_item-span:hover {
  border-bottom: 1px solid #283f75;
}
@media screen and (max-width: 1199px) {
  .section-services_item-span {
    font-weight: 400;
    font-size: 18px;
    line-height: 112%;
  }
}
@media screen and (max-width: 767px) {
  .section-services_item-span {
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
  }
}

@media screen and (max-width: 1199px) {
  .section-services_item-span:hover {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .section-services_item-span:hover {
    border-bottom: none;
  }
}

.section-services_link:after {
  content: "";
  position: absolute;
  right: calc(100% + 10px);
  width: 5px;
  height: 5px;
  background: #5B5B5B;
  top: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .section-services_link:after {
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .section-services_link:after {
    top: 6px;
  }
}

.section-services_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: initial;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) {
  .section-services_li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .section-services_li {
    margin-bottom: 5px;
  }
}

.section-services_item-p img {
  width: 32px;
  margin-right: 15px;
}
.section-services_item-main {
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .section-services_item-main {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .section-services_item-main {
    margin-bottom: 20px;
  }
}

.section-services {
  margin-bottom: 110px;
}
@media screen and (max-width: 1199px) {
  .section-services {
    margin-bottom: 60px;
  }
}
.section-services_title-link {
  color: white;
}

.reviews-bfl {
  margin: 100px 0;
  margin-bottom: 140px;
}
@media (max-width: 1199px) {
  .reviews-bfl {
    margin: 70px 0;
    margin-bottom: 110px;
  }
}
@media (max-width: 767px) {
  .reviews-bfl {
    margin: 50px 0;
    margin-bottom: 80px;
  }
}
.reviews-bfl__slide-inner {
  padding: 21px 20px 30px 24px;
}
.reviews-bfl__title {
  color: var(--blue-heading);
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  width: 768px;
  margin: 0 auto 38px;
}
@media screen and (max-width: 1199px) {
  .reviews-bfl__title {
    width: 100%;
    font-size: 24px;
  }
}
.reviews-bfl__more-link {
  color: var(--gray-text);
  font-size: 13px;
  line-height: 150%;
}
.reviews-bfl__toggle {
  margin: 38px auto 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .reviews-bfl__toggle {
    gap: 40px;
  }
}
.reviews-bfl__buttons {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 767px) {
  .reviews-bfl__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.reviews-bfl__controls {
  max-width: 160px;
  width: 100%;
  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;
  justify-self: center;
  grid-column: 6/3 span;
}
@media screen and (max-width: 767px) {
  .reviews-bfl__controls {
    max-width: 128px;
    grid-column: auto;
  }
}
.reviews-bfl__open-button {
  grid-column: -1;
}

.reviews-bfl__slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.toggle__button--bfl {
  cursor: pointer;
}

.toggle__button--bfl.toggle__button--active {
  cursor: auto;
}

.reviews-bfl__slider-swiper {
  width: 100%;
  overflow: hidden;
}

.reviews-bfl__slide {
  background: #F9F9FE;
  min-width: calc(33% - 30px);
}
@media (max-width: 1199px) {
  .reviews-bfl__slide {
    min-width: calc(33% - 11px);
  }
}
@media (max-width: 782px) {
  .reviews-bfl__slide {
    min-width: 100%;
    width: 100%;
  }
}
.reviews-bfl__slide-top-info {
  margin-bottom: 18px;
}
.reviews-bfl__slide-date {
  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;
  margin-bottom: 24px;
}
.reviews-bfl__slide-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
}
.reviews-bfl__slide-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
.reviews-bfl__slide-quote-img {
  width: 32px;
  height: 26px;
}
.reviews-bfl__slide-quote-date {
  color: #9595C7;
  font-size: 13px;
  line-height: 150%;
  /* or 20px */
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
.reviews-bfl__slide-quote-date::before {
  content: " ";
  background-image: url(/images/icon/quote.svg);
  background-size: cover;
  display: inline-block;
  vertical-align: sub;
  width: 33px;
  height: 26px;
  margin-right: 15px;
}
.reviews-bfl__slide-score-value {
  font-size: 15px;
  line-height: 150%;
  /* identical to box height, or 22px */
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  /* Gray text */
  color: var(--gray-text);
}
.reviews-bfl__slide-score-value::before {
  content: " ";
  background-image: url(/images/icon/star.svg);
  background-size: cover;
  display: inline-block;
  vertical-align: sub;
  width: 24px;
  height: 23.25px;
  margin-right: 10px;
}

.reviews-bfl__more-link {
  position: absolute;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reviews-bfl__more-link {
    bottom: 23px;
  }
}

.reviews-bfl__slide-text-feedback {
  padding-bottom: 33px;
}

.banner__wrapper {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 760px;
  width: 100%;
  min-height: 171px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("/images/banner-dark.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .banner__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.banner__imgs-wrap {
  width: 290px;
}
@media (max-width: 767px) {
  .banner__imgs-wrap {
    width: 100%;
    height: 160px;
  }
}
.banner__img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner__img img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .banner__img {
    top: -35px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    width: 235px;
  }
}
.banner__imgs-wrap, .banner__text-wrap {
  z-index: 1;
}
.banner__text-wrap {
  width: 100%;
  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;
  text-align: center;
}
.banner__title {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  /* or 27px */
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  /* White */
  color: #FFFFFF;
  margin-bottom: 5px;
}
.banner__text {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  /* identical to box height, or 24px */
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  /* Outline */
  color: #C6CDDA;
  margin-bottom: 22px;
}
.banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  background: var(--bor-gold);
  max-width: 270px;
  width: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.banner__link:hover {
  background-color: var(--hover-button);
}
.banner--light .banner__wrapper {
  background: white;
  max-width: 1160px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  position: static;
}
.banner--light .banner__imgs-wrap {
  width: 100%;
  max-width: 411px;
}
.banner--light .banner__imgs-wrap--mobile {
  display: none;
}
@media (max-width: 1199px) {
  .banner--light .banner__imgs-wrap {
    max-width: 230px;
  }
}
@media (max-width: 767px) {
  .banner--light .banner__imgs-wrap {
    display: none;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .banner--light .banner__imgs-wrap--mobile {
    display: block;
  }
}
.banner--light .banner__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .banner--light .banner__link-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.banner--light .banner__img {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
@media (max-width: 767px) {
  .banner--light .banner__img {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 140px;
    width: auto;
  }
}
.banner--light .banner__text-wrap {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 665px;
  width: auto;
}
@media (max-width: 1199px) {
  .banner--light .banner__text-wrap {
    max-width: 420px;
  }
}
.banner--light .banner__text {
  font-size: 27px;
  color: #283F75;
}
@media (max-width: 1199px) {
  .banner--light .banner__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .banner--light .banner__text {
    text-align: center;
  }
}

.preview__wrapper.pb0 {
  padding-bottom: 0;
}

.mass-media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--button-grey);
  position: relative;
}
@media (max-width: 992px) {
  .mass-media__item {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .mass-media__item {
    -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;
    padding: 15px 0;
  }
}
.mass-media__item:last-child {
  border-bottom: 1px solid var(--button-grey);
}
.mass-media__img {
  width: 260px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: var(--bg-grey-light);
}
@media (max-width: 992px) {
  .mass-media__img {
    width: 167px;
    height: 110px;
  }
}
@media (max-width: 767px) {
  .mass-media__img {
    width: 120px;
    height: 50px;
    padding: 5px;
  }
}
.mass-media__img img {
  max-width: 100%;
  max-height: 100%;
}
.mass-media__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.mass-media__text h3 {
  font-size: 21px;
  line-height: 130%;
  color: var(--blue-heading);
}
@media (max-width: 992px) {
  .mass-media__text h3 {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .mass-media__text h3 {
    margin-top: 20px;
    font-size: 15px;
  }
}
.mass-media__date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: var(--gray-text);
  white-space: nowrap;
  border-radius: 100px;
  background-color: var(--bg-grey-light);
  padding: 6px 12px;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .mass-media__date {
    position: absolute;
    right: 10px;
    top: 22px;
    background: none;
    font-size: 15px;
  }
}

a.read {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  color: var(--gray-text);
}
a.read::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../images/icon/arrow-grey.svg");
  background-position: 50%;
  background-size: 100%;
  margin-left: 10px;
}
@media (max-width: 767px) {
  a.read {
    margin-top: 15px;
  }
}

.loadmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .loadmore {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .loadmore {
    margin-bottom: 50px;
  }
}
.loadmore__btn {
  color: var(--gray-text);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: 270px;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--bor-grey);
  cursor: pointer;
}
@media (max-width: 992px) {
  .loadmore {
    margin-top: 40px;
  }
}

.mass-media + .specialists {
  margin-top: 110px;
}
@media (max-width: 992px) {
  .mass-media + .specialists {
    margin-top: 70px;
  }
}

.specialists-bg {
  background-color: var(--bg-grey-light);
}

.portfolio .benefits__subtitle {
  margin-top: 30px;
}

section.line {
  height: 1px;
  background-color: var(--bor-grey);
}

section.line + .feedback {
  margin-top: 100px;
}

.media-page {
  margin-top: 40px;
  overflow: hidden;
}
.media-page__document-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.media-page__download-pdf {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #18233a;
}
.media-page__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media-page__wrapper {
  margin: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .media-page__wrapper {
    margin: 0 0 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .media-page__wrapper {
    margin: 0 0 0px;
  }
}
.media-page__content {
  width: 660px;
}
@media (max-width: 1199px) {
  .media-page__content {
    width: 100%;
    margin-bottom: 70px;
  }
}
.media-page__content h2 {
  color: var(--blue-heading);
}
.media-page__content ol, .media-page__content ul {
  padding-left: 33px;
  list-style: auto;
  margin: 10px;
}
.media-page__content p, .media-page__content ul, .media-page__content ol {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
}
@media screen and (max-width: 1199px) {
  .media-page__content p, .media-page__content ul, .media-page__content ol {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .media-page__content p, .media-page__content ul, .media-page__content ol {
    font-size: 15px;
  }
}
.media-page__title {
  font-size: 46px;
  line-height: 130%;
  color: var(--blue-heading);
  margin: 0 0 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .media-page__title {
    text-align: center;
    font-size: 24px;
  }
}
.media-page__nav {
  width: 360px;
}
@media (max-width: 1199px) {
  .media-page__nav {
    width: 100%;
    margin-top: 0px;
    margin-left: -20px;
    width: calc(100% + 40px);
    margin-right: -20px;
  }
}
@media (max-width: 1199px) {
  .media-page__nav {
    margin-right: -10px;
    overflow: hidden;
  }
}
.media-page__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .media-page__author {
    margin-bottom: 15px;
  }
}
.media-page__author-photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .media-page__author-photo {
    margin-right: 10px;
  }
}
.media-page__author-photo img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  -o-object-position: top;
     object-position: top;
}
.media-page__author-name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  color: var(--gray-text);
  white-space: nowrap;
  border-radius: 100px;
  background-color: var(--bg-grey-light);
  padding: 6px 10px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .media-page__author-name {
    font-size: 15px;
  }
}
.media-page__from {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .media-page__from .media-page__author-name {
    display: none;
  }
  .media-page__from .media-page__from-date {
    margin-left: 0;
  }
}
.media-page__from-date {
  font-size: 16px;
  color: var(--gray-text);
}
.media-page__desc {
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid var(--button-grey);
  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;
}
@media (max-width: 1199px) {
  .media-page__desc {
    margin-top: 40px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .media-page__desc {
    margin-top: 30px;
    padding-top: 15px;
  }
}
.media-page__logo img {
  max-width: 250px;
}
@media (max-width: 767px) {
  .media-page__logo img {
    width: 130px;
  }
}
.media-page__quote {
  padding-left: 100px;
  position: relative;
  margin-top: 47px;
}
@media screen and (max-width: 1199px) {
  .media-page__quote {
    margin-top: 40px;
  }
}
.media-page__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 60px;
  height: 60px;
  background-image: url("../images/icon/quote_white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .media-page__quote::before {
    width: 35px;
    height: 39px;
  }
}
@media (max-width: 767px) {
  .media-page__quote {
    padding-left: 50px;
    margin-top: 20px;
  }
}
.media-page__quote p + p {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .media-page__quote p + p {
    margin-top: 14px;
  }
}
.media-page__quote-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .media-page__quote-bottom {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .media-page__quote-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .media-page__quote-bottom .open__button {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 0;
  }
}
@media (max-width: 490px) {
  .media-page__quote-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .media-page__quote-bottom .open__button {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: 30px;
  }
}
.media-page__quote-img {
  width: 260px;
  border: 1px solid var(--bor-grey);
  position: relative;
}
.media-page__quote-img::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 100%;
  z-index: 2;
  background-color: rgba(47, 58, 85, 0.6);
  background-image: url("../images/icon/search_white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50%;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.media-page__quote-img:hover:before {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .media-page__quote-img {
    width: 200px;
  }
}
.media-page__quote-img img {
  width: 100%;
  height: auto;
}
.media-page .open__span::before,
.media-page .open__span::after {
  background-color: var(--gray-text);
}
.media-page__other-comments {
  margin-top: 110px;
  padding-top: 100px;
  border-top: 1px solid var(--bor-grey);
}
@media (max-width: 1199px) {
  .media-page__other-comments {
    margin-top: 70px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .media-page__other-comments {
    margin-top: 60px;
    padding-top: 50px;
  }
}
.media-page__other-title {
  font-size: 34px;
  line-height: 130%;
  color: var(--blue-heading);
  margin-bottom: 70px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
@media (max-width: 1199px) {
  .media-page__other-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 45px;
  }
}
.media-page__comment {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--bor-grey);
  position: relative;
}
@media (max-width: 1199px) {
  .media-page__comment {
    padding-bottom: 20px;
  }
}
.media-page__comment:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .media-page__comment:not(:last-child) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .media-page__comment {
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .media-page__comment:not(:last-child) {
    margin-bottom: 20px;
  }
  .media-page__comment .read {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .media-page__comment .media-page__from-date {
    position: absolute;
    left: 0;
    bottom: 20px;
    margin: 0;
  }
}
.media-page__comment-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.media-page__title-smi {
  margin: 25px 0 0;
  font-size: 21px;
  line-height: 130%;
  font-weight: 400;
  color: var(--blue-heading);
  display: block;
}
@media (max-width: 1199px) {
  .media-page__title-smi {
    font-size: 18px;
    margin-top: 18px;
    max-width: 605px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .media-page__title-smi {
    font-size: 15px;
    margin-top: 15px;
    padding-bottom: 17px;
  }
}
.media-page__bottom {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 992px) {
  .media-page__bottom {
    margin-top: 60px;
  }
}
.media-page__bottom-item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 100%;
  background-color: var(--bg-grey-light);
  position: relative;
  max-width: calc(50% - 10px);
}
.media-page__bottom-item--fix-width {
  max-width: 320px;
}
@media (max-width: 1199px) {
  .media-page__bottom-item {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .media-page__bottom-item {
    max-width: 100%;
  }
}
.media-page__bottom-item img {
  max-width: 135px;
  max-height: 90px;
  position: absolute;
  left: 20px;
  bottom: 0;
}
.media-page__nav-list {
  padding: 30px;
  background: #18233A;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .media-page__nav-list {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .media-page__nav-list {
    padding-top: 50px;
  }
}
.media-page__nav-list::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  right: 50px;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#18233A), to(rgba(24, 35, 58, 0.15)));
  background: -o-linear-gradient(bottom, #18233A 0%, rgba(24, 35, 58, 0.15) 100%);
  background: linear-gradient(360deg, #18233A 0%, rgba(24, 35, 58, 0.15) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.media-page__wrapper-list {
  max-height: 485px;
  overflow: auto;
  position: relative;
  padding-right: 30px;
  padding-top: 25px;
  scrollbar-color: rgba(176, 134, 95, 0.6) var(--bg-grey);
  scrollbar-width: thin;
}
.media-page__wrapper-list::-webkit-scrollbar-track {
  background-color: var(--bg-grey);
}
.media-page__wrapper-list::-webkit-scrollbar {
  width: 2px;
  background-color: var(--bg-grey);
}
.media-page__wrapper-list::-webkit-scrollbar-thumb {
  background-color: rgba(176, 134, 95, 0.6);
}
@media (max-width: 1199px) {
  .media-page__wrapper-list {
    max-height: 290px;
  }
}
@media (max-width: 767px) {
  .media-page__wrapper-list {
    max-height: 370px;
  }
}
.media-page__title-list {
  font-size: 21px;
  color: #fff;
  margin-bottom: 25px;
  margin-bottom: 0px;
}
.media-page__item-date {
  font-size: 15px;
  color: var(--blue-text);
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .media-page__item-date {
    margin-right: 20px;
    min-width: 87px;
    margin-bottom: 0;
  }
}
.media-page__item-title {
  color: var(--gold-light);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
}
@media (max-width: 767px) {
  .media-page__item-title {
    margin-top: 10px;
  }
}
.media-page__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1199px) {
  .media-page__item-list {
    -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;
  }
}
@media (max-width: 767px) {
  .media-page__item-list {
    -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;
  }
}
.media-page__item-list + .media-page__item-list {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-grey);
}
.media-page__item-list:last-child {
  padding-bottom: 30px;
}
.media-page__banner {
  margin: 50px 0 40px;
  padding: 30px;
  background-color: var(--bg-grey-light);
  position: relative;
  display: none;
}
.media-page__banner img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 130px;
  max-height: 90px;
  top: -20px;
}
.media-page__banner-title {
  font-size: 21px;
  line-height: 130%;
  color: var(--bor-gold);
  position: relative;
  z-index: 3;
}
.media-page__btn {
  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-color: var(--bor-gold);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  margin-top: 20px;
  border: none;
}
.media-page__item-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .media-page__item-user {
    position: relative;
    margin-bottom: 5px;
  }
}
.media-page__item-photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.media-page__item-photo img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.media-page__item-text {
  font-size: 15px;
  line-height: 120%;
  color: var(--gray-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.media-page__item-text span + span {
  margin-top: 5px;
}
.media-page__input {
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 20px;
  background-color: var(--bg-grey);
  border: none;
  font-size: 15px;
  padding-top: 6px;
  color: var(--lite-gray);
  border: 1px solid transparent;
}
.media-page__input::-moz-placeholder {
  color: var(--blue-text);
}
@media (max-width: 1199px) {
  .media-page__input::-moz-placeholder {
    color: var(--gray-text);
  }
}
.media-page__input::-webkit-input-placeholder {
  color: var(--blue-text);
}
@media (max-width: 1199px) {
  .media-page__input::-webkit-input-placeholder {
    color: var(--gray-text);
  }
}
@media (max-width: 1199px) {
  .media-page__input {
    background: white;
    color: var(--gray-text);
  }
}
@media (max-width: 767px) {
  .media-page__input {
    margin: 0;
  }
}
.media-page__form {
  padding: 30px;
  background: #18233A;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .media-page__form {
    background: #F9F9FE;
    padding-bottom: 70px;
    padding-top: 60px;
  }
}
.media-page__form input[type=submit] {
  margin-top: 0;
  width: 100%;
  cursor: pointer;
}
.media-page__form-title {
  font-size: 21px;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .media-page__form-title {
    color: #283F75;
    margin-bottom: 20px;
    text-align: center;
  }
}
.media-page__form-checkbox {
  margin-top: 15px;
  color: var(--blue-text);
  font-size: 13px;
  line-height: 150%;
}
@media (max-width: 1199px) {
  .media-page__form-checkbox {
    margin-top: 0;
    color: var(--blue-text);
    line-height: 150%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .media-page__form-checkbox {
    max-width: 240px;
    margin: 0 auto;
    margin-top: 10px;
  }
}
.media-page__form-checkbox a {
  color: var(--blue-text);
  border-bottom: 1px dashed var(--blue-text);
}

.media-page__nav-list--white:after {
  content: "";
  position: absolute;
  left: 100%;
  height: 100%;
  background: #18233a;
  width: 10px;
  top: 0;
}

.white {
  background-color: #fff;
  border: 1px solid var(--bor-grey);
}
@media (max-width: 1199px) {
  .white {
    border: none;
    padding-top: 30px;
  }
}
.white .media-page__title-list {
  color: var(--blue-heading);
}
.white::before {
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.white .media-page__item-list + .media-page__item-list {
  border-top: 1px solid var(--bor-grey);
}
.white .media-page__item-title {
  color: var(--blue-heading);
}
.white .media-page__wrapper-list {
  height: 417px;
  scrollbar-color: #B0865F var(--hover-grey);
  scrollbar-width: thin;
}
.white .media-page__wrapper-list::-webkit-scrollbar-track {
  background-color: var(--bor-grey);
  opacity: 0.4;
  position: relative;
  z-index: 9;
}
.white .media-page__wrapper-list::-webkit-scrollbar {
  background-color: #B0865F;
  opacity: 0.4;
  position: relative;
  z-index: 9;
}
.white .media-page__wrapper-list::-webkit-scrollbar-thumb {
  background-color: var(--hover-grey);
  position: relative;
  z-index: 9;
}

.media-page__title-list {
  position: relative;
}
.media-page__title-list:after {
  content: "";
  position: absolute;
  top: 100%;
  width: 98%;
  height: 17px;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#18233a), color-stop(50%, rgba(24, 35, 58, 0.47)), to(rgba(24, 35, 58, 0.13)));
  background: -o-linear-gradient(top, #18233a 0%, rgba(24, 35, 58, 0.47) 50%, rgba(24, 35, 58, 0.13) 100%);
  background: linear-gradient(180deg, #18233a 0%, rgba(24, 35, 58, 0.47) 50%, rgba(24, 35, 58, 0.13) 100%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .media-page__title-list:after {
    top: 157%;
  }
}
@media (max-width: 1199px) {
  .media-page__title-list {
    text-align: center;
    margin-bottom: 20px;
  }
}
.media-page__title-list--article:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, rgba(255, 255, 255, 0.24)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 100%);
}

.set-cursor .media-page__input {
  padding-left: 40px;
}

.media-page__nav-inner--fixed {
  width: 360px;
  position: fixed;
  bottom: 0;
}

@media (max-width: 767px) {
  .media-page__commit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .white .media-page__item-list {
    -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;
  }
}
@media (max-width: 1199px) {
  .white .media-page__item-user {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 1199px) {
  .media-page__form-fields form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .media-page__form-fields form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .media-page__form-fields .form__shell {
    width: 100%;
    position: relative;
    max-width: 260px;
  }
}

.simple-text {
  margin: 60px auto;
}
@media (max-width: 1199px) {
  .simple-text {
    margin: 40px auto;
  }
}
@media (max-width: 767px) {
  .simple-text {
    margin: 20px auto;
  }
}

.zoomedElem {
  width: 100%;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
  display: inline-block;
}

.wa-mediabox-container {
  position: relative;
}

.consultation__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .consultation__item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .consultation__item {
    width: 100%;
  }
}
.consultation__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  color: #283F75;
}
@media (max-width: 1199px) {
  .consultation__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .consultation__title {
    text-align: center;
  }
}
.consultation__form {
  padding: 0 10px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 320px 320px;
  grid-template-rows: 60px 60px;
  gap: 20px;
}
@media (max-width: 1199px) {
  .consultation__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 20px;
    width: 100%;
  }
}
.consultation__input {
  width: 270px;
  height: 60px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #5B5B5B;
  border: none;
}
@media (max-width: 1199px) {
  .consultation__input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .consultation__input {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
.consultation__submit {
  width: 270px;
  height: 60px;
  background-color: #B0865F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.consultation__submit:hover {
  background-color: var(--hover-button);
}
@media (max-width: 1199px) {
  .consultation__submit {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .consultation__submit {
    margin-left: 20px;
    width: calc(100% - 40px);
  }
}
.consultation__garancy {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5b5b5b;
}
.consultation__garancy a {
  text-decoration: none;
  border-bottom: 1px dotted #5b5b5b;
  color: #5b5b5b;
}
@media (max-width: 767px) {
  .consultation__garancy {
    text-align: center;
    font-size: 15px;
    margin-bottom: 61px;
  }
}
.consultation__item:first-child {
  -ms-flex-item-align: center;
      align-self: center;
}
.consultation__item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .consultation__item:nth-child(2) {
    display: none;
  }
}
.consultation__inner {
  -ms-flex-item-align: end;
      align-self: end;
}
.consultation__employee {
  width: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.consultation__employee-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #283F75;
  text-align: right;
}
@media (max-width: 1199px) {
  .consultation__employee-name {
    display: none;
  }
}
.consultation__employee-post {
  margin-top: 5px;
  text-align: right;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #5B5B5B;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .consultation__employee-post {
    display: none;
  }
}
@media (max-width: 1199px) {
  .consultation__employee {
    width: 100%;
  }
}

.loadmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.page-numbers {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #c6cdda;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  color: #5b5b5b;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.page-numbers:hover {
  background: #8992A7;
  color: #fff;
}

.page-numbers--disable {
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #C6CDDA;
  color: #C6CDDA;
}

.next.page-numbers,
.prev.page-numbers {
  width: auto;
  padding: 0 10px;
  margin-left: 55px;
  min-width: 105px;
}

@media (max-width: 767px) {
  .prev,
.next {
    display: none;
  }
}

.prev.page-numbers {
  margin-left: 0;
  margin-right: 55px;
}

.page-numbers.current {
  background-color: #2F3A55;
  border: 1px solid #2F3A55;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.page-numbers.dots:hover {
  background: #fff;
  color: #5b5b5b;
}

@media (max-width: 1199px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .preview__wrapper--service .preview__title {
    width: 90%;
  }
  .preview__wrapper--service .preview__title br {
    display: none;
  }
  .preview__wrapper--service .preview__title span {
    display: block;
  }
}

.swiper-slide--docs-link {
  display: block;
}

.swiper-slide--docs {
  position: relative;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.swiper-slide--docs:after {
  content: "";
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("/images/icon/zoom.png");
  background-size: cover;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.swiper-slide--docs:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.swiper-slide--docs:hover:after {
  opacity: 1;
}

.portfolio__item:not(.portfolio__item--bitrix--active) svg:not(:hover) path:not(.no-fill) {
  fill: #2F3A55;
}
.portfolio__item:not(.portfolio__item--bitrix--active) svg path {
  -webkit-transition: fill 0.4s ease;
  -o-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.info .container {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .info .container {
    padding: 0 10px;
  }
}

a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  background: #B0865F;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  padding: 0 29px;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

a.btn:hover {
  background: #9E7752;
}

.breadcrumbs + section {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .breadcrumbs + section {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .breadcrumbs + section {
    margin-top: 30px;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  z-index: 0;
  margin: 40px auto 50px auto;
}
.breadcrumbs_tiny {
  margin: 0;
  margin-bottom: 15px;
}
.breadcrumbs__link {
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
  border-bottom: 1px dashed transparent;
}
.breadcrumbs__link:hover {
  border-bottom: 1px dashed #8992A7;
}
.breadcrumbs__link--2:hover {
  border-color: #8992a700;
}
@media (max-width: 1199px) {
  .breadcrumbs {
    margin: 40px auto 40px auto;
    padding: 0px 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin: 20px auto 30px auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 10px;
  }
}
.breadcrumbs * {
  font-size: 16px;
  color: #8992A7;
  margin-right: 7px;
}
@media (max-width: 767px) {
  .breadcrumbs * {
    font-size: 13px;
  }
}
.breadcrumbs * + *::before {
  content: "/";
  position: relative;
  left: -3px;
}
.breadcrumbs__link_tiny {
  font-size: 13px;
}

.accent {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.accent:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
  width: 52px;
}
.video-play svg {
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}

.advantages {
  background: #18233A;
  padding: 50px 0;
}
.advantages .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .advantages .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    padding: 0 30px;
  }
}
.advantages__item {
  border-top: 1px solid #B0865F;
  text-align: center;
  padding-top: 25px;
}
.advantages__title {
  line-height: 1;
  font-size: 23px;
  font-weight: bold;
  color: #D9A77A;
}
@media (max-width: 1199px) {
  .advantages__title {
    font-size: 18px;
    font-weight: 400;
  }
}
.advantages__desc {
  font-size: 16px;
  line-height: 150%;
  color: #C6CDDA;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .advantages__desc {
    font-size: 15px;
  }
}

.why {
  padding: 80px 0 80px;
  background: var(--bg-grey-light);
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .why {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .why {
    padding: 40px 0 50px;
    margin-bottom: 40px;
  }
}
.why .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .why .container {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .why .container {
    padding: 0 10px;
  }
}
.why__video {
  width: 495px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 105px;
}
@media (max-width: 992px) {
  .why__video {
    margin: 0 auto 40px;
  }
}
@media (max-width: 768px) {
  .why__video {
    width: 100%;
  }
}
.why .page-main__title {
  color: var(--blue-heading);
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 992px) {
  .why .page-main__title {
    text-align: center;
    width: 354px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 767px) {
  .why .page-main__title {
    width: 90%;
  }
}
.why__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .why__text {
    padding-bottom: 0;
  }
}
.why__text p {
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
}
@media (max-width: 767px) {
  .why__text p {
    font-size: 15px;
  }
}
.why .read-more {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .why .read-more {
    position: static;
    margin-top: 30px;
  }
}

.read-more {
  font-weight: bold;
  font-size: 15px;
  line-height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gray-text);
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.read-more:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../images/icon/right.svg");
  margin-left: 10px;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.read-more:hover {
  color: #8992A7;
}
.read-more:hover:after {
  opacity: 0.7;
}

.goal-main {
  margin: 70px 0 80px;
}
@media (max-width: 1199px) {
  .goal-main {
    margin: 50px 0 60px;
  }
}
@media (max-width: 767px) {
  .goal-main {
    margin: 40px 0 50px;
  }
}
.goal-main .container {
  padding: 0 0 0;
  background-color: var(--bg-white);
  width: 1160px;
}
@media (max-width: 1199px) {
  .goal-main .container {
    padding: 0 0 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .goal-main .container {
    padding: 0 0 0;
  }
}
.goal-main .goal-main__wrapper {
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .goal-main .goal-main__wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__wrapper {
    padding: 0 10px;
  }
}
.goal-main .page-main__title--goal-main {
  display: none;
  color: #283F75;
}
@media (max-width: 1199px) {
  .goal-main .page-main__title--goal-main {
    display: block;
    margin: 0 auto 40px;
    width: 46vw;
  }
}
@media (max-width: 767px) {
  .goal-main .page-main__title--goal-main {
    display: block;
    margin: 0 auto 15px;
    width: 100%;
  }
}
.goal-main .goal-main__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .goal-main .goal-main__shell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.goal-main .goal-main__text {
  width: 560px;
}
@media (max-width: 1199px) {
  .goal-main .goal-main__text {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__text {
    width: 100%;
  }
}
.goal-main .goal-main__text .page-main__title {
  text-align: start;
  width: 100%;
  margin-bottom: 30px;
  color: var(--blue-heading);
}
@media (max-width: 1199px) {
  .goal-main .goal-main__text .page-main__title {
    display: none;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__text .page-main__title {
    font-size: 15px;
  }
}
.goal-main .goal-main__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  margin-bottom: 32px;
  width: 520px;
}
@media (max-width: 1199px) {
  .goal-main .goal-main__subtitle {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .goal-main .goal-main__list .accordion__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__list .accordion__item {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__list .accordion__item--active-js {
    padding: 18px 20px;
  }
}
@media (max-width: 1199px) {
  .goal-main .goal-main__list {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .goal-main .goal-main__list {
    width: 100%;
  }
}

.cases__img--hidden {
  display: none;
}

.cases-sub .page-main__title {
  color: var(--gold);
}
@media (max-width: 767px) {
  .cases-sub .page-main__title {
    margin-bottom: 54px;
  }
}
.cases-sub .cases__sub-title {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 160px;
  font-size: 18px;
  line-height: 150%;
  color: var(--button-grey);
}
@media (max-width: 992px) {
  .cases-sub .cases__sub-title {
    width: 560px;
    margin: 0 auto 160px;
  }
  .cases-sub .cases__sub-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .cases-sub .cases__sub-title {
    display: none;
  }
}

.video-init:hover .slider-video__title {
  color: var(--blue-text);
}
.video-init .video-imagebox {
  position: relative;
  padding-bottom: 56.25%;
  /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .video-init .video-imagebox {
    position: relative;
    padding-bottom: 0;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .video-image {
    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%;
  }
}

.slider-video__title {
  color: var(--blue-heading);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  padding: 30px 0 0 0;
  display: block;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}
.slider-video__title:hover {
  color: var(--blue-text);
}

.best {
  padding: 80px 0 80px;
  background: var(--bg-grey-light);
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .best {
    padding: 50px 0 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .best {
    padding: 50px 0 50px;
    margin-bottom: 50px;
  }
}
.best .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .best .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.best__image {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  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;
}
.best__image img {
  height: auto;
  max-height: 500px;
}
@media (max-width: 992px) {
  .best__image img {
    max-width: 230px;
  }
}
.best__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 660px;
          flex: 0 0 660px;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .best__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 768px) {
  .best__text {
    width: 100%;
    margin: 30px 0 0;
  }
}
.best__title {
  text-align: left;
  color: var(--blue-heading);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .best__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .best__title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
    padding: 0 10px;
    margin: 0 auto;
  }
}
.best__desc {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
  max-width: 560px;
}
@media (max-width: 992px) {
  .best__desc {
    max-width: 100%;
  }
  .best__desc br {
    display: none;
  }
}
@media (max-width: 768px) {
  .best__desc {
    text-align: center;
    font-size: 15px;
    margin-top: 15px;
  }
}
.best__row + div {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #C6CDDA;
  padding-left: 100px;
}
@media (max-width: 1199px) {
  .best__row + div {
    padding-left: 0;
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .best__row + div {
    border-top: none;
    margin-top: 5px;
    padding-top: 25px;
    padding-left: 0;
  }
}
.best__row + .best__row--end {
  border-top: none;
}

.info {
  padding: 0 0 0;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .info {
    padding: 0 10px;
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .info {
    padding: 0 10px 0 10px;
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
.info__table {
  width: 660px;
}
@media (max-width: 1199px) {
  .info__table {
    margin: 0 auto;
    width: 620px;
  }
}
.info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info__row + div {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .info__row + div {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .info__row + div {
    margin-top: 50px;
    padding-top: 40px;
    border-top: none;
  }
}
@media (max-width: 767px) {
  .info__row:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 0px;
    border-bottom: none;
  }
}
.info__col {
  width: 100%;
}
.info__col + div {
  margin-left: 80px;
}
@media (max-width: 768px) {
  .info__col + div {
    margin: 50px 0 0;
  }
}
.info .col-table {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 660px;
          flex: 0 0 660px;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .info .col-table {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 40px 0 0;
  }
}
@media (max-width: 768px) {
  .info .col-table {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.info__table-col {
  border: 1px solid #C6CDDA;
  padding: 30px 30px 35px 20px;
}
.info__table-top {
  margin-bottom: 25px;
}
.info__table-top span {
  font-size: 16px;
  line-height: 120%;
  color: var(--gray-text);
  border-radius: 100px;
  padding: 5px 10px;
  background-color: #EBEDF2;
}
.info__table-top span:not(:last-child) {
  margin-right: 10px;
}
.info .row-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .info .row-center {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .info .row-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info .row-center .info__col {
    text-align: center;
  }
  .info .row-center .info__col.col-table {
    display: none;
    width: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  .info .row-center {
    margin-top: 30px;
  }
}
.info .row-center .best__desc {
  max-width: 360px;
}
@media (max-width: 992px) {
  .info .row-center .best__desc {
    max-width: 100%;
  }
}
.info__table-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 10px;
}
.info__table-bottom .read-more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}
.info__table-row-text {
  color: var(--gray-text);
  font-size: 18px;
}
@media (max-width: 1199px) {
  .info__table-row-text {
    font-size: 15px;
  }
}
.info__table-row-text b {
  font-size: 23px;
  color: var(--blue-heading);
}
.info__table-row-text + div {
  margin-top: 10px;
}
.info__table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  position: relative;
}
.info__table-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  height: 31px;
  background-color: #C6CDDA;
  width: 1px;
  margin: auto;
}
.info__table-list > div {
  width: 100%;
  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;
  text-align: center;
  padding: 10px;
  border: 1px solid #C6CDDA;
  height: 150px;
  line-height: 150%;
  position: relative;
}
.info__table-list > div::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  height: 30px;
  background-color: #C6CDDA;
  width: 1px;
  margin: auto;
}
.info__table-list > div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  width: calc(100% + 22px);
  height: 1px;
  top: -30px;
  background-color: #C6CDDA;
}
.info__table-list > div span {
  font-size: 16px;
}
.info__table-list > div b {
  margin-top: 15px;
  font-size: 23px;
  color: var(--blue-heading);
}
.info__table-list > div + div {
  margin-left: 20px;
}

.check-list {
  margin-top: 90px;
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  .check-list {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .check-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.check-list .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  background-color: var(--bg-grey-light);
  position: relative;
}
@media (max-width: 992px) {
  .check-list .container {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .check-list .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 20px 20px;
  }
}
.check-list img {
  max-width: 660px;
  height: auto;
  position: absolute;
  right: 0;
  top: -30px;
}
@media (max-width: 1199px) {
  .check-list img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .check-list img {
    position: relative;
    top: auto;
    max-width: 100%;
    right: auto;
    margin: 25px 0 0;
  }
}
.check-list__text {
  max-width: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 992px) {
  .check-list__text {
    max-width: 100%;
  }
}
.check-list .page-main__title {
  color: var(--bor-gold);
  text-align: left;
}
@media (max-width: 768px) {
  .check-list .page-main__title {
    text-align: center;
    font-size: 22px;
  }
}
.check-list p {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
}
@media (max-width: 768px) {
  .check-list p {
    text-align: center;
    font-size: 15px;
  }
}
.check-list .btn {
  margin-top: 30px;
  height: 60px;
  min-width: 270px;
}
@media (max-width: 768px) {
  .check-list .btn {
    height: 40px;
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .check-list .btn--amo {
    text-align: center;
  }
}

.results {
  background: #18233A;
  padding: 80px 0;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .results {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .results {
    padding: 40px 0;
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .results .history__title {
    width: 370px;
  }
}
@media (max-width: 767px) {
  .results .history__title {
    width: 100%;
  }
}
.results__wrapper {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 40px;
  counter-reset: num;
}
@media (max-width: 992px) {
  .results__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
@media (max-width: 767px) {
  .results__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    margin-top: 30px;
    margin: 30px;
  }
}
.results__item {
  counter-increment: num;
  font-size: 18px;
  line-height: 150%;
  position: relative;
  color: var(--button-grey);
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
.results__item::before {
  content: counter(num);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .results__item::before {
    border-bottom: none;
    border-top: 1px solid var(--gold-light);
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 10px;
  }
}
.results__item:nth-child(-n+9):before {
  content: "0" counter(num);
}
.results__wrapper-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 0;
}
@media (max-width: 992px) {
  .results__wrapper-btn {
    margin: 0 0 0;
  }
}
.results__toggle {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  border: 1px solid #B0865F;
}
.results__toggle::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("/images/icon/down-orange.svg");
}
.results__toggle:hover {
  background: #B0865F;
}
.results__toggle:hover::before {
  background-image: url("/images/icon/down.svg");
}
.results .opened::before {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}
.results .hidden-item {
  height: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .results .noshow {
    height: 0;
    overflow: hidden;
  }
}

.results__wrapper-btn--portfolio {
  display: none;
}
@media (max-width: 767px) {
  .results__wrapper-btn--portfolio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.js-results__toggle--port.opened:before {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.portfolio__item.noshow {
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .portfolio__item svg {
    width: 85%;
  }
}

@media (max-width: 767px) {
  .results__item-text {
    padding-left: 45px;
    display: block;
    font-size: 15px;
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.calc {
  margin: 90px 0 100px;
  position: relative;
}
@media (max-width: 992px) {
  .calc {
    margin: 60px 0 80px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .calc {
    margin: 50px 0 60px;
    padding: 0 10px;
  }
}
.calc .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 160px;
  background-color: var(--bg-grey-light);
  padding: 25px 80px 25px 270px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .calc .container {
    padding: 20px 20px 20px 215px;
  }
}
@media (max-width: 768px) {
  .calc .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.calc .container img {
  position: absolute;
  left: 30px;
  top: -20px;
  max-width: 200px;
  max-height: 200px;
}
@media (max-width: 992px) {
  .calc .container img {
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .calc .container img {
    position: relative;
    left: auto;
    margin-top: -40px;
  }
}
.calc .container .btn {
  height: 60px;
  min-width: 270px;
}
@media (max-width: 992px) {
  .calc .container .btn {
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  .calc .container .btn {
    height: 40px;
  }
}
.calc__title {
  color: var(--bor-gold);
  font-size: 28px;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .calc__title {
    font-size: 18px;
    position: absolute;
    top: 18px;
  }
}
@media (max-width: 768px) {
  .calc__title {
    font-size: 22px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
}
.calc__desc {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
  margin-top: 10px;
}
@media (max-width: 768px) {
  .calc__desc {
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.calc + .specialists .specialists__wrapper {
  margin-top: 100px;
  padding-top: 0;
}
@media (max-width: 992px) {
  .calc + .specialists .specialists__wrapper {
    margin-top: 70px;
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .calc + .specialists .specialists__wrapper {
    font-size: 16px;
    padding-top: 0;
  }
}

.slider-video {
  position: relative;
  overflow: hidden;
}
.slider-video .slider__pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  height: 40px;
}
@media (max-width: 992px) {
  .slider-video .slider__pagination {
    width: auto;
  }
}
.slider-video .swiper-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.slider-video .slider__navigation {
  top: 0;
}
.slider-video .open--normal {
  margin-top: 0;
}

.doc-slider {
  margin-top: 70px;
}
@media screen and (max-width: 1199px) {
  .doc-slider {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .doc-slider {
    margin-top: 40px;
  }
}
.doc-slider .slider__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 0 0 0;
}
.doc-slider__title {
  font-size: 21px;
  line-height: 130%;
  text-align: center;
  color: var(--blue-heading);
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .doc-slider__title {
    width: 450px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 767px) {
  .doc-slider__title {
    width: 100%;
  }
}
.doc-slider .swiper-slide img {
  width: 100%;
  height: auto;
}
.doc-slider .container {
  width: 1200px;
}
@media (max-width: 1200px) {
  .doc-slider .container {
    width: 992px;
  }
}
@media (max-width: 992px) {
  .doc-slider .container {
    width: 768px;
  }
}
@media (max-width: 768px) {
  .doc-slider .container {
    width: 100%;
  }
}
.doc-slider .slider__navigation {
  position: relative;
  top: auto;
}
.doc-slider .slider__pagination {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  height: 40px;
}
.doc-slider .open--normal {
  margin-top: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .doc-slider .open--normal {
    display: none;
  }
}
.doc-slider .slider-docs {
  position: relative;
  overflow: hidden;
}

.video-margin {
  margin-top: 70px;
}
@media (max-width: 992px) {
  .video-margin {
    margin: 40px 0 0;
  }
}

.portfolio {
  margin: 70px 0 80px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .portfolio {
    margin: 50px 0 60px;
  }
}
.portfolio__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 20px;
  margin-top: 70px;
  padding-bottom: 37px;
}
@media (max-width: 992px) {
  .portfolio__wrapper {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio__wrapper {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }
}
@media (max-width: 550px) {
  .portfolio__wrapper {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 10px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .portfolio .commit__title br {
    display: none;
  }
}
.portfolio__item {
  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;
}
@media (max-width: 767px) {
  .portfolio__item {
    margin-bottom: 25px;
  }
}
.portfolio__item img {
  max-width: 100%;
  max-height: 60px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.portfolio__item:hover img {
  -webkit-filter: none;
          filter: none;
}

.video-init {
  max-width: 300px;
  display: block;
  margin: 0 auto;
}
.video-init--why {
  margin: initial;
  max-width: initial;
}
.video-init--why iframe {
  max-width: 100%;
}
@media (max-width: 767px) {
  .video-init--why iframe {
    height: 54vw;
    width: 100%;
  }
}

.portfolio__item.hidden-item {
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

@media (max-width: 767px) {
  .video_img {
    width: 100%;
  }
}

.specialists-team {
  margin-bottom: 33px;
}
@media (max-width: 1199px) {
  .specialists-team {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .specialists-team {
    margin-bottom: 50px;
  }
}

.work-direction {
  margin-top: 100px;
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .work-direction {
    margin-top: 60px;
    margin-bottom: 70px;
  }
}
.work-direction__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  color: #283F75;
  text-align: center;
}
@media (max-width: 1199px) {
  .work-direction__title {
    font-size: 22px;
  }
}
.work-direction__center {
  margin: 0 auto;
}
.work-direction__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-auto-rows: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  row-gap: 50px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 1199px) {
  .work-direction__inner {
    grid-template-columns: repeat(2, 350px);
    margin-top: 40px;
    row-gap: 35px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .work-direction__inner {
    grid-template-columns: repeat(15, 250px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    overflow-x: scroll;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-bottom: 63px;
  }
}
.work-direction__item {
  position: relative;
  text-align: center;
  max-width: 360px;
}
@media (max-width: 767px) {
  .work-direction__item {
    text-align: left;
    min-width: 310px;
  }
}
.work-direction__step {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .work-direction__step {
    left: 30%;
  }
}
.work-direction__item-title {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  color: #283F75;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .work-direction__item-title {
    font-size: 18px;
    margin-top: 25px;
  }
}
.work-direction__item-descr {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5B5B5B;
}
@media (max-width: 1199px) {
  .work-direction__item-descr {
    margin-top: 10px;
  }
}
.work-direction__item:first-child::before {
  content: "";
  display: none;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:first-child::before {
    width: 300px;
    left: 70px;
  }
}
.work-direction__item:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(2)::before {
    width: 300px;
  }
}
.work-direction__item:nth-child(3)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(3)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(3)::before {
    width: 300px;
    display: block;
  }
}
.work-direction__item:nth-child(4)::before {
  content: "";
  display: none;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(4)::before {
    display: block;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(4)::before {
    width: 300px;
  }
}
.work-direction__item:nth-child(5)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(5)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(5)::before {
    display: block;
    width: 300px;
  }
}
.work-direction__item:nth-child(6)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(6)::before {
    width: 300px;
  }
}
.work-direction__item:nth-child(7)::before {
  content: "";
  display: none;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(7)::before {
    width: 300px;
    display: block;
  }
}
.work-direction__item:nth-child(8)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(8)::before {
    width: 300px;
  }
}
.work-direction__item:nth-child(9)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(9)::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(9)::before {
    width: 300px;
    display: block;
  }
}
.work-direction__item:nth-child(10)::before {
  content: "";
  display: none;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(10)::before {
    width: 300px;
    display: block;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(10)::before {
    width: 300px;
  }
}
.work-direction__item:nth-child(11)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 1199px) {
  .work-direction__item:nth-child(11)::before {
    width: 300px;
    display: none;
  }
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(11)::before {
    width: 300px;
    display: block;
  }
}
.work-direction__item:nth-child(12)::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 0;
  border: 1px dashed #2F3A55;
  top: 19px;
  left: -170px;
}
@media (max-width: 767px) {
  .work-direction__item:nth-child(12)::before {
    width: 300px;
  }
}
.work-direction__btn-cont {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .work-direction__btn-cont {
    margin-top: 40px;
  }
}
.work-direction__btn {
  padding: 20px 77px;
  border: 1px solid #C6CDDA;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.work-direction__btn:hover {
  background-color: #F9F9FE;
  color: #8992A7;
  border-color: #f9f9fe;
}
@media (max-width: 767px) {
  .work-direction__btn {
    padding: 10px 72px;
  }
}

::-webkit-scrollbar-thumb {
  background-color: #283F75;
}

.service-packages {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .service-packages {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .service-packages {
    margin-top: 50px;
  }
}
.service-packages__title {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 1199px) {
  .service-packages__title {
    font-size: 24px;
  }
}
.service-packages__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 65px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 60px;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .service-packages__blocks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .service-packages__blocks {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.service-packages__block {
  max-width: 360px;
  background: #F9F9FE;
  border: 1px solid #C4C4C4;
  width: 100%;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .service-packages__block {
    min-height: 0;
  }
}
.service-packages__block-bot {
  padding: 30px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 1199px) {
  .service-packages__block-bot {
    padding: 30px 30px 50px 30px;
  }
}
@media (max-width: 767px) {
  .service-packages__block-bot {
    padding: 60px 30px 60px 30px;
    gap: 20px;
  }
}
.service-packages__top {
  background: #2F3A55;
  padding: 30px;
  color: #fff;
  position: relative;
}
@media (max-width: 1199px) {
  .service-packages__top {
    min-height: 330px;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .service-packages__top {
    padding: 60px 30px 30px 30px;
    min-height: unset;
    height: auto;
  }
}
.service-packages__middle {
  padding: 30px;
  padding-bottom: 0;
}
.service-packages__bottom {
  width: 100%;
}
.service-packages__number {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.3;
  font-weight: 700;
  font-size: 23px;
  line-height: 90%;
}
@media (max-width: 767px) {
  .service-packages__number {
    right: unset;
    left: 30px;
  }
}
.service-packages__name {
  font-weight: 600;
  font-size: 21px;
  line-height: 130%;
  max-width: 250px;
}
@media (max-width: 1199px) {
  .service-packages__name {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-packages__name {
    font-size: 21px;
  }
}
.service-packages__descr {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.service-packages__descr a {
  color: #b9b9b9;
}
@media (max-width: 1199px) {
  .service-packages__descr {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .service-packages__descr {
    font-size: 13px;
    margin-top: 15px;
  }
}
.service-packages__what-inside {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  color: #283F75;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .service-packages__what-inside {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-packages__what-inside {
    font-size: 21px;
  }
}
.service-packages__list-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5B5B5B;
  position: relative;
  margin-left: 15px;
}
.service-packages__list-item::before {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 10px;
  border-radius: 100%;
  background-color: #5b5b5b;
  width: 5px;
  height: 5px;
}
.service-packages__sum {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #2F3A55;
  padding-top: 18px;
  border-top: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .service-packages__sum {
    font-size: 24px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .service-packages__sum {
    font-size: 28px;
    padding-top: 20px;
  }
}
.service-packages__submit {
  margin-top: 15px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1199px) {
  .service-packages__submit {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .service-packages__submit {
    margin-top: 25px;
  }
}

.lvr {
  margin-top: 90px;
  margin-bottom: 115px;
}
@media (max-width: 1199px) {
  .lvr {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .lvr {
    margin-top: 50px;
  }
}
.lvr__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #283F75;
}
@media (max-width: 1199px) {
  .lvr__title {
    font-size: 24px;
  }
}
.lvr__container {
  margin-top: 70px;
  border: none;
  border-collapse: collapse;
}
@media (max-width: 1199px) {
  .lvr__container {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .lvr__container--big {
    display: none;
  }
}
.lvr__container--mobile {
  display: none;
}
@media (max-width: 767px) {
  .lvr__container--mobile {
    display: block;
  }
}
.lvr__table-title {
  background: #F9F9FE;
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  padding: 18px 27px;
}
.lvr__table-title:first-child {
  border-right: 1px solid #C6CDDA;
}
@media (max-width: 767px) {
  .lvr__table-title:first-child {
    border: none;
  }
}
.lvr__table-title:last-child {
  border-left: 1px solid #C6CDDA;
}
@media (max-width: 767px) {
  .lvr__table-title:last-child {
    border: none;
    border-top: 1px solid #C6CDDA;
    border-left: 1px solid #C6CDDA;
  }
}
@media (max-width: 1199px) {
  .lvr__table-title {
    font-size: 18px;
    padding: 27px;
  }
}
@media (max-width: 767px) {
  .lvr__table-title {
    font-size: 16px;
    padding: 12px;
  }
}
.lvr__cell {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  padding: 18px 27px;
  border: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .lvr__cell:nth-child(3n+1) {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .lvr__cell:nth-child(3n+1) {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .lvr__cell {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .lvr__cell {
    font-size: 13px;
    padding: 12px 10px;
  }
}
.lvr__bold {
  font-weight: 700;
}
.lvr__table-header {
  border-left: none !important;
}

.lvr__container-new {
  border-collapse: separate;
  border-spacing: 10px;
  -webkit-border-horizontal-spacing: 0px;
}
.lvr__container-new tr:not(:first-child) {
  border: 2.136px solid #B0865F;
}
.lvr__container-new tr:last-child .lvr__bg::after {
  display: none;
}
.lvr__container-new .lvr__table-title {
  background: none;
  font-size: 18px;
}
@media (min-width: 768px) {
  .lvr__container-new .lvr__table-title:first-child {
    text-align: left;
    padding-left: 0;
    padding-bottom: 0;
  }
  .lvr__container-new .lvr__table-title:last-child {
    text-align: right;
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .lvr__container-new .lvr__table-title {
    background: #18233A;
    color: white;
    position: relative;
  }
}
.lvr__container-new .lvr__head {
  vertical-align: bottom;
}
.lvr__container-new .lvr__top {
  padding-bottom: 40px;
}
.lvr__container-new .lvr__bg {
  background: #18233A;
  color: white;
  position: relative;
}
.lvr__container-new .lvr__bg:not(:last-of-type)::after {
  content: "";
  position: absolute;
  height: 12px;
  bottom: -12px;
  z-index: -1;
  right: 0;
  left: 0;
  background: #18233A;
}
.lvr__container-new .lvr__cell img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .lvr__container-new .lvr__cell img {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) {
  .lvr__container-new .lvr__cell:first-child {
    text-align: center;
    border: 2.136px solid #B0865F;
    border-right: none;
  }
  .lvr__container-new .lvr__cell:nth-child(2) {
    border: 2.136px solid #B0865F;
    border-left: none;
    border-right: none;
  }
  .lvr__container-new .lvr__cell:last-child {
    border: 2.136px solid #B0865F;
    border-left: none;
  }
}

.table-mobile__name {
  background: #2F3A55;
  padding: 6px;
  text-align: center;
  color: white;
  margin-bottom: 10px;
}
.table-mobile__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.table-mobile__item {
  text-align: center;
  border: 2px solid #B0865F;
}
.table-mobile__description {
  padding: 7px;
  color: #2F3A55;
  border-bottom: 2px solid #B0865F;
}
.table-mobile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-mobile__row_item {
  max-width: 50%;
  padding: 10px 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #5B5B5B;
  font-size: 13px;
}
@media (max-width: 425px) {
  .table-mobile__row_item {
    padding: 10px;
    gap: 13px;
  }
}
.table-mobile__row_item img {
  width: 20px;
  height: 20px;
}
.table-mobile__row_item:first-child {
  border-right: 2px solid #B0865F;
}
.table-mobile__row_padding {
  padding: 0;
}
.table-mobile__row_padding p:first-child {
  border-right: 2px solid #B0865F;
  padding: 10px;
}
.table-mobile__row_padding p:last-child {
  text-wrap: pretty;
  padding-left: 5px;
  padding-right: 10px;
}

.thanks {
  background: var(--bg-grey-light);
  position: relative;
  overflow: hidden;
}
.thanks__inner {
  padding: 80px 0;
}
@media (max-width: 1199px) {
  .thanks__inner {
    padding: 80px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .thanks__inner {
    padding: 140px 0 50px 0;
  }
}
.thanks__title {
  text-align: left;
  margin-bottom: 43px;
  padding-left: 90px;
  position: relative;
  letter-spacing: -0.01em;
}
@media (max-width: 1199px) {
  .thanks__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .thanks__title {
    padding: 0;
    margin-bottom: 15px;
    text-align: center;
  }
}
.thanks__title:before {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 70px;
  background: url(/images/icon/like.svg);
  background-size: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .thanks__title:before {
    left: 50%;
    top: auto;
    -webkit-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
    bottom: calc(100% + 20px);
  }
}
.thanks__img-first {
  position: absolute;
  bottom: -13px;
  right: 8%;
  z-index: 5;
  width: auto;
  height: 456px;
}
@media (max-width: 1199px) {
  .thanks__img-first {
    right: -4%;
    height: calc(100% + 10px);
  }
}
@media (max-width: 767px) {
  .thanks__img-first {
    display: none;
  }
}
.thanks__content {
  max-width: 660px;
}
@media (max-width: 1199px) {
  .thanks__content {
    max-width: 65%;
  }
}
@media (max-width: 767px) {
  .thanks__content {
    max-width: 100%;
    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;
  }
}
.thanks__desc-top {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .thanks__desc-top {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .thanks__desc-top {
    text-align: center;
    font-size: 15px;
  }
}
.thanks__desc-bottom {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 35px;
  line-height: 1.5;
}
.thanks__desc-bottom a {
  color: inherit;
}
@media (max-width: 1199px) {
  .thanks__desc-bottom {
    margin-bottom: 30px;
    max-width: 91%;
  }
}
@media (max-width: 767px) {
  .thanks__desc-bottom {
    text-align: center;
    font-size: 13px;
  }
}
.thanks__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  .thanks__button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .thanks__button-wrapper {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .thanks__block-decor {
    display: none;
  }
}

.intresting {
  margin: 70px 0 90px 0;
}
@media (max-width: 1199px) {
  .intresting {
    margin: 60px 0 70px 0;
  }
}
@media (max-width: 767px) {
  .intresting {
    margin: 50px 0 60px 0;
  }
}
.intresting__list {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .intresting__list {
    margin-top: 30px;
  }
}
.intresting__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .intresting__item-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.intresting__title {
  text-align: left;
  letter-spacing: -0.01em;
}
@media (max-width: 1199px) {
  .intresting__title {
    text-align: center;
  }
}
.intresting__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1199px) {
  .intresting__item-left {
    gap: 20px;
  }
}
.intresting__item {
  padding: 25px 0 25px 100px;
  border-top: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .intresting__item {
    padding: 20px 0 20px 0px;
  }
}
.intresting__item:last-child {
  border-bottom: 1px solid #C6CDDA;
}
.intresting__item-text {
  max-width: 660px;
}
@media (max-width: 1199px) {
  .intresting__item-text {
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .intresting__item-text {
    max-width: 100%;
  }
}
.intresting__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .intresting__item-right {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.intresting__item-number {
  color: var(--lite-gray);
  font-size: 21px;
  min-width: 60px;
}
@media (max-width: 1199px) {
  .intresting__item-number {
    min-width: 25px;
    font-size: 18px;
  }
}
.intresting__item-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-text);
  margin-top: 10px;
}
@media (max-width: 767px) {
  .intresting__item-desc {
    margin-left: -45px;
    width: calc(100% + 45px);
    margin-bottom: 24px;
    font-size: 15px;
  }
}
.intresting__item-title {
  font-size: 21px;
  line-height: 130%;
}
@media (max-width: 1199px) {
  .intresting__item-title {
    font-size: 18px;
  }
}

.article__inner {
  margin: 50px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .article__inner {
    margin: 0px 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .article__inner {
    margin: 30px 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.article__content {
  font-size: 17px;
  line-height: 150%;
  max-width: 745px;
}
@media (max-width: 767px) {
  .article__content {
    min-width: 300px;
  }
}
@media (max-width: 1199px) {
  .article__content {
    width: 100%;
    max-width: 100%;
  }
}
.article__content iframe {
  width: 495px;
  height: 280px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .article__content iframe {
    width: 100%;
    height: 54vw;
    max-width: 100%;
  }
}
.article__content a:not([class]) {
  border-bottom: 1px dashed;
  color: inherit;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}
.article__content a:hover:not([class]) {
  border-bottom: 1px dashed transparent;
}
.article__content h3 {
  color: var(--blue-heading);
  margin: 50px 0 30px 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
@media screen and (max-width: 1199px) {
  .article__content h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
  }
}
.article__content .article__soder h3 {
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .article__content .article__soder h3 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .article__content .article__soder h3 {
    margin-top: 30px;
  }
}
.article__content h2 {
  color: var(--blue-heading);
  margin: 50px 0 30px 0;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.3;
  max-width: 96%;
  letter-spacing: -0.4px;
}
@media screen and (max-width: 1199px) {
  .article__content h2 {
    text-align: center;
    font-size: 22px;
    margin: 60px 0 20px 0;
  }
}
@media (max-width: 767px) {
  .article__content h2 {
    text-align: center;
    font-size: 22px;
    margin: 50px 0 15px 0;
  }
}
.article__content ol {
  list-style: decimal;
}
.article__content li::marker {
  color: var(--gray-text);
}
.article__content p, .article__content ul, .article__content ol {
  font-size: 17px;
  line-height: 150%;
  color: var(--gray-text);
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .article__content p, .article__content ul, .article__content ol {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .article__content p, .article__content ul, .article__content ol {
    font-size: 15px;
    margin-top: 15px;
  }
}
.article__content p:not([class]):first-child {
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  .article__content p:not([class]):first-child {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .article__content p:not([class]):first-child {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .article__content .contents h2 {
    font-size: 18px;
    text-align: left;
    margin-top: 30px;
  }
}

.article__title {
  font-size: 46px;
  line-height: 130%;
  color: var(--blue-heading);
  margin: 0 0 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
  max-width: 630px;
}
@media (max-width: 1199px) {
  .article__title {
    text-align: center;
    font-size: 24px;
    width: 460px;
    margin: 0 auto 45px auto;
  }
}
@media (max-width: 767px) {
  .article__title {
    width: 100%;
    margin-bottom: 30px;
  }
}

.article__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 23px;
  position: relative;
}
@media (max-width: 767px) {
  .article__author {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .article__author__pros {
    display: none;
  }
}

.article__author-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .article__author-block {
    -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;
  }
}

.article__author-name {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  margin-right: 20px;
}
@media (max-width: 767px) {
  .article__author-name {
    margin-bottom: 15px;
    margin-left: 0;
    font-size: 15px;
  }
}

.article__author-data {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
}
@media (max-width: 767px) {
  .article__author-data {
    font-size: 15px;
  }
}

.article__author-views {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .article__author-views {
    margin-right: 15px;
  }
}

.article__author-views:before {
  content: "";
  background-image: url("/images/icon/view.svg");
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.clip span {
  border-bottom: 1px dashed;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.clip-link:hover span {
  border-bottom: 1px dashed transparent;
}

.clip:before {
  content: "";
  background: url(/images/icon/clip.svg) white;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.article__body ul {
  list-style-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.917 6.5L6.03604 0L1.62533 0L7.50628 6.51049L1.62533 13L6.03604 13L11.917 6.5Z' fill='%23B0865F'/%3E%3C/svg%3E%0A");
}
.article__body li {
  margin-top: 25px;
  color: var(--gray-text);
  margin-left: 21px;
}
.article__body .slider__list--small {
  list-style-image: none;
}

.slider__list--small .cases__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  background-color: var(--bg-blue);
  z-index: 5;
  position: absolute;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  top: 44px;
  left: -15px;
  padding: 10px;
  width: 220px;
  max-width: 130%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .slider__list--small .cases__sum {
    left: 3px;
  }
}
@media (max-width: 767px) {
  .slider__list--small .cases__sum {
    left: -24px;
    width: 121%;
  }
}

.contents-list {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .contents-list {
    margin-bottom: 30px;
  }
}
.contents-list ul {
  list-style-type: none;
}

.cases--small {
  padding: 0 50px 60px 50px;
  position: relative;
  margin: 60px 0 50px 0;
}
@media screen and (max-width: 1199px) {
  .cases--small {
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .cases--small {
    margin-right: -10px;
    margin-left: -10px;
    padding: 0 22px 60px 22px;
  }
}
.cases--small .cases__shell {
  position: relative;
  border: 1px solid var(--bor-gold);
  z-index: 2;
  width: 310px;
  height: auto;
  padding: 102px 0 30px;
}
@media screen and (max-width: 767px) {
  .cases--small .cases__shell {
    padding: 90px 0 30px;
  }
}
.cases--small .cases__shell-link {
  height: calc(100% + 100px);
  height: 100%;
  border-radius: 100%;
}
.cases--small:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#18233a), color-stop(40%, #18233a), to(#18233a00));
  background: -o-linear-gradient(right, #18233a 0%, #18233a 40%, #18233a00 100%);
  background: linear-gradient(270deg, #18233a 0%, #18233a 40%, #18233a00 100%);
  z-index: 1;
}
.cases--small:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#18233a), color-stop(40%, #18233a), to(#18233a00));
  background: -o-linear-gradient(left, #18233a 0%, #18233a 40%, #18233a00 100%);
  background: linear-gradient(90deg, #18233a 0%, #18233a 40%, #18233a00 100%);
  z-index: 1;
}
.cases--small .open--slider1200 {
  margin-right: 0px;
}
.cases--small .cases__img {
  width: 162px;
  height: auto;
  top: 162px;
  left: 47%;
}
.cases--small .cases__block-subimg {
  position: absolute;
  top: 159px;
  left: 106px;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  height: 250px;
  width: 180px;
  background: var(--bg-grey);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 3;
  height: auto;
  width: 150px;
}
@media (max-width: 767px) {
  .cases--small .cases__block-subimg {
    top: 163px;
    left: 92px;
  }
}
.cases--small .slider__item--cases {
  height: auto;
  margin-left: 0;
  margin-top: 0;
}
@media (max-width: 767px) {
  .cases--small .slider__item--cases {
    width: 320px;
  }
}
.cases--small .slider__navigation--normal {
  position: relative;
  margin: 32px auto 0;
  width: 160px;
  z-index: 1;
}
@media (max-width: 767px) {
  .cases--small .slider__navigation--normal {
    display: none !important;
  }
}
.cases--small .cases__shell-lable {
  position: absolute;
  top: -127px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .cases--small .cases__shell-lable {
    top: -137px;
  }
}
.cases--small .slider__item--cases:hover .cases__shell-lable {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(-50%) translateY(-3px);
      -ms-transform: translateX(-50%) translateY(-3px);
          transform: translateX(-50%) translateY(-3px);
}
.cases--small .cases__title {
  display: block;
  color: var(--gold-light);
  font-size: 18px;
  z-index: 3;
  display: block;
  margin: 75px 0px 0 0px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.4px;
  width: 300px;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
  min-height: 108px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cases--small .cases__title {
    line-height: 21px;
    font-size: 15px;
    min-height: 104px;
    width: 100%;
  }
}
.cases--small .cases__m-title {
  margin-bottom: 109px;
}
.cases--small .slider__pagination--cases {
  top: 360px;
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .cases--case-other {
    border-bottom: 1px solid var(--bor-gold);
  }
}

.article__content .cases--small__title {
  color: var(--gold-light);
  text-align: left;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .article__content .cases--small__title {
    text-align: center;
  }
}

.article__content .page-main__title--white {
  color: white;
}

.contents-item.contents-item-default {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 150%;
  color: var(--blue-heading);
  margin-bottom: 10px;
  list-style: none;
  counter-increment: list;
  counter-reset: list1;
}
@media (max-width: 767px) {
  .contents-item.contents-item-default {
    font-size: 15px;
  }
}
.contents-item.contents-item-default a {
  border-bottom: 1px dashed;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  color: var(--blue-heading);
}
@media screen and (max-width: 767px) {
  .contents-item.contents-item-default a {
    border-bottom: 1px dashed transparent;
  }
}

.contents-item.contents-item-sub-1 {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 150%;
  color: var(--blue-heading);
  margin-bottom: 10px;
  counter-increment: list1;
  counter-reset: list2;
  list-style: none;
}
@media (max-width: 767px) {
  .contents-item.contents-item-sub-1 {
    font-size: 15px;
  }
}
.contents-item.contents-item-sub-1 a {
  border-bottom: 1px dashed;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  color: var(--blue-heading);
}
@media screen and (max-width: 767px) {
  .contents-item.contents-item-sub-1 a {
    border-bottom: 1px dashed transparent;
  }
}

.contents-list .contents-item-default a:before {
  content: counter(list) ".";
  color: var(--blue-heading);
}

.contents-list .contents-item-sub-1 a:before {
  content: counter(list) "." counter(list1) ".";
  font-size: 17px;
  color: var(--blue-heading);
}
@media (max-width: 767px) {
  .contents-list .contents-item-sub-1 a:before {
    font-size: 15px;
  }
}

.contents-item:hover a {
  border-bottom: 1px dashed #ff000000;
}

.line {
  display: block;
  width: 660px;
  height: 1px;
  background: var(--bor-grey);
  margin-top: 60px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .line {
    margin-top: 50px;
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.article__banner {
  position: relative;
  width: 760px;
  height: 171px;
  background: url("/images/banner.png") 100% 100% no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 81px;
  z-index: 1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1199px) {
  .article__banner {
    width: 100%;
  }
}
.article__banner-img {
  width: 236px;
  height: 187px;
  margin-top: -30px;
  z-index: 10;
}
.article__banner-right-title {
  position: relative;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 5px;
  z-index: 10;
}
.article__banner-right-text {
  position: relative;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: var(--lite-gray);
  margin-bottom: 20px;
  z-index: 10;
}
.article__banner-right-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  background: #B0865F;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  padding: 0 62px;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
  z-index: 10;
  padding: 0;
}
@media (max-width: 767px) {
  .article__banner-right-btn {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .article__banner {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px 25px 20px;
    width: 100%;
    height: auto;
    margin-left: 0px;
    margin-top: 100px;
  }
  .article__banner-img {
    width: 189px;
    height: 150px;
    margin-top: -68px;
  }
  .article__banner-right {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article__banner-right-title {
    text-align: center;
    margin-bottom: 15px;
  }
  .article__banner-right-text {
    text-align: center;
    margin-bottom: 15px;
  }
}

.article__banner:before {
  content: "";
  background-color: var(--bg-dark);
  position: absolute;
  width: 760px;
  height: 171px;
  top: 0;
  left: 0;
  opacity: 0.9;
}
@media screen and (max-width: 1199px) {
  .article__banner:before {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .article__banner:before {
    width: 100%;
    height: 100%;
  }
}

center {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  iframe {
    width: 100%;
  }
}
.warning {
  width: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  background: var(--bg-grey-light);
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .warning {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .warning {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.warning-img {
  height: 60px;
  margin-top: 4px;
  width: 60px;
}
@media (max-width: 767px) {
  .warning-img {
    width: 40px;
    margin-bottom: 10px;
    height: 40px;
  }
}
.warning-content {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 150%;
  color: var(--gray-text);
}
@media screen and (max-width: 1199px) {
  .warning-content {
    font-size: 16px;
  }
}
.warning-content span {
  border-bottom: 1px dashed var(--gray-text);
  color: var(--gray-text);
}
@media (max-width: 767px) {
  .warning-content span {
    white-space: normal;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 50px;
  margin-bottom: 50px;
}
.socials__title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  margin-right: 20px;
}
.socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .socials {
    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;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .socials__title {
    margin-bottom: 10px;
  }
}

.about {
  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;
  position: relative;
  width: 760px;
  height: 150px;
  background: var(--bg-dark);
  padding: 0 30px;
}
.about__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 23px;
  position: relative;
}
.about__img {
  width: 100px;
  margin-right: 20px;
  width: 100px;
  margin-right: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
.about__img--staff-mini {
  height: 100px;
}
@media (max-width: 767px) {
  .about__img--staff-mini {
    height: 80px;
  }
}
.about__name {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.about__qualification p {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: var(--lite-gray);
  padding-top: 0;
  margin-top: 0;
}
.about__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about__author {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--gold-light);
}
.about__publication {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: var(--lite-gray);
  padding-bottom: 33px;
}
.about__more {
  cursor: pointer;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  -webkit-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.about__more svg {
  margin-left: 10px;
}
.about__more:hover {
  color: var(--hover-grey);
}
@media (max-width: 1199px) {
  .about {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about {
    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: 100%;
    height: 232px;
    padding-bottom: 20px;
    padding-left: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .about__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 13px;
    margin-right: 0;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .about__img {
    width: 80px;
    margin: 5px 20px 0 0;
    height: 80px;
  }
  .about__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0;
  }
  .about__info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about__publication {
    padding-bottom: 20px;
  }
  .about__qualification {
    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;
  }
}

.about:before {
  position: absolute;
  width: 746px;
  height: 136px;
  top: 7px;
  left: 7px;
  content: "";
  border: 1px solid var(--bor-gold);
  z-index: 0;
}
@media (max-width: 1199px) {
  .about:before {
    width: calc(100% - 14px);
  }
}
@media (max-width: 767px) {
  .about:before {
    width: calc(100% - 14px);
    height: 218px;
  }
}

.media-page__bottom-article {
  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;
  gap: 25px 0;
  margin-top: 40px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .media-page__bottom-article {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .media-page__bottom-article {
    max-width: 100%;
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.media-page__bottom-article-item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 100%;
  background-color: var(--bg-grey-light);
  position: relative;
  max-width: calc(100% - 10px);
}
@media (max-width: 1199px) {
  .media-page__bottom-article-item {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .media-page__bottom-article-item {
    max-width: 100%;
  }
}
.media-page__bottom-article-item img {
  max-width: 135px;
  max-height: 90px;
  position: absolute;
  bottom: 0;
  left: 41px;
}

.article__checks {
  list-style-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.917 6.5L6.03604 0L1.62533 0L7.50628 6.51049L1.62533 13L6.03604 13L11.917 6.5Z' fill='%23B0865F'/%3E%3C/svg%3E%0A");
}

.article__item {
  margin-left: 21px;
  margin-top: 25px;
  color: var(--gray-text);
}
.article__item::marker {
  display: block !important;
  color: var(--gray-text);
}
.article__item:first-child {
  margin-top: 0;
}

.article__content.article__dispute {
  padding-right: 50px;
}
@media (max-width: 767px) {
  .article__content.article__dispute {
    padding: 0;
    max-width: 450px;
  }
}

.article__content.article__dispute p {
  margin-top: 0;
}
@media (max-width: 767px) {
  .article__content.article__dispute p {
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  .article__title.article__dispute {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 1199px) {
  .article__checks.article__dispute {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .article__checks.article__dispute {
    margin-top: 20px;
    padding: 0;
    max-width: 450px;
  }
}

@media (max-width: 1199px) {
  .article__item.article__dispute {
    margin-top: 15px;
  }
}

.clip-link:hover {
  border: none;
}

.contents-item span {
  pointer-events: none;
}

.penalties--small .penalties__shell .media-publications__button {
  position: static;
  margin-top: 20px;
}
.penalties--small .penalties__shell .media-publications__button--staff {
  text-align: left;
  left: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  left: 27px;
  bottom: 0;
}
.penalties--small .penalties__wrapper {
  width: 100%;
  border: none;
  padding: 0;
  margin: 50px 0;
}
.penalties--small .penalties__date {
  margin-bottom: 61px;
  display: block;
}
@media (max-width: 767px) {
  .penalties--small .penalties__date {
    margin-bottom: 20px;
  }
}
.penalties--small .slider--penalties {
  margin-top: 19px;
}
.penalties--small .penalties__title {
  margin: 0;
  text-align: left;
}
@media (max-width: 1199px) {
  .penalties--small .penalties__title {
    text-align: center;
    width: 100%;
  }
}
.penalties--small .penalties__title-news {
  color: var(--blue-heading);
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 0;
  width: 100%;
  text-align: start;
  cursor: pointer;
  font-weight: 700;
}
.penalties--small .penalties__shell {
  height: 289px;
}
.penalties--small .slider__pagination--penalties {
  top: auto;
  bottom: -37px;
}
.penalties--small .open--slider1200 {
  margin-right: 0;
}
.penalties--small .penalties__shell::after {
  bottom: -19px;
}
.penalties--small .penalties__shell:hover::after {
  width: 88%;
}
.penalties--small .slider__navigation--penalties {
  margin: 30px auto 0;
}

.page-header__subtitle-top-article {
  font-size: 21px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .page-header__subtitle-top-article {
    font-size: 18px;
  }
}

.warning p {
  margin: 0;
  min-width: 60px;
  margin-bottom: 15px;
}

.article__banner p {
  position: relative;
}

.page-header__subtitle-top-bottom {
  margin-top: 10px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .page-header__subtitle-top-bottom {
    font-size: 15px;
  }
}

.contents-list {
  list-style: auto;
}

.article__content .contents-list li::marker {
  color: var(--blue-heading);
}

.comments__title {
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  color: var(--blue-heading);
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .comments__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .comments__title {
    text-align: center;
  }
}

.comments__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .comments__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .comments__content {
    margin-bottom: 0px;
  }
}

.comments__block-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .comments__block-top {
    width: 100%;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .comments__block-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 1199px) {
  .comments__block-area {
    width: 100%;
  }
}

.comments__block {
  margin-bottom: 20px;
  margin-right: 20px;
}
@media (max-width: 1199px) {
  .comments__block {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .comments__block {
    margin-bottom: 0px;
  }
}

.comments__block input {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: var(--gray-text);
  width: 366px;
  border: 1px solid transparent;
  outline: none;
  background: var(--bg-grey-light);
}
@media (max-width: 1199px) {
  .comments__block input {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .comments__block input {
    width: 100%;
    padding: 8px 20px 9px 20px;
    margin-bottom: 0px;
  }
}

.comments__block-area textarea {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: var(--gray-text);
  width: 745px;
  height: 150px;
  border: 1px solid transparent;
  outline: none;
  resize: none;
  padding: 29px 20px 0px 20px;
  background: var(--bg-grey-light);
}
@media (max-width: 1199px) {
  .comments__block-area textarea {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .comments__block-area textarea {
    width: 100%;
    padding: 8px 20px 19px 20px;
    height: 130px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.comments__form--hidden {
  overflow: hidden;
  height: 0 !important;
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.comments__agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .comments__agreement {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .comments__agreement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.comments__agreement--button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  background: #B0865F;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  padding: 30px 84px;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
  margin-right: 20px;
  width: 100%;
  max-width: 370px;
}
@media (max-width: 767px) {
  .comments__agreement--button {
    padding: 20px 30px;
    margin: 0;
    padding: 20px 30px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.article__content .comments__agreement--text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  width: 370px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .article__content .comments__agreement--text {
    font-size: 15px;
    width: 300px;
    text-align: center;
  }
}

.comments__agreement--text span {
  border-bottom: 1px dashed;
}

.comments .comments__number {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  color: var(--blue-heading);
}
@media (max-width: 1199px) {
  .comments .comments__number {
    font-size: 18px;
  }
}
.comments__item {
  margin-top: 60px;
  margin-bottom: 95px;
}
@media (max-width: 767px) {
  .comments__item {
    margin-bottom: 0px;
  }
}

.comments__item-wrapper {
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

.comments__item-decor:before {
  position: absolute;
  content: "";
  width: 1px;
  min-height: 100%;
  background: var(--lite-gray);
}

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

.user__top-img {
  margin-right: 15px;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.user__top-info--name {
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--blue-heading);
}

.user__top-info--data {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 140%;
  color: var(--gray-text);
}

.user__bottom {
  max-width: 750px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  margin-top: 15px;
}
@media (max-width: 767px) {
  .user__bottom {
    min-width: 290px;
  }
}

.user__answer {
  margin-left: 20px;
}

.comments__published-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.comments__published-text {
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
}

.comments__published-yet {
  margin-top: 15px;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  border-bottom: 1px dashed var(--blue-heading);
  display: inline-block;
  cursor: pointer;
}
.comments__published-yet:hover {
  border-bottom: 1px dashed transparent;
}

.comments__published--hidden {
  opacity: 0;
  display: none;
}

.case__matter-article__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}
@media (max-width: 767px) {
  .case__matter-article__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.specialists__case-article {
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  padding: 5px;
  width: 110px;
  height: 110px;
}
@media (max-width: 1199px) {
  .specialists__case-article {
    border: none;
    padding: 0;
    width: 100px;
    height: 80px;
  }
}
.article-main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 950px;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .article-main__wrapper {
    width: 78%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .article-main__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 300px;
    margin-left: 0;
  }
}

.article-main__wrapper-left {
  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;
  gap: 25px 0;
}
@media (max-width: 1199px) {
  .article-main__wrapper-left {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .article-main__wrapper-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 0;
  }
}

.article-main__wrapper-right {
  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;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .article-main__wrapper-right {
    position: absolute;
    left: 75px;
    top: 34px;
    -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;
    margin-bottom: 0;
  }
}

.article-main__wrapper-right--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .article-main__wrapper-right--block {
    gap: 0 15px;
  }
}
.article__about-name {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 0;
}

.article__author-views--pos {
  position: absolute;
  right: 0;
  top: 36px;
}
@media (max-width: 1199px) {
  .article__author-views--pos {
    position: absolute;
    right: 0;
    top: 26px;
  }
}
@media (max-width: 767px) {
  .article__author-views--pos {
    position: absolute;
    right: 0;
    bottom: -106px;
  }
}

.case__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1199px) {
  .case__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.case__content {
  font-size: 17px;
  line-height: 150%;
  max-width: 745px;
}
@media (max-width: 1199px) {
  .case__content {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .case__content {
    min-width: 300px;
  }
}
.case__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 50px 0;
}
@media (max-width: 767px) {
  .case__list-wrapper {
    gap: 15px;
  }
}
.case__list-input--full {
  width: 100%;
}
.case__list-input--half {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .case__list-input--half {
    width: 100%;
  }
}
.case__list-value {
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--blue-heading);
  background: #c6cdda33;
  border-radius: 100px;
  padding: 7px 20px;
}
.case__list-title {
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
  margin-bottom: 10px;
  min-height: 24px;
}
@media (max-width: 767px) {
  .case__list-title {
    font-size: 15px;
  }
}
.case__matter-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .case__matter-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    padding-top: 55px;
  }
}
.case__info-list {
  margin-bottom: 50px;
}
.case__matter-inner-right {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 43px;
}
@media (max-width: 767px) {
  .case__matter-inner-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.case__about-more {
  color: var(--gray-text);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .case__about-more {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 20px;
  }
}
.case__about-more path {
  stroke: var(--gray-text);
  -webkit-transition: stroke 0.4s ease;
  -o-transition: stroke 0.4s ease;
  transition: stroke 0.4s ease;
}
.case__about-more:hover path {
  stroke: var(--hover-grey);
}
.case__about-name {
  color: var(--blue-heading);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .case__about-name {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 15px;
    margin-bottom: 0;
  }
}
.case__about-qualification p {
  color: var(--gray-text);
}
.case__matter-inner-left {
  margin: 0;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .case__matter-inner-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .case__about-qualification {
    display: block;
  }
}
.case__matter-date {
  margin-right: 0;
}
@media (max-width: 767px) {
  .case__matter-date {
    position: absolute;
    top: 0;
  }
}
.case__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--bor-grey);
}
@media (max-width: 767px) {
  .case__info-item {
    padding: 15px 0;
  }
}
.case__info-left {
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  max-width: 260px;
}
@media (max-width: 767px) {
  .case__info-left {
    font-size: 15px;
    max-width: 50%;
  }
}
.case__info-right {
  font-size: 15px;
  line-height: 140%;
  text-align: right;
  color: var(--blue-heading);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .case__info-right {
    font-size: 15px;
    max-width: 50%;
  }
}
.case__quote-img--list-2, .case__quote-img--list-3 {
  position: absolute;
  right: -12px;
  z-index: -1;
  top: 7px;
  max-width: 136px;
  border: 1px solid #C6CDDA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.case__quote-img--list-3 {
  max-width: 126px;
  right: -23px;
  top: 14px;
  z-index: -2;
}

.about__img--case {
  margin: 0;
}

.specialists__case-img {
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  padding: 5px;
  width: 110px;
  height: 110px;
}
.specialists__case-img--link {
  display: block;
}
@media (max-width: 767px) {
  .specialists__case-img {
    border: none;
    width: 80px;
    height: 80px;
    padding: 0;
  }
}

.media-page__quote-img--case {
  max-width: 160px;
  position: relative;
}

.media-page__link--array-hidden {
  display: none;
}

.circle__inner {
  position: relative;
}
@media (max-width: 1199px) {
  .circle__inner {
    width: 728px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .circle__inner {
    width: 320px;
    margin: 0 auto;
    padding-top: 40px;
  }
}

.circle__item {
  display: inline-block;
  width: 160px;
  height: 160px;
  position: relative;
  border-radius: 50%;
  margin-top: 37px;
}
@media (max-width: 1199px) {
  .circle__item {
    width: 140px;
    height: 140px;
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .circle__item {
    margin-top: 19px;
  }
}

.circle__item:after {
  border-radius: 50%;
  display: block;
  content: "";
  background: #F9F9FE;
  position: absolute;
  left: 5px;
  top: 5px;
  height: 150px;
  width: 150px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .circle__item:after {
    left: 3px;
    top: 3px;
    height: 134px;
    width: 135px;
  }
}

.circle__item-first {
  background-image: -o-linear-gradient(right, #FFFFFF 50%, transparent 50%), -o-linear-gradient(250deg, transparent 50%, #2F3A55 50%);
  background-image: linear-gradient(270deg, #FFFFFF 50%, transparent 50%), linear-gradient(200deg, transparent 50%, #2F3A55 50%);
  margin-right: 160px;
  top: 50%;
  left: 16%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .circle__item-first {
    margin-right: 111px;
    left: 9%;
  }
}
@media (max-width: 767px) {
  .circle__item-first {
    left: 32%;
  }
}

.circle__item-second {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, transparent)), -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, #2F3A55));
  background-image: -o-linear-gradient(right, transparent 50%, transparent 50%), -o-linear-gradient(right, transparent 50%, #2F3A55 50%);
  background-image: linear-gradient(270deg, transparent 50%, transparent 50%), linear-gradient(270deg, transparent 50%, #2F3A55 50%);
  margin-right: 160px;
  top: 50%;
  left: 18%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .circle__item-second {
    margin-right: 111px;
    left: 9%;
  }
}
@media (max-width: 767px) {
  .circle__item-second {
    left: 32%;
  }
}

.circle__item-third {
  background-image: -o-linear-gradient(155deg, transparent 50%, #2F3A55 50%), -o-linear-gradient(225deg, transparent 50%, #2F3A55 50%);
  background-image: linear-gradient(295deg, transparent 50%, #2F3A55 50%), linear-gradient(225deg, transparent 50%, #2F3A55 50%);
  top: 50%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .circle__item-third {
    left: 9%;
  }
}
@media (max-width: 767px) {
  .circle__item-third {
    left: 32%;
  }
}

.circle__item-content {
  position: absolute;
  left: 33%;
  width: 200px;
  top: 28%;
  z-index: 3;
}
@media (max-width: 767px) {
  .circle__item-content {
    top: 27%;
  }
}
.circle__item-content--title {
  font-style: normal;
  font-weight: bold;
  font-size: 23px;
  line-height: 90%;
  color: #283F75;
  padding-bottom: 5px;
}
@media (max-width: 1199px) {
  .circle__item-content--title {
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
  }
}
.circle__item-content--description {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: #5B5B5B;
}
@media (max-width: 1199px) {
  .circle__item-content--description {
    font-size: 15px;
    line-height: 150%;
  }
}

.case__matter-inner--practice {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #C6CDDA;
  padding: 30px 0;
  margin: 0;
}
.case__matter-inner--practice:last-child {
  border-bottom: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .case__matter-inner--practice {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .case__matter-inner--practice {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.case-practice__border {
  border-bottom: 1px solid #C6CDDA;
}

.case__matter-inner--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .case__matter-inner--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 0;
  }
}

.about__img-hover {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.about__img-hover:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.specialists__case-img--practice {
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  padding: 5px;
  width: 110px;
  height: 110px;
}
@media (max-width: 1199px) {
  .specialists__case-img--practice {
    border: none;
    padding: 0;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 1199px) {
  .about__img--size {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .about__img--size {
    width: 60px;
    height: 60px;
  }
}

.case-practice__wrapper-left {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 520px;
}
@media (max-width: 1199px) {
  .case-practice__wrapper-left {
    width: 370px;
    gap: 38px 0;
  }
}
@media (max-width: 767px) {
  .case-practice__wrapper-left {
    width: 100%;
    gap: 0;
  }
}

.case__about-more--practice {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.case-practice__wrapper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 410px;
}
@media (max-width: 1199px) {
  .case-practice__wrapper-right {
    position: absolute;
    right: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 230px;
  }
}
@media (max-width: 767px) {
  .case-practice__wrapper-right {
    position: absolute;
    left: 75px;
    display: block;
    -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;
    margin-top: 7px;
    width: 225px;
  }
}

.case__description {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  color: #283F75;
}
.case__description :active {
  color: #8992A7;
}
.case__description :focus {
  color: #8992A7;
}
@media (max-width: 1199px) {
  .case__description {
    font-size: 18px;
    line-height: 130%;
  }
}
@media (max-width: 767px) {
  .case__description {
    font-size: 15px;
    line-height: 140%;
    font-weight: bold;
  }
}

.case__matter-recovered {
  color: #B0865F;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 1199px) {
  .case__matter-recovered {
    margin-top: 8px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .case__matter-recovered {
    margin-right: 0;
    margin-bottom: 5px;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .media-page__author-name--bg {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .media-page__author-name--bg {
    padding: 0;
    background: none;
  }
}

.separator {
  height: 110px;
}

.case__description {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.case__description:hover {
  color: var(--bg-blue);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.loadmore__btn {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.loadmore__btn:hover {
  border: none;
  background-color: var(--bg-grey-light);
  color: var(--blue-text);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.media-publications__list-news {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .media-publications__list-news {
    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;
  }
}

.media-publications__item-news {
  padding: 30px;
  border: 1px solid var(--lite-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 560px;
  width: 100%;
}
@media (max-width: 1199px) {
  .media-publications__item-news {
    width: 354px;
  }
}
@media (max-width: 767px) {
  .media-publications__item-news {
    width: 300px;
    margin: 0 auto;
  }
}

.media-publications__text-news {
  margin-top: 0;
}
@media (max-width: 1199px) {
  .media-publications__text-news {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .media-publications__text-news {
    font-size: 15px;
  }
}

.media-publications__item--short-news {
  padding: 30px;
  border: 1px solid var(--lite-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 360px;
  width: 100%;
}
@media (max-width: 1199px) {
  .media-publications__item--short-news {
    padding: 30px 20px;
    width: 354px;
  }
}
@media (max-width: 767px) {
  .media-publications__item--short-news {
    padding: 25px 20px;
    height: 177px;
    width: 300px;
    margin-bottom: 0;
  }
}

.subscription {
  border: none;
  background-image: url("../images/Telegram-bg.png");
  background-size: 560px 222px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
}
@media (max-width: 1199px) {
  .subscription {
    background-size: 354px 100%;
  }
}
@media (max-width: 767px) {
  .subscription {
    background-size: 300px 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.subscription h3 {
  margin-top: 0;
  color: var(--blue-heading);
  line-height: 130%;
  display: inline-block;
  font-weight: 400;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
  font-feature-settings: "pnum" on, "lnum" on;
  letter-spacing: -0.18px;
  width: 500px;
  font-size: 21px;
  margin-left: 2px;
}
.subscription h3 :hover {
  color: var(--hover-grey);
}
@media (max-width: 1199px) {
  .subscription h3 {
    font-size: 18px;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .subscription h3 {
    text-align: center;
  }
}

.subscription p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-text);
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .subscription p {
    font-size: 15px;
    margin-top: 10px;
  }
}

.btn__news {
  padding: 0;
  width: 270px;
  margin-top: 32px;
}
@media (max-width: 1199px) {
  .btn__news {
    width: 260px;
    margin-top: 20px;
  }
}

.news__quote-supervisor {
  position: absolute;
  width: 110px;
  height: 110px;
  top: 12%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  border: 5px solid var(--bg-white);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 1199px) {
  .news__quote-supervisor {
    top: 15%;
  }
}
@media (max-width: 767px) {
  .news__quote-supervisor {
    top: 15%;
  }
}

.news__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 45px;
}
@media (max-width: 1199px) {
  .news__quote {
    margin-top: 20px;
  }
}
.news__quote-content {
  width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  background: var(--bg-dark);
  padding: 90px 130px 60px 30px;
  margin-top: 40px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .news__quote-content {
    padding: 90px 100px 60px 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 57px;
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .news__quote-content {
    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;
    padding: 70px 20px 30px 20px;
    gap: 15px 0;
    margin: 60px 10px 30px 10px;
  }
}
.news__quote-content p {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
}
@media (max-width: 1199px) {
  .news__quote-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news__quote-content p {
    font-size: 16px;
  }
}
.news__quote-content--text {
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 150%;
  text-align: right;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .news__quote-content--text {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .news__quote-content--text {
    font-size: 13px;
    text-align: center;
  }
}
.news__quote-content span {
  color: var(--bor-gold);
}
.news__quote-img {
  width: 60px;
  height: 47px;
}
@media (max-width: 767px) {
  .news__quote-img {
    text-align: center;
    width: 35px;
    height: 26px;
  }
}

.media-page__bottom-news {
  width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: 20px;
  margin-bottom: 120px;
}
@media (max-width: 1199px) {
  .media-page__bottom-news {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .media-page__bottom-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-bottom: 70px;
  }
}

.page-main__title-news {
  font-size: 46px;
}
@media (max-width: 1199px) {
  .page-main__title-news {
    font-size: 24px;
  }
}

.media-page__quote-news::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-image: url("../images/icon/icon-news.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .media-page__quote-news::before {
    width: 35px;
    height: 39px;
  }
}
@media (max-width: 767px) {
  .media-page__quote-news::before {
    padding-left: 35px;
    margin-top: 0;
  }
}

.news-comment {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .news-comment {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .news-comment {
    margin-top: 50px;
  }
}
.news-comment__title {
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  color: #283F75;
}
@media (max-width: 1199px) {
  .news-comment__title {
    text-align: center;
  }
}

.case__about-name--news {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.media-page__author-news {
  margin-top: 30px;
  margin-bottom: 15px;
}

.line--indent {
  margin-top: 110px;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .line--indent {
    margin-top: 70px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .line--indent {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

@media (max-width: 1199px) {
  .news-content {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news-content--title {
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #283F75;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .news-content--title {
    margin-bottom: 40px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .news-content--title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.case__matter-inner--media {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .case__matter-inner--media {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.media__case-img {
  width: 216px;
  max-height: 120px;
}
@media (max-width: 1199px) {
  .media__case-img {
    width: 140px;
  }
}

@media (max-width: 1199px) {
  .about__img-media {
    width: 100%;
    max-height: 49px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .case__matter-inner-left--media {
    width: 370px;
    gap: 20px 0;
  }
}
@media (max-width: 767px) {
  .case__matter-inner-left--media {
    width: 100%;
    gap: 0;
  }
}

@media (max-width: 767px) {
  .media-page__data-pos {
    position: absolute;
    top: 30px;
    right: 20px;
  }
}

.specialists__list-media {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.commit__title-padding {
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .commit__title-padding {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .commit__title-padding {
    margin-bottom: 15px;
  }
}

.agency__item {
  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;
}
@media (max-width: 767px) {
  .agency__item {
    margin-bottom: 25px;
  }
}

.specialists__shell-description {
  position: relative;
  padding-top: 10px;
}

.specialists__shell-description:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  background: var(--bor-grey);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .specialists__shell-description:before {
    height: 0;
  }
}

.specialists__education {
  display: none;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-text);
  padding-top: 10px;
}
@media (min-width: 767px) {
  .specialists__education {
    display: block;
  }
}

.specialists__education span {
  font-size: 15px;
  font-weight: 700;
}

.specialists__experience span {
  font-size: 15px;
  font-weight: 700;
}

.loadmore-media {
  display: none;
}
@media (max-width: 1199px) {
  .loadmore-media {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
  }
}

.line--width {
  width: 1160px;
}
@media (max-width: 1199px) {
  .line--width {
    width: 100%;
  }
}

.line--full {
  width: 1160px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .line--full {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .line--full {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 1199px) {
  .line--hidden {
    display: none;
  }
}

.specialists-bg {
  background: var(--bg-grey-light);
  padding-bottom: 60px;
}

.team__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .team__quote {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .team__quote {
    margin-top: 30px;
  }
}
.team__quote-content {
  width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .team__quote-content {
    margin-left: 20px;
    margin-right: 20px;
    gap: 0 20px;
  }
}
@media (max-width: 767px) {
  .team__quote-content {
    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;
    gap: 15px 0;
    margin: 0 10px 30px 10px;
  }
}
.team__quote-content--title p {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
  width: 960px;
}
@media (max-width: 1199px) {
  .team__quote-content--title p {
    font-size: 18px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .team__quote-content--title p {
    font-size: 16px;
  }
}
.team__quote-content--text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
  margin-top: 30px;
  width: 1050px;
}
@media (max-width: 1199px) {
  .team__quote-content--text {
    font-size: 15px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .team__quote-content--text {
    font-size: 13px;
    text-align: center;
  }
}

.experience__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .experience__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.experience__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
@media (max-width: 1199px) {
  .experience__left {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .experience__left {
    padding-bottom: 25px;
  }
}
.experience__left p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  width: 560px;
}
@media (max-width: 1199px) {
  .experience__left p {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .experience__left p {
    font-size: 15px;
    text-align: center;
  }
}

.experience__right {
  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;
}
@media (max-width: 767px) {
  .experience__right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.experience__right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  width: 349px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .experience__right-top {
    width: 100%;
    margin-bottom: 0;
  }
}
.experience__right-top--number {
  font-style: normal;
  font-weight: normal;
  font-size: 67px;
  line-height: 80px;
  text-align: right;
  letter-spacing: -0.03em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gold-text);
}
@media (max-width: 767px) {
  .experience__right-top--number {
    font-size: 48px;
    line-height: 58px;
  }
}
.experience__right-top--text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}
@media (max-width: 767px) {
  .experience__right-top--text {
    font-size: 15px;
  }
}
.experience__right .experience__right-bottom:before {
  position: absolute;
  content: "";
  border-bottom: 1px solid var(--bor-grey);
  width: 545px;
}
@media (max-width: 767px) {
  .experience__right .experience__right-bottom:before {
    border: none;
  }
}
.experience__right .experience__right-bottom-right:before {
  position: absolute;
  content: "";
  border-left: 1px solid var(--bor-grey);
  height: 116px;
  right: 280px;
}
@media (max-width: 767px) {
  .experience__right .experience__right-bottom-right:before {
    border: none;
  }
}
.experience__right-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 35px;
}
@media (max-width: 767px) {
  .experience__right-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.experience__right-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  width: 255px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .experience__right-bottom-left {
    width: 100%;
  }
}
.experience__right-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  width: 255px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .experience__right-bottom-right {
    width: 100%;
  }
}
.experience__right-bottom--number {
  font-style: normal;
  font-weight: normal;
  font-size: 48px;
  line-height: 58px;
  text-align: right;
  letter-spacing: -0.02em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gold-text);
}
.experience__right-bottom--text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}

@media (max-width: 1199px) {
  .specialists__list-team {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.specialists__wrapper-padding {
  padding-top: 0;
}

.media-page__bottom-team {
  margin-top: 70px;
  margin-bottom: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .media-page__bottom-team {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .media-page__bottom-team {
    margin-bottom: 70px;
  }
}

.media-page__content-employee {
  width: 745px;
}
@media (max-width: 1199px) {
  .media-page__content-employee {
    width: 100%;
  }
}

.media-page__content-employee ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

@media (max-width: 767px) {
  .media-page__author-employee {
    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;
  }
}

.specialists__shell-img--employee {
  width: 160px;
  height: 160px;
}

.employee__img {
  width: 160px;
  height: 160px;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
}

.about__wrapper-employee {
  padding-left: 40px;
}
@media (max-width: 1199px) {
  .about__wrapper-employee {
    padding-left: 27px;
  }
}
@media (max-width: 767px) {
  .about__wrapper-employee {
    text-align: center;
    padding-left: 0;
    padding-top: 15px;
  }
}

.case__about-name--employee {
  font-size: 34px;
  line-height: 130%;
  width: 460px;
}
@media (max-width: 1199px) {
  .case__about-name--employee {
    font-size: 22px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .case__about-name--employee {
    width: 300px;
    padding-bottom: 10px;
  }
}

.case__about-qualification--employee {
  font-size: 16px;
}
@media (max-width: 767px) {
  .case__about-qualification--employee {
    font-size: 15px;
    width: 100%;
  }
}

.team-employee__qualification {
  width: 380px;
  border: 1px solid var(--bor-gold);
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .team-employee__qualification {
    width: 300px;
    margin: 0 auto;
  }
}
.team-employee__qualification-text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px !important;
  line-height: 140%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
}
.team-employee__qualification-text span {
  font-size: 15px;
  font-weight: bold;
  color: var(--blue-heading);
}

.awards__wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
  counter-reset: num;
  justify-items: center;
}
@media (max-width: 1199px) {
  .awards__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .awards__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.awards__wrapper-btn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .awards__wrapper-btn {
    margin-top: 30px;
  }
}

.awards__toggle {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  background: var(--button-grey);
}

.awards__toggle-img {
  width: 10px;
  height: 10px;
}

.awards__toggle:hover {
  background: #8992A7;
}

.awards__wrapper-btn.opened .awards__toggle-img {
  -webkit-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
          transform: scale(1, -1);
}

.awards__item.noshow {
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.hidden-item {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  -o-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

#awardsItem {
  visibility: visible;
}

.team-employee__sub-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 767px) {
  .team-employee__sub-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.team-employee__social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
.team-employee__social-link {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  border: 1px solid #D9A77A;
  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;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.team-employee__social-link:hover {
  background: rgba(176, 134, 95, 0.2);
}

.page-header__error {
  border-bottom: 2px solid #2F3A55;
}

.error-404 {
  background-color: var(--bg-dark);
  min-height: 100vh;
  padding-bottom: 4%;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .error-404 {
    padding-bottom: 50px;
    height: 100%;
  }
}

.error-404__shell-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 960px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
  padding-top: 65px;
}
@media (min-width: 1500px) {
  .error-404__shell-preview {
    padding-top: 105px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 1199px) {
  .error-404__shell-preview {
    width: calc(81.48vw - 16.96px);
    padding-top: calc(132.75px - 2.31vw);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .error-404__shell-preview {
    padding-top: calc(3.47px + 14.54vw);
  }
}

.error-404__text {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: -0.03em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--bg-grey);
  position: relative;
  font-size: 285px;
}
@media (min-width: 1500px) {
  .error-404__text {
    font-size: 365px;
  }
}
@media (max-width: 1400px) {
  .error-404__text {
    font-size: 200px;
  }
}
@media (max-width: 1199px) {
  .error-404__text {
    font-size: calc(45.8px + 26.62vw);
  }
}
@media (max-width: 767px) {
  .error-404__text {
    font-size: calc(44px + 19vw);
  }
}

.error-404__img {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 195px;
}
@media (min-width: 1500px) {
  .error-404__img {
    width: 270px;
  }
}
@media (max-width: 1400px) {
  .error-404__img {
    width: 140px;
  }
}
@media (max-width: 1199px) {
  .error-404__img {
    width: calc(23.14vw - 7.55px);
  }
}
@media (max-width: 767px) {
  .error-404__img {
    width: calc(32.72px + 13.9vw);
    top: calc( -11.12px - 2.46vw);
  }
}

@media (max-width: 1199px) {
  .error-404__description {
    width: calc(81.48vw - 16.96px);
    margin: 0 auto;
  }
}

.error-404__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
  margin-top: 12px;
}
@media (min-width: 1500px) {
  .error-404__title {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .error-404__title {
    font-size: calc(13.41px + 2.18vw);
  }
}

.error-404__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-text);
  margin-top: 30px;
}
@media (max-width: 767px) {
  .error-404__subtitle {
    font-size: calc(12.85px + 0.67vw);
  }
}

.error-404__links {
  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;
  gap: 20px;
  margin-top: 55px;
}

.error-404__item {
  padding: 10px 20px;
  border: 1px solid var(--blue-text);
  border-radius: 100px;
  width: 260px;
  -webkit-transition: border-color 0.4s;
  -o-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.error-404__item:hover {
  border-color: var(--blue-text);
}
.error-404__item:hover .error-404__link {
  color: var(--blue-text);
}
.error-404__item:hover .error-404__shell-svg path {
  stroke: var(--blue-text);
}

.error-404__link {
  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;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
@media (max-width: 767px) {
  .error-404__link {
    font-size: calc(12.85px + 0.67vw);
  }
}

.error-404__shell-svg {
  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;
  width: 40px;
  height: 40px;
  background: #2F3A55;
  border-radius: 100%;
}
.error-404__shell-svg path {
  -webkit-transition: stroke 0.4s;
  -o-transition: stroke 0.4s;
  transition: stroke 0.4s;
}

.title-h2 {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 1199px) {
  .title-h2 {
    font-size: calc(0.617169373549885px + 2.78422273781903vw);
  }
}
@media (max-width: 768px) {
  .title-h2 {
    font-size: 22px;
  }
}

.contact-map {
  height: 650px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 1199px) {
  .contact-map {
    height: calc(177.07656612529px + 39.4431554524362vw);
  }
}
@media (max-width: 768px) {
  .contact-map {
    height: 480px;
  }
}

.contacts__main-title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  grid-area: title;
}
@media (max-width: 1199px) {
  .contacts__main-title {
    font-size: calc(5.10vw - 15.2px);
  }
}
@media (max-width: 768px) {
  .contacts__main-title {
    font-size: 24px;
  }
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 40px;
  margin-top: 70px;
  grid-area: list;
  width: 100%;
}
@media (max-width: 1199px) {
  .contacts__list {
    margin-top: calc(6.96vw - 13.45px);
    gap: 20px;
    margin-bottom: 70px;
  }
}

.contacts__item {
  padding-top: 35px;
  max-width: 360px;
  width: 100%;
}
@media (max-width: 1199px) {
  .contacts__item {
    max-width: 354px;
  }
}
@media (max-width: 768px) {
  .contacts__item {
    max-width: 100%;
  }
}
.contacts__item--width100 {
  max-width: 100%;
  padding-top: 0;
}
@media (max-width: 1199px) {
  .contacts__item--width100 {
    max-width: 354px;
  }
}

.contacts__shell {
  position: relative;
  border: 1px solid #C6CDDA;
  padding: 0 30px 30px;
  height: 100%;
  min-height: 295px;
}
@media (max-width: 1199px) {
  .contacts__shell {
    padding: 0 20px 20px;
  }
}
@media (max-width: 768px) {
  .contacts__shell {
    min-height: auto;
  }
}

.contacts__icon-shell {
  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;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: var(--bg-grey);
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contacts__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--bg-grey);
  margin-top: 60px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .contacts__title {
    font-size: calc(12.65px + 0.6966vw);
    margin-top: calc(42.576px + 2.32vw);
    margin-bottom: calc(1.09px + 1.16vw);
  }
}
@media (max-width: 768px) {
  .contacts__title {
    font-size: 18px;
  }
}

.contacts__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.contacts__subtitle--nomargin {
  margin-bottom: 0;
}
.contacts__subtitle--block {
  display: block;
}
.contacts__subtitle--link {
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.contacts__subtitle--link:hover {
  color: var(--hover-grey);
}
@media (max-width: 1199px) {
  .contacts__subtitle {
    font-size: calc(12.436px + 0.464vw);
    margin-bottom: calc(6.09px + 1.16vw);
  }
}

.contacts__title-down {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: var(--blue-heading);
  margin: 10px 0;
}
@media (max-width: 1199px) {
  .contacts__title-down {
    margin: calc(1.16vw - 3,91px) 0;
  }
}

.contacts__button {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: var(--gray-text);
  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;
  width: 100%;
  height: 60px;
  border: 1px solid var(--button-grey);
  margin-top: 49px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
}
.contacts__button:hover {
  color: #8992A7;
  background: #F9F9FE;
  border-color: transparent;
}
@media (max-width: 1199px) {
  .contacts__button {
    margin-top: calc(4.64vw - 6.638px);
  }
}
@media (max-width: 768px) {
  .contacts__button {
    margin-top: calc(15.28px + 1.785vw);
  }
}

.social-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .social-line {
    max-width: 354px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    margin-bottom: 0;
    gap: 30px 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.social-line__write,
.social-line__web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .social-line__write,
.social-line__web {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.social-line__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
}

.social-line__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-line__item a {
  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;
  border-radius: 100%;
  border: 1px solid var(--button-grey);
  width: 54px;
  height: 54px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background: transparent;
  cursor: pointer;
}
.social-line__item a:hover {
  color: #8992A7;
  background: #F9F9FE;
  border-color: transparent;
}

.convenience {
  background: #18233A;
  padding: 100px 0 110px;
}
@media (max-width: 1199px) {
  .convenience {
    padding-top: calc(9.28074245939675vw - 11.2761020881671px);
    padding-bottom: calc(9.28074245939675vw - 1.27610208816705px);
  }
}
@media (max-width: 768px) {
  .convenience {
    padding-top: calc(42.8571428571429px + 2.23214285714286vw);
    padding-bottom: calc(52.8571428571429px + 2.23214285714286vw);
  }
}

.convenience__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 80px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .convenience__list {
    gap: 0 calc(13.9211136890951vw - 86.9141531322506px);
  }
}
@media (max-width: 768px) {
  .convenience__list {
    margin-top: calc(22.8571428571429px + 2.23214285714286vw);
    gap: 50px 0;
    -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;
  }
}

.convenience__item {
  width: 320px;
  position: relative;
}
@media (max-width: 768px) {
  .convenience__item {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .convenience__item {
    max-width: 490px;
    width: 100%;
  }
}
.convenience__item + .convenience__item::before {
  display: block;
  content: "";
  width: 1px;
  height: 360px;
  background-color: #2F3A55;
  position: absolute;
  left: -40px;
}
@media (max-width: 1199px) {
  .convenience__item + .convenience__item::before {
    left: calc(15.6380510440835px - 4.64037122969838vw);
  }
}
@media (max-width: 768px) {
  .convenience__item + .convenience__item::before {
    width: 100%;
    top: -25px;
    left: auto;
    height: 1px;
  }
}

.convenience__shell-title {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .convenience__shell-title {
    gap: calc(5.80046403712297vw - 29.5475638051044px);
  }
}
@media (max-width: 768px) {
  .convenience__shell-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
    max-width: 580px;
    margin: 0 auto;
  }
}

.convenience__number {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 140px;
  line-height: 85%;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--bg-grey);
}
.convenience__number--color {
  color: var(--gold-text);
}
@media (max-width: 1199px) {
  .convenience__number {
    font-size: calc(16.9373549883991vw - 63.0788863109049px);
  }
}
@media (max-width: 768px) {
  .convenience__number {
    font-size: 67px;
  }
}

.convenience__title {
  min-height: 54px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 130%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
}
.convenience__title span {
  color: var(--gold-light);
}
@media (max-width: 1199px) {
  .convenience__title {
    font-size: calc(12.6542923433875px + 0.696055684454756vw);
    min-height: calc(31.7447795823666px + 1.85614849187935vw);
  }
}
@media (max-width: 768px) {
  .convenience__title {
    font-size: 18px;
    min-height: auto;
    max-width: 204px;
    text-align: start;
  }
}

.convenience__subtitle {
  margin-top: 15px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--lite-gray);
}
@media (max-width: 1199px) {
  .convenience__subtitle {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .convenience__subtitle {
    max-width: 580px;
    margin: 15px auto;
    text-align: start;
  }
}

.convenience__button {
  margin: 25px auto 0;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--white);
  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;
  gap: 0 10px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
.convenience__button:hover {
  color: #8992A7;
}
.convenience__button:hover span {
  background: #2F3A55;
}
.convenience__button:hover span path {
  fill: #8992A7;
}
.convenience__button span {
  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;
  background: #2F3A55;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.convenience__button span path {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .convenience__button {
    margin: 30px auto 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    max-width: 580px;
  }
}

.requisites__wrapper {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .requisites__wrapper {
    margin-top: calc(9.28074245939675vw - 11.2761020881671px);
  }
}
@media (max-width: 768px) {
  .requisites__wrapper {
    margin-top: calc(42.8571428571429px + 2.23214285714286vw);
  }
}

.requisites__list {
  margin-top: 48px;
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .requisites__list {
    margin-bottom: calc(9.28074245939675vw - 1.27610208816705px);
  }
}
@media (max-width: 768px) {
  .requisites__list {
    margin-bottom: calc(52.8571428571429px + 2.23214285714286vw);
  }
}

.requisites__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--bor-grey);
}
@media (max-width: 1199px) {
  .requisites__item {
    padding: 23px 0 24px;
  }
}
@media (max-width: 768px) {
  .requisites__item {
    padding: 16px 0 15px;
  }
}

.requisites__text-left {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: var(--blue-heading);
  max-width: 460px;
}
@media (max-width: 1199px) {
  .requisites__text-left {
    max-width: calc( 53.3642691415313vw - 179.837587006961px);
  }
}
@media (max-width: 768px) {
  .requisites__text-left {
    max-width: calc(46.875vw - 40px);
  }
}

.requisites__text-right {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  text-align: right;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  max-width: 660px;
}
@media (max-width: 1199px) {
  .requisites__text-right {
    max-width: calc(153.69373549884px + 42.2273781902552vw);
  }
}
@media (max-width: 768px) {
  .requisites__text-right {
    max-width: calc(66.5178571428571vw - 32.8571428571428px);
  }
}

.calculator {
  max-width: 760px;
  width: 100%;
}
@media (max-width: 1199px) {
  .calculator {
    max-width: none;
  }
}

.calculator__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 46px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  max-width: 655px;
}
@media (max-width: 1199px) {
  .calculator__title {
    margin: 0 auto;
    text-align: center;
    font-size: calc(5.1vw - 15.2px);
  }
}
@media (max-width: 768px) {
  .calculator__title {
    font-size: 24px;
    max-width: 360px;
  }
}

.calculator__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  margin: 27px 0;
  max-width: 760px;
}
@media (max-width: 1199px) {
  .calculator__subtitle {
    margin: calc(2.18px + 2.32vw) 0;
    font-size: calc(12.44px + 0.46vw);
    letter-spacing: 0.5px;
  }
}
@media (max-width: 768px) {
  .calculator__subtitle {
    margin: calc(11.42px + 1.11vw) 0;
    font-size: 15px;
  }
}

.calculator__wrapper-text {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.calculator__subtext {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-top: 20px;
}
.calculator__subtext:first-child {
  margin-top: 0;
}
.calculator__subtext span {
  color: #283F75;
  margin-left: 5px;
  font-weight: 700;
}

.calculator__shell-hidden {
  margin-bottom: 60px;
}
.calculator__shell-hidden--on {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1199px) {
  .calculator__shell-hidden {
    margin: 0 auto;
    margin-bottom: calc(32.18px + 2.32vw);
  }
}
@media (max-width: 768px) {
  .calculator__shell-hidden {
    margin-bottom: calc(32.86px + 2.23vw);
  }
}

.calculator__wrapper-title {
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .calculator__wrapper-title {
    margin-bottom: 30px;
  }
}

.calculator__title-2 {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 1199px) {
  .calculator__title-2 {
    font-size: calc(11.31px + 1.39vw);
  }
}
@media (max-width: 540px) {
  .calculator__title-2 {
    font-size: 22px;
    text-align: center;
  }
}

.calculator__tablet-shell {
  overflow: auto;
}

.calculator__line {
  width: 100%;
  height: 1px;
  background-color: #C6CDDA;
}
.calculator__line--first {
  margin: 30px 0 20px;
}
@media (max-width: 540px) {
  .calculator__line--first {
    margin: 25px 0 15px;
  }
}
.calculator__line--second {
  margin: 20px 0;
}
@media (max-width: 540px) {
  .calculator__line--second {
    margin: 25px 0 15px;
  }
}

.calculator__callback {
  background: #18233A;
  padding: 50px 50px 60px;
  margin-top: 50px;
  margin-bottom: 60px;
}
.calculator__callback--hidden {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 1199px) {
  .calculator__callback {
    margin: 56px -20px 64px;
    padding: 60px 0 70px;
  }
}
@media (max-width: 768px) {
  .calculator__callback {
    margin: 60px -10px 50px;
  }
}
@media (max-width: 1199px) {
  .calculator__callback .feedback__block-info {
    max-width: 540px;
    margin: 0 auto;
  }
}
.calculator__callback .form {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
}
@media (max-width: 768px) {
  .calculator__callback .form {
    padding: 0 30px;
  }
}
.calculator__callback .feedback__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  width: 100%;
}
@media (max-width: 1199px) {
  .calculator__callback .feedback__title {
    max-width: 354px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .calculator__callback .form__shell {
    width: 100%;
    margin: 0 auto;
  }
}
.calculator__callback .form__data {
  width: 320px;
  background: #2F3A55;
  color: #8992A7;
}
.calculator__callback .form__data--not-empty ~ .form__desc {
  top: 7px;
}
@media (max-width: 1199px) {
  .calculator__callback .form__data--not-empty ~ .form__desc {
    top: 2px;
  }
}
@media (max-width: 1199px) {
  .calculator__callback .form__data {
    width: 260px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .calculator__callback .form__data {
    width: 100%;
    max-width: 540px;
  }
}
.calculator__callback .form__desc {
  color: #8992A7;
}
@media (max-width: 1199px) {
  .calculator__callback .form__desc {
    top: 10px;
  }
}
.calculator__callback .form__button {
  max-width: 320px;
  width: 100%;
}
@media (max-width: 1199px) {
  .calculator__callback .form__button {
    max-width: 260px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .calculator__callback .form__button {
    margin: 0 auto;
    max-width: 540px;
  }
}
.calculator__callback .feedback__attention {
  color: #8992A7;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .calculator__callback .feedback__attention {
    font-size: 15px;
    margin: 20px auto 0;
    max-width: 540px;
  }
}
@media (max-width: 540px) {
  .calculator__callback .feedback__attention {
    max-width: 354px;
    margin: 20px auto 0;
  }
}
.calculator__callback .form__shell--mask-phone:before {
  color: #8992A7;
}
@media (max-width: 1199px) {
  .calculator__callback .form__shell--mask-phone:before {
    top: 18px;
  }
}

.form-calculator {
  margin: 50px 0 60px;
  max-width: 660px;
  width: 100%;
}
@media (max-width: 1199px) {
  .form-calculator {
    margin: 0 auto;
    margin-top: calc(22.18px + 2.32vw);
    margin-bottom: calc(32.18px + 2.32vw);
    max-width: none;
    padding: 0 47px 0 20px;
  }
}
@media (max-width: 768px) {
  .form-calculator {
    margin-top: calc(22.86px + 2.23vw);
    margin-bottom: calc(32.86px + 2.23vw);
    padding: 0;
  }
}

.form-calculator__error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
}
.form-calculator__error h2 {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #B33232;
}
@media (max-width: 768px) {
  .form-calculator__error h2 {
    text-align: center;
    font-size: 22px;
  }
}
.form-calculator__error p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #CD191B;
  position: relative;
}
.form-calculator__error p::before {
  position: relative;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #CD191B;
  margin: -2px 8px 0;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  border-radius: 100%;
  content: "";
}
@media (max-width: 768px) {
  .form-calculator__error p {
    font-size: 13px;
  }
}

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

.form-calculator__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .form-calculator__title {
    font-size: calc(12.86px + 0.67vw);
  }
}

.form-calculator__label {
  width: 100%;
  height: 60px;
}
.form-calculator__label svg {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.form-calculator__input {
  width: 100%;
  padding: 18px 20px 19px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  background: var(--bg-grey-light);
  border: 1px solid var(--bor-grey);
  position: relative;
}
@media (max-width: 768px) {
  .form-calculator__input {
    padding: 8px 20px 5px;
  }
}
.form-calculator__input--error {
  border-color: #CD191B;
}

.form-calculator__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 540px) {
  .form-calculator__shell {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-calculator__shell-label {
  width: 100%;
}

.form-calculator__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #8992A7;
  margin-top: 10px;
}
@media (max-width: 540px) {
  .form-calculator__subtitle {
    font-size: 13px;
    margin-top: 5px;
  }
}

.form-calculator__shell-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 10px 20px;
}
@media (max-width: 540px) {
  .form-calculator__shell-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-calculator__button {
  width: 320px;
  height: 60px;
  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;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  cursor: pointer;
}
@media (max-width: 540px) {
  .form-calculator__button {
    width: 100%;
  }
}

.form-calculator__button--on {
  color: var(--white);
  background: var(--bor-gold);
  border-color: transparent;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
.form-calculator__button--on:hover {
  background-color: #9E7752;
}

.form-calculator__button--reset {
  color: var(--bor-grey);
  background: var(--white);
  border: 1px solid var(--bor-grey);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.form-calculator__button--reset:hover {
  background-color: #F9F9FE;
  border-color: transparent;
  color: #8992A7;
}

.form-calculator__select {
  min-height: 60px;
  padding: 18px 20px 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.choices__list--single {
  padding: 18px 20px 19px;
}

.choices__inner {
  padding: 18px 20px 19px;
  min-height: 60px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  background: var(--bg-grey-light);
  border: 1px solid var(--bor-grey);
}

.choices[data-type*=select-one] .choices__inner {
  padding: 0;
}

.choices__placeholder {
  opacity: 1;
}

.is-flipped .choices__list--dropdown {
  top: 100%;
  bottom: auto;
  border-radius: 0;
}

.choices[data-type*=select-one]:after {
  content: "";
  display: block;
  height: 6px;
  width: 10px;
  background-color: #5B5B5B;
  border: none;
  position: absolute;
  right: 21px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
  -webkit-clip-path: polygon(0% 15%, 15% 0%, 50% 55%, 85% 0%, 100% 15%, 50% 100%, 50% 100%);
          clip-path: polygon(0% 15%, 15% 0%, 50% 55%, 85% 0%, 100% 15%, 50% 100%, 50% 100%);
}

.choices[data-type*=select-one].is-open:after {
  margin-top: -4px;
  border-color: transparent;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 540px) {
  .choices__list--single .choices__item {
    max-width: 230px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0;
}

.choices__list--dropdown .choices__item {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  padding-left: 20px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: rgba(40, 63, 117, 0.1);
  color: #283f75;
}

.form-calculator__input--disabled {
  pointer-events: none;
  opacity: 0.5;
}

.form-calculator__input--summa::-webkit-input-placeholder {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.form-calculator__input--summa::-moz-placeholder {
  -moz-transition: color 0.4s;
  transition: color 0.4s;
}

.form-calculator__input--summa:-ms-input-placeholder {
  -ms-transition: color 0.4s;
  transition: color 0.4s;
}

.form-calculator__input--summa::-ms-input-placeholder {
  -ms-transition: color 0.4s;
  transition: color 0.4s;
}

.form-calculator__input--summa::placeholder {
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.form-calculator__input--summa:focus::-webkit-input-placeholder {
  color: transparent;
}
.form-calculator__input--summa:focus::-moz-placeholder {
  color: transparent;
}
.form-calculator__input--summa:focus:-ms-input-placeholder {
  color: transparent;
}
.form-calculator__input--summa:focus::-ms-input-placeholder {
  color: transparent;
}
.form-calculator__input--summa:focus::placeholder {
  color: transparent;
}

.qs-datepicker-container {
  font-size: 15px;
  font-family: Lato;
  color: #5B5B5B;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #C6CDDA;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: #5b5b5b;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.263921875em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}

.qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-overlay .qs-overlay-month {
  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;
  width: calc(100% / 3);
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  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;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.15s;
  -o-transition: background 0.15s;
  transition: background 0.15s;
  background: rgba(40, 63, 117, 0.1);
}

.qs-arrow:hover {
  background: rgba(176, 134, 95, 0.25);
}

.qs-arrow:hover.qs-left:after {
  border-right-color: #5B5B5B;
}

.qs-arrow:hover.qs-right:after {
  border-left-color: #5B5B5B;
}

.qs-arrow:after {
  content: "";
  border: 0.390625em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-arrow.qs-left:after {
  border-right-color: #5B5B5B;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-arrow.qs-right:after {
  border-left-color: #5B5B5B;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  cursor: pointer;
}

.qs-month-year:active:focus, .qs-month-year:focus {
  outline: none;
}

.qs-num {
  background-color: rgba(40, 63, 117, 0.1);
  border-radius: 0;
}

.qs-month {
  padding-right: 0.5ex;
}

.qs-year {
  padding-left: 0.5ex;
}

.qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-square {
  width: calc(100% / 7);
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1.5px solid #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  -o-transition: background 0.1s;
  transition: background 0.1s;
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: rgba(176, 134, 95, 0.5);
}

.qs-current {
  font-weight: 700;
}

.qs-active, .qs-range-end, .qs-range-start {
  background: #B0865F;
  color: #FFFFFF;
  text-decoration: none;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: #d4ebf2;
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}

.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-end:not(.qs-range-0), .qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled, .qs-outside-current-month {
  opacity: 0.2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-day, .qs-empty {
  cursor: default;
}

.qs-day {
  font-weight: 400;
  color: #b0865f;
}

.qs-event {
  position: relative;
}

.qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.tablet-calculator {
  border-collapse: collapse;
  width: 100%;
  max-width: 660px;
}
.tablet-calculator TD, .tablet-calculator TH {
  border: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .tablet-calculator {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .tablet-calculator {
    min-width: 660px;
  }
}

.tablet-calculator__up {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #283F75;
}

.tablet-calculator__first,
.tablet-calculator__third {
  width: 30%;
  padding: 12px 0;
}

.tablet-calculator__second {
  width: 40%;
  padding: 12px 0;
}

.tablet-calculator__row {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.tablet-calculator__row td {
  padding: 10px 20px;
}

.our-video {
  margin-bottom: 100px;
}

.our-video__main-title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .our-video__main-title {
    margin-bottom: calc(2.18px + 2.32vw);
    font-size: calc(5.1vw - 15.2px);
  }
}
@media (max-width: 768px) {
  .our-video__main-title {
    font-size: 24px;
    margin-bottom: calc(11.42px + 1.11vw);
  }
}

.our-video__subtitle {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  max-width: 760px;
  margin: 30px auto 70px;
}
@media (max-width: 1199px) {
  .our-video__subtitle {
    margin-top: calc(2.18px + 2.32vw);
    margin-bottom: calc(6.96vw - 13.45px);
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .our-video__subtitle {
    margin-top: calc(11.42px + 1.11vw);
    margin-bottom: calc(22.85px + 2.23vw);
    font-size: 15px;
  }
}

.our-video__link-youtube {
  color: #283F75;
  display: inline-block;
}

.our-video__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px 40px;
  margin: 70px auto;
}
@media (max-width: 1199px) {
  .our-video__list {
    gap: calc(9.28vw - 31.27px) calc(4.64vw - 15.64px);
    margin: calc(6.96vw - 13.46px) auto;
  }
}
@media (max-width: 768px) {
  .our-video__list {
    gap: 40px 20px;
    margin: calc(22.85px + 2.23vw) auto;
  }
}
@media (max-width: 540px) {
  .our-video__list {
    gap: 20px;
  }
}

.our-video__item {
  height: 0;
  width: calc(33.33% - 27px);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  -o-transition: filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
  position: relative;
  padding-bottom: 16.65%;
}
.our-video__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.our-video__item a img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .our-video__item {
    width: calc(50% - 7.82px - 1vw);
    padding-bottom: 25.65%;
  }
}
@media (max-width: 540px) {
  .our-video__item {
    width: 100%;
    padding-bottom: 53.65%;
  }
  .our-video__item::after {
    position: absolute;
    bottom: -10px !important;
    right: 0;
    content: "";
    display: block !important;
    width: 100% !important;
    height: 1px;
    background-color: #C6CDDA;
  }
  .our-video__item:last-child::after {
    display: none !important;
  }
}
.our-video__item--bigger {
  width: calc(50% - 20px);
  padding-bottom: 25.7%;
}
@media (max-width: 1199px) {
  .our-video__item--bigger {
    width: calc(50% - 7.82px - 1vw);
    padding-bottom: 25.65%;
  }
}
@media (max-width: 540px) {
  .our-video__item--bigger {
    width: 100%;
    padding-bottom: 53.65%;
  }
}
.our-video__item--border-up::before {
  position: absolute;
  top: -40px;
  right: 0;
  content: "";
  display: block;
  width: calc(300% + 80px);
  height: 1px;
  background-color: #C6CDDA;
}
@media (max-width: 1199px) {
  .our-video__item--border-up::before {
    display: none;
  }
}
.our-video__item--border-down::after {
  position: absolute;
  bottom: -40px;
  right: 0;
  content: "";
  display: block;
  width: calc(300% + 80px);
  height: 1px;
  background-color: #C6CDDA;
}
@media (max-width: 1199px) {
  .our-video__item--border-down::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .our-video__item:nth-child(2n)::after {
    position: absolute;
    bottom: calc(15.64px - 4.64vw);
    right: 0;
    content: "";
    display: block;
    width: calc(200% + 7.82px + 1.7vw);
    height: 1px;
    background-color: #C6CDDA;
  }
}
@media (max-width: 768px) {
  .our-video__item:nth-child(2n)::after {
    bottom: -20px;
  }
}
@media (max-width: 540px) {
  .our-video__item:nth-child(2n)::after {
    display: none;
  }
}
.our-video__item:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.our-video__button {
  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;
  width: 270px;
  height: 60px;
  background: #FFFFFF;
  border: 1px solid #C6CDDA;
  margin: 0 auto;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #5B5B5B;
}
@media (max-width: 540px) {
  .our-video__button {
    height: 40px;
  }
}
.our-video__button:hover {
  border-color: transparent;
  background-color: #F9F9FE;
  color: #8992A7;
}

.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  padding: 0;
  width: 68px;
  height: 48px;
  border: none;
  background-color: transparent;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video__button-shape {
  fill: #ff0000;
  fill-opacity: 0.8;
}

.video__button-icon {
  fill: #ffffff;
}

body .fancybox__content > .carousel__button.is-close {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: #444;
  border: 0;
  border-radius: 36px;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  -o-transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
  -webkit-transition: background 0.2s, box-shadow 0.2s;
}
body .fancybox__content > .carousel__button.is-close:hover {
  background: #D32F2F;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
body .fancybox__content > .carousel__button.is-close:hover svg {
  fill: #fff;
}
body .fancybox__content > .carousel__button.is-close svg {
  width: 24px;
  height: 24px;
  fill: #aaa;
  -o-transition: fill 0.2s;
  transition: fill 0.2s;
  -webkit-transition: fill 0.2s;
}

.reviews-page {
  margin-bottom: 110px;
}
@media (max-width: 1199px) {
  .reviews-page {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .reviews-page {
    margin-bottom: 60px;
  }
}

.reviews-page__main-title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  max-width: 760px;
  margin: 0 auto 70px;
}
@media (max-width: 1199px) {
  .reviews-page__main-title {
    margin-bottom: calc(6.96vw - 13.45px);
    font-size: calc(5.1vw - 15.2px);
  }
}
@media (max-width: 768px) {
  .reviews-page__main-title {
    margin-bottom: calc(22.85px + 2.23vw);
    font-size: 24px;
  }
}

.reviews-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .reviews-page__list {
    gap: calc(4.64vw - 15.63px);
    margin-bottom: calc(6.96vw - 13.45px);
  }
}
@media (max-width: 768px) {
  .reviews-page__list {
    gap: calc(2.85px + 2.23vw);
    margin-bottom: calc(22.85px + 2.23vw);
  }
}

.reviews-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #C6CDDA;
  padding-bottom: 57px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .reviews-page__item {
    padding-bottom: calc(5.8vw - 9.54px);
  }
}
@media (max-width: 768px) {
  .reviews-page__item {
    padding: 0 20px;
    padding-bottom: calc(17.85px + 2.23vw);
  }
}

.reviews-page__img-first {
  padding: 195px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.reviews-page__img-first img {
  width: 60px;
}
@media (max-width: 1199px) {
  .reviews-page__img-first img {
    max-width: calc(5.8vw - 9.54px);
  }
}
@media (max-width: 1199px) {
  .reviews-page__img-first {
    padding: calc(75.37px + 9.97vw) calc(4.64vw - 5.63px) 0;
  }
}
@media (max-width: 768px) {
  .reviews-page__img-first {
    display: none;
  }
}

.reviews-page__root {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .reviews-page__root {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}

.reviews-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 680px;
}
@media (max-width: 1199px) {
  .reviews-page__body {
    width: 100%;
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .reviews-page__body {
    padding-right: 0;
  }
}

.reviews-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 52px;
  padding-bottom: 25px;
  border-bottom: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .reviews-page__header {
    padding-top: calc(4.70px + 3.94vw);
  }
}
@media (max-width: 768px) {
  .reviews-page__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 25px;
    padding-top: calc(17.85px + 2.23vw);
  }
}

.reviews-page__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1199px) {
  .reviews-page__person {
    gap: calc(2.32vw - 2.81px);
  }
}
@media (max-width: 768px) {
  .reviews-page__person {
    gap: 15px;
  }
}

.reviews-page__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
@media (max-width: 1199px) {
  .reviews-page__avatar {
    width: calc(9.28vw - 11.27px);
    height: calc(9.28vw - 11.27px);
  }
}
@media (max-width: 768px) {
  .reviews-page__avatar {
    width: 60px;
    height: 60px;
  }
}

.reviews-page__nick {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #283F75;
}

.reviews-page__data {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 150%;
  color: #5B5B5B;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .reviews-page__data {
    margin-bottom: 7px;
  }
}

.reviews-page__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}

.reviews-page__source-shell-button {
  padding-top: 10px;
}
@media (max-width: 1199px) {
  .reviews-page__source-shell-button {
    padding-top: 0;
  }
}

.reviews-page__source-button {
  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;
  width: 260px;
  height: 40px;
  background: #B0865F;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #FFFFFF;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}
.reviews-page__source-button:hover {
  background-color: #9E7752;
}

.reviews-page__main {
  padding-top: 15px;
}
.reviews-page__main--short .reviews-page__description::after {
  opacity: 0;
}
.reviews-page__main--short .reviews-page__readall {
  display: none;
}
.reviews-page__main--active .reviews-page__description::after {
  opacity: 0;
}
.reviews-page__main--active .reviews-page__readall::before {
  content: "Свернуть";
}
.reviews-page__main--active .reviews-page__readall svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.reviews-page__description {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-transition: max-height 0.8s;
  -o-transition: max-height 0.8s;
  transition: max-height 0.8s;
}
.reviews-page__description::after {
  opacity: 1;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  bottom: 0;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.reviews-page__text {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  width: 100%;
}
@media (max-width: 768px) {
  .reviews-page__text {
    font-size: 15px;
  }
}

.reviews-page__readall {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.reviews-page__readall path {
  -webkit-transition: stroke 0.4s;
  -o-transition: stroke 0.4s;
  transition: stroke 0.4s;
}
.reviews-page__readall::before {
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
  position: relative;
  content: "Читать далее";
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
}
.reviews-page__readall:hover::before {
  color: #8992A7;
}
.reviews-page__readall:hover path {
  stroke: #8992A7;
}

.reviews-page__img-second {
  position: relative;
  padding: 62px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews-page__img-second::before {
  content: "";
  position: absolute;
  top: 190px;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 100%;
  z-index: 2;
  background-color: rgba(47, 58, 85, 0.6);
  background-image: url(../images/icon/search.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50%;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 1199px) {
  .reviews-page__img-second {
    padding: 0;
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .reviews-page__img-second::before {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .reviews-page__img-second::after {
    position: relative;
    content: "Показать скриншот";
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    line-height: 140%;
    color: #5B5B5B;
  }
}
.reviews-page__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1199px) {
  .reviews-page__link {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
}
.reviews-page__link img {
  max-width: 200px;
  max-height: 277px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .reviews-page__link img {
    display: none;
  }
}

.reviews-video {
  background: #F9F9FE;
  padding: 100px 0 110px;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .reviews-video {
    margin-bottom: calc(9.28vw - 11.27px);
    padding: calc(9.28vw - 11.27px) 0 calc(9.28vw - 1.27px);
  }
}
@media (max-width: 768px) {
  .reviews-video {
    margin-bottom: calc(42.85px + 2.23vw);
    padding: calc(42.85px + 2.23vw) 0 calc(52.85px + 2.23vw);
  }
}

.reviews-video__title {
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 1199px) {
  .reviews-video__title {
    font-size: calc(0.61px + 2.78vw);
  }
}
@media (max-width: 768px) {
  .reviews-video__title {
    font-size: 22px;
  }
}

.reviews-video__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-width: 0;
  padding: 0;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.reviews-video__item {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  -o-transition: filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.reviews-video__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.reviews-video__item a img {
  width: 100%;
  height: 100%;
}
.reviews-video__item:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.reviews-video__shell {
  position: relative;
  height: 0;
  padding-bottom: 53.88%;
}

.reviews-video__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 80px;
  margin-top: 70px;
  z-index: 2;
  position: relative;
}
@media (max-width: 1199px) {
  .reviews-video__navigation {
    display: none;
  }
}
.reviews-video__navigation .swiper-button-prev:hover,
.reviews-video__navigation .swiper-button-next:hover {
  border-color: transparent;
}
.reviews-video__navigation .swiper-button-prev::before, .reviews-video__navigation .swiper-button-prev::after,
.reviews-video__navigation .swiper-button-next::before,
.reviews-video__navigation .swiper-button-next::after {
  display: none;
}
.reviews-video__navigation .swiper-button-next,
.reviews-video__navigation .swiper-button-prev {
  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;
}
.reviews-video__navigation .swiper-button-prev svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.reviews-video__navigation .swiper-button-next svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.reviews-video__slider {
  overflow: hidden;
  position: relative;
}
.reviews-video__slider .reviews-video__pagination {
  margin: -40px auto 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  left: 0;
  position: relative;
  top: 0;
  z-index: 0;
}
@media (max-width: 1199px) {
  .reviews-video__slider .reviews-video__pagination {
    margin: 40px auto 0;
  }
}
@media (max-width: 768px) {
  .reviews-video__slider .reviews-video__pagination {
    margin: 30px auto 0;
  }
}

.search-page__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .search-page__wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .search-page__wrapper {
    padding: 0 10px;
  }
}
.search-page__title {
  color: #283F75;
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .search-page__title {
    font-size: 24px;
  }
}
.search-page__form {
  margin-top: 70px;
}
.search-page__search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .search-page__search-container {
    display: block;
  }
}
.search-page__input-container {
  position: relative;
}
.search-page__search-pic {
  position: absolute;
  top: 20px;
  left: 15px;
}
@media (max-width: 767px) {
  .search-page__search-pic {
    top: 8px;
    left: 10px;
  }
}
.search-page__search-field {
  width: calc(1200px - 260px - 20px);
  height: 60px;
  border: 1px solid #C6CDDA;
  padding-left: 65px;
  color: #5B5B5B;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 1199px) {
  .search-page__search-field {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .search-page__search-field {
    height: 40px;
    font-size: 15px;
    padding-left: 44px;
  }
}
.search-page__button {
  background-color: #B0865F;
  width: 260px;
  height: 60px;
  padding: 20px 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #FFF;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.search-page__button:hover {
  background-color: var(--hover-button);
}
@media (max-width: 1199px) {
  .search-page__button {
    display: none;
  }
}
.search-page__search-count {
  margin-top: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.search-page__search-count span {
  color: #283F75;
}
@media (max-width: 767px) {
  .search-page__search-count {
    font-size: 15px;
  }
}
.search-page__filters-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .search-page__filters-container {
    display: none;
  }
}
.search-page__filter {
  color: #C6CDDA;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  -webkit-transition: 0.5s color;
  -o-transition: 0.5s color;
  transition: 0.5s color;
}
.search-page__filter:hover {
  color: var(--blue-text);
}
.search-page__filter_active {
  padding: 7px 10px;
  border-radius: 100px;
  background-color: #2F3A55;
  color: #fff;
}
.search-page__filter_active:hover {
  color: #fff;
}

.search-page .choices[data-type*=select-one] {
  display: none;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .search-page .choices[data-type*=select-one] {
    display: block;
  }
}

.search-page .choices[data-type*=select-one] .choices__inner {
  background: #2F3A55;
}

.search-page .choices__item.choices__item--selectable {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #fff;
}

.search-page .choices__item.choices__item--choice.is-selected.choices__item--selectable.is-highlighted {
  color: #8992A7;
}

.search-page .choices__input.choices__input--cloned {
  display: none;
}

.search-page .choices__list.choices__list--dropdown {
  background-color: #2F3A55;
}

.search-page .choices__list--single {
  height: 40px;
}

.search-result__container {
  margin-top: 20px;
  border-top: 1px solid #C6CDDA;
  padding-top: 20px;
}
.search-result__container:last-child {
  border-bottom: 1px solid #c6cdda;
  padding-bottom: 20px;
}
.search-result__inner {
  margin-top: 30px;
}
.search-result__back-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-result__back {
  text-decoration: none;
  color: #8992A7;
  font-weight: 400;
  font-size: 13px;
  line-height: 150%;
  -webkit-transition: 0.5s -webkit-text-decoration;
  transition: 0.5s -webkit-text-decoration;
  -o-transition: 0.5s text-decoration;
  transition: 0.5s text-decoration;
  transition: 0.5s text-decoration, 0.5s -webkit-text-decoration;
}
.search-result__back:hover::after {
  width: 100%;
}
.search-result__back::after {
  content: "";
  width: 0px;
  height: 1px;
  display: block;
  background: #8992A7;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.search-result__back-sep {
  width: 1px;
  height: 10px;
  background-color: #8992A7;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
  margin-left: 5px;
  margin-right: 5px;
}
.search-result__title {
  display: inline;
  text-decoration: none;
  max-width: 860px;
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  color: #283F75;
  -webkit-transition: border 0.4s ease;
  -o-transition: border 0.4s ease;
  transition: border 0.4s ease;
  border-bottom: 1px dashed transparent;
}
.search-result__title:hover {
  border-bottom: 1px dashed #8992A7;
}
@media (max-width: 1199px) {
  .search-result__title {
    font-size: 18px;
    max-width: 541px;
  }
}
@media (max-width: 767px) {
  .search-result__title {
    margin-top: 10px;
    font-weight: 700;
    font-size: 15px;
  }
}
.search-result__title::after {
  content: "";
  width: 0px;
  height: 1px;
  display: block;
  background: #8992A7;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.search-result__descr {
  margin-top: 20px;
  color: #5B5B5B;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .search-result__descr {
    font-size: 15px;
    margin-top: 15px;
  }
}

.also__title {
  margin-top: 100px;
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  color: #283F75;
}
@media (max-width: 767px) {
  .also__title {
    font-size: 22px;
    margin-top: 50px;
  }
}
.also__container {
  margin-top: 70px;
  margin-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 1199px) {
  .also__container {
    margin-top: 30px;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .also__container {
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.also__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-height: 100px;
  width: 320px;
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
}
.also__item:hover .also__arrow {
  position: relative;
}
.also__item:hover .also__arrow::before {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(45deg) translate(15px, -15px);
      -ms-transform: rotate(45deg) translate(15px, -15px);
          transform: rotate(45deg) translate(15px, -15px);
}
.also__item:hover .also__arrow::after {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(-45deg) translate(15px, 15px);
      -ms-transform: rotate(-45deg) translate(15px, 15px);
          transform: rotate(-45deg) translate(15px, 15px);
}
.also__item:hover .also__descr::after {
  width: 100%;
}
.also__item:not(:hover) .also__arrow {
  position: relative;
}
.also__item:not(:hover) .also__arrow::before {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.also__item:not(:hover) .also__arrow::after {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.also__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .also__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.also__img {
  max-width: 50%;
  height: 100%;
}
.also__descr {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
  -ms-flex-item-align: center;
      align-self: center;
  margin-right: calc(45px);
  display: inline-block;
}
.also__descr::after {
  content: "";
  width: 0px;
  height: 1px;
  display: block;
  background: #5B5B5B;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.also__arrow {
  position: relative;
}
.also__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 43%;
  width: 10px;
  height: 2px;
  background-color: #5B5B5B;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.also__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #5B5B5B;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.reviews {
  margin: 50px 0px 110px;
}
@media (max-width: 1199px) {
  .reviews {
    margin: 40px 0px 70px;
  }
}
@media (max-width: 767px) {
  .reviews {
    margin: 30px 0px 60px;
  }
}
.reviews__separator {
  margin-top: 20px;
  border-bottom: 1px solid #C6CDDA;
}
@media (max-width: 1199px) {
  .reviews__separator {
    margin-top: -10px;
  }
}
@media (max-width: 767px) {
  .reviews__separator {
    margin-top: -20px;
  }
}
.reviews__main-title {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  color: #283F75;
  text-align: center;
}
@media (max-width: 1199px) {
  .reviews__main-title {
    font-size: 24px;
  }
}
.reviews__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #5B5B5B;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .reviews__subtitle {
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .reviews__subtitle {
    font-size: 15px;
    max-width: 100%;
  }
}
.reviews__grid-container {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  grid-template-rows: 1fr;
  grid-auto-rows: auto;
  gap: 40px;
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .reviews__grid-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .reviews__grid-container {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
}
.reviews__grid-item {
  border: 1px solid #C6CDDA;
  padding: 30px;
}
@media (max-width: 1199px) {
  .reviews__grid-item {
    padding: 25px 20px;
  }
}
.reviews__grid-item--promo {
  grid-column: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url("/images/banner-dark.jpg") center center/cover no-repeat;
  background-color: #18233A;
  padding: 0;
  padding-left: 40px;
  padding-right: 35px;
}
@media (max-width: 767px) {
  .reviews__grid-item--promo {
    grid-column: 1/2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
}
.reviews__promo-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 140%;
  color: #FFFFFF;
  margin-top: 45px;
}
.reviews__promo-title span {
  color: #D9A77A;
}
@media (max-width: 1199px) {
  .reviews__promo-title {
    font-size: 22px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .reviews__promo-title {
    margin-top: 40px;
    text-align: center;
  }
}
.reviews__promo-descr {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #C6CDDA;
  max-width: 380px;
}
@media (max-width: 767px) {
  .reviews__promo-descr {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
  }
}
.reviews__promo-btn {
  margin-top: 30px;
  width: 270px;
  height: 40px;
}
@media (max-width: 1199px) {
  .reviews__promo-btn {
    font-size: 15px;
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .reviews__promo-btn {
    width: 100%;
  }
}
.reviews__promo-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__promo-img {
  width: 285px;
  -ms-flex-item-align: end;
      align-self: end;
}
@media (max-width: 767px) {
  .reviews__promo-img {
    width: 255px;
  }
}
@media (max-width: 767px) {
  .reviews__promo-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__qq-img {
  width: 35px;
  height: 100%;
}
.reviews__date {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #8992A7;
}
@media (max-width: 767px) {
  .reviews__date {
    font-size: 15px;
  }
}
.reviews__descr {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5B5B5B;
}
.reviews__descr--slider {
  min-height: 150px;
}
@media (max-width: 767px) {
  .reviews__descr {
    margin-top: 15px;
    font-size: 15px;
  }
}
.reviews__more-link {
  position: relative;
  margin-top: 15px;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
  display: block;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.reviews__more-link:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background-color: #5B5B5B;
  -webkit-transform: translateY(-3px) translateX(10px) rotate(45deg);
      -ms-transform: translateY(-3px) translateX(10px) rotate(45deg);
          transform: translateY(-3px) translateX(10px) rotate(45deg);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.reviews__more-link::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background-color: #5B5B5B;
  -webkit-transform: translateY(2px) translateX(89px) rotate(-45deg);
      -ms-transform: translateY(2px) translateX(89px) rotate(-45deg);
          transform: translateY(2px) translateX(89px) rotate(-45deg);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
.reviews__more-link:hover {
  color: #8992A7;
}
.reviews__more-link:hover:after {
  background-color: #8992A7;
  -webkit-transform: translateY(-3px) translateX(16px) rotate(45deg);
      -ms-transform: translateY(-3px) translateX(16px) rotate(45deg);
          transform: translateY(-3px) translateX(16px) rotate(45deg);
}
.reviews__more-link:hover::before {
  background-color: #8992A7;
  -webkit-transform: translateY(2px) translateX(95px) rotate(-45deg);
      -ms-transform: translateY(2px) translateX(95px) rotate(-45deg);
          transform: translateY(2px) translateX(95px) rotate(-45deg);
}
.reviews__slider {
  margin-top: 50px;
  overflow: hidden;
}
.reviews__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__slider .swiper-slide {
  max-width: 360px;
}
@media (max-width: 767px) {
  .reviews__slider .swiper-slide {
    width: 100%;
    max-width: 100%;
  }
}
.reviews__slider .reviews__grid-item {
  width: 360px;
}
@media (max-width: 1199px) {
  .reviews__slider .reviews__grid-item {
    width: 500px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews__slider .reviews__grid-item {
    width: 500px;
    max-width: 100%;
  }
}
.reviews__slider .swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .reviews__slider .swiper-navigation {
    margin-top: 25px;
  }
}

.reviews-bfl__more-link {
  position: absolute;
  bottom: 30px;
}

.review {
  padding-bottom: 110px;
}
.review__title {
  font-weight: 400;
  font-size: 46px;
  line-height: 130%;
  color: #283F75;
}
@media (max-width: 1199px) {
  .review__title {
    font-size: 24px;
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .review__more-btn {
    width: 260px;
    height: 40px;
  }
}
.review__root {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.review__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #5B5B5B;
}
.review__description {
  margin-top: 15px;
  margin-bottom: 30px;
}
.review__stars {
  margin-top: 10px;
}
.review__item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.review__person {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #C6CDDA;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .review__person {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.review__img {
  max-width: 160px;
  height: 100%;
}
.review__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .review__btns {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .review__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 60px;
    margin-top: 40px;
  }
}
.review__btn {
  width: 270px;
  height: 60px;
  background-color: #fff;
  border: 1px solid #C6CDDA;
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #5B5B5B;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .review__btn {
    width: calc(100% - 40px);
  }
}
.review__btn:hover {
  background-color: #C6CDDA;
  border: 1px solid #C6CDDA;
  color: #2F3A55;
}

.career {
  margin: 50px auto 110px;
}
@media (max-width: 1199px) {
  .career {
    margin: 70px auto 70px;
  }
}
@media (max-width: 767px) {
  .career {
    margin: 60px auto 60px;
  }
}
@media (max-width: 767px) {
  .career--quizz {
    margin-top: 63px;
  }
}
.career--bg-image {
  position: relative;
  overflow: hidden;
  padding: 77px 0;
  background-clip: content-box;
}
.career--bg-image .container::before {
  content: "";
  background: url(/images/career-bg.png) #F9F9FE;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 150%;
  left: 134px;
  mix-blend-mode: soft-light;
  opacity: 0.32;
}
@media (max-width: 1200px) {
  .career--bg-image .container::before {
    width: 100%;
    left: 0px;
  }
}
@media (max-width: 480px) {
  .career--bg-image {
    margin-bottom: 27px;
  }
}
.career__inner {
  background-color: #F9F9FE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.career__inner--bg-image {
  background-color: unset;
}
.career__img-wrapper {
  display: inline-block;
  max-width: 352px;
  max-height: 386.1px;
}
.career__img {
  -webkit-transform: rotate(14.63deg);
      -ms-transform: rotate(14.63deg);
          transform: rotate(14.63deg);
  max-width: 352px;
  max-height: 386.1px;
  position: absolute;
  top: -37px;
}
.career__content-wrapper {
  padding: 75px 75px 82px 100px;
  position: relative;
}
.career__content-wrapper--bg-image {
  padding-bottom: 71px;
}
.career__blockquote {
  color: #8992A7;
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  max-width: 625px;
  text-align: center;
}
.career__blockquote::before {
  content: url(/images/icon/quote.svg);
  position: absolute;
  display: inline-block;
  left: 0px;
  width: 60px;
  height: 47px;
}
.career__blockquote--blue {
  color: #283F75;
}
.career__blockquote--blue::before {
  content: url(/images/icon/quote-gold.svg);
}
.career__cite {
  color: #8992A7;
  font-style: normal;
  font-size: 17px;
  margin-top: 30px;
  display: block;
  text-align: end;
}
.career__link {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #B0865F;
  border-bottom: 1px solid #B0865F;
  margin: 37px auto 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.career__link:hover {
  color: var(--hover-button);
  border-color: var(--hover-button);
}

@media (max-width: 1199px) {
  .career__inner {
    min-height: 260px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .career__img-wrapper {
    max-width: 246.33px;
    max-height: 273.09px;
  }
  .career__content-wrapper {
    padding: 55px 30px 53px 5px;
  }
  .career__img {
    max-width: 246.33px;
    max-height: 273.09px;
    position: relative;
    top: 0px;
    left: 0px;
  }
  .career__blockquote {
    font-size: 18px;
    text-align: end;
  }
  .career__blockquote::before {
    content: url(/images/icon/quote-sm.svg);
    width: 27px;
    height: 20px;
    position: static;
    margin-right: 15px;
    vertical-align: top;
  }
  .career__blockquote--blue::before {
    content: url(/images/icon/quote-gold_sm.svg);
    vertical-align: baseline;
  }
  .career__cite {
    font-size: 15px;
    margin-top: 25px;
    max-width: 300px;
    margin-left: auto;
  }
  .career__link {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .career--bg-image {
    position: relative;
    padding: 10px 0;
    background-color: rgba(249, 249, 254, 0.75);
    background-clip: unset;
  }
  .career--bg-image::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(/images/career-bg-m.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .career__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 20px 0px;
  }
  .career__img-wrapper {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .career__img {
    top: 0px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .career__content-wrapper {
    padding: 30px 0px 20px;
    padding: 0px;
  }
  .career__blockquote {
    text-align: center;
  }
  .career__blockquote::before {
    content: url(/images/icon/quote-md.svg);
    width: 35px;
    height: 26px;
    display: block;
    margin: 0 auto 15px;
  }
  .career__blockquote--blue::before {
    content: url(/images/icon/quote-gold_sm.svg);
  }
  .career__cite {
    margin-top: 15px;
    line-height: 19.5px;
  }
  .career__link {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .career__img-wrapper {
    max-width: 100%;
    max-height: unset;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    margin-bottom: 35px;
  }
  .career__img {
    max-width: 180px;
    max-height: unset;
  }
  .career__blockquote {
    font-size: 16px;
  }
  .career__cite {
    font-size: 13px;
    max-width: 165px;
  }
}
.warranty {
  margin-top: 131px;
  letter-spacing: -0.01em;
  color: #5B5B5B;
  line-height: 140%;
  font-size: 17px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}
@media (max-width: 1024px) {
  .warranty {
    margin-top: 0;
  }
}
.warranty-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .warranty-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.warranty__title {
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  color: #283F75;
  margin-right: 48px;
  max-width: 50%;
}
@media (max-width: 1024px) {
  .warranty__title {
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .warranty__title {
    font-size: 32px;
  }
}
.warranty__title::before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background-color: #B0865F;
  position: relative;
  left: 4px;
  margin-bottom: 37px;
}
@media (max-width: 480px) {
  .warranty__title::before {
    margin-bottom: 20px;
  }
}
.warranty__title span {
  color: #B0865F;
}
.warranty__inner {
  max-width: 560px;
}
@media (max-width: 1024px) {
  .warranty__inner {
    max-width: unset;
  }
}
.warranty p {
  margin-bottom: 40px;
}
.warranty p:first-of-type {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .warranty p {
    margin-bottom: 20px;
  }
}
.warranty-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .warranty-list__content {
    max-width: 80%;
  }
}
.warranty-list__title {
  font-size: 28px;
  color: #283F75;
  margin-bottom: 27px;
}
@media (max-width: 480px) {
  .warranty-list__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.warranty-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 46px;
  max-width: 226px;
  width: 100%;
}
.warranty-list__item:nth-child(odd) {
  margin-right: 64px;
}
@media (max-width: 480px) {
  .warranty-list__item:nth-child(odd) {
    margin-right: 0;
  }
}
.warranty-list__item::before {
  content: url(/images/icon/checkmark.svg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFFFFF;
  opacity: 0.9;
  -webkit-box-shadow: 0px 2px 4px #CCD6DD;
          box-shadow: 0px 2px 4px #CCD6DD;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .warranty-list__item::before {
    width: 35px;
    height: 35px;
    margin-right: 13px;
  }
}
@media (max-width: 480px) {
  .warranty-list__item {
    margin-right: 0;
    margin-bottom: 27px;
    max-width: unset;
  }
}

.get-docs {
  position: relative;
  margin-top: 170px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  line-height: 150%;
}
@media (max-width: 767px) {
  .get-docs {
    margin-top: 38px;
  }
}
.get-docs__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .get-docs__bg {
    width: 100%;
    height: 100%;
  }
}
.get-docs__image {
  position: absolute;
  bottom: 0;
  right: 35.5vw;
  z-index: -1;
}
@media (max-width: 1440px) {
  .get-docs__image {
    bottom: 0;
    right: auto;
    z-index: -1;
    width: 46vw;
    left: -82px;
  }
}
@media (max-width: 767px) {
  .get-docs__image {
    position: relative;
    width: 100%;
    left: 0;
  }
}
.get-docs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .get-docs__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-right: 0;
  }
}
.get-docs__content {
  max-width: 560px;
  margin-bottom: 136px;
}
@media (max-width: 1199px) {
  .get-docs__content {
    max-width: 365px;
  }
}
@media (max-width: 767px) {
  .get-docs__content {
    max-width: unset;
    margin: 0 auto 36px;
    text-align: center;
  }
}
.get-docs__title {
  font-size: 34px;
  line-height: 120%;
  color: #283F75;
  font-weight: 400;
  margin-bottom: 14px;
}
@media (max-width: 1199px) {
  .get-docs__title {
    max-width: unset;
  }
}
.get-docs__text {
  font-size: 18px;
  color: #5B5B5B;
  margin-bottom: 30px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .get-docs__text {
    max-width: unset;
  }
}

@media (max-width: 767px) {
  .form--get-docs {
    margin: 0 auto;
  }
}

.form__data--border {
  border: 1px solid #C6CDDA;
}

.cases-slider {
  background-color: #F9F9FE;
  padding: 87px 0 114px;
}
@media (max-width: 767px) {
  .cases-slider {
    padding: 34px 0 64px;
  }
}
.cases-slider__container {
  max-width: 1220px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0px 8px 22px #D9D9E6);
          filter: drop-shadow(0px 8px 22px #D9D9E6);
}
@media (max-width: 767px) {
  .cases-slider__container {
    padding: 0 12px;
  }
}
.cases-slider__slider {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  overflow: hidden;
}
.cases-slider__title {
  color: #283F75;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .cases-slider__title {
    margin-bottom: 15px;
  }
}
.cases-slider__item {
  cursor: pointer;
  display: block;
  padding: 28px 69px;
  border-bottom: 2px solid #D9D9D9;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 767px) {
  .cases-slider__item {
    padding: 16px 15px;
  }
}
@media (max-width: 767px) {
  .cases-slider__item {
    padding: 16px 12px;
  }
}
.cases-slider__item.active, .cases-slider__item:hover {
  border-bottom: 2px solid #B0865F;
}
.cases-slider__item.active .slider__number, .cases-slider__item:hover .slider__number {
  background: #B0865F;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .cases-slider__navigation {
    display: none;
  }
}
.cases-slider__next {
  cursor: pointer;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: 15px;
  height: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 16px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.cases-slider__next.swiper-button-disabled {
  opacity: 0;
}
.cases-slider__prev {
  cursor: pointer;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: 15px;
  height: 15px;
  top: 40%;
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 16px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.cases-slider__prev.swiper-button-disabled {
  opacity: 0;
}
.cases-slider__content {
  background: #fff;
  padding: 35px 46px 35px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 800px) {
  .cases-slider__content {
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .cases-slider__content {
    padding: 27px 12px 103px;
  }
}
.cases-slider__image-link {
  display: block;
  -webkit-filter: drop-shadow(0px 8px 22px #D9D9E6);
          filter: drop-shadow(0px 8px 22px #D9D9E6);
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
  margin-right: 55px;
}
@media (max-width: 767px) {
  .cases-slider__image-link {
    display: none;
  }
}
.cases-slider__image-link:hover::after {
  opacity: 0.8;
}
.cases-slider__image-link::after {
  content: url(/images/icon/lens.svg);
  position: absolute;
  background: #B0865F;
  padding: 11px;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.cases-slider__case.case {
  max-width: 544px;
  width: 100%;
}
@media (max-width: 767px) {
  .cases-slider__case.case {
    max-width: unset;
  }
}

.case__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 9px;
}
@media (max-width: 767px) {
  .case__title {
    font-size: 24px;
  }
}
.case__subtitle {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 17px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .case__subtitle {
    font-size: 16px;
  }
}
.case__location {
  font-size: 21px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  display: inline-block;
  font-weight: 400;
}
@media (max-width: 767px) {
  .case__location {
    font-size: 16px;
  }
}
.case__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 45%;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .case__dates {
    max-width: 272px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 22px;
  }
}
.case__dates-title {
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
@media (max-width: 767px) {
  .case__dates-title {
    min-width: 178px;
  }
}
.case__dates-date {
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.case__dates-success {
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #B0865F;
}

.slider__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 767px) {
  .slider__title {
    font-size: 13px;
  }
}

.slider__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: 15px;
  padding: 7px 0px 0 0;
  color: #283F75;
  background: #EFEFFF;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 767px) {
  .slider__number {
    width: 27px;
    height: 27px;
    margin-left: 9px;
    padding: 2px 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #F2ECE6;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .details {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.details__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.details__wrapper:first-of-type {
  border-right: 2px solid #F2ECE6;
}
@media (max-width: 767px) {
  .details__wrapper:first-of-type {
    border-bottom: 2px solid #F2ECE6;
    border-right: none;
  }
}
@media (max-width: 899px) {
  .details__wrapper {
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .details__wrapper {
    padding: 18px;
    max-height: 88px;
  }
}
.details__title {
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
.details__sum {
  font-weight: 500;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #B0865F;
}
@media (max-width: 899px) {
  .details__sum {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .details__sum {
    font-size: 30px;
  }
}
.details__info {
  margin-left: 18px;
}
@media (max-width: 899px) {
  .details__img {
    max-width: 25%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .details__img {
    max-width: 60px;
  }
}

.case__dates-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .case__dates-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
    margin-bottom: 22px;
  }
}

.dates-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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
}
@media (max-width: 767px) {
  .dates-wrapper:last-of-type {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.case-slider-link {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
  background: #B0865F;
  max-width: 229px;
  width: 100%;
  height: 60px;
  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-top: 33px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 767px) {
  .case-slider-link {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .case-slider-link {
    max-width: unset;
  }
}
.case-slider-link:hover {
  background: #9E7752;
}

.case-slider__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.creditors {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
.creditors__list {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-top: 9px;
}

.cases-slider__slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

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

.case-slider-modules {
  position: absolute;
  bottom: 47px;
  right: 46px;
  max-width: 160px;
  width: 100%;
  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 (max-width: 800px) {
  .case-slider-modules {
    right: 26px;
    max-width: 140px;
  }
}
@media (max-width: 767px) {
  .case-slider-modules {
    max-width: 160px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
        -ms-transform: translate(50%, 0);
            transform: translate(50%, 0);
    bottom: 37px;
  }
}
.case-slider-modules__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case-slider-modules__navigation-prev {
  -webkit-transform: rotate(-90deg) scale(0.8);
      -ms-transform: rotate(-90deg) scale(0.8);
          transform: rotate(-90deg) scale(0.8);
}
@media (max-width: 767px) {
  .case-slider-modules__navigation-prev {
    -webkit-transform: rotate(-90deg) scale(1);
        -ms-transform: rotate(-90deg) scale(1);
            transform: rotate(-90deg) scale(1);
  }
}
.case-slider-modules__navigation-next {
  -webkit-transform: rotate(90deg) scale(0.8);
      -ms-transform: rotate(90deg) scale(0.8);
          transform: rotate(90deg) scale(0.8);
}
@media (max-width: 767px) {
  .case-slider-modules__navigation-next {
    -webkit-transform: rotate(90deg) scale(1);
        -ms-transform: rotate(90deg) scale(1);
            transform: rotate(90deg) scale(1);
  }
}
.case-slider-modules__pagination {
  position: absolute;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}

.bankruptcy {
  position: relative;
  padding: 70px 0;
  background: url(/images/bankruptcy-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .bankruptcy {
    background: url(/images/bankruptcy-bg-mobile.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 26px 0 37px;
  }
}
.bankruptcy::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
@media (max-width: 767px) {
  .bankruptcy::after {
    background-color: rgba(0, 0, 0, 0.75);
  }
}
.bankruptcy .container {
  z-index: 1;
}
.bankruptcy__title {
  font-weight: 400;
  font-size: 45px;
  line-height: 120%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .bankruptcy__title {
    font-size: 26px;
  }
}
.bankruptcy__title::after {
  content: "";
  display: block;
  width: 94px;
  height: 4px;
  background: #B0865F;
  margin: 28px auto 30px;
}
@media (max-width: 767px) {
  .bankruptcy__title::after {
    margin: 18px auto;
  }
}
.bankruptcy__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .bankruptcy__text {
    font-size: 15px;
  }
}
.bankruptcy__link {
  margin: 0 auto;
}
.bankruptcy__link::before {
  content: url(/images/icon/download.svg);
  margin-right: 3px;
}

.work-advantages {
  margin: 110px 0 180px;
}
@media (max-width: 767px) {
  .work-advantages {
    margin: 50px 0 50px;
  }
}
@media (max-width: 767px) {
  .work-advantages .container {
    padding: 0;
  }
}
.work-advantages__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .work-advantages__title {
    padding: 0 10px;
  }
}
.work-advantages__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  max-width: 760px;
  margin: 0 auto 80px;
}
@media (max-width: 767px) {
  .work-advantages__description {
    padding: 0 10px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 767px) {
  .work-advantages__inner {
    overflow: hidden;
  }
}
.work-advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .work-advantages__wrapper {
    display: -webkit-box;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
}
.work-advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid #DCDFE5;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.work-advantages__modules {
  position: relative;
  max-width: 160px;
  margin: 28px auto 0;
}
@media (min-width: 768px) {
  .work-advantages__modules {
    display: none;
  }
}
.work-advantages__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.work-advantages__pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.work-advantages--gold .item-card__img {
  -webkit-filter: invert(34%) sepia(36%) saturate(500%) hue-rotate(347deg) brightness(102%) contrast(89%);
          filter: invert(34%) sepia(36%) saturate(500%) hue-rotate(347deg) brightness(102%) contrast(89%);
  opacity: 0.3;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.work-advantages--gold .item-card:hover .item-card__img, .work-advantages--gold .item-card.swiper-slide-active .item-card__img {
  opacity: 1;
}
.work-advantages--gold .item-card__title {
  margin-bottom: 30px;
  position: relative;
}
.work-advantages--gold .item-card__title::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 4px;
  width: 14px;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  background: var(--bor-gold);
}
.work-advantages--noborder .work-advantages__item {
  border: none;
}
.work-advantages--noborder .item-card__img {
  -webkit-filter: invert(34%) sepia(36%) saturate(500%) hue-rotate(347deg) brightness(102%) contrast(89%);
          filter: invert(34%) sepia(36%) saturate(500%) hue-rotate(347deg) brightness(102%) contrast(89%);
  opacity: 0.3;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.work-advantages--noborder .item-card:hover .item-card__img, .work-advantages--noborder .item-card.swiper-slide-active .item-card__img {
  opacity: 1;
}
.work-advantages--noborder .item-card:hover .item-card__number, .work-advantages--noborder .item-card.swiper-slide-active .item-card__number {
  opacity: 1;
  color: var(--bor-gold);
}

.item-card {
  max-width: 33.3333%;
  width: 100%;
  padding: 30px 19px 32px 29px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 980px) {
  .item-card {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .item-card {
    max-width: unset;
    padding: 30px 9px 32px 14px;
  }
}
@media (min-width: 768px) {
  .item-card:hover {
    border-color: transparent;
    -webkit-box-shadow: 0px 8px 20px #E6E6ED;
            box-shadow: 0px 8px 20px #E6E6ED;
    -webkit-transform: scale(1.02) translateY(-2px);
        -ms-transform: scale(1.02) translateY(-2px);
            transform: scale(1.02) translateY(-2px);
    background-color: #fff;
    z-index: 1;
  }
}
.item-card__img {
  margin-right: 33px;
  max-width: 69px;
}
@media (max-width: 767px) {
  .item-card__img {
    margin-right: 20px;
  }
}
.item-card__title {
  font-weight: 400;
  font-size: 21px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 18px;
  max-width: 64%;
}
@media (max-width: 767px) {
  .item-card__title {
    max-width: unset;
  }
}
.item-card__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.item-card__number {
  font-weight: 700;
  font-size: 20px;
  line-height: 90%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #8992A7;
  opacity: 0.3;
  position: absolute;
  top: 18px;
  right: 25px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.service-packages-bfl {
  overflow: hidden;
  margin-bottom: 86px;
  margin-top: 94px;
}
@media (max-width: 767px) {
  .service-packages-bfl {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
@media (max-width: 1045px) {
  .service-packages-bfl__inner {
    max-width: 360px;
    margin: 0 auto;
    height: 100%;
  }
}
.service-packages-bfl__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1045px) {
  .service-packages-bfl__wrapper {
    gap: 0;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    display: -webkit-box;
    height: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.service-packages-bfl__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283f75;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .service-packages-bfl__title {
    margin-bottom: 20px;
  }
}
.service-packages-bfl__item {
  background: url(/images/service-packages-bg.png) no-repeat;
  background-size: cover;
  max-width: 360px;
  width: 100%;
  position: relative;
  padding: 9px 9px 13px;
  top: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1045px) {
  .service-packages-bfl__item {
    max-width: 100%;
  }
}
@media (min-width: 1046px) {
  .service-packages-bfl__item:hover {
    top: -10px;
  }
  .service-packages-bfl__item:hover::after {
    height: 6px;
    bottom: -6px;
  }
}
@media (min-width: 1046px) {
  .service-packages-bfl__item:hover .service-packages-bfl__item-item {
    opacity: 1;
  }
}
.service-packages-bfl__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #021d5e;
  opacity: 0.8;
  z-index: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-packages-bfl__item::after {
  content: "";
  display: block;
  width: 306px;
  height: 0px;
  background-color: #B0865F;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.service-packages-bfl__item-content {
  position: relative;
  z-index: 1;
  padding: 12px 26px 29px;
  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;
  border-top: 2px solid #B0865F;
}
.service-packages-bfl__item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: -o-linear-gradient(280.64deg, #B0865F 0%, rgba(176, 134, 95, 0) 40.36%);
  background: linear-gradient(169.36deg, #B0865F 0%, rgba(176, 134, 95, 0) 40.36%);
}
.service-packages-bfl__item-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: -o-linear-gradient(280.64deg, #B0865F 0%, rgba(176, 134, 95, 0) 40.36%);
  background: linear-gradient(169.36deg, #B0865F 0%, rgba(176, 134, 95, 0) 40.36%);
}
.service-packages-bfl__item-number {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  display: block;
}
.service-packages-bfl__item-number::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: #B0865F;
  margin: 10px 0 14px;
}
.service-packages-bfl__item-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.service-packages-bfl__item-list {
  margin: 26px 0 auto 20px;
  list-style-image: url(/images/icon/Ellipse-gold.svg);
}
.service-packages-bfl__item-item {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .service-packages-bfl__item-item {
    padding-left: 8px;
  }
}
.service-packages-bfl__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
}
.service-packages-bfl__item-btn {
  max-width: unset;
  margin-top: 51px;
  min-height: 60px;
}
@media (max-width: 767px) {
  .service-packages-bfl__item-btn {
    margin-top: 20px;
  }
}
.service-packages-bfl__modules {
  max-width: 160px;
  margin: 25px auto 0;
  position: relative;
}
@media (min-width: 1046px) {
  .service-packages-bfl__modules {
    display: none;
  }
}
.service-packages-bfl__navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-packages-bfl__pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
@media (max-width: 500px) {
  .service-packages-bfl__pagination {
    font-size: 12px;
  }
}

.item-price__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  text-transform: uppercase;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
}
.item-price__price {
  font-weight: 500;
  font-size: 27px;
  line-height: 120%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #FFFFFF;
  margin-top: 8px;
}

.order {
  margin-top: 146px;
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}
@media (max-width: 767px) {
  .order {
    margin-top: 50px;
  }
}
.order__inner {
  max-width: 638px;
}
.order__wrapper {
  display: -webkit-box;
}
.order__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 78px;
}
@media (max-width: 767px) {
  .order__title {
    margin-bottom: 30px;
  }
}
.order__item {
  position: relative;
  width: 100% !important;
  background: #FFFFFF;
  border: 1px solid #C6CDDA;
  padding: 35px 53px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transition: 0.8s ease-out;
  -o-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
}
@media (max-width: 667px) {
  .order__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 50px 28px 0;
  }
}
.order__item.active, .order__item:hover {
  border-color: transparent;
  -webkit-box-shadow: 0px 12px 45px #D8D2CD;
          box-shadow: 0px 12px 45px #D8D2CD;
}
.order__item.active .order__item-step, .order__item.active .order-content__title::after, .order__item:hover .order__item-step, .order__item:hover .order-content__title::after {
  background: #B0865F;
}
.order__item.active .order-content__number, .order__item:hover .order-content__number {
  color: #B0865F;
}
.order__item-step {
  position: absolute;
  top: 0;
  left: 0;
  background: #C6CDDA;
  font-weight: 900;
  font-size: 13px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 9px 28px;
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.order__item-image {
  max-width: 228px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 0 20px;
  position: relative;
  top: 1px;
}
@media (max-width: 667px) {
  .order__item-image {
    max-width: 230px;
    max-height: 243px;
    margin: 0 10px;
    -o-object-position: top;
       object-position: top;
    margin: 0 auto;
  }
}
.order-content {
  max-width: 295px;
  width: 100%;
  padding-top: 24px;
  margin-left: auto;
}
@media (max-width: 667px) {
  .order-content {
    margin-left: 0;
  }
}
.order-content__number {
  display: block;
  font-size: 20px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #C6CDDA;
  margin-bottom: 14px;
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.order-content__title {
  font-size: 30px;
  line-height: 120%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
.order-content__title::after {
  content: "";
  display: block;
  width: 14px;
  height: 4px;
  background: #C6CDDA;
  margin: 18px 0 18px 2px;
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
.order-content__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.order-scrollbar {
  height: 4px;
  background-color: #EFEFF3;
  margin-top: 120px;
  margin-bottom: 70px;
  width: 92vw;
}
.order-scrollbar-drag {
  height: 4px;
  background-color: #B0865F;
  -webkit-transition: 0.6s ease-out;
  -o-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}
@media (max-width: 667px) {
  .order-scrollbar {
    display: none;
  }
}
.order-modules {
  max-width: 160px;
  width: 100%;
  position: absolute;
  bottom: 170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 667px) {
  .order-modules {
    bottom: 100px;
  }
}
.order-modules__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.order-modules__pagination {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.order-btn {
  margin: 0 auto;
}
@media (max-width: 667px) {
  .order-btn {
    margin-top: 120px;
  }
}

.order__item.swiper-slide-active {
  border-color: transparent;
  -webkit-box-shadow: 0px 12px 45px #D8D2CD;
          box-shadow: 0px 12px 45px #D8D2CD;
}
.order__item.swiper-slide-active .order__item-step, .order__item.swiper-slide-active .order-content__title::after {
  background: #B0865F;
}
.order__item.swiper-slide-active .order-content__number {
  color: #B0865F;
}

.reviews-block-bfl {
  margin: 0 auto;
  overflow: hidden;
  padding: 85px 6.77% 140px;
}
@media (max-width: 767px) {
  .reviews-block-bfl {
    padding: 0;
    margin-top: 50px;
  }
}
.reviews-block-bfl .container {
  width: 100%;
  max-width: 1160px;
}
.reviews-block-bfl__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .reviews-block-bfl__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .reviews-block-bfl__inner {
    -webkit-box-shadow: 0px 12px 44px #E2E5EF;
            box-shadow: 0px 12px 44px #E2E5EF;
    padding: 8px 7px 17px;
  }
}
.reviews-block-bfl__wrapper {
  max-width: 1540px;
  width: 100%;
  -webkit-box-shadow: 0px 12px 45px #D8D2CD;
          box-shadow: 0px 12px 45px #D8D2CD;
  padding: 100px 10vw 5.26vw;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}
@media (max-width: 1199px) {
  .reviews-block-bfl__wrapper {
    padding: 100px 4vw 5.26vw;
  }
}
@media (max-width: 767px) {
  .reviews-block-bfl__wrapper {
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding: 40px 0 46px;
    padding-top: 0;
  }
}
.reviews-block-bfl__wrapper::before {
  content: "";
  position: absolute;
  border: 2px solid #B0865F;
  top: 73px;
  bottom: 55px;
  left: -60px;
  right: -60px;
  z-index: -1;
}
@media (max-width: 768px) {
  .reviews-block-bfl__wrapper::before {
    content: unset;
  }
}
.reviews-block-bfl__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  .reviews-block-bfl__title {
    margin-bottom: 30px;
  }
}

.reviews-aside {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .reviews-aside {
    margin-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .reviews-aside {
    overflow: hidden;
    margin-bottom: 18px;
  }
}
.reviews-aside__wrapper {
  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;
  gap: 25px;
}
@media (max-width: 1024px) {
  .reviews-aside__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .reviews-aside__wrapper {
    display: -webkit-box;
    gap: unset;
  }
}
.reviews-aside__item {
  background: #FFFFFF;
  border: 1px solid #C6CDDA;
  max-width: 161px;
  max-height: 161px;
  height: 100%;
  padding: 12px 19px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reviews-aside__item .commit__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: 100%;
}
.reviews-aside__item-svg {
  max-width: 100%;
  max-height: 61px;
}
@media (max-width: 1024px) {
  .reviews-aside__item {
    height: unset;
    width: 100%;
    padding: 10px 16px 20px;
  }
}
@media (max-width: 600px) {
  .reviews-aside__item {
    max-width: unset;
  }
}
.reviews-aside__item:last-of-type {
  margin-bottom: 0;
}
.reviews-aside__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-bottom: 20px;
}
.reviews-aside__rating-star {
  width: 14.4px;
}
.reviews-aside__rating-value {
  line-height: 100%;
}
.reviews-aside__image {
  max-height: 61px;
}
.reviews-aside__reviews-count {
  font-size: 15px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-top: 10px;
}
.reviews-aside__scrollbar {
  height: 2px;
  margin-top: 16px;
  background: rgba(198, 205, 218, 0.4);
}
@media (min-width: 601px) {
  .reviews-aside__scrollbar {
    display: none;
  }
}
.reviews-aside__scrollbar-drag {
  height: 2px;
  background: #283F75;
}

.reviews-reviews {
  padding: 0 61px 0 100px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1199px) {
  .reviews-reviews {
    padding: 0 61px 0 79px;
  }
}
@media (max-width: 1024px) {
  .reviews-reviews {
    padding: 0;
    width: 100%;
  }
}
.reviews-reviews__container {
  max-width: 828px;
  width: 43.58vw;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .reviews-reviews__container {
    width: unset;
    max-width: unset;
  }
}
.reviews-reviews__wrapper {
  display: -webkit-box;
}
.reviews-reviews__modules {
  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: 40px 0 34px;
}
@media (max-width: 1024px) {
  .reviews-reviews__modules {
    position: relative;
    margin-top: -40px;
  }
}
@media (max-width: 600px) {
  .reviews-reviews__modules--600 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 1024px) {
  .reviews-reviews__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 16px auto;
    max-width: 160px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 600px) {
  .reviews-reviews__navigation--600 {
    margin-left: 0;
  }
}
@media (max-width: 345px) {
  .reviews-reviews__navigation {
    max-width: 140px;
  }
}
.reviews-reviews__navigation-prev, .reviews-reviews__navigation-next {
  position: absolute;
  top: 7.58vw;
}
@media (max-width: 1024px) {
  .reviews-reviews__navigation-prev, .reviews-reviews__navigation-next {
    position: static;
  }
}
.reviews-reviews__navigation-prev {
  left: 39px;
}
@media (max-width: 1199px) {
  .reviews-reviews__navigation-prev {
    left: 20px;
  }
}
.reviews-reviews__navigation-next {
  right: 0;
}
.reviews-reviews__pagination {
  font-size: 15px;
  line-height: 100%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
@media (max-width: 600px) {
  .reviews-reviews__pagination--600 {
    margin-left: 55px;
  }
}
@media (max-width: 345px) {
  .reviews-reviews__pagination--600 {
    margin-left: 45px;
  }
}
@media (max-width: 768px) {
  .reviews-reviews__image {
    width: 100%;
  }
}
.reviews-reviews__image-link {
  display: block;
}
.reviews-reviews__video {
  max-width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.reviews-reviews__video:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.reviews-reviews__video-description {
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  color: #283F75;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .reviews-reviews-video__navigation {
    display: block;
  }
}
.reviews-reviews-video__navigation .reviews-reviews__navigation-prev,
.reviews-reviews-video__navigation .reviews-reviews__navigation-next {
  bottom: 155px;
  top: unset;
}
.reviews-reviews-video__navigation .reviews-reviews__navigation-prev::after, .reviews-reviews-video__navigation .reviews-reviews__navigation-prev::before,
.reviews-reviews-video__navigation .reviews-reviews__navigation-next::after,
.reviews-reviews-video__navigation .reviews-reviews__navigation-next::before {
  display: block;
}
.reviews-reviews-video__navigation .reviews-reviews__navigation-prev {
  left: 39px;
}
@media (max-width: 1199px) {
  .reviews-reviews-video__navigation .reviews-reviews__navigation-prev {
    left: 20px;
  }
}
.reviews-reviews-video__navigation .reviews-reviews__navigation-next {
  right: 0;
}

.open__button--absolute {
  position: absolute;
  right: 0;
}

.plus {
  margin: 135px 0 100px 0;
}
@media (max-width: 1199px) {
  .plus {
    margin: 80px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .plus {
    margin: 50px 0 50px 0;
  }
}
.plus__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 48px;
}
.plus__inner {
  border-bottom: 1px solid #C6CDDA;
  padding-bottom: 157px;
}
@media (max-width: 1200px) {
  .plus__inner {
    background: #F9F9FE;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 0;
    border: none;
  }
}
.plus__wrapper {
  display: -webkit-box;
  -webkit-box-pack: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .plus__wrapper {
    gap: unset;
  }
}
.plus__content {
  background: #F9F9FE;
  max-width: 560px;
  width: 100%;
  padding: 36px 0 71px;
  text-align: center;
  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;
}
.plus__content-title {
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin: 26px 0 13px;
}
.plus__content-btn {
  max-width: 270px;
  margin: auto auto 0;
}
.plus__content-btn:disabled {
  background: #5C5C6F;
  cursor: default;
}
@media (max-width: 1201px) {
  .plus__content {
    padding-bottom: 20px;
  }
}
.plus__list {
  font-size: 16px;
  line-height: 400%;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-bottom: 21px;
}
.plus__list-item {
  position: relative;
}
@media (max-width: 1200px) {
  .plus__list-item {
    line-height: 200%;
    padding: 16px 0;
  }
}
.plus__list-item::after {
  content: "";
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.36%, rgba(198, 205, 218, 0)), color-stop(50.34%, #C6CDDA), to(rgba(198, 205, 218, 0)));
  background: -o-linear-gradient(left, rgba(198, 205, 218, 0) -0.36%, #C6CDDA 50.34%, rgba(198, 205, 218, 0) 100%);
  background: linear-gradient(90deg, rgba(198, 205, 218, 0) -0.36%, #C6CDDA 50.34%, rgba(198, 205, 218, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.plus__list-item:last-of-type::after {
  content: unset;
}
.plus-modules {
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.plus-modules__wrapper {
  background: #F9F9FE;
  padding-bottom: 30px;
  max-width: 560px;
  width: 100%;
}
@media (min-width: 1201px) {
  .plus-modules__wrapper {
    display: none;
  }
}
.plus-modules__navigation {
  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;
}
.plus-modules__navigation > div {
  background: #FFF;
}
.plus-modules__pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}
.plus__scrollbar {
  height: 2px;
  background: rgba(198, 205, 218, 0.4);
  margin-top: 26px;
}
@media (min-width: 1201px) {
  .plus__scrollbar {
    display: none;
  }
}
.plus__scrollbar-drag {
  background-color: #283F75;
  height: 2px;
}

.insolvents {
  margin: 98px 0 93px;
}
@media (max-width: 1024px) {
  .insolvents {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .insolvents {
    margin: 50px 0 50px;
  }
}
.insolvents__inner {
  overflow: hidden;
  border-bottom: 1px solid #C6CDDA;
}
@media (max-width: 1024px) {
  .insolvents__inner {
    border: none;
  }
}
.insolvents__wrapper {
  display: -webkit-box;
}
.insolvents-item__text-container {
  max-width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  text-align: right;
  text-transform: uppercase;
  color: #283F75;
}
.insolvents-item__text-container:first-of-type {
  margin-right: -45px;
  padding-right: 80px;
}
@media (max-width: 1024px) {
  .insolvents-item__text-container:first-of-type {
    padding-right: 0;
    margin-right: 0;
  }
}
.insolvents-item__text-container:first-of-type::after {
  content: "";
  width: 15px;
  height: 2px;
  display: block;
  margin-top: 14px;
  margin-left: auto;
  background-color: #B0865F;
}
@media (max-width: 1024px) {
  .insolvents-item__text-container:first-of-type::after {
    margin-right: auto;
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .insolvents-item__text-container {
    max-width: 34%;
  }
}
@media (max-width: 1024px) {
  .insolvents-item__text-container {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .insolvents-item__text-container {
    font-size: 16px;
  }
}
.insolvents-item__text--gold {
  color: #B0865F;
}
@media (max-width: 1024px) {
  .insolvents-item__image {
    max-width: 85vw;
  }
}
@media (max-width: 500px) {
  .insolvents-item__image {
    margin-left: 0;
  }
}
.insolvents-item__image-wrapper {
  position: relative;
}
@media (max-width: 1200px) {
  .insolvents-item__image-wrapper {
    max-width: 45%;
  }
}
@media (max-width: 1024px) {
  .insolvents-item__image-wrapper {
    max-width: unset;
    margin-bottom: 15px;
  }
}
.insolvents-item__bg {
  position: absolute;
  z-index: -1;
  left: 61px;
  top: 24px;
  height: 97%;
}
@media (max-width: 1200px) {
  .insolvents-item__bg {
    left: 31px;
    top: 16px;
  }
}
@media (max-width: 425px) {
  .insolvents-item__bg {
    top: 8px;
    left: 26px;
  }
}
.insolvents-item__wrapper {
  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;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .insolvents-item__wrapper {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.insolvents__item {
  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;
  position: relative;
}
@media (max-width: 1024px) {
  .insolvents__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.insolvents__item-name-container {
  font-size: 49px;
  line-height: 120%;
  letter-spacing: 0.22em;
}
@media (max-width: 500px) {
  .insolvents__item-name-container {
    font-size: 40px;
  }
}
.insolvents-modules {
  max-width: 160px;
  width: 100%;
  margin: 56px auto 93px;
  position: relative;
}
@media (max-width: 1024px) {
  .insolvents-modules {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
.insolvents-modules__navigation {
  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;
}
.insolvents-modules__pagination {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}

.act__inner {
  background: url(/images/banner-dark.jpg) no-repeat;
  background-size: cover;
  background-position: top;
  max-width: 760px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 100px 35px 0;
  margin: 85px auto 30px;
}
@media (max-width: 1199px) {
  .act__inner {
    max-width: 728px;
  }
}
@media (max-width: 767px) {
  .act__inner {
    max-width: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 146px 20px 25px;
  }
}
.act__images-wrapper {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .act__images-wrapper {
    width: 84%;
    margin-left: -3%;
  }
}
.act__image {
  position: absolute;
}
.act__image--act {
  top: 42%;
  left: -7%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 1199px) {
  .act__image--act {
    max-width: 431px;
    width: 111%;
    left: -13%;
  }
}
@media (max-width: 767px) {
  .act__image--act {
    -webkit-transform: translate(20%, -100%);
        -ms-transform: translate(20%, -100%);
            transform: translate(20%, -100%);
  }
}
.act__image--wave {
  top: 40%;
  left: 25%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 1199px) {
  .act__image--wave {
    width: 72%;
    top: 25%;
  }
}
@media (max-width: 767px) {
  .act__image--wave {
    -webkit-transform: translate(-10%, -97%);
        -ms-transform: translate(-10%, -97%);
            transform: translate(-10%, -97%);
    max-width: unset;
    width: 110%;
  }
}
.act__content {
  width: 100%;
  max-width: 270px;
}
.act__title {
  font-size: 21px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .act__title {
    margin-bottom: 15px;
  }
}
.act__text {
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #C6CDDA;
  text-align: center;
}
.act__link {
  margin-top: 15px;
  max-width: unset;
  height: 40px;
}

.order-modal {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(24, 35, 58, 0.4);
  width: 100%;
  height: 100vh;
  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;
}
@media (max-width: 767px) {
  .order-modal {
    overflow: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.order-modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 35px;
  background-color: #F9F9FE;
  padding: 28px 30px 42px 68px;
  background-image: url(/images/chains.png);
  background-position: bottom left;
  background-size: auto;
  background-repeat: no-repeat;
  max-width: 729px;
  margin: 0 45px;
}
@media (max-width: 767px) {
  .order-modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 70px 30px 180px;
    background-image: url(/images/chains_s.png);
    margin: 0 15px;
    margin: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 527px;
  }
}
.order-modal__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  min-width: 320px;
  text-align: right;
  padding-top: 40px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
}
@media (max-width: 767px) {
  .order-modal__title {
    text-align: center;
    min-width: initial;
    padding-top: 0px;
  }
}
.order-modal__text {
  color: #5B5B5B;
}
@media (max-width: 768px) {
  .order-modal__text {
    text-align: center;
  }
}
.order-modal__form {
  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;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .order-modal__form {
    max-width: unset;
  }
}
.order-modal__form-input {
  padding: 18px 20px;
  background: #fff;
  border: none;
  margin-bottom: 25px;
}
.order-modal__form-input:last-of-type {
  margin-bottom: 20px;
}
.order-modal__form-input::-webkit-input-placeholder {
  color: #5B5B5B;
  opacity: 0.6;
}
.order-modal__form-input::-moz-placeholder {
  color: #5B5B5B;
  opacity: 0.6;
}
.order-modal__form-input:-ms-input-placeholder {
  color: #5B5B5B;
  opacity: 0.6;
}
.order-modal__form-input::-ms-input-placeholder {
  color: #5B5B5B;
  opacity: 0.6;
}
.order-modal__form-input::placeholder {
  color: #5B5B5B;
  opacity: 0.6;
}
.order-modal__form-btn {
  margin-top: 0px;
  max-width: 100%;
  margin-bottom: 25px;
}
.order-modal__close {
  position: absolute;
  top: -28.75px;
  right: -30px;
  cursor: pointer;
}
.order-modal__close path {
  fill: #fff;
}
@media (max-width: 767px) {
  .order-modal__close {
    top: 20px;
    right: 20px;
  }
  .order-modal__close path {
    fill: #8992A7;
  }
}

.form__shell--modal-new-form {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .form__shell--modal-new-form {
    margin-bottom: 0px;
  }
}

.video-bfl {
  margin: 0 auto;
  overflow: hidden;
  padding: 100px 6.77% 100px;
}
@media (max-width: 767px) {
  .video-bfl {
    padding: 0;
    margin-top: 50px;
  }
}
.video-bfl .container {
  width: 100%;
  max-width: 1160px;
}
@media (max-width: 767px) {
  .video-bfl__inner {
    -webkit-box-shadow: 0px 12px 44px #E2E5EF;
            box-shadow: 0px 12px 44px #E2E5EF;
    padding: 28px 15px 40px;
  }
}
.video-bfl__wrapper {
  max-width: 1540px;
  width: 100%;
  -webkit-box-shadow: 0px 12px 45px #D8D2CD;
          box-shadow: 0px 12px 45px #D8D2CD;
  padding: 90px 10vw 135px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .video-bfl__wrapper {
    padding: 100px 4vw 5.26vw;
  }
}
@media (max-width: 767px) {
  .video-bfl__wrapper {
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding: 40px 0 46px;
    padding-top: 0;
  }
}
.video-bfl__title {
  font-weight: 400;
  font-size: 34px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  .video-bfl__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.video-bfl__slider {
  max-width: 1060px;
  margin: 0 auto;
  margin-bottom: 70px;
  margin-top: -40px;
  overflow: hidden;
  padding: 30px 20px 30px;
}
@media (max-width: 1535px) {
  .video-bfl__slider {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (max-width: 1199px) {
  .video-bfl__slider {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .video-bfl__slider {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .video-bfl__slider {
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0 7px;
  }
}
.video-bfl__slider-wrapper {
  display: -webkit-box;
}
@media (max-width: 1023px) {
  .video-bfl__slider-wrapper {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .video-bfl__slider-wrapper {
    gap: 8px;
  }
}
.video-bfl__slider-container {
  position: relative;
}
.video-bfl__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 16px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 140px);
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .video-bfl__navigation {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: static;
    width: 100%;
    max-width: 160px;
    margin: 20px auto;
  }
}
@media (max-width: 1023px) {
  .video-bfl__navigation {
    display: none;
  }
}
.video-bfl__navigation-next, .video-bfl__navigation-prev {
  pointer-events: all;
}
.video-bfl__navigation-next[disabled], .video-bfl__navigation-prev[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
.video-bfl__tab {
  background: #FFFFFF;
  border: 1px solid #C6CDDA;
  border-radius: 7px;
  height: 100%;
  padding: 13px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-shadow: 0 0 0 #D8D2CD;
          box-shadow: 0 0 0 #D8D2CD;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .video-bfl__tab {
    max-width: 100%;
    padding: 8px 10px;
  }
}
@media (max-width: 767px) {
  .video-bfl__tab {
    padding: 7px 9px;
  }
}
.video-bfl__tab--active, .video-bfl__tab:hover {
  -webkit-box-shadow: 0px 12px 20px #D8D2CD;
          box-shadow: 0px 12px 20px #D8D2CD;
  border: 1px solid #fff;
}
.video-bfl__tab-title {
  font-family: "Lato";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #2F3A55;
  margin: 0;
}
@media (max-width: 767px) {
  .video-bfl__tab-title {
    font-size: 13px;
  }
}
.video-bfl__tab-preview {
  max-width: 105px;
  aspect-ratio: 105/59.27;
  overflow: hidden;
  border-radius: 7px;
  position: relative;
}
@media (max-width: 767px) {
  .video-bfl__tab-preview {
    max-width: 28.6%;
  }
}
.video-bfl__tab-preview-img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-bfl__content {
  gap: 3.44%;
  max-height: 319px;
  padding-bottom: 2px;
  display: none;
}
@media (max-width: 1199px) {
  .video-bfl__content {
    max-height: 250px;
  }
}
@media (max-width: 768px) {
  .video-bfl__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    max-height: unset;
  }
}
.video-bfl__content--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-bfl__video {
  width: 100%;
  aspect-ratio: 560/319;
}
.video-bfl__video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 560/319;
  cursor: pointer;
}
.video-bfl__video-wrapper.play::before, .video-bfl__video-wrapper.play::after {
  display: none;
}
.video-bfl__video-wrapper img {
  width: 100%;
}
.video-bfl__desc {
  width: 100%;
  overflow: auto;
  padding-right: 20px;
}
.video-bfl__desc::-webkit-scrollbar {
  width: 4px;
}
.video-bfl__desc::-webkit-scrollbar-thumb {
  background-color: #8992A7;
  border-radius: 5px;
}
.video-bfl__desc::-webkit-scrollbar-track {
  background: #EFF2FB;
  border-radius: 5px;
}
.video-bfl__desc-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 130%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #283F75;
  margin: 0 0 15px;
}
.video-bfl__desc p {
  font-family: "Lato";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
  margin-bottom: 1rem;
}
.video-bfl__desc ul, .video-bfl__desc ol {
  padding: 0;
  margin: 0;
  font-family: "Lato";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #5B5B5B;
}

input[type=range] {
  -webkit-appearance: none !important;
  background: transparent;
  height: 7px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background: #18233A;
  height: 23px;
  width: 8px;
}

.calc-builder__block {
  max-width: 810px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .calc-builder__block {
    padding: 0;
  }
}

.calc-builder__inner {
  margin: 80px 0px;
}
@media (max-width: 767px) {
  .calc-builder__inner {
    margin: 50px 0px;
  }
}
@media (max-width: 480px) {
  .calc-builder__inner {
    margin: 30px 0;
  }
}

.calc-builder__title-inner {
  background: #18233a;
  padding: 28px 20px;
  max-width: 750px;
  width: 100%;
  font-size: 27px;
}
@media (max-width: 767px) {
  .calc-builder__title-inner {
    font-size: 22px;
    padding: 16px;
  }
}

.calc-builder__group {
  font-weight: bold;
  cursor: pointer;
}

.calc-builder__square {
  width: 100%;
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  font-size: 16px;
  border-radius: 0;
  height: 36px;
  -ms-flex-preferred-size: 48.7%;
      flex-basis: 48.7%;
}

.calc-builder__range {
  width: 100%;
  margin: 24px 0 22px;
  position: relative;
  border: 1px solid rgba(176, 134, 95, 0.2);
}
.calc-builder__range-wrapper {
  --before-width: 100%;
  position: relative;
}
.calc-builder__range-wrapper::before {
  content: "";
  position: absolute;
  top: 24px;
  height: 7px;
  width: var(--before-width);
  background-color: #b0865f;
}
@media (max-width: 450px) {
  .calc-builder__range {
    margin-bottom: 0;
  }
}

.calc-builder__title-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 48.7%;
      flex-basis: 48.7%;
}

.calc-builder__form {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #C6CDDA;
}
@media (max-width: 767px) {
  .calc-builder__form {
    padding: 16px;
  }
}

.calc-builder__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18px;
}
@media (max-width: 480px) {
  .calc-builder__type {
    margin-top: 6px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (max-width: 450px) {
  .calc-builder__type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}

.calc-builder__select-type {
  margin-right: 10px;
}

.calc-builder__group--square {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 425px) {
  .calc-builder__group--square {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.calc-builder__sq {
  margin-top: 16px;
}

.calc-builder__price {
  text-align: center;
  margin: 35px 0;
}
@media (max-width: 450px) {
  .calc-builder__price {
    margin: 20px 0;
  }
}

.calc-builder__price span {
  font-weight: bold;
  display: inline-block;
  min-width: 104px;
  text-align: right;
}

.calc-builder__text {
  text-align: center;
}
.calc-builder__text p {
  margin-bottom: 10px;
}

.calc-builder__btn {
  margin: 40px auto 10px;
}
@media (max-width: 480px) {
  .calc-builder__btn {
    margin: 25px auto 0;
  }
}

.calc-support__block {
  max-width: 1160px;
  margin: 0 auto;
}
.calc-support__title {
  border-radius: 10px;
  border: 1px solid var(--blue-heading);
}
.calc-support__title-inner {
  font-size: 46px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--blue-heading);
  background: var(--bg-grey-light);
  border-bottom: 1px solid var(--blue-heading);
  border-radius: 10px 10px 0 0;
  max-width: 100%;
  padding: 35px;
}
@media (max-width: 1024px) {
  .calc-support__title-inner {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .calc-support__title-inner {
    padding: 15px 0;
  }
}
.calc-support__container {
  padding: 60px 60px 50px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1024px) {
  .calc-support__container {
    gap: 30px;
    padding: 50px 20px;
  }
}
@media (max-width: 550px) {
  .calc-support__container {
    padding: 0 20px 20px;
  }
}
.calc-support__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.calc-support__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-preferred-size: 32.756%;
      flex-basis: 32.756%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .calc-support__image-wrapper {
    max-height: 335px;
  }
}
@media (max-width: 550px) {
  .calc-support__image-wrapper {
    display: none;
  }
}
.calc-support__form {
  max-width: 640px;
}
.calc-support__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  gap: 60px;
  border: 1px solid var(--bor-grey);
  border-right: none;
  border-left: none;
}
.calc-support__form-row:not(:first-of-type) {
  border-top: none;
}
.calc-support__form-row:last-of-type {
  border: none;
}
@media (max-width: 1024px) {
  .calc-support__form-row {
    padding: 15px 0;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.calc-support__form-row--gap20 {
  gap: 20px;
}
@media (max-width: 768px) {
  .calc-support__form-row:not(:last-of-type) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 8px;
  }
  .calc-support__form-row--gap20 {
    gap: 15px;
  }
  .calc-support__form-row:nth-of-type(2) {
    padding-bottom: 30px;
  }
  .calc-support__form-row--fullwidth {
    margin-left: calc(-50% - 40px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 35px;
    margin-bottom: 5px;
  }
}
@media (max-width: 550px) {
  .calc-support__form-row--fullwidth {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    margin-bottom: 9px;
  }
  .calc-support__form-row:first-of-type {
    border-top: none;
  }
  .calc-support__form-row .choices {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .calc-support__form-row .choices__inner {
    border-radius: 0;
  }
}
.calc-support__form-btn {
  height: auto;
  font-size: 17px;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  max-width: 50%;
  width: 100%;
  height: 60px;
}
@media (max-width: 1024px) {
  .calc-support__form-btn {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .calc-support__form-btn {
    max-width: 236px;
    font-size: 15px;
  }
}
@media (max-width: 550px) {
  .calc-support__form-btn {
    max-width: 100%;
    padding: 9px 17.5px 10px;
    width: 100%;
  }
}
.calc-support__group {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  font-weight: 400;
}
.calc-support__select-type {
  accent-color: var(--blue-heading);
}
.calc-support__title-label {
  margin-bottom: 29px;
}
@media (max-width: 1024px) {
  .calc-support__title-label {
    margin-bottom: 15px;
  }
}
.calc-support .choices__list--dropdown .choices__item--selectable.is-highlighted {
  color: var(--gray-text);
}
.calc-support__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  margin: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--gray-text);
  -webkit-transform: translateY(-7.5%);
      -ms-transform: translateY(-7.5%);
          transform: translateY(-7.5%);
  display: grid;
  place-content: center;
}
.calc-support__checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 768px) {
  .calc-support__checkbox-wrapper {
    margin: 10px 0;
  }
}
.calc-support__checkbox::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='26' viewBox='0 0 16 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 15.5L5 21C6.16667 16.5 9.6 6.2 14 1' stroke='%23283F75' stroke-width='3'/%3E%3C/svg%3E%0A");
  width: 12px;
  height: 20px;
  -webkit-transform: scale(0) translate(0px, -40%);
      -ms-transform: scale(0) translate(0px, -40%);
          transform: scale(0) translate(0px, -40%);
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
}
.calc-support__checkbox:checked::before {
  -webkit-transform: scale(1) translate(0px, -40%);
      -ms-transform: scale(1) translate(0px, -40%);
          transform: scale(1) translate(0px, -40%);
}
.calc-support__checkbox-label {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.calc-support__price {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--white);
  padding: 19px 5px;
  height: 60px;
  background-color: rgba(24, 35, 58, 0.9);
  width: 50%;
}
.calc-support__price span {
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .calc-support__price {
    font-size: 16px;
    padding: 19px 5px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .calc-support__price {
    max-width: 236px;
    font-size: 15px;
    background-color: var(--blue-heading);
  }
}
@media (max-width: 550px) {
  .calc-support__price {
    max-width: 100%;
    width: 100%;
  }
}
.calc-support__text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 150%;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: var(--gray-text);
  margin: 0;
}
@media (max-width: 1024px) {
  .calc-support__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .calc-support__text {
    margin-left: calc(-50% - 40px);
    text-align: center;
  }
}
@media (max-width: 550px) {
  .calc-support__text {
    margin-left: 0;
    text-align: left;
  }
}

.choices__list--single--disabled {
  pointer-events: none;
  opacity: 0.23;
}

.houses-slider {
  margin: 70px 0;
  padding: 25px 0 40px;
}

.houses-swiper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0 120px;
  overflow: hidden;
}
@media (max-width: 1350px) {
  .houses-swiper {
    padding: 0 110px;
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .houses-swiper {
    padding: 0 110px;
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .houses-swiper {
    padding: 15px 20px 100px;
    margin: 0;
    max-width: unset;
  }
}
.houses-swiper-pagination {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  gap: 10px;
}
@media (max-width: 768px) {
  .houses-swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.houses-swiper-pagination .swiper-pagination-bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--bg-grey);
}
.houses-swiper-pagination .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: #8992A7;
}
.houses-swiper-pagination .swiper-pagination-bullet-active-prev, .houses-swiper-pagination .swiper-pagination-bullet-active-next {
  width: 8px;
  height: 8px;
}
.houses-swiper::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 120px;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 1350px) {
  .houses-swiper::after {
    width: 110px;
  }
}
@media (max-width: 768px) {
  .houses-swiper::after {
    display: none;
  }
}
.houses-swiper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 120px;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 1350px) {
  .houses-swiper::before {
    width: 110px;
  }
}
@media (max-width: 768px) {
  .houses-swiper::before {
    display: none;
  }
}
.houses-swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 110px 0 160px;
}
@media (max-width: 768px) {
  .houses-swiper-wrapper {
    padding: 0;
  }
}
.houses-swiper-navigation {
  position: absolute;
  z-index: 99;
  top: 46.7%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  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;
}
@media (max-width: 768px) {
  .houses-swiper-navigation {
    display: none;
  }
}
.houses-swiper-slide {
  position: relative;
  z-index: 5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .houses-swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.houses-swiper-slide::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -44px;
  width: 3px;
  height: calc(100% + 270px);
  background-color: var(--bg-grey);
}
@media (max-width: 1024px) {
  .houses-swiper-slide::after {
    right: -49px;
  }
}
@media (max-width: 768px) {
  .houses-swiper-slide::after {
    display: none;
  }
}
.houses-swiper-slide__bg {
  position: relative;
  width: 200px;
  height: 350px;
}
.houses-swiper-slide__bg-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .houses-swiper-slide__bg {
    width: 190px;
    height: 310px;
  }
}
.houses-swiper-slide__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background-color: rgba(47, 58, 85, 0.6);
  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;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .houses-swiper-slide__zoom {
    display: none;
  }
}
.houses-swiper-slide__block {
  position: absolute;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  bottom: 0;
  left: 50%;
  width: 180px;
  background-color: var(--bg-grey);
  border: 2px solid #B0865F;
  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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  padding: 8px;
}
.houses-swiper-slide__block-title {
  color: #fff;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.houses-swiper-slide__block-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.houses-swiper-slide__block-info__icon {
  width: 15px;
  height: 15px;
}
.houses-swiper-slide__block-info__text {
  color: #C6CDDA;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 1px;
}

.acceptance-slider {
  margin: 50px 0;
}
.acceptance-slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.acceptance-slider-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  gap: 6px;
  width: 190px;
}
@media (max-width: 1024px) {
  .acceptance-slider-slide {
    width: 180px;
  }
}
.acceptance-slider-slide__image {
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .acceptance-slider-slide__image {
    height: 280px;
  }
}
.acceptance-slider-slide__text {
  color: #000;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.acceptance-swiper {
  position: relative;
  margin: 0 auto;
  max-width: 745px;
  overflow: hidden;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .acceptance-swiper {
    max-width: 730px;
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .acceptance-swiper {
    max-width: unset;
    padding: 0;
    padding-bottom: 30px;
  }
}
.acceptance-swiper::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 60px;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 2;
  display: none;
}
@media (max-width: 1024px) {
  .acceptance-swiper::after {
    display: block;
  }
}
@media (max-width: 768px) {
  .acceptance-swiper::after {
    display: none;
  }
}
.acceptance-swiper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 60px;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 2;
  display: none;
}
@media (max-width: 1024px) {
  .acceptance-swiper::before {
    display: block;
  }
}
@media (max-width: 768px) {
  .acceptance-swiper::before {
    display: none;
  }
}
.acceptance-swiper-navigation {
  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;
  max-width: 160px;
  width: 100%;
  z-index: 99;
  margin-top: 40px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .acceptance-swiper-navigation {
    bottom: 40%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: unset;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .acceptance-swiper-navigation {
    display: none;
  }
}
.acceptance-swiper-pagination {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .acceptance-swiper-pagination {
    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;
    gap: 10px;
    bottom: 0;
  }
}
.acceptance-swiper-pagination .swiper-pagination-bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--bg-grey);
}
.acceptance-swiper-pagination .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background-color: #8992A7;
}
.acceptance-swiper-pagination .swiper-pagination-bullet-active-prev, .acceptance-swiper-pagination .swiper-pagination-bullet-active-next {
  width: 8px;
  height: 8px;
}

.company-news {
  padding-top: 100px;
  padding-bottom: 110px;
  background: #F9F9FE;
}

@media (max-width: 1199px) {
  .company-news {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .company-news {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.company-news__wrapper {
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .company-news__wrapper {
    padding: 0 10px;
  }
}
.company-news__title {
  max-width: 760px;
  color: #283F75;
  text-align: center;
  margin: 0 auto 70px auto;
}

@media (max-width: 1199px) {
  .company-news__title {
    margin: 0 auto 40px auto;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .company-news__title {
    margin: 0 auto 30px auto;
  }
}
.company-news__line {
  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: 20px 0;
  height: 80px;
  border-bottom: 1px solid #C6CDDA;
}

@media (max-width: 768px) {
  .company-news__line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 10px;
  }
}
.company-news__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .company-news__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.company-news__date {
  margin-right: 30px;
}

@media (max-width: 768px) {
  .company-news__date {
    width: 100%;
    margin-bottom: 10px;
  }
}
.company-news__text {
  max-width: 540px;
  color: #283F75;
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .company-news__text {
    width: 100%;
    max-width: 448px;
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .company-news__text {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.company-news__link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #5B5B5B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company-news__link::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("/images/arrow_right.svg");
  margin: 0 0 0 10px;
}

.company-news__link_circle::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url("/images/arrow_right_circle.svg");
}

.company-news__all-news {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1199px) {
  .company-news__all-news {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .company-news__all-news {
    margin-top: 30px;
  }
}
.company-news-link {
  left: -20px;
}

@media (max-width: 768px) {
  .company-news-link {
    left: 0px;
  }
}
.company-stats {
  margin-top: 110px;
  margin-bottom: 110px;
}

@media (max-width: 1199px) {
  .company-stats {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .company-stats {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.company-stats__wrapper {
  max-width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 110px;
  border-bottom: 1px solid #C6CDDA;
  border-top: 1px solid #C6CDDA;
}

@media (max-width: 1199px) {
  .company-stats__wrapper {
    padding: 0 10px;
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .company-stats__wrapper {
    max-width: 728px;
    padding: 0;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.company-stats__block {
  width: 100%;
  max-width: 360px;
  height: 180px;
  padding: 25px 40px;
}

@media (max-width: 1199px) {
  .company-stats__block {
    width: 30%;
    padding: 15px 20px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .company-stats__block {
    height: 130px;
    width: 100%;
    max-width: 100%;
  }
}
.company-stats__block_title {
  padding: 0;
}

@media (max-width: 768px) {
  .company-stats__block_title {
    height: 60px;
    text-align: center;
  }
}
.company-stats__block_big {
  width: 100%;
  max-width: 440px;
}

@media (max-width: 1199px) {
  .company-stats__block_big {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .company-stats__block_big {
    width: 100%;
    max-width: 100%;
  }
}
.company-stats__block_fill {
  background: #2F3A55;
}

.company-stats__block_border {
  border: 1px solid #C6CDDA;
}

.company-stats__title {
  color: #283F75;
  margin: 0;
}

@media (max-width: 1199px) {
  .company-stats__title {
    font-size: 22px;
  }
}
.company-stats__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.company-stats__digit {
  font-size: 67px;
  color: #B0865F;
}

@media (max-width: 1199px) {
  .company-stats__digit {
    font-size: 48px;
  }
}
.company-stats__digit_fill {
  color: #fff;
}

.company-stats__text {
  font-size: 18px;
  color: #5B5B5B;
  margin-top: 5px;
}

@media (max-width: 1199px) {
  .company-stats__text {
    font-size: 15px;
  }
}
.company-stats__text_fill {
  color: #fff;
}

.company-vacancys {
  padding-top: 100px;
  padding-bottom: 110px;
  background: #F9F9FE;
}

@media (max-width: 1199px) {
  .company-vacancys {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .company-vacancys {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.company-vacancys__wrapper {
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .company-vacancys__wrapper {
    padding: 0 10px;
  }
}
.company-vacancys__title {
  max-width: 760px;
  color: #283F75;
  text-align: center;
  margin: 0 auto 30px auto;
}

@media (max-width: 1199px) {
  .company-vacancys__title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .company-vacancys__title {
    margin: 0 auto 15px auto;
  }
}
.company-vacancys__description {
  max-width: 760px;
  font-size: 18px;
  margin: 0 auto 70px auto;
  line-height: 150%;
  color: #5B5B5B;
  text-align: center;
}

@media (max-width: 1199px) {
  .company-vacancys__description {
    font-size: 16px;
    margin: 0 auto 40px auto;
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .company-vacancys__description {
    font-size: 15px;
    margin: 0 auto 30px auto;
  }
}
.company-vacancys__switcher {
  margin: 0 0 40px auto;
  width: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #C6CDDA;
  padding: 0 0 20px 0;
}

.company-vacancys__category {
  font-size: 15px;
  color: #C6CDDA;
  text-decoration: none;
}

.company-vacancys__category_active {
  color: #283F75;
  border-bottom: 1px dashed #283F75;
  padding-bottom: 5px;
}

.vacancy__block {
  padding: 30px 0;
  border-top: 1px solid #C6CDDA;
}

@media (max-width: 1199px) {
  .vacancy__block {
    padding: 20px 0;
  }
}
.vacancy__block_border {
  border-bottom: 1px solid #C6CDDA;
}

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

@media (max-width: 768px) {
  .vacancy__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.vacancy__title {
  color: #283F75;
  font-weight: 400;
  font-size: 21px;
  margin: 0;
}

@media (max-width: 1199px) {
  .vacancy__title {
    font-size: 18px;
    margin-right: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .vacancy__title {
    width: 100%;
  }
}
.vacancy__title_active {
  color: #8992A7;
}

.vacancy__button {
  font-size: 15px;
  width: 260px;
  height: 40px;
  color: #fff;
  background: #B0865F;
  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;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .vacancy__button {
    margin-bottom: 25px;
  }
}
.vacancy__info {
  display: none;
}

.vacancy__about {
  font-size: 15px;
  color: #5B5B5B;
  text-decoration: none;
}

.vacancy__about::after {
  content: "";
  display: inline-block;
  background: url("/images/arrow_down.svg");
  width: 10px;
  height: 10px;
  margin: 0 0 0 10px;
}

.vacancy__about_active::after {
  content: "";
  display: inline-block;
  background: url("/images/arrow_up.svg");
  width: 10px;
  height: 10px;
  margin: 0 0 0 10px;
}

.vacancy__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 0 0;
}

@media (max-width: 1199px) {
  .vacancy__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 10px 0 0 0;
  }
}
.vacancy__propertie {
  width: 160px;
  margin: 0 40px 0 0;
  font-weight: 700;
  font-size: 15px;
  color: #5B5B5B;
}

@media (max-width: 1199px) {
  .vacancy__propertie {
    width: 100%;
    margin-bottom: 20px;
  }
}
.vacancy__list {
  margin: 0 0 40px 0;
}

@media (max-width: 1199px) {
  .vacancy__list {
    margin: 0;
  }
}
.vacancy__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px 0;
}

@media (max-width: 768px) {
  .vacancy__text {
    font-size: 15px;
  }
}
.vacancy__svg-bullet {
  margin: 0 12px 0 0;
}

@media (max-width: 768px) {
  .page-main__title {
    font-size: 22px;
  }
}
.company-contacts {
  padding-top: 100px;
  padding-bottom: 110px;
}

@media (max-width: 1199px) {
  .company-contacts {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .company-contacts {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.company-contacts__wrapper {
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .company-contacts__wrapper {
    padding: 0 20px;
  }
}
.company-contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .company-contacts__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .company-contacts__block {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .company-contacts__block_right {
    max-width: 275px;
  }
}
@media (max-width: 768px) {
  .company-contacts__block_right {
    max-width: 100%;
    margin: 50px auto 0 auto;
  }
}
.company-contacts__title {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 70px auto;
}

@media (max-width: 1199px) {
  .company-contacts__title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .company-contacts__title {
    margin: 0 auto 30px auto;
  }
}
.company-contacts__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 54px;
  gap: 20px;
}

@media (max-width: 1199px) {
  .company-contacts__line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .company-contacts__line_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .company-contacts__line {
    gap: 0px;
  }
}
.company-contacts__icon {
  margin-right: 20px;
}

.company-contacts__text {
  position: relative;
  color: #5B5B5B;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .company-contacts__text {
    max-width: 320px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .company-contacts__text {
    max-width: 100%;
  }
}
.company-contacts__text_blue {
  color: #283F75;
  font-size: 21px;
}

@media (max-width: 1199px) {
  .company-contacts__text_blue {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .company-contacts__text_width {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .company-contacts__text_width {
    text-align: center;
  }
}
.company-contacts__text_address {
  padding: 0 0 0 40px;
}

.company-contacts__text_address::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("/images/buildings.svg");
  position: absolute;
  left: 0;
}

.company-contacts__text_phone {
  padding: 0 0 0 40px;
}

.company-contacts__text_phone::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("/images/phone.svg");
  position: absolute;
  left: 0;
}

.company-contacts__text_email {
  padding: 0 0 0 40px;
}

.company-contacts__text_email::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("/images/email.svg");
  position: absolute;
  left: 0;
}

.company-contacts__social {
  margin: 0 0px;
  width: 54px;
  height: 54px;
  border-radius: 50px;
  border: 1px solid #C6CDDA;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.social__item:hover .company-contacts__social {
  border: 1px solid #ffffff00;
}

.company-contacts__block_right .social {
  margin: 0;
  gap: 15px;
}

.company-contacts__block_right .social__item {
  margin-left: 0px;
}

.company-contacts__title {
  color: #283F75;
}

.leva {
  margin-block: 110px 100px;
}
@media (max-width: 767px) {
  .leva {
    margin-block: 60px 50px;
  }
}
.leva .container {
  position: static;
}
.leva__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .leva__wrapper {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 12vw;
    z-index: 0;
  }
}
@media (max-width: 850px) {
  .leva__wrapper {
    padding-bottom: 10vw;
  }
}
@media (max-width: 767px) {
  .leva__wrapper {
    padding-bottom: 0;
  }
}
.leva__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 570px;
          flex: 1 1 570px;
  max-width: 570px;
}
@media (max-width: 1024px) {
  .leva__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: none;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
  }
}
.leva__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 660px;
}
@media (max-width: 1900px) {
  .leva__right {
    height: 35vw;
  }
}
@media (max-width: 1140px) {
  .leva__right {
    height: 30vw;
  }
}
@media (max-width: 1024px) {
  .leva__right {
    width: 65%;
    height: 40vw;
    overflow: hidden;
    position: absolute;
    right: -20px;
    bottom: -15px;
  }
}
@media (max-width: 767px) {
  .leva__right {
    width: 70%;
    right: -10px;
    bottom: 60px;
    height: 50vw;
  }
}
@media (max-width: 500px) {
  .leva__right {
    width: 125vw;
    height: 88vw;
  }
}
.leva__title {
  color: var(--blue-heading);
  font-size: 34px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .leva__title {
    max-width: 700px;
    text-wrap: balance;
    margin-inline: auto;
  }
}
@media (max-width: 800px) {
  .leva__title {
    max-width: 590px;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .leva__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.leva__subtitle {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .leva__subtitle {
    max-width: 620px;
    margin: 0 auto;
    margin-bottom: 110px;
  }
}
@media (max-width: 800px) {
  .leva__subtitle {
    font-size: 16px;
    max-width: 560px;
  }
}
@media (max-width: 767px) {
  .leva__subtitle {
    margin-bottom: 57vw;
  }
}
@media (max-width: 500px) {
  .leva__subtitle {
    font-size: 15px;
    margin-bottom: 100vw;
  }
}
.leva__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .leva__btn-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .leva__btn-block {
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .leva__btn-block {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .leva__btn-block {
    max-width: none;
    padding-inline: 20px;
  }
}
.leva__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;
}
@media (max-width: 1024px) {
  .leva__btn {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .leva__btn {
    height: 40px;
  }
}
.leva__qr {
  width: 270px;
  height: 60px;
  background: #18233a;
  padding: 19px 30px 20px 30px;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .leva__qr {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 800px) {
  .leva__qr {
    height: 40px;
    padding: 10px 30px 10px 30px;
  }
}
@media (max-width: 767px) {
  .leva__qr {
    display: none;
  }
}
.leva__qr-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}
.leva__qr-img {
  width: 100px;
  height: 120px;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .leva__qr-img {
    width: 80px;
    height: 96px;
  }
}
.leva__img-main {
  position: absolute;
  width: 940px;
  height: 660px;
  right: 0;
}
@media (max-width: 1900px) {
  .leva__img-main {
    width: 50vw;
    height: 35vw;
  }
}
@media (max-width: 1140px) {
  .leva__img-main {
    width: 40vw;
    height: 30vw;
  }
}
@media (max-width: 1024px) {
  .leva__img-main {
    width: 60vw;
    height: 45vw;
    right: -15vw;
  }
}
@media (max-width: 767px) {
  .leva__img-main {
    right: 0;
    width: 70vw;
    height: 52vw;
  }
}
@media (max-width: 500px) {
  .leva__img-main {
    right: -25vw;
    width: 125vw;
    height: 88vw;
    bottom: 0;
  }
}

.shareholders {
  padding-block: 100px;
  background: #F9F9FE;
}
@media (max-width: 850px) {
  .shareholders {
    padding-block: 60px;
  }
}
@media (max-width: 660px) {
  .shareholders {
    padding-block: 50px;
  }
}
.shareholders__wrapper {
  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;
}
@media (max-width: 850px) {
  .shareholders__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 0;
  }
}
@media (max-width: 660px) {
  .shareholders__wrapper {
    padding-bottom: 70px;
  }
}
.shareholders__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 660px;
          flex: 1 1 660px;
  padding-right: 100px;
}
@media (max-width: 1199px) {
  .shareholders__info {
    padding-right: 50px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 610px;
            flex: 1 1 610px;
  }
}
@media (max-width: 1024px) {
  .shareholders__info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 min-content;
            flex: 1 1 min-content;
  }
}
@media (max-width: 850px) {
  .shareholders__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 0;
  }
}
.shareholders__title {
  color: var(--blue-heading);
  font-size: 34px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .shareholders__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
  .shareholders__title {
    text-align: center;
    max-width: 354px;
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 500px) {
  .shareholders__title {
    font-size: 22px;
    margin-bottom: 15px;
    max-width: 300px;
  }
}
.shareholders__subtitle {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .shareholders__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .shareholders__subtitle {
    margin: 0 auto;
    max-width: 550px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .shareholders__subtitle {
    font-size: 15px;
  }
}
.shareholders__img-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 500px;
  height: 420px;
}
@media (max-width: 1199px) {
  .shareholders__img-block {
    width: 354px;
    height: 300px;
  }
}
@media (max-width: 850px) {
  .shareholders__img-block {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (max-width: 660px) {
  .shareholders__img-block {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (max-width: 500px) {
  .shareholders__img-block {
    width: 300px;
    height: 252px;
  }
}
.shareholders__img {
  width: 100%;
  height: 100%;
}
.shareholders__steps {
  margin-top: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 40px;
}
@media (max-width: 1199px) {
  .shareholders__steps {
    margin-top: 40px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .shareholders__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .shareholders__steps {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    gap: 34px;
  }
}
@media (max-width: 660px) {
  .shareholders__steps {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    padding-inline: 20px;
  }
}
@media (max-width: 850px) {
  .shareholders__btn-block {
    display: none;
  }
}
.shareholders__btn-mobile {
  position: absolute;
  width: 260px;
  left: 0;
  bottom: 130px;
  z-index: 1;
}
@media (min-width: 851px) {
  .shareholders__btn-mobile {
    display: none;
  }
}
@media (max-width: 800px) {
  .shareholders__btn-mobile {
    height: 40px;
  }
}
@media (max-width: 660px) {
  .shareholders__btn-mobile {
    bottom: 0;
    left: 20px;
    right: 20px;
    width: auto;
  }
}

.shareholder__step {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #C39F7E;
  padding-bottom: 15px;
  border-bottom: 1px solid #C39F7E;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .shareholder__step {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .shareholder__step {
    font-size: 15px;
  }
}
.shareholder__description {
  font-size: 18px;
  line-height: 150%;
  color: var(--gray-text);
}
@media (max-width: 1024px) {
  .shareholder__description {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .shareholder__description {
    font-size: 15px;
  }
}
/*# sourceMappingURL=maps/commons.css.map */
