@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

body {
  font-family: Inter;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}

main {
  min-height: 80vh;
  background-color: #F4F6F6;
}

::selection {
  color: #fff;
  background-color: #1971C2;
}

.section-title {
  font-size: 35px;
  font-weight: 800;
  line-height: 47px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 460px) {
  .section-title {
    font-size: 20px;
    line-height: 24px;
  }
}

.page-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 86px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .page-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 460px) {
  .page-title {
    font-size: 22px;
    line-height: 28px;
  }
}

.page-subtitle {
  font-size: 40px;
  font-weight: 400;
  line-height: 59px;
  color: #fff;
  display: block;
}
@media screen and (max-width: 992px) {
  .page-subtitle {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 460px) {
  .page-subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}

.button {
  border: none;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  color: #031929;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  padding: 0 46px;
  height: 42px;
  transition: 0.2s all ease-out;
}
.button:hover {
  color: #fff;
  background-color: #1971C2;
}
.button--main {
  background-color: #1971C2;
  color: #fff;
  cursor: pointer;
}
.button--main:hover {
  color: #1971C2;
  background-color: #fff;
}
.button--svg {
  padding: 0 12px;
  height: 54px;
}
.button--svg svg {
  height: 30px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
.button--svg:hover {
  background-color: #1971C2;
}

.text-editor p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  margin-bottom: 35px;
}
.text-editor b {
  font-weight: 700;
}
.text-editor h1, .text-editor h2, .text-editor h3, .text-editor h4, .text-editor h5, .text-editor h6 {
  margin-bottom: 35px;
}
.text-editor ul, .text-editor ol {
  margin-bottom: 35px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.text-editor li {
  margin-bottom: 10px;
}
.text-editor ul li {
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .text-editor ul li {
    padding-left: 20px;
  }
}
.text-editor ul li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 13px;
  height: 1px;
  background-color: #97A9B4;
}
@media screen and (max-width: 768px) {
  .text-editor ul li::after {
    width: 13px;
  }
}
.text-editor ol {
  counter-reset: my-awesome-counter;
}
.text-editor ol li {
  padding-left: 30px;
  position: relative;
  counter-increment: my-awesome-counter;
}
@media screen and (max-width: 768px) {
  .text-editor ol li {
    padding-left: 20px;
  }
}
.text-editor ol li::before {
  content: counter(my-awesome-counter) ".";
  font-weight: bold;
  font-size: 16px;
  color: #5A6F7E;
  position: absolute;
  left: 0;
  top: 0;
}

.zoom__toggle {
  cursor: pointer;
  position: relative;
}
.zoom__toggle:hover .zoom__icon {
  opacity: 1;
}
.zoom__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s all ease-out;
  pointer-events: none;
}

.gallery-lightbox.-open {
  background-color: rgba(255, 255, 255, 0.6);
}
.gallery-lightbox .close, .gallery-lightbox .next, .gallery-lightbox .prev {
  background: rgba(25, 113, 194, 0.4) !important;
}

.input {
  height: 44px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #D1D6D9;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  transition: 0.2s all ease-out;
}
.input::placeholder {
  color: #97A9B4;
}
.input:hover {
  border-color: #1971C2;
}
.input:focus {
  outline: none;
  border-color: #1971C2;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(151, 169, 180, 0.5);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .header {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 20;
  }
}
.header__logo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 31%;
  max-width: 586px;
  min-width: 415px;
  padding-right: 30px;
  align-self: stretch;
}
@media screen and (max-width: 1200px) {
  .header__logo-wrap {
    height: 57px;
    padding-left: 15px;
    justify-content: flex-start;
    position: absolute;
    z-index: 1;
  }
}
@media screen and (max-width: 992px) {
  .header__logo-wrap {
    background-color: transparent;
    width: auto;
    max-width: max-content;
    min-width: max-content;
    padding-right: 0;
  }
}
@media screen and (max-width: 460px) {
  .header__logo-wrap {
    height: 58px;
  }
}
.header__right {
  padding: 0 15px;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__right {
    padding: 0;
  }
}
.header__top {
  padding: 9px 0;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .header__top {
    padding: 3px 15px;
  }
}
@media screen and (max-width: 460px) {
  .header__top {
    padding: 9px 15px;
  }
}
.header__wrap-right {
  min-width: min-content;
  max-width: 1100px;
  position: relative;
}
.header__blind {
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .header__blind {
    margin-right: 16px;
  }
}
.header__lang {
  margin-right: 45px;
}
.header__nav {
  width: 100%;
}
.header__top-placeholder {
  height: 60px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header__top-placeholder {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .navigation {
    height: 76px;
  }
}
@media screen and (max-width: 768px) {
  .navigation {
    display: none;
  }
}
.navigation__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.navigation__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  cursor: pointer;
  position: relative;
}
.navigation__item:nth-last-child(1) .navigation__childs, .navigation__item:nth-last-child(2) .navigation__childs, .navigation__item:nth-last-child(3) .navigation__childs {
  left: unset;
  right: 0;
}
.navigation__item:first-child .navigation__childs {
  right: unset;
  left: 0;
}
.navigation__item:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #F7C270;
  bottom: 24px;
  left: 0;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.navigation__item:hover .navigation__childs {
  opacity: 1;
  pointer-events: all;
}
.navigation__item:hover .navigation__toggle {
  transform: rotate(180deg);
}
.navigation__item:hover::after {
  width: 100%;
}
.navigation__childs {
  position: absolute;
  box-shadow: 0 4px 12px rgba(3, 25, 41, 0.1);
  bottom: 5px;
  left: 0;
  transform: translateY(100%);
  width: max-content;
  padding: 5px 0;
  transition: 0.2s all ease-out;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  padding: 26px 40px;
}
.navigation__child-link {
  transition: 0.2s all ease-out;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: #031929;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.navigation__child-link:hover {
  color: #1971C2;
}
.navigation__toggle {
  margin: 7px 0 0 7px;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.navigation__link {
  padding: 34px 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s all ease-out;
}

.lang {
  position: relative;
  cursor: pointer;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 768px) {
  .lang {
    display: none;
  }
}
.lang__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.lang:hover .lang__title {
  color: #1971C2;
}
.lang:hover path {
  fill: #1971C2;
}
.lang path {
  transition: 0.2s all ease-out;
}
.lang__title {
  padding: 0 9px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #031929;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 1200px) {
  .lang__title {
    display: none;
  }
}
.lang__icon {
  margin-right: 10px;
  width: 20px;
}
.lang__toggle {
  width: 6px;
}
.lang__list {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(3, 25, 41, 0.1);
  right: 0;
  top: 24px;
  width: max-content;
  display: none;
  z-index: 10;
}
.lang__list.shown {
  display: block;
}
.lang__link {
  padding: 5px 10px;
  display: block;
  text-align: center;
  transition: 0.2s all ease-out;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #031929;
}
.lang__link:hover {
  color: #1971C2;
}

.blind {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #031929;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 768px) {
  .blind {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .blind__text {
    display: none;
  }
}
.blind:hover {
  color: #1971C2;
}
.blind:hover path {
  fill: #1971C2;
}
.blind path {
  transition: 0.2s all ease-out;
}
.blind svg {
  width: 26px;
  margin-right: 11px;
}

.logo {
  display: grid;
  grid-template-columns: 108px 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  row-gap: 7px;
}
@media screen and (max-width: 1200px) {
  .logo {
    grid-template-columns: 60px 1fr;
    row-gap: 0;
  }
}
@media screen and (max-width: 460px) {
  .logo {
    grid-template-columns: 40px 1fr;
    row-gap: 3px;
    column-gap: 8px;
  }
}
.logo__image {
  width: 100%;
  grid-row: 1/-1;
}
.logo__title {
  font-family: Avenir;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .logo__title {
    font-size: 18px;
    line-height: 24px;
    color: #031929;
  }
}
@media screen and (max-width: 460px) {
  .logo__title {
    font-size: 13px;
    line-height: 17px;
  }
}
.logo__subtitle {
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .logo__subtitle {
    color: #031929;
  }
}
@media screen and (max-width: 460px) {
  .logo__subtitle {
    font-size: 11px;
    line-height: 14px;
  }
}

@media screen and (max-width: 768px) {
  .header-message-toggle {
    display: none;
  }
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
  background-color: transparent;
  padding-right: 0 !important;
}
.mobile-nav-toggle:hover {
  background-color: transparent;
}
.mobile-nav-toggle.open path {
  transform-origin: center;
}
.mobile-nav-toggle.open path:first-child {
  transform: rotate(45deg) scaleX(1.4) translate(0px, -6px);
}
.mobile-nav-toggle.open path:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open path:last-child {
  transform: rotate(-45deg) scaleX(1.4) translate(0px, 6px);
}
.mobile-nav-toggle svg {
  overflow: visible;
  height: 24px;
}
.mobile-nav-toggle path {
  fill: #1971C2;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
@media screen and (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }
}
@media screen and (max-width: 460px) {
  .mobile-nav-toggle {
    height: 40px;
    padding: 0 10px;
  }
  .mobile-nav-toggle svg {
    height: 20px;
  }
}

.mobile-navigation {
  position: fixed;
  height: 100vh;
  background-color: #fff;
  top: -100%;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
  padding: 87px 15px 15px;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-navigation {
    display: flex;
  }
}
@media screen and (max-width: 460px) {
  .mobile-navigation {
    padding: 73px 15px 15px;
  }
}
.mobile-navigation.open {
  transform: translateY(100%);
}
.mobile-navigation__link {
  color: #031929;
  font-size: 14px;
  line-height: 19px;
  display: block;
  max-width: calc(100% - 43px);
  width: max-content;
  position: relative;
}
.mobile-navigation__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #1971C2;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.mobile-navigation__link.open::after {
  width: 100%;
}
.mobile-navigation__list {
  display: grid;
  row-gap: 10px;
  width: 100%;
}
.mobile-navigation__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.mobile-navigation__toggle {
  width: 13px;
  height: 20px;
  object-fit: contain;
  margin-left: 30px;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.mobile-navigation__toggle.open {
  transform: rotate(180deg);
}
.mobile-navigation__toggle path {
  fill: #1971C2;
}
.mobile-navigation__childs {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.mobile-navigation__child {
  padding-top: 5px;
}
.mobile-navigation__child-link {
  color: #031929;
  font-size: 14px;
  line-height: 19px;
  padding-left: 15px;
}
.mobile-navigation__bottom {
  margin-top: auto;
  padding-top: 50px;
  width: 100%;
  display: grid;
  row-gap: 15px;
}
.mobile-navigation__blind {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .mobile-navigation__blind {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .mobile-navigation__blind-text {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .mobile-navigation__lang {
    display: flex;
  }
}
.mobile-navigation__lang-list {
  right: auto;
  left: 0;
  padding: 10px 20px;
}
.mobile-navigation__lang-icon {
  width: 27px;
}
.mobile-navigation__lang-toggle {
  width: 10px;
}
.mobile-navigation__lang-wrap {
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .mobile-navigation__lang-title {
    display: inline;
  }
}

.mobile-message-toggle {
  width: 100%;
}

.footer {
  background: linear-gradient(#0D1A2B, #074367);
}
.footer__item {
  width: 280px;
  margin-bottom: 30px;
}
.footer__item:first-child {
  align-self: flex-end;
  width: 350px;
}
@media screen and (max-width: 992px) {
  .footer__item:first-child {
    order: 1;
  }
}
.footer__after {
  position: relative;
}
.footer__after::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 114 150'%3E%3Cdefs/%3E%3Cg fill='%23fff' transform='translate(-371 -5269)'%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(371 5269)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(407 5269)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(443 5269)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(479 5269)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(371 5305)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(407 5305)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(443 5305)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(479 5305)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(371 5341)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(407 5341)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(443 5341)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(479 5341)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(371 5377)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(407 5377)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(443 5377)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(479 5377)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(371 5413)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(407 5413)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(443 5413)'/%3E%3Ccircle cx='3' cy='3' r='3' data-name='Эллипс 88' transform='translate(479 5413)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 150px;
  width: 114px;
  content: "";
  position: absolute;
  top: -76px;
  left: 0;
}
@media screen and (max-width: 992px) {
  .footer__after::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__after::after {
    display: none;
  }
}
.footer__about {
  font-size: 12px;
  line-height: 22px;
}
.footer__copy {
  font-family: Avenir;
  font-size: 12px;
  line-height: 21px;
  padding-top: 36px;
}
.footer__top {
  padding: 100px 0 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__top {
    padding-top: 40px;
  }
}
.footer__to-top {
  background-color: #074367;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border: none;
  position: absolute;
  bottom: 0;
  right: 40px;
  cursor: pointer;
}
.footer__to-top:hover svg {
  transform: scale(1.3);
}
.footer__to-top svg {
  transition: 0.2s all ease-out;
  height: 14px;
}
.footer__bottom {
  padding: 30px 0 20px;
  background-color: #074367;
}
.footer__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .footer__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .footer__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    max-width: calc(100% - 30px);
  }
}
.footer__menu {
  margin-top: -10px;
}
.footer__address {
  font-size: 14px;
  line-height: 19px;
  padding-bottom: 18px;
}
.footer__phones {
  margin-top: -5px;
}
.footer__mail {
  margin-top: 32px;
  display: block;
  font-size: 14px;
}

.orgs-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.orgs-list__item {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .orgs-list__item {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

.org-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 268px;
}
.org-item__icon {
  height: 52px;
  max-width: 80px;
  object-fit: contain;
}
.org-item__title {
  padding: 0 15px;
  font-family: Avenir;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: #fff;
  opacity: 0.4;
}

.footer-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.footer-item__header {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  color: #fff;
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(151, 169, 180, 0.3);
  position: relative;
}
.footer-item__header::after {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #F7C270;
}
.footer-item__body {
  color: rgba(255, 255, 255, 0.5);
  padding-top: 50px;
}
.footer-item__body a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.2s all ease-out;
}
.footer-item__body a:hover {
  color: #F7C270;
}

.footer-menu__item {
  margin-bottom: 6px;
  width: 100%;
}
.footer-menu__item:last-child {
  margin-bottom: 0;
}
.footer-menu__link {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  line-height: 17px;
  padding: 10px 0;
}

.phones__item {
  font-size: 14px;
  line-height: 19px;
}
.phones__link {
  padding: 5px 0;
  display: inline-block;
}

.offer {
  background-color: #031929;
  padding: 340px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .offer {
    padding: 170px 0;
  }
}
@media screen and (max-width: 460px) {
  .offer {
    padding: 100px 0 170px;
  }
}
.offer__layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  background-color: #222;
  z-index: 10;
  z-index: unset;
  background: linear-gradient(#0D1A2B, #074367);
  opacity: 0.7;
}
.offer__back-logo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-position: left;
  bottom: -50px;
  left: 74px;
  height: 80%;
  width: 80%;
  opacity: 0.12;
}
.offer__back-blue {
  height: 100%;
  width: 31%;
  max-width: 586px;
  min-width: 415px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1971C2;
}
@media screen and (max-width: 992px) {
  .offer__back-blue {
    display: none;
  }
}
.offer__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .offer__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .offer__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .offer__wrap {
    max-width: calc(100% - 30px);
  }
}
.offer__title {
  padding-bottom: 27px;
}
.offer__subtitle {
  padding-bottom: 50px;
}

.tech {
  background-color: #F4F6F6;
  margin-bottom: -20px;
}
.tech__block {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  box-shadow: 0 3px 47px rgba(3, 25, 41, 0.05);
  min-height: 100px;
  transform: translateY(-172px);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .tech__block {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .tech__block {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .tech__block {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .tech__block {
    transform: translateY(-60px);
  }
}
.tech__block:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 187 112'%3E%3Cdefs/%3E%3Cg fill='%23fff' data-name='точки(главный экран)' transform='translate(-271 -905)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(271 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(307 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(343 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(379 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(415 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(451 905)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(271 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(307 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(343 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(379 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(415 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(451 940)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(271 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(307 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(343 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(379 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(415 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(451 975)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(271 1010)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(307 1010)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(343 1010)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(379 1010)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(415 1010)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(451 1010)'/%3E%3C/g%3E%3C/svg%3E");
  width: 187px;
  height: 112px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -56px;
  left: -58px;
}
@media screen and (max-width: 1350px) {
  .tech__block:before {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .tech__block:before {
    left: -12px;
  }
}

.tiles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: #F4F6F6;
}
@media screen and (max-width: 1200px) {
  .tiles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .tiles-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.tiles-list__item {
  min-height: 260px;
}
@media screen and (max-width: 768px) {
  .tiles-list__item {
    min-height: max-content;
  }
}
.tiles-list__header {
  grid-column: 1/3;
  padding: 56px 38px 40px;
}
@media screen and (max-width: 768px) {
  .tiles-list__header {
    grid-column: 1/2;
    padding: 56px 15px 20px;
  }
}

.tile {
  background-color: #fff;
  transition: 0.2s all ease-out;
}
.tile__link {
  padding: 56px 38px 40px;
  display: flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .tile__link {
    padding: 30px 15px;
  }
}
.tile__icon {
  height: 51px;
  width: 51px;
  object-fit: contain;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .tile__icon {
    margin-bottom: 12px;
  }
}
.tile__icon path {
  transition: 0.2s all ease-out;
  fill: #1971C2;
}
.tile:not(.tiles-list__header):hover {
  background-color: #1971C2;
}
.tile:not(.tiles-list__header):hover .tile__text {
  color: #fff;
}
.tile:not(.tiles-list__header):hover .tile__title {
  color: #fff;
}
.tile:not(.tiles-list__header):hover .tile__icon path {
  fill: #fff;
}
.tile__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #5A6F7E;
  transition: 0.2s all ease-out;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .tile__text {
    padding-top: 10px;
  }
}
.tile__title {
  transition: 0.2s all ease-out;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #031929;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .tile__title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 460px) {
  .tile__title {
    font-size: 14px;
    line-height: 18px;
  }
}

.tiles-list__header-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #5A6F7E;
  padding-top: 30px;
}
@media screen and (max-width: 460px) {
  .tiles-list__header-text {
    font-size: 14px;
  }
}

.works {
  width: 100%;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .works {
    padding: 40px 0;
  }
}
.works__background {
  width: 60%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .works__background {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .works__background {
    display: none;
  }
}
.works__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .works__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .works__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .works__wrap {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .works__wrap {
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.works__left {
  padding: 137px 94px 280px 0;
  width: 100%;
  max-width: 470px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .works__left {
    max-width: 100%;
    padding: 40px 15px;
  }
}
.works__left::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 115 112'%3E%3Cdefs/%3E%3Cg data-name='точки (выполненные работы сверху)' transform='translate(-782 -1882)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(782 1882)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(818 1882)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(854 1882)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(890 1882)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(782 1917)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(818 1917)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(854 1917)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(890 1917)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(782 1952)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(818 1952)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(854 1952)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(890 1952)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(782 1987)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%231971c2' data-name='Эллипс 69' transform='translate(818 1987)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(854 1987)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(890 1987)'/%3E%3C/g%3E%3C/svg%3E");
  width: 115px;
  height: 115px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -57px;
  top: -59px;
}
@media screen and (max-width: 1200px) {
  .works__left::after {
    display: none;
  }
}
.works__right {
  position: relative;
  padding-top: 60px;
}
@media screen and (max-width: 1200px) {
  .works__right {
    width: 100%;
    padding: 20px 0 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.works-info__link {
  margin-top: 46px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1971C2;
}
.works-info__link svg {
  margin-left: 16px;
  transition: 0.2s all ease-out;
}
.works-info__link:hover svg {
  transform: translateX(20px);
}
.works-info__link.about__link {
  white-space: nowrap;
}

.works-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .works-tabs {
    box-shadow: 0 3px 14px rgba(3, 25, 41, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .works-tabs {
    flex-direction: column;
    width: 100%;
  }
}

.works-tab {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 540px;
}
@media screen and (max-width: 768px) {
  .works-tab {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
}
.works-tab__header {
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  transition: 0.2s all ease-out;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 768px) {
  .works-tab__header {
    height: auto;
    width: 100%;
    justify-content: flex-start;
  }
}
.works-tab__layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  background-color: #222;
  z-index: 10;
  z-index: unset;
  opacity: 0.7;
}
.works-tab__title {
  padding: 20px;
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  transform: rotate(180deg);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-tab__title {
    writing-mode: unset;
    transform: none;
    transform: rotate(0);
    padding: 20px 15px;
    text-align: left;
  }
}
@media screen and (max-width: 460px) {
  .works-tab__title {
    font-size: 14px;
    line-height: 18px;
  }
}
.works-tab__body {
  overflow: hidden;
  background-color: #fff;
  width: 0;
  position: relative;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 768px) {
  .works-tab__body {
    width: 100%;
    height: 0;
  }
}
.works-tab__image {
  opacity: 0;
  transition: 0.2s all ease-out;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.works-tab__content {
  padding: 50px 30px;
  opacity: 0;
  transition: 0.2s all ease-out;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .works-tab__content {
    padding: 25px 15px;
  }
}
.works-tab__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #1971C2;
  text-transform: uppercase;
}
@media screen and (max-width: 460px) {
  .works-tab__name {
    font-size: 14px;
    line-height: 18px;
  }
}
.works-tab__text {
  padding-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #031929;
}
.works-tab.open .works-tab__body {
  width: 348px;
}
@media screen and (max-width: 1200px) {
  .works-tab.open .works-tab__body {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .works-tab.open .works-tab__body {
    height: auto;
  }
}
.works-tab.open .works-tab__header {
  width: 0;
}
@media screen and (max-width: 1200px) {
  .works-tab.open .works-tab__header {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .works-tab.open .works-tab__header {
    height: 0;
  }
}
.works-tab.open .works-tab__image, .works-tab.open .works-tab__content {
  opacity: 1;
}

.countries {
  position: relative;
}
.countries::before {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 88%;
  background-color: #fff;
  right: 0;
  content: "";
}
@media screen and (max-width: 1200px) {
  .countries::before {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .countries {
    background-color: #1971C2;
  }
}
.countries__back {
  width: 50%;
  height: 100%;
  background-color: #1971C2;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .countries__back {
    display: none;
  }
}
.countries__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .countries__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .countries__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .countries__wrap {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .countries__wrap {
    max-width: 100%;
  }
}
.countries__content {
  background-color: #1971C2;
  width: 100%;
  margin-top: -100px;
  position: relative;
  padding: 256px 100px 80px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .countries__content {
    margin-top: 0;
    padding: 160px 0 60px;
  }
}
@media screen and (max-width: 992px) {
  .countries__content {
    padding: 100px 15px 60px;
  }
}
@media screen and (max-width: 768px) {
  .countries__content {
    background-size: cover;
    padding: 40px 15px;
  }
}
.countries__content:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 115 147'%3E%3Cdefs/%3E%3Cg fill='%23fff' data-name='точки (выполненные работы)' transform='translate(-1523 -2603)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1523 2603)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1559 2603)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1595 2603)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1631 2603)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1523 2638)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1559 2638)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1595 2638)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1631 2638)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1523 2673)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1559 2673)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1595 2673)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1631 2673)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1523 2708)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1559 2708)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1595 2708)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1631 2708)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1523 2743)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1559 2743)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1595 2743)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1631 2743)'/%3E%3C/g%3E%3C/svg%3E");
  content: "";
  height: 147px;
  width: 115px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -58px;
  right: -58px;
}
@media screen and (max-width: 1350px) {
  .countries__content:after {
    right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .countries__content:after {
    transform: rotate(90deg);
    top: -74px;
  }
}
@media screen and (max-width: 768px) {
  .countries__content:after {
    display: none;
  }
}
.countries__props {
  width: 100%;
  padding-left: 70px;
}
@media screen and (max-width: 1200px) {
  .countries__props {
    padding-left: 0;
  }
}
.countries__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 212px 150px 0 0;
}
@media screen and (max-width: 1200px) {
  .countries__info {
    flex-direction: column;
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .countries__info {
    padding-top: 60px;
  }
}
.countries__big-text {
  font-size: 35px;
  font-weight: 800;
  line-height: 47px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .countries__big-text {
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .countries__big-text {
    font-size: 20px;
    line-height: 26px;
  }
}
.countries__small-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  display: block;
  padding-left: 50px;
  max-width: 530px;
}
@media screen and (max-width: 1200px) {
  .countries__small-text {
    padding: 0;
    max-width: 100%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .countries__small-text {
    padding-top: 12px;
  }
}

.props {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.props__item {
  margin-right: 20px;
}
.props__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .props__item {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .props__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .props {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .prop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.prop__title {
  font-size: 70px;
  font-weight: 800;
  line-height: 85px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .prop__title {
    font-size: 46px;
    line-height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .prop__title {
    width: 70px;
    font-size: 30px;
    line-height: 34px;
  }
}
.prop__desc {
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .prop__desc {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .prop__desc {
    padding-left: 20px;
  }
}

.about {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.about__back {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .about__back {
    width: 100%;
    bottom: auto;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .about__back {
    display: none;
  }
}
.about__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .about__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .about__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .about__wrap {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1200px) {
  .about__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .about__wrap {
    max-width: 100%;
  }
}
.about__left {
  flex: 1;
  padding-right: 70px;
}
@media screen and (max-width: 1200px) {
  .about__left {
    padding-right: 0;
    width: 100%;
  }
}
.about__right {
  width: 100%;
  max-width: 740px;
  background-color: #fff;
  padding: 130px 0 197px 70px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about__right {
    padding: 40px 15px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__right {
    padding: 40px 0;
  }
}
.about__placeholder {
  width: 70vw;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #F4F6F6;
  height: 60px;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .about__placeholder {
    display: none;
  }
}
.about__title {
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  .about__title {
    padding: 0 15px;
  }
}
.about__link {
  margin-top: 60px;
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  .about__link {
    padding: 0 15px;
  }
}
.about__info {
  padding: 40px;
  background-color: #F7C270;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about__info {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__info {
    padding: 40px 15px;
  }
}
.about__info::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 122 405'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h122v405H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 30'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 35)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 35)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 35)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 35)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 70)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 70)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 70)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 70)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 105)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 105)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 105)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 105)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 140)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 140)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 140)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 140)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 175)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 175)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 175)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 175)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 210)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 210)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 210)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 210)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 245)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 245)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 245)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 245)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 280)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 280)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 280)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 280)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 315)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 315)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 315)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 315)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 350)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 350)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 350)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 350)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(0 385)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(36 385)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(72 385)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' fill='%23fff' data-name='Эллипс 69' transform='translate(108 385)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  width: 122px;
  height: 405px;
  content: "";
  position: absolute;
  right: -64px;
  top: -124px;
}
@media screen and (max-width: 1200px) {
  .about__info::after {
    right: 20px;
    top: -155px;
  }
}
@media screen and (max-width: 768px) {
  .about__info::after {
    display: none;
  }
}
.about__logo {
  height: 60px;
}
.about__text {
  padding-top: 30px;
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .about__text {
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 18px;
    line-height: 24px;
  }
}

.white-list {
  padding-top: 35px;
  display: grid;
  column-gap: 0;
  row-gap: 0;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
@media screen and (max-width: 400px) {
  .white-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.white-list__item {
  padding: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: 0.2s all ease-out;
}
@media screen and (max-width: 768px) {
  .white-list__item {
    padding: 26px 15px;
  }
}
.white-list__item:hover {
  box-shadow: 0 4px 27px rgba(3, 25, 41, 0.08);
}
.white-list__item:hover path {
  fill: #1971C2;
}
.white-list__text {
  padding-left: 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.white-list__icon {
  width: 40px;
  min-width: 40px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.white-list__icon path {
  fill: #97A9B4;
  transition: 0.2s all ease-out;
}

.news {
  background-color: #F4F6F6;
  padding: 90px 0 106px;
  overflow: hidden;
}
.news__inform-panel {
  margin-top: 60px;
}
.news__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .news__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .news__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .news__wrap {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .news__wrap {
    max-width: 100%;
  }
}
.news__list {
  grid-template-columns: 400px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
@media screen and (max-width: 1200px) {
  .news__list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
}

.news-list {
  position: relative;
}
.news-list::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 115 217'%3E%3Cdefs/%3E%3Cg fill='%231971c2' data-name='точки (новости)' transform='translate(-1527 -4358)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1527 4358)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1563 4358)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4358)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4358)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1527 4393)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1563 4393)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4393)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4393)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4428)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4428)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4463)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4463)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4498)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4498)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4533)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4533)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1599 4568)'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' data-name='Эллипс 69' transform='translate(1635 4568)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 217px;
  width: 115px;
  content: "";
  position: absolute;
  top: -57px;
  right: -59px;
}
.news-list__header {
  grid-column: 1/2;
  grid-row: 1/-1;
  padding: 60px 45px 70px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .news-list__header {
    padding: 40px 41px;
    min-height: max-content;
  }
}
@media screen and (max-width: 768px) {
  .news-list__header {
    padding: 40px 15px;
  }
}
.news-list__item {
  min-height: max-content;
}
.news-list__item:hover path {
  fill: #fff;
}
.news-list__item:hover .news-list__item-time {
  color: #fff;
}
.news-list__item-title {
  text-transform: none;
}
.news-list__item-text {
  padding-top: 15px;
}
.news-list__item-time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #97A9B4;
  transition: 0.2s all ease-out;
}
.news-list__item-time svg {
  margin-right: 6px;
}
.news-list__item-time svg path {
  transition: 0.2s all ease-out;
}

.type-offer {
  padding: 240px 0 145px;
  position: relative;
  overflow: hidden;
}
.type-offer::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 339 84'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h339v84H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 34'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(108)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(144)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(180)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(216)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(252)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(288)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(324)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(0 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(36 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(72 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(108 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(144 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(180 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(216 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(252 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(288 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(324 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(0 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(36 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(72 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(108 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(144 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(180 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(216 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(252 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(288 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(324 72)'/%3E%3C/g%3E%3C/svg%3E");
  width: 115px;
  height: 84px;
  width: 339px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 64%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .type-offer::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .type-offer {
    padding: 120px 0 60px;
  }
}

.type-content {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 0 100px;
  margin-top: -25px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .type-content {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .type-content {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .type-content {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .type-content {
    padding-bottom: 40px;
  }
}

.type-title {
  font-size: 55px;
  line-height: 70px;
}
@media screen and (max-width: 992px) {
  .type-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .type-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 460px) {
  .type-title {
    font-size: 22px;
    line-height: 28px;
  }
}

.type-subtitle {
  margin-top: 30px;
  font-size: 16px;
  line-height: 28px;
  max-width: 870px;
}
@media screen and (max-width: 768px) {
  .type-subtitle {
    margin-top: 10px;
  }
}
@media screen and (max-width: 460px) {
  .type-subtitle {
    font-size: 14px;
    line-height: 18px;
  }
}

.breads {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .breads {
    padding-bottom: 30px;
  }
}
.breads__link {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #fff;
  text-decoration: underline;
}
.breads__link:hover {
  text-decoration: none;
}
.breads__text {
  text-decoration: none;
}
.breads__item {
  margin-right: 8px;
}
.breads__item:last-child {
  margin-right: 0;
}
.breads__sep {
  margin: 2px 8px 0 0;
}

.pagination {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.pagination__numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 52px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #031929;
  padding: 0 22px;
  background-color: #fff;
  transition: 0.2s all ease-out;
}
.pagination__link.current {
  background-color: #1971C2;
  color: #fff;
  font-weight: 600;
}
.pagination__link:hover {
  background-color: #1971C2;
  color: #fff;
}
.pagination__item {
  margin-right: 8px;
}
.pagination__buttons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.pagination__button {
  color: #1971C2;
  height: 52px;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .pagination__button {
    width: 100%;
  }
}
.pagination__button.prev {
  margin-right: 12px;
}
@media screen and (max-width: 500px) {
  .pagination__button.prev {
    margin-right: 0;
  }
}
.pagination__button path {
  transition: 0.2s all ease-out;
}
.pagination__button:hover path {
  stroke: #fff;
}

.sidebar {
  width: 300px;
  background-color: #F4F6F6;
}
@media screen and (max-width: 992px) {
  .sidebar {
    width: 100%;
    padding-top: 80px;
  }
}
.sidebar__title {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  color: #031929;
  text-transform: uppercase;
  display: block;
  padding: 35px 36px 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sidebar__title {
    padding: 35px 15px 10px;
  }
}
.sidebar__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1px;
}
.sidebar__link {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 24px 36px;
  transition: 0.2s all ease-out;
}
.sidebar__link--current {
  position: relative;
}
.sidebar__link--current .tile__title {
  color: #1971C2;
}
.sidebar__link--current::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #1971C2;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .sidebar__link {
    padding: 24px 15px;
  }
}
.sidebar__link path {
  transition: 0.2s all ease-out;
}
.sidebar__link:hover {
  background-color: #1971C2;
}
.sidebar__link:hover .sidebar__name, .sidebar__link:hover .sidebar__time {
  color: #fff;
}
.sidebar__link:hover path {
  fill: #fff;
}
.sidebar__name {
  font-size: 14px;
  line-height: 22px;
  transition: 0.2s all ease-out;
}
.sidebar__name--uppercase {
  text-transform: uppercase;
  font-size: 13px;
}

.type-content-with-sidebar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 992px) {
  .type-content-with-sidebar {
    flex-direction: column-reverse;
  }
}

.type-content-right {
  flex: 1;
  margin-left: 30px;
}
@media screen and (max-width: 992px) {
  .type-content-right {
    margin-left: 0;
    width: 100%;
  }
}

.share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.share__title {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #031929;
  margin-right: 20px;
}

.back {
  padding-top: 50px;
}
.back__button {
  text-transform: none;
}

.news-page {
  position: relative;
  padding-bottom: 100px;
}

.news-list__image {
  width: 300px;
  height: 225px;
  flex-shrink: 0;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .news-list__image {
    width: 240px;
    height: 180px;
  }
}
@media screen and (max-width: 530px) {
  .news-list__image {
    width: 100%;
    height: 200px;
  }
}
.news-list::after {
  display: none;
}
.news-list__link {
  flex-grow: 1;
  padding: 48px 20px 43px 35px;
}
@media screen and (max-width: 768px) {
  .news-list__link {
    padding: 20px 20px;
  }
}
.news-list__item-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 530px) {
  .news-list__item-wrap {
    flex-direction: column;
  }
}

.news-item {
  margin-bottom: 30px;
  box-shadow: 0 3px 47px rgba(3, 25, 41, 0.05);
  min-height: unset;
}
.news-item:last-child {
  margin-bottom: 0;
}

.news-detail {
  margin-top: -150px;
}
@media screen and (max-width: 768px) {
  .news-detail {
    margin-top: -25px;
  }
}
.news-detail__image {
  width: 100%;
  height: 325px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .news-detail__image {
    height: 200px;
  }
}
.news-detail__content {
  background-color: #fff;
  padding: 65px 55px 45px;
}
@media screen and (max-width: 992px) {
  .news-detail__content {
    padding: 40px 15px 40px;
  }
}
.news-detail__time {
  font-size: 14px;
  padding-top: 30px;
  padding-bottom: 40px;
}
.news-detail__title {
  font-size: 35px;
  font-weight: 800;
  line-height: 51px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .news-detail__title {
    font-size: 22px;
    line-height: 36px;
  }
}

.about-page {
  padding: 76px 57px 100px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .about-page {
    padding: 40px 20px 100px;
  }
}
.about-page__header {
  margin-bottom: 47px;
}
.about-page__text--top {
  margin-bottom: 60px;
}
.about-page__text--bottom {
  margin-top: -2px;
  max-width: 510px;
}
@media screen and (max-width: 1200px) {
  .about-page__text--bottom {
    max-width: 100%;
    margin-top: 30px;
  }
}
.about-page__date {
  margin-bottom: 51px;
}

.about-header {
  display: grid;
  grid-template-columns: 1fr 266px;
  grid-template-rows: 86px 110px;
  row-gap: 94px;
  column-gap: 88px;
}
@media screen and (max-width: 1200px) {
  .about-header {
    column-gap: 20px;
    row-gap: 20px;
    grid-template-rows: auto 300px;
    grid-template-columns: 1fr 50%;
  }
}
@media screen and (max-width: 768px) {
  .about-header {
    grid-template-rows: auto 300px auto;
    grid-template-columns: 260px 1fr;
    column-gap: 0;
  }
}
.about-header__title {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: #031929;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about-header__title {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 768px) {
  .about-header__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.about-header__title::after {
  content: "";
  top: -109px;
  left: -4px;
  width: 49px;
  height: 166px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 166'%3E%3Cdefs/%3E%3Ctext fill='%23f7c270' data-name='&quot;' font-family='SegoeUI, Segoe UI' font-size='125' transform='translate(0 135)'%3E%3Ctspan x='0' y='0'%3E&quot;%3C/tspan%3E%3C/text%3E%3C/svg%3E");
}
@media screen and (max-width: 1200px) {
  .about-header__title::after {
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .about-header__title::after {
    left: 234px;
    top: unset;
    bottom: -150px;
  }
}
.about-header__subtitle {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #97A9B4;
  position: relative;
  font-style: italic;
}
@media screen and (max-width: 1200px) {
  .about-header__subtitle {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 768px) {
  .about-header__subtitle {
    grid-column: 1/-1;
    grid-row: 3/4;
    text-align: left;
    justify-content: flex-start;
  }
}
.about-header__subtitle::after {
  content: "";
  position: absolute;
  height: 122px;
  width: 116px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 116 122.6'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h116v122.6H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 47'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 96)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 96)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 96)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96 96)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -19px;
  right: -155px;
}
@media screen and (max-width: 1200px) {
  .about-header__subtitle::after {
    right: -54px;
    bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .about-header__subtitle::after {
    left: 206px;
    right: unset;
    bottom: 36px;
  }
}
.about-header__image {
  grid-column: 2/3;
  grid-row: 1/3;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .about-header__image {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 768px) {
  .about-header__image {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.about-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}

.about-date {
  border: 6px solid #1971C2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 38px 72px 37px 50px;
}
@media screen and (max-width: 1200px) {
  .about-date {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about-date {
    padding: 20px 0;
    border-left: none;
    border-right: none;
    flex-direction: column;
  }
}
.about-date__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  color: #031929;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .about-date__title {
    width: 100%;
  }
  .about-date__title br {
    display: none;
  }
}
.about-date__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  max-width: 390px;
}
@media screen and (max-width: 1200px) {
  .about-date__text {
    max-width: 330px;
  }
}
@media screen and (max-width: 768px) {
  .about-date__text {
    max-width: 100%;
    padding-top: 20px;
  }
}

.about-icons__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #031929;
  margin-bottom: 40px;
  display: inline-block;
}
.about-icons__list {
  margin-bottom: 76px;
}

.about-icons-list {
  display: grid;
  column-gap: 68px;
  row-gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
@media screen and (max-width: 320px) {
  .about-icons-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .about-icons-list {
    column-gap: 20px;
  }
}
.about-icons-list__icon {
  height: 45px;
  width: 45px;
  object-fit: contain;
  margin-bottom: 17px;
}
.about-icons-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.about-icons-list__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #031929;
}

.about-brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .about-brands {
    flex-direction: column-reverse;
  }
}
.about-brands__list {
  margin-left: 40px;
  width: 313px;
}
@media screen and (max-width: 1200px) {
  .about-brands__list {
    width: 100%;
  }
}
.about-brands__text {
  flex: 1;
  margin-top: -36px;
}
@media screen and (max-width: 1200px) {
  .about-brands__text {
    margin-top: 40px;
  }
}

.about-brands-list {
  height: calc(122px + 33px + 122px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about-brands-list {
    height: auto;
    flex-direction: row;
    margin: 0;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .about-brands-list {
    flex-wrap: wrap;
  }
}
.about-brands-list__back {
  position: absolute;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 370px;
  height: 176px;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .about-brands-list__back {
    top: -23px;
    left: unset;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-brands-list__back {
    top: 50%;
    transform: translateY(-50%);
  }
}
.about-brands-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 122px;
  height: 122px;
  background-color: #1971C2;
  margin-right: 12px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-brands-list__item {
    margin-bottom: 12px;
  }
}
.about-brands-list__item:last-child {
  justify-self: center;
  margin: auto 12px 94px 0;
}
@media screen and (max-width: 1200px) {
  .about-brands-list__item:last-child {
    margin: 0;
  }
}

.about-brand-sign__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  color: #031929;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .about-brand-sign__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.about-brand-sign__text {
  font-size: 16px;
  line-height: 26px;
}
.about-brand-sign__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .about-brand-sign__header {
    flex-wrap: wrap;
  }
}
.about-brand-sign__header-content {
  flex: 1;
  padding-right: 28px;
}
@media screen and (max-width: 768px) {
  .about-brand-sign__header-content {
    width: 100%;
    flex: unset;
  }
}
.about-brand-sign__logo {
  width: 38.7%;
}
@media screen and (max-width: 768px) {
  .about-brand-sign__logo {
    margin-top: 20px;
    max-width: 300px;
    width: 100%;
  }
}
.about-brand-sign__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.about-brand-sign__list-item {
  width: 48.5%;
  height: max-content;
  padding: 0 15px 30px;
}
@media screen and (max-width: 768px) {
  .about-brand-sign__list-item {
    width: 100%;
  }
}
.about-brand-sign__list-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  font-style: italic;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.about-brand-sign__list-image {
  height: 470px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .about-brand-sign__list-image {
    height: 350px;
  }
}
@media screen and (max-width: 1200px) {
  .about-brand-sign__list-image {
    height: 440px;
  }
}
@media screen and (max-width: 768px) {
  .about-brand-sign__list-image {
    height: 300px;
  }
}

.about-history__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about-history__header {
    flex-wrap: wrap;
  }
}
.about-history__header-link {
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  color: #031929;
  min-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  cursor: pointer;
  padding: 0;
  border: none;
  background-color: transparent;
}
.about-history__header-link svg {
  margin-right: 15px;
}
.about-history__header-text {
  flex: 1;
  padding-right: 60px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .about-history__header-text {
    flex: unset;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
.about-history__photos {
  display: grid;
  column-gap: 33px;
  row-gap: 33px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media screen and (max-width: 500px) {
  .about-history__photos {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about-history__photos-item {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.about-history__numbers {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 82px 40px 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 153.4'%3E%3Cdefs/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='1' y1='.5' y2='.5' gradientUnits='objectBoundingBox'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23e7ebee'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg data-name='Слой 2'%3E%3Cpath fill='url(%23a)' d='M151.8 253.6l-30.5 26a4.8 4.8 0 01-7.9-3.6 4.8 4.8 0 00-4.8-4.8c-41.3 0-74 28.9-88.6 67.6C3 384 0 499.8 0 500V0s4.9 122.1 20 161.1c15.5 40.1 47.3 67.6 88.7 67.6a4.8 4.8 0 004.7-4.7 4.8 4.8 0 017.9-3.7l30.5 26a4.8 4.8 0 010 7.3z' data-name='Контур 484' transform='rotate(90 250 250)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: auto 50%;
}
@media screen and (max-width: 768px) {
  .about-history__numbers {
    padding: 60px 0 20px;
  }
}
.about-history__number {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .about-history__number {
    padding-bottom: 20px;
  }
}
.about-history__number:first-child {
  width: 100%;
  align-items: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about-history__number:first-child {
    align-items: flex-start;
    padding-bottom: 20px;
  }
}
.about-history__number-count {
  font-size: 62px;
  font-weight: 800;
  line-height: 62px;
  color: #1971C2;
}
.about-history__number-text {
  font-size: 21px;
  font-weight: 400;
  line-height: 29px;
  color: #1971C2;
}
.about-history__tabs {
  padding-top: 62px;
}
.about-history__tabs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #F4F6F6;
  width: 100%;
}
.about-history__tabs-body {
  padding: 76px 0 40px;
  position: relative;
}
.about-history__tabs-body::before {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #E7EBEE;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  .about-history__tabs-body::before {
    transform: none;
    left: unset;
    right: 0;
  }
}
.about-history__tab {
  flex: 1;
  background-color: transparent;
  border: none;
  transition: 0.1s all ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #031929;
  height: 59px;
  cursor: pointer;
  position: relative;
  min-width: max-content;
}
.about-history__tab:hover {
  background-color: rgba(25, 113, 194, 0.3);
  color: #fff;
}
.about-history__tab.current {
  background-color: #1971C2;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about-history__tab.current {
    font-weight: 400;
  }
}
.about-history__tab.current::after {
  display: none;
}
.about-history__tab::after {
  position: absolute;
  height: 40%;
  width: 1px;
  background-color: #D1D6D9;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.about-history__tab:first-child::after {
  display: none;
}
.about-history__tab-body {
  display: none;
}
.about-history__tab-body.current {
  display: block;
}
.about-history__year {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .about-history__year {
    width: 100%;
    padding-bottom: 30px;
  }
}
.about-history__year-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  color: #031929;
  display: block;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 1px solid #E7EBEE;
  position: relative;
  padding-right: 30px;
}
.about-history__year-title::before {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 6px;
  position: absolute;
  left: -20px;
  top: 6px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12'%3E%3Cdefs/%3E%3Cpath fill='%231971c2' d='M6 6l-6 6V0z' data-name='Многоугольник 23'/%3E%3C/svg%3E");
}
.about-history__year-title::after {
  height: 14px;
  width: 14px;
  position: absolute;
  right: -7px;
  bottom: -7px;
  content: "";
  background-color: #F7C270;
  border-radius: 50%;
}
.about-history__year-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #5A6F7E;
  padding-top: 10px;
  padding-right: 30px;
}
.about-history__year:nth-child(2n) {
  margin-left: auto;
  padding-left: 0;
  padding-right: 20px;
  justify-content: flex-end;
}
.about-history__year:nth-child(2n) .about-history__year-title {
  padding-left: 30px;
  padding-right: 0;
  text-align: right;
}
.about-history__year:nth-child(2n) .about-history__year-title::before {
  left: unset;
  right: -20px;
  transform: rotate(180deg);
}
.about-history__year:nth-child(2n) .about-history__year-title::after {
  right: unset;
  left: -7px;
}
.about-history__year:nth-child(2n) .about-history__year-info {
  padding-right: 0;
  padding-left: 30px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .about-history__year:nth-child(2n) {
    padding-left: 20px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .about-history__year:nth-child(2n) .about-history__year-title {
    padding-left: 0;
    padding-right: 30px;
    text-align: left;
  }
  .about-history__year:nth-child(2n) .about-history__year-title::before {
    left: -20px;
    right: unset;
    transform: none;
  }
  .about-history__year:nth-child(2n) .about-history__year-title::after {
    right: -7px;
    left: unset;
  }
  .about-history__year:nth-child(2n) .about-history__year-info {
    padding-right: 30px;
    padding-left: 0;
    text-align: left;
  }
}
.about-history__features {
  padding: 97px 0 0;
}
.about-history__features-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 40px;
  color: #031929;
}
.about-history__features-list {
  padding: 38px 0 0;
  display: grid;
  column-gap: 51px;
  row-gap: 34px;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
}
@media screen and (max-width: 400px) {
  .about-history__features-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about-history__feature svg {
  height: 50px;
}
.about-history__feature-text {
  padding-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.about-history__videos {
  padding: 94px 0 0;
}
.about-history__videos-list {
  padding-top: 28px;
  display: grid;
  column-gap: 44px;
  row-gap: 46px;
  grid-template-columns: repeat(auto-fill, minmax(341px, 1fr));
}
@media screen and (max-width: 400px) {
  .about-history__videos-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about-history__video-frame {
  width: 100%;
  height: max-content;
  height: 250px;
}
.about-history__video-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5A6F7E;
  font-style: italic;
  padding-top: 10px;
  display: block;
}

.about-requisites__header {
  padding: 4px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.about-requisites__header-left {
  flex: 1;
  padding-right: 68px;
}
@media screen and (max-width: 768px) {
  .about-requisites__header-left {
    padding-right: 0;
    flex: unset;
    width: 100%;
  }
}
.about-requisites__header-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
}
.about-requisites__header-list {
  padding-top: 20px;
}
.about-requisites__header-item {
  display: block;
  padding-bottom: 14px;
}
.about-requisites__header-name {
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
  color: #5A6F7E;
  font-style: italic;
}
.about-requisites__header-value {
  display: block;
  padding-top: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .about-requisites__header-icon {
    display: none;
  }
}
.about-requisites__section {
  border-top: 2px solid #E7EBEE;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .about-requisites__section {
    flex-wrap: wrap;
  }
}
.about-requisites__section-left {
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
  flex: 1;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .about-requisites__section-left {
    width: 100%;
    padding-bottom: 10px;
  }
}
.about-requisites__section-right {
  width: 57%;
}
@media screen and (max-width: 768px) {
  .about-requisites__section-right {
    width: 100%;
  }
}
.about-requisites__section-ordinary-req {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.about-requisites__section-bank-req {
  padding-bottom: 26px;
}
.about-requisites__section-bank-req:last-child {
  padding-bottom: 0;
}
.about-requisites__section-bank-req-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #1971C2;
  font-style: italic;
  display: block;
  padding-bottom: 12px;
}
.about-requisites__section-bank-req-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.about-requisites__section-zd-req-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  display: block;
  padding-bottom: 20px;
}
.about-requisites__section-zd-req-item {
  padding-bottom: 20px;
}
.about-requisites__section-zd-req-item:last-child {
  padding-bottom: 0;
}
.about-requisites__section-zd-req-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #031929;
  display: block;
  padding-bottom: 10px;
}
.about-requisites__section-zd-req-value {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}

.about-directorate__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 25px 0;
  border-bottom: 1px solid #E7EBEE;
}
@media screen and (max-width: 768px) {
  .about-directorate__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-directorate__item:first-child {
  padding-top: 0;
}
.about-directorate__item:last-child {
  padding-bottom: 0;
  border: none;
}
.about-directorate__content {
  flex: 1;
  padding-left: 62px;
}
@media screen and (max-width: 768px) {
  .about-directorate__content {
    padding-left: 0;
    padding-top: 20px;
  }
}
.about-directorate__title {
  display: block;
  padding-bottom: 6px;
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
}
.about-directorate__major {
  display: block;
  padding-bottom: 13px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #1971C2;
  font-style: italic;
}
.about-directorate__phone {
  display: block;
  padding-bottom: 13px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
}
.about-directorate__image {
  width: 245px;
  height: 300px;
  object-fit: cover;
}
.about-directorate__additional {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-directorate__additional-title {
  width: 100%;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 26px !important;
  color: #031929 !important;
  display: block;
  padding-bottom: 2px;
  margin-right: 0 !important;
}
.about-directorate__additional svg {
  margin-right: 8px;
}
.about-directorate__additional span {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  margin-right: 24px;
}

.about-quality__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about-quality__header {
    flex-wrap: wrap;
  }
}
.about-quality__header-left {
  background-color: #F7C270;
  width: 37%;
  height: 226px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .about-quality__header-left {
    width: 100%;
    height: auto;
    padding: 20px;
    justify-content: flex-start;
  }
}
.about-quality__header-image {
  width: 77%;
  max-width: 95%;
}
@media screen and (max-width: 768px) {
  .about-quality__header-image {
    width: 200px;
  }
}
.about-quality__header-text {
  flex: 1;
  padding-left: 43px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .about-quality__header-text {
    padding-left: 0;
    padding-top: 20px;
  }
}
.about-quality__second {
  border: 1px solid #E7EBEE;
  padding: 23px 35px;
  margin-bottom: 93px;
}
@media screen and (max-width: 768px) {
  .about-quality__second {
    padding: 20px;
  }
}
.about-quality__second-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  font-style: italic;
}
.about-quality__plans-header {
  background-size: auto 89%;
  background-repeat: no-repeat;
  background-position: right top;
  margin-right: -57px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-quality__plans-header {
    background-size: 0;
    margin-right: 0;
  }
}
.about-quality__plans-header::after {
  content: "";
  height: 70px;
  width: 102px;
  position: absolute;
  top: -15px;
  right: 38.3%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 102 70'%3E%3Cdefs/%3E%3Cg data-name='Сгруппировать 510' transform='translate(-1117 -1065)'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1117 1065)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1149 1065)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1181 1065)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1213 1065)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1117 1097)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1149 1097)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(1181 1097)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(1213 1097)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1117 1129)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(1149 1129)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(1181 1129)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%23fff' data-name='Эллипс 88' transform='translate(1213 1129)'/%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .about-quality__plans-header::after {
    display: none;
  }
}
.about-quality__plans-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
  color: #031929;
  width: 256px;
  display: block;
}
@media screen and (max-width: 768px) {
  .about-quality__plans-title {
    width: 100%;
  }
}
.about-quality__plans-text {
  padding-top: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .about-quality__plans-text {
    max-width: 100%;
  }
}
.about-quality__plans-editor {
  padding: 96px 0 42px;
}
.about-quality__plans-editor li {
  margin-bottom: 26px;
}
.about-quality__targets {
  margin-top: 72px;
  position: relative;
  padding-right: 57px;
}
@media screen and (max-width: 768px) {
  .about-quality__targets {
    padding-right: 0;
  }
}
.about-quality__targets::before {
  content: "";
  min-width: 540px;
  height: 202px;
  background-color: #1971C2;
  position: absolute;
  top: -36px;
  left: -57px;
}
@media screen and (max-width: 768px) {
  .about-quality__targets::before {
    width: 150%;
    height: 100%;
  }
}
.about-quality__targets-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  background-color: #1971C2;
  max-width: 421px;
  display: block;
  position: relative;
}
.about-quality__targets-list {
  position: relative;
  display: grid;
  column-gap: 28px;
  row-gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(349px, 1fr));
  padding-top: 20px;
}
@media screen and (max-width: 500px) {
  .about-quality__targets-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about-quality__targets-item {
  background-color: #fff;
  padding: 19px 39px;
  box-shadow: 0 1px 16px rgba(5, 44, 68, 0.1);
}
.about-quality__targets-item svg {
  height: 40px;
  object-fit: contain;
}
.about-quality__targets-text {
  padding-top: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.about-quality__problems {
  position: relative;
}
.about-quality__problems::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 83'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h120v83H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 59'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(96 64)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 83px;
  content: "";
  position: absolute;
  top: -27px;
  right: 4.4%;
}
@media screen and (max-width: 768px) {
  .about-quality__problems::before {
    display: none;
  }
}
.about-quality__problems-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
}
.about-quality__problems-list {
  padding-top: 33px;
  display: grid;
  row-gap: 26px;
}
.about-quality__problems-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.about-quality__problems-item svg {
  min-width: 32px;
}
.about-quality__problems-number {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  color: #F7C270;
}
.about-quality__problems-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .about-quality__problems-text {
    padding-left: 10px;
  }
}
.about-quality__principles {
  padding-top: 79px;
}
.about-quality__principles-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
}
.about-quality__principles-list {
  padding-top: 43px;
  display: grid;
  column-gap: 89px;
  row-gap: 46px;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 700px) {
  .about-quality__principles-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.about-quality__principles-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.about-quality__principles-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  margin-top: 15px;
}

.about-safety__list {
  padding-top: 7px;
}
.about-safety__serts {
  padding: 87px 0 0;
}
.about-safety__serts-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
}
.about-safety__serts-list {
  padding-top: 50px;
}

.about-goals__year {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 1px solid #E7EBEE;
  padding-bottom: 38px;
  padding-top: 52px;
}
@media screen and (max-width: 768px) {
  .about-goals__year {
    flex-wrap: wrap;
  }
}
.about-goals__year:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.about-goals__year:first-child {
  padding-top: 0;
}
.about-goals__year-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  color: #1971C2;
  display: block;
  min-width: 182px;
  padding-top: 4px;
}
@media screen and (max-width: 1200px) {
  .about-goals__year-title {
    min-width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .about-goals__year-title {
    min-width: 100%;
    padding-bottom: 10px;
  }
}
.about-goals__year-right {
  padding: 4px 0 0 18px;
}
@media screen and (max-width: 768px) {
  .about-goals__year-right {
    padding: 0;
  }
}
.about-goals__month {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .about-goals__month {
    flex-wrap: wrap;
  }
}
.about-goals__month:last-child {
  padding-bottom: 0;
}
.about-goals__month-image {
  box-shadow: 4px 10px 14px rgba(3, 25, 41, 0.08);
  position: relative;
  cursor: pointer;
}
.about-goals__month-attachment {
  width: 244px;
  margin-right: 18px;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-goals__month-attachment {
    margin-top: 10px;
  }
}
.about-goals__month-attachment::before {
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 83px;
  width: 71px;
  position: absolute;
  top: 0;
  right: -18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 71 83.1'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h71v83.1H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 52'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 64)'/%3E%3C/g%3E%3C/svg%3E");
}
.about-goals__month-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #031929;
  position: relative;
  display: block;
  padding-bottom: 5px;
}
.about-goals__month-title::before {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  height: 12px;
  width: 6px;
  position: absolute;
  left: -18px;
  top: 4px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 12'%3E%3Cdefs/%3E%3Cpath fill='%23f7c270' d='M6 6l-6 6V0z' data-name='Многоугольник 24'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .about-goals__month-title {
    display: none;
  }
}
.about-goals__month-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
}
.about-goals__month-content {
  flex: 1;
  padding-right: 32px;
}
@media screen and (max-width: 768px) {
  .about-goals__month-content {
    flex: unset;
    width: 100%;
  }
}

.about-reviews__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 34px;
  border-bottom: 1px solid #E7EBEE;
  padding-top: 44px;
}
@media screen and (max-width: 768px) {
  .about-reviews__item {
    flex-direction: column;
  }
}
.about-reviews__item:last-child {
  padding-bottom: 0;
  border: none;
}
.about-reviews__item:first-child {
  padding-top: 0;
}
.about-reviews__avatar {
  height: 83px;
  width: 83px;
  border-radius: 50%;
  border: 1px solid #E7EBEE;
  object-fit: contain;
  min-width: 83px;
  background-color: #E7EBEE;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 49px;
  font-weight: 600;
  line-height: 49px;
  color: #5A6F7E;
}
.about-reviews__content {
  padding: 2px 0 0 32px;
}
@media screen and (max-width: 768px) {
  .about-reviews__content {
    padding: 22px 0 0;
  }
}
.about-reviews__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
  display: block;
  padding-bottom: 5px;
}
.about-reviews__person {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  font-style: italic;
  display: block;
}
.about-reviews__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  display: block;
  padding: 28px 0 0 50px;
  position: relative;
  overflow: hidden;
  height: 120px;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.about-reviews__text li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
}
@media screen and (max-width: 768px) {
  .about-reviews__text {
    padding: 28px 0 0;
  }
}
.about-reviews__text::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39 131'%3E%3Cdefs/%3E%3Ctext fill='%23f7c270' data-name='&quot;' font-family='SegoeUI, Segoe UI' font-size='98' transform='translate(0 106)'%3E%3Ctspan x='0' y='0'%3E&quot;%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  width: 38px;
  height: 131px;
  position: absolute;
  top: -6px;
  left: 1px;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 768px) {
  .about-reviews__text::before {
    display: none;
  }
}
.about-reviews__toggle {
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #1971C2;
  margin: 25px 0 0 50px;
  padding: 0;
  cursor: pointer;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
@media screen and (max-width: 768px) {
  .about-reviews__toggle {
    margin: 25px 0 0 0;
  }
}
.about-reviews__toggle.open svg {
  transform: rotate(180deg);
}
.about-reviews__toggle svg {
  margin-left: 7px;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}

img.about-reviews__avatar {
  background-color: transparent;
}

.about-corruption__header {
  padding: 20px 10px 11px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 1px solid #E7EBEE;
  cursor: pointer;
}
.about-corruption__header.open svg {
  transform: rotate(180deg);
}
.about-corruption__header.open path {
  fill: #D1D6D9;
}
.about-corruption__header svg {
  width: 20px;
  min-width: 20px;
  height: 10px;
  object-fit: contain;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.about-corruption__header svg path {
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.about-corruption__list {
  height: 0;
  overflow: hidden;
  transition: 0.2s all cubic-bezier(0.67, 0, 0.35, 1);
}
.about-corruption__doc {
  margin-top: 27px;
}
.about-corruption__doc:last-child {
  margin-bottom: 72px;
}
.about-corruption__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #1971C2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  text-decoration: underline;
}
.about-corruption__link:hover {
  text-decoration: none;
}
.about-corruption__link svg {
  min-width: 34px;
}
.about-corruption__name {
  padding-left: 20px;
}
.about-corruption__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 29px;
  color: #031929;
  padding-right: 10px;
}
.about-corruption__item:first-child .about-corruption__header {
  padding-top: 0;
}

.contacts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .contacts__header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.contacts__header svg {
  min-width: 142px;
}
@media screen and (max-width: 768px) {
  .contacts__header svg {
    margin-bottom: 20px;
  }
}
.contacts__header-content {
  padding-right: 48px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .contacts__header-content {
    padding-right: 0;
  }
}
.contacts__header-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  padding-bottom: 18px;
}
.contacts__header-address {
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .contacts__header-address {
    font-size: 18px;
    line-height: 24px;
  }
}
.contacts__map {
  padding-top: 69px;
}
.contacts__section {
  padding-top: 69px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .contacts__section {
    flex-direction: column;
  }
}
.contacts__section-list {
  display: grid;
  column-gap: 50px;
  row-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  max-width: 477px;
  width: 100%;
}
@media screen and (max-width: 320px) {
  .contacts__section-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.contacts__section-right {
  max-width: 477px;
  width: 100%;
}
.contacts__section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  color: #031929;
  flex: 1;
  padding-right: 20px;
  min-width: 170px;
}
@media screen and (max-width: 768px) {
  .contacts__section-title {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.contacts__phone-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  transition: 0.2s all ease-out;
}
.contacts__phone-link:hover {
  color: #1971C2;
}
.contacts__phone-link b {
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #97A9B4;
}
.contacts__mail {
  color: #1971C2;
  text-decoration: underline;
}
.contacts__mail:hover {
  text-decoration: none;
}

.contacts-order__header {
  padding-bottom: 36px;
}
.contacts-order__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #97A9B4;
}
.contacts-order__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #031929;
  display: block;
  padding-top: 17px;
}
@media screen and (max-width: 768px) {
  .contacts-order__title {
    font-size: 18px;
    line-height: 24px;
  }
}
.contacts-order__item {
  padding: 28px 0;
}
.contacts-order__item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #1971C2;
  padding-bottom: 16px;
  display: block;
}

.contacts-appeal__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  color: #031929;
}
.contacts-appeal__tabs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 22px;
}
.contacts-appeal__tab {
  width: 113px;
  padding: 0;
  height: 32px;
  border: 1px solid #1971C2;
  color: #1971C2;
  cursor: pointer;
}
.contacts-appeal__tab--selected {
  background-color: #1971C2;
  color: #fff;
}
.contacts-appeal__form {
  display: none;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  display: none;
  width: 100%;
  max-width: 616px;
}
.contacts-appeal__form--shown {
  display: flex;
}
.contacts-appeal__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  padding-top: 35px;
  width: 100%;
}
.contacts-appeal__row--short {
  width: calc(50% - 18px);
}
@media screen and (max-width: 768px) {
  .contacts-appeal__row--short {
    width: 100%;
  }
}
.contacts-appeal__row svg {
  width: 18px;
  object-fit: contain;
  height: 44px;
  padding-right: 6px;
  transition: 0.2s all ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
}
.contacts-appeal__row svg path {
  transition: 0.2s all ease-out;
}
.contacts-appeal__row:hover svg {
  border-color: #1971C2;
}
.contacts-appeal__row:hover path {
  fill: #1971C2;
}
.contacts-appeal__row:focus svg {
  border-color: #1971C2;
}
.contacts-appeal__row:focus path {
  fill: #1971C2;
}
.contacts-appeal__file {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 60px;
  border: 1px dashed #1971C2;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  margin-top: 12px;
}
.contacts-appeal__file.uploaded {
  border-color: #00e400;
  pointer-events: none;
}
.contacts-appeal__file.uploaded input {
  pointer-events: none;
}
.contacts-appeal__file.uploaded svg {
  display: none;
}
.contacts-appeal__file svg {
  height: auto;
  width: auto;
  position: static;
}
.contacts-appeal__file input {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 1;
  position: absolute;
}
.contacts-appeal__message {
  margin-top: 10px;
  padding: 0;
  height: 34px;
}
.contacts-appeal__input {
  padding-left: 18px;
}
.contacts-appeal__input:focus + svg path {
  fill: #1971C2;
}
.contacts-appeal__submit {
  margin-top: 40px;
}
.contacts-appeal__success {
  display: flex;
  margin-top: 20px;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  color: #1971C2;
}
.contacts-appeal__text {
  padding-top: 94px;
}
.contacts-appeal__text-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
  display: block;
  padding-bottom: 20px;
}

#jGrowl {
  opacity: 0 !important;
}

.tools__list {
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: 1fr 1fr;
  background: transparent;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .tools__list {
    grid-template-columns: 1fr;
  }
}
.tools__item {
  min-height: 235px;
  box-shadow: 0 3px 47px rgba(3, 25, 41, 0.05);
}
.tools__link {
  padding: 46px 20px 35px 54px;
}
@media screen and (max-width: 768px) {
  .tools__link {
    padding: 30px 20px;
  }
}

.tools-inner {
  margin: 0 auto;
  flex-direction: column;
  padding: 170px 0 100px;
}
@media screen and (max-width: 768px) {
  .tools-inner {
    padding: 60px 0;
  }
}
.tools-inner__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
  color: #031929;
  padding-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .tools-inner__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.tools-offer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
@media screen and (max-width: 992px) {
  .tools-offer {
    flex-direction: column;
  }
}
.tools-offer__content {
  flex: 1;
  padding-right: 40px;
  max-width: 700px;
}
@media screen and (max-width: 1200px) {
  .tools-offer__content {
    padding-right: 40px;
    max-width: 580px;
  }
}
@media screen and (max-width: 992px) {
  .tools-offer__content {
    max-width: 100%;
    padding-right: 0;
  }
}
.tools-offer__slider {
  width: 470px;
  height: 529px;
  background-color: #1971C2;
  position: absolute !important;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .tools-offer__slider {
    width: 360px;
    height: 450px;
  }
}
@media screen and (max-width: 992px) {
  .tools-offer__slider {
    position: relative !important;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    height: 400px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .tools-offer__slider {
    height: 300px;
  }
}
@media screen and (max-width: 460px) {
  .tools-offer__slider {
    height: 200px;
  }
}
.tools-offer__slider .swiper-slide {
  object-fit: cover;
}
.tools-offer__slider .swiper-button-next, .tools-offer__slider .swiper-button-prev {
  background-color: #1971C2;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  bottom: 0;
  top: unset;
  left: unset;
}
.tools-offer__slider .swiper-button-next svg, .tools-offer__slider .swiper-button-prev svg {
  width: 22px;
  height: 11px;
}
.tools-offer__slider .swiper-button-next path, .tools-offer__slider .swiper-button-prev path {
  fill: #fff;
}
.tools-offer__slider .swiper-button-next {
  right: 0;
}
.tools-offer__slider .swiper-button-next svg {
  transform: rotate(-90deg);
}
.tools-offer__slider .swiper-button-prev {
  right: 50px;
}
.tools-offer__slider .swiper-button-prev svg {
  transform: rotate(90deg);
}
.tools-offer__container {
  overflow: visible;
  padding-bottom: 100px;
}
.tools-offer__container::after {
  height: 60px;
  background-size: cover;
  background-position: top;
}

.tools-table {
  width: 100%;
}
.tools-table__row {
  width: 100%;
  display: grid;
  grid-template-columns: 54% 26% 20%;
}
@media screen and (max-width: 768px) {
  .tools-table__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #E7EBEE;
  }
}
.tools-table__row--2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .tools-table__row--2 {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #E7EBEE;
  }
}
.tools-table__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 400;
  line-height: 14px;
  color: #031929;
  background-color: #fff;
  border-left: 1px solid #E7EBEE;
  border-bottom: 1px solid #E7EBEE;
  padding: 22px 10px 18px;
}
@media screen and (max-width: 768px) {
  .tools-table__text {
    padding: 6px 10px;
    justify-content: flex-start;
    border: none;
  }
}
.tools-table__text--2 {
  justify-content: flex-start;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .tools-table__text--2 {
    padding: 6px 10px;
    justify-content: flex-start;
    border: none;
  }
}
.tools-table__text--title {
  background-color: #E7EBEE;
  border: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #5A6F7E;
  text-transform: uppercase;
}
.tools-table__text:first-child {
  justify-content: flex-start;
  padding-left: 53px;
  border-left: none;
}
@media screen and (max-width: 1200px) {
  .tools-table__text:first-child {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tools-table__text:first-child {
    padding-left: 10px;
  }
}

.tools-section-table {
  margin-top: 81px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
.tools-section-table:nth-child(2n) {
  flex-direction: row-reverse;
}
.tools-section-table:nth-child(2n)::before {
  left: unset;
  right: -72px;
}
.tools-section-table::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 131 126'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h131v126H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 38'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(108)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(36 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(72 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(108 36)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(36 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(72 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(108 72)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 108)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(36 108)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(72 108)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(108 108)'/%3E%3C/g%3E%3C/svg%3E");
  height: 126px;
  width: 131px;
  position: absolute;
  bottom: -30px;
  left: -56px;
  content: "";
}
@media screen and (max-width: 992px) {
  .tools-section-table::before {
    display: none;
  }
}
.tools-section-table__image {
  width: 413px;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-self: stretch;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .tools-section-table__image {
    width: 300px;
  }
}
@media screen and (max-width: 992px) {
  .tools-section-table__image {
    display: none;
  }
}
.tools-section-table__content {
  flex: 1;
}
.tools-section-table__header {
  width: 100%;
  background-color: #1971C2;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
  display: block;
  padding: 23px 20px 23px 54px;
}
@media screen and (max-width: 1200px) {
  .tools-section-table__header {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tools-section-table__header {
    padding-left: 10px;
  }
}
.tools-section-table__row {
  width: 100%;
  display: grid;
  grid-template-columns: 37% 34% 29%;
}
@media screen and (max-width: 768px) {
  .tools-section-table__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #E7EBEE;
  }
}
.tools-section-table__row--2 {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .tools-section-table__row--2 {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #E7EBEE;
  }
}
.tools-section-table__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 16px 10px;
  border-left: 1px solid #E7EBEE;
  border-bottom: 1px solid #E7EBEE;
}
@media screen and (max-width: 768px) {
  .tools-section-table__text {
    padding: 6px 10px;
    justify-content: flex-start;
    border: none;
  }
}
.tools-section-table__text--2 {
  justify-content: flex-start;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .tools-section-table__text--2 {
    padding: 6px 10px;
    justify-content: flex-start;
    border: none;
  }
}
.tools-section-table__text:first-child {
  justify-content: flex-start;
  padding-left: 53px;
  border-left: none;
}
@media screen and (max-width: 1200px) {
  .tools-section-table__text:first-child {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tools-section-table__text:first-child {
    padding-left: 10px;
  }
}
.tools-section-table__text--title {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: #5A6F7E;
  text-transform: uppercase;
  background-color: #E7EBEE;
}

.objects__tabs {
  padding-top: 0;
  width: 100%;
}
.objects__tabs-body {
  padding-top: 52px;
}
.objects__tabs-body::before {
  display: none;
}
.objects__tab {
  background-color: #fff;
}
.objects__year-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 26px;
  color: #031929;
}
.objects__table {
  margin-top: 30px;
}
.objects__table-header {
  background-color: #E7EBEE;
  width: 100%;
  display: grid;
  grid-template-columns: 298px 515px 5fr 4fr;
}
@media screen and (max-width: 1200px) {
  .objects__table-header {
    grid-template-columns: 180px 440px 5fr 4fr;
  }
}
@media screen and (max-width: 992px) {
  .objects__table-header {
    grid-template-columns: 180px 330px 5fr 4fr;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-header {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }
}
.objects__table-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 14px 20px 12px;
  border-left: 1px solid #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #5A6F7E;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .objects__table-title {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-title {
    padding: 6px 10px;
    justify-content: flex-start;
  }
}
.objects__table-title:first-child {
  justify-content: flex-start;
  border: none;
  padding-left: 43px;
}
@media screen and (max-width: 1200px) {
  .objects__table-title:first-child {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-title:first-child {
    padding: 6px 10px;
  }
}
.objects__table-title:nth-child(2) {
  justify-content: flex-start;
  padding-left: 43px;
}
@media screen and (max-width: 1200px) {
  .objects__table-title:nth-child(2) {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-title:nth-child(2) {
    padding: 6px 10px;
  }
}
.objects__table-org {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 1px solid #E7EBEE;
}
@media screen and (max-width: 768px) {
  .objects__table-org {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 20px solid #F4F6F6;
    padding: 20px 0;
  }
}
.objects__table-org-title {
  width: 298px;
  padding: 23px 10px 20px 44px;
}
@media screen and (max-width: 1200px) {
  .objects__table-org-title {
    width: 180px;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-org-title {
    padding: 6px 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
}
.objects__table-org-title span {
  font-size: 14px;
  font-weight: 800;
  line-height: 19px;
  color: #031929;
}
.objects__table-org-title img {
  width: 120px;
  max-height: 120px;
  object-fit: contain;
  object-position: top;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .objects__table-org-title img {
    margin-top: 0;
    margin-right: 20px;
  }
}
.objects__table-content {
  flex: 1;
  height: auto;
  align-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.objects__table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 515px 5fr 4fr;
  border-bottom: 1px solid #E7EBEE;
  height: auto;
  align-self: stretch;
}
@media screen and (max-width: 1200px) {
  .objects__table-row {
    grid-template-columns: 440px 5fr 4fr;
  }
}
@media screen and (max-width: 992px) {
  .objects__table-row {
    grid-template-columns: 330px 5fr 4fr;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-row {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }
}
.objects__table-row:last-child {
  border: none;
}
.objects__table-text {
  border-left: 1px solid #E7EBEE;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #031929;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 18px 39px 19px 36px;
}
@media screen and (max-width: 1200px) {
  .objects__table-text {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .objects__table-text {
    padding: 6px 10px;
    justify-content: flex-start;
    border-left: none;
  }
}
.objects__table-text:first-child {
  justify-content: flex-start;
}
.objects__table-text:last-child {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .objects__table-text:last-child {
    justify-content: flex-start;
  }
}

.activity__item {
  min-height: unset;
}
.activity__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 61px 53px;
}
@media screen and (max-width: 768px) {
  .activity__link {
    padding: 30px 20px;
  }
}
.activity__link:hover path {
  fill: #fff;
}
.activity__link path {
  transition: 0.2s all ease-out;
}
.activity__title {
  padding-right: 20px;
}
.activity__page {
  overflow: hidden;
}

.activity-types {
  background-color: #fff;
  padding: 75px 60px;
}
@media screen and (max-width: 768px) {
  .activity-types {
    padding: 30px 20px;
  }
}
.activity-types__brief {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #031929;
}
.activity-types__list {
  padding-top: 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  row-gap: 80px;
}
@media screen and (max-width: 768px) {
  .activity-types__list {
    grid-template-columns: 1fr;
  }
}
.activity-types__item {
  padding-left: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .activity-types__item {
    padding-left: 0;
  }
}
.activity-types__item::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 83.05 77.13'%3E%3Cdefs/%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h83.05v77.13H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Повторяющаяся сетка 47'%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 32)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(0 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(32 64)'/%3E%3Ccircle cx='3' cy='3' r='3' fill='%231971c2' data-name='Эллипс 88' transform='translate(64 64)'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 83px;
  height: 77px;
  top: -20px;
  left: 0;
  position: absolute;
  content: "";
}
@media screen and (max-width: 768px) {
  .activity-types__item::after {
    left: -16px;
  }
}
.activity-types__item:nth-child(2n) {
  padding-left: 0;
  padding-right: 16px;
}
@media screen and (max-width: 768px) {
  .activity-types__item:nth-child(2n) {
    padding-right: 0;
  }
}
.activity-types__item:nth-child(2n)::after {
  left: unset;
  right: -17px;
  top: 153px;
}
@media screen and (max-width: 768px) {
  .activity-types__item:nth-child(2n)::after {
    top: -20px;
    right: -30px;
  }
}
.activity-types__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #031929;
  display: block;
  padding-top: 22px;
}
.activity-types__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
  display: block;
  padding-top: 9px;
}
.activity-types__image {
  width: 100%;
  height: 206px;
  object-fit: cover;
}

.activity-chits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .activity-chits {
    grid-template-columns: 1fr;
  }
}
.activity-chits__item {
  padding: 28px 28px 74px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .activity-chits__item {
    padding: 10px 10px 30px;
  }
}
.activity-chits__image {
  width: 100%;
}
.activity-chits__link {
  display: block;
  padding-top: 26px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #1971C2;
  text-decoration: underline;
}
.activity-chits__link:hover {
  text-decoration: none;
}

.activity-vacancies {
  background-color: #fff;
  padding: 64px 57px;
}
@media screen and (max-width: 768px) {
  .activity-vacancies {
    padding: 40px 20px;
  }
}
.activity-vacancies__phone {
  border: 1px solid #E7EBEE;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
@media screen and (max-width: 768px) {
  .activity-vacancies__phone {
    border-left: none;
    border-right: none;
    padding: 10px 0;
  }
}
.activity-vacancies__phone:hover {
  border-color: #F7C270;
  text-decoration: underline;
}
.activity-vacancies__phone svg {
  margin-right: 10px;
  min-width: 28px;
}
.activity-vacancies__phone i {
  white-space: nowrap;
  font-style: normal;
}
.activity-vacancies__list {
  padding-top: 49px;
}
.activity-vacancies__item {
  padding-bottom: 35px;
  border-bottom: 1px solid #E7EBEE;
  padding-top: 38px;
}
.activity-vacancies__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.activity-vacancies__item:first-child {
  padding-top: 0;
}
.activity-vacancies__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.activity-vacancies__link:hover .activity-vacancies__title {
  color: #1971C2;
}
.activity-vacancies__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #031929;
  transition: 0.2s all ease-out;
}
.activity-vacancies__price {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1971C2;
  margin-top: 7px;
}
.activity-vacancies__brief {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  margin-top: 15px;
}

.vacancy-title {
  font-size: 45px;
  line-height: 60px;
}
@media screen and (max-width: 992px) {
  .vacancy-title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 460px) {
  .vacancy-title {
    font-size: 20px;
    line-height: 25px;
  }
}

.vacancy {
  padding: 79px 58px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .vacancy {
    padding: 50px 20px;
  }
}
.vacancy__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .vacancy__header {
    flex-direction: column-reverse;
  }
}
.vacancy__price-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.vacancy__price-value {
  display: block;
  padding-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #1971C2;
}
.vacancy__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #97A9B4;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .vacancy__date {
    margin-bottom: 20px;
  }
}
.vacancy__section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 60px;
}
@media screen and (max-width: 1200px) {
  .vacancy__section {
    flex-direction: column;
  }
}
.vacancy__section-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #031929;
  width: 182px;
  padding-right: 20px;
}
@media screen and (max-width: 1200px) {
  .vacancy__section-title {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.vacancy__list {
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .vacancy__list {
    width: 100%;
  }
}
.vacancy__list-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #5A6F7E;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 15px 0;
  border-bottom: 1px solid #E7EBEE;
}
@media screen and (max-width: 768px) {
  .vacancy__list-item {
    flex-direction: column;
  }
}
.vacancy__list-item:first-child {
  padding-top: 0;
}
.vacancy__list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.vacancy__list-title {
  white-space: nowrap;
}
.vacancy__list-value {
  padding-left: 40px;
  color: #031929;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .vacancy__list-value {
    text-align: left;
    padding-left: 0;
    padding-top: 10px;
  }
}
.vacancy__phone {
  padding-top: 87px;
}
.vacancy__phone-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #1971C2;
  display: block;
  padding-bottom: 10px;
}
.vacancy__phone-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #031929;
}
.vacancy__phone-link b {
  white-space: nowrap;
}
.vacancy__phone-link:hover b {
  text-decoration: underline;
  color: #1971C2;
}

.activity-years {
  background-color: #fff;
  padding: 78px 56px;
}
@media screen and (max-width: 768px) {
  .activity-years {
    padding: 40px 20px;
  }
}
.activity-years__title {
  padding-top: 6px;
  font-size: 24px;
  line-height: 30px;
  display: block;
}
.activity-years__header {
  background-color: #F4F6F6;
}
.activity-years__text {
  padding: 20px 0 0;
}

.error-404 {
  height: 100vh;
  width: 100%;
  background-position: top right;
  background-size: width 80% 100%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.error-404__back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 39%;
  background-color: #1971C2;
}
@media screen and (max-width: 992px) {
  .error-404__back {
    width: 70%;
  }
}
.error-404 .offer__back-logo {
  height: 100%;
  opacity: 0.06;
}
@media screen and (max-width: 768px) {
  .error-404 .offer__back-logo {
    display: none;
  }
}
.error-404__wrap {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  padding-left: 120px;
}
@media screen and (max-width: 1200px) {
  .error-404__wrap {
    max-width: 940px;
  }
}
@media screen and (max-width: 992px) {
  .error-404__wrap {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .error-404__wrap {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 992px) {
  .error-404__wrap {
    padding-left: 0;
  }
}
.error-404__title {
  font-size: 255px;
  font-weight: 800;
  line-height: 280px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .error-404__title {
    font-size: 120px;
    line-height: 140px;
  }
}
.error-404__subtitle {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .error-404__subtitle {
    font-size: 24px;
    line-height: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 460px) {
  .error-404__subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
  }
}
.error-404__brief {
  margin-top: 20px;
  max-width: 610px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
@media screen and (max-width: 460px) {
  .error-404__brief {
    font-size: 14px;
    line-height: 18px;
  }
}
.error-404__link {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  color: #fff;
  transition: 0.2s all ease-out;
  padding: 20px 0;
}
.error-404__link:hover svg {
  transform: translateX(20px);
}
.error-404__link svg {
  transition: 0.2s all ease-out;
  margin-left: 15px;
}

/*# sourceMappingURL=/main.css.map */