* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

sup {
  color: inherit;
}

:root {
  --blue: #195396;
  --black: #000;
  --red: #FF141E;
  --blue_btn: #0079FF;
  --dark: #1B1B1B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "PT Sans", sans-serif;
}

body.body-hidden {
  overflow: hidden;
}

@font-face {
  font-family: "Constantia";
  src: url("../fonts/Constantia.woff2");
  font-weight: 400;
}

.container {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

.footer__logo {
  width: 120px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width:1200px) {
  .alert--width {
      width: 370px;
  }
  .alert--content {
      padding: 25px;
  }
  .alert--img__item svg {
      width: 75px;
      height: 75px;
  }
  .alert-text {
      margin-top: 10px;
  }
  .alert--title {
      font-size: 24px;
  }
  .alert--subtitle {
      font-size: 18px;
  }
}

@media (max-width:500px) {
  .alert--content {
      width: 92%;
  }
  .alert--img__item svg {
      width: 60px;
      height: 60px;
  }
  .alert--title {
      font-size: 22px;
  }
}

/*alert*/


/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@keyframes loader-animate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
/*formLoader*/

.title-white {
  color: #FFF;
  font-family: "PT Sans";
  font-size: 20px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
}

.title-black {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 25px;
  /* 125% */
}

.breadcrumbs {
  padding-top: 150px;
  margin-bottom: 50px;
}

.breadcrumbs ul {
  display: flex;
  gap: 5px;
  align-items: center;
}

.breadcrumbs ul li {
  display: flex;
  gap: 5px;
  align-items: center;
}

.breadcrumbs ul li a:hover {
  opacity: 0.8;
}

.breadcrumbs ul li a,
.breadcrumbs ul li span {
  transition: all 0.3s;
  color: var(--black);
  opacity: 0.5;
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.mb-30 {
  margin-bottom: 30px;
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: var(--blue);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.header__logo img {
  width: 142px;
  height: 86px;
  display: block;
}

.header__logo__bg {
  position: absolute;
  left: 45%;
  transform: translate(-50%, 0%);
  top: -8px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: "PT Sans";
}

.header__nav ul li {
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 6px;
  position: relative;
}

.header__nav ul li:hover a {
  font-weight: 700;
}

.header__nav ul li:hover img {
  transform: rotate(-90deg);
}

.header__nav ul li:hover .submenu {
  display: flex;
}

.header__nav ul li img {
  transition: all 0.3s;
}

.header__nav ul li .submenu {
  display: none;
  border-top: 3px solid var(--red);
  position: absolute;
  left: 0;
  top: 100px;
  min-width: 150px;
  width: auto;
  max-height: 500px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}

.header__nav ul li .submenu.active {
  display: flex;
}

.header__nav ul li .submenu li {
  background-color: var(--dark);
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.header__nav ul li .submenu li:hover {
  background-color: var(--blue);
}

.header__nav ul li .submenu li:last-child {
  border-radius: 0px 0px 6px 6px;
}

.header__nav ul li .submenu li a {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  /* 125% */
  text-transform: uppercase;
}

.header__nav ul li a {
  color: #FFF;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  transition: all 0.3s;
}

.header__nav__mobile {
  position: fixed;
  width: 100%;
  z-index: 100;
  height: 100%;
  z-index: -1;
  left: -100%;
  transition: all 0.3s;
  top: 0;
  z-index: 100;
}

.header__nav__mobile.active {
  left: 0;
}

.header__nav__mobile ul {
  height: 100%;
  gap: 15px;
  display: flex;
  overflow-y: scroll;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(25, 83, 150, 0.8);
}

.header__nav__mobile ul li {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.header__nav__mobile ul li.has-child > a {
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__nav__mobile ul li.has-child img {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}

.header__nav__mobile ul li.has-child.active > a {
  font-weight: 700;
}

.header__nav__mobile ul li.has-child.active img {
  transform: rotate(-90deg);
}

.header__nav__mobile ul li.has-child.active .submenu {
  margin-top: 10px;
}

.header__nav__mobile ul li a {
  font-size: 24px;
  color: #fff;
}

.header__nav__mobile .submenu {
  height: 0;
  background-color: transparent;
  display: block;
  overflow: hidden;
  transition: all 0.3s;
}

.header__nav__mobile .submenu.active {
  display: flex;
}

.header__nav__mobile .submenu li {
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.header__nav__mobile .submenu li:last-child {
  margin-bottom: 0;
}

.header__btn {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  background-color: transparent;
}

.header__search {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 7px 20px;
  border-radius: 15px;
  width: 18%;
}

.header__search input {
  width: 100%;
  color: var(--black);
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  border: none;
  background: transparent;
}

.header__search input::-moz-placeholder {
  opacity: 0.2;
  color: var(--black);
}

.header__search input::placeholder {
  opacity: 0.2;
  color: var(--black);
}

.header__search button {
  background-color: transparent;
  border: none;
}

.header__search input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.header-burger {
  width: 20px;
  height: 15px;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 101;
}

.header-burger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.header-burger.active span:nth-child(2) {
  top: 50%;
  opacity: 0;
  transform: rotate(45deg);
}

.header-burger.active span:nth-child(3) {
  bottom: 37%;
  transform: rotate(-45deg);
}

.header-burger span {
  transition: all 0.3s;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: #fff;
}

.header-burger span:nth-child(1) {
  top: 0;
}

.header-burger span:nth-child(2) {
  top: 45%;
}

.header-burger span:nth-child(3) {
  bottom: 0;
}

.hero {
  padding-top: 100px;
}

.hero__inner {
  padding: 270px 0;
}

.hero-bg__items {
  position: absolute;
  width: 100%;
  max-height: 600px;
  height: auto;
  z-index: -1;
  left: 0;
  top: 100px;
  display: flex;
}

.hero-bg__item {
  width: auto;
  flex: 1;
}

.hero-bg__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__title {
  font-family: "Constantia";
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  text-align: center;
}

.mission {
  padding: 50px 0 100px 0;
}

.mission__inner {
  display: flex;
  gap: 20px;
}

.mission__item {
  width: 50%;
}

.mission__title {
  margin-bottom: 20px;
}

.mission__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  border-radius: 6px;
  transition: all 0.3s;
}

.mission__img:hover {
  transform: scale(1.01);
}

.mission__descr {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.news {
  background-color: var(--blue);
  padding: 50px 0;
}

.news__inner {
  position: relative;
  z-index: 2;
}

.news__inner::before {
  content: "";
  width: 442px;
  height: 614px;
  position: absolute;
  right: 50px;
  top: 0;
  z-index: -1;
  background-image: url("../img/news-bg-shape.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news__items {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.news__title {
  margin-bottom: 20px;
}

.news__more {
  display: flex;
  margin-top: 50px;
  justify-content: flex-end;
}

.news__more a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFF;
  text-align: right;
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  transition: all 0.3s;
}

.news__more a img {
  transition: all 0.3s;
}

.news__more a:hover {
  color: #b0b0b0;
}

.news__more a:hover img {
  transform: translateX(10px);
}

.news-item {
  width: calc(25% - 15px);
}

.news-item__img {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
}
.news-item__info {
  color: #fff;
}
.news-item__img:hover img {
  transform: scale(1.1);
}

.news-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  transition: all 0.3s;
}

.news-item__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-item__date img {
  transition: all 0.3s;
}

.news-item__date img:hover {
  transform: scale(1.05);
}

.news-item__date__info {
  display: flex;
  gap: 5px;
  align-items: center;
}

.news-item__date__info p {
  color: #FFF;
  font-family: "PT Sans";
  font-size: 14px;
  opacity: 0.7;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.news-item__title {
  color: #FFF;
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
  margin-bottom: 10px;
  transition: all 0.3s;
}

.news-item__title:hover {
  color: #b0b0b0;
}

.news-item__info p {
  color: #FFF;
  font-family: PT Sans;
  font-size: 16px;
  opacity: 0.8;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.news-item:nth-child(1) {
  transition-duration: 0.5s !important;
  transition-delay: 0ms;
}

.news-item:nth-child(2) {
  transition-delay: 200ms;
  transition-duration: 0.7s !important;
}

.news-item:nth-child(3) {
  transition-delay: 400ms;
  transition-duration: 0.9s !important;
}

.news-item:nth-child(4) {
  transition-delay: 600ms;
  transition-duration: 1.2s !important;
}

.products {
  padding: 100px 0 50px 0;
}

.products__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.products__item {
  width: calc(33.3333333333% - 13.4px);
  border-radius: 6px;
  border: 0.5px solid #C7C7C7;
  background: #FFF;
  transition: box-shadow 0.3s;
}

.products__item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2196078431);
}

.products__item__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.products__item__img a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.products__item__img a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(25, 83, 150, 0.1);
}

.products__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transition: all 0.3s;
}

.products__item__title {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 16px;
  margin-bottom: 10px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
  transition: all 0.3s;
}

.products__item__title:hover {
  color: rgba(0, 0, 0, 0.6705882353);
}

.products__item__descr {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.8;
  line-height: 20px;
  /* 125% */
}

.products__item__info {
  padding: 20px;
}

.products__item:nth-child(1) {
  transition-delay: 0ms;
}

.products__item:nth-child(2) {
  transition-delay: 200ms;
}

.products__item:nth-child(3) {
  transition-delay: 400ms;
}

.services {
  padding: 50px 0 100px 0;
}

.services__items {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services__item {
  width: calc(25% - 15px);
  cursor: pointer;
}

.services__item:hover .services__item__img img {
  transform: scale(1.1);
}

.services__item:hover .services__item__title {
  color: rgba(0, 0, 0, 0.6705882353);
}

.services__item__img {
  width: 100%;
  height: 235px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.services__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transition: all 0.3s;
}

.services__item__title {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  margin-bottom: 5px;
  transition: all 0.3s;
}

.services__item__descr {
  color: var(--black);
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.services__item:nth-child(1) {
  transition-delay: 0ms;
}

.services__item:nth-child(2) {
  transition-delay: 200ms;
}

.services__item:nth-child(3) {
  transition-delay: 400ms;
}

.services__item:nth-child(4) {
  transition-delay: 600ms;
}

.geography-map {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

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

.geography-map__item {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 50px;
}

.geography-map__item svg path {
  transition: all 0.3s;
  cursor: pointer;
}

.geography-map__item svg path:hover {
  fill: #e8e8e8;
}

.points {
  position: absolute;
  cursor: pointer;
}

.points:hover .points-list {
  display: block;
}

.points-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.points-mark span {
  width: 16px;
  height: 16px;
  background-color: var(--red);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px;
  /* 100% */
}
.points-mark__name{
  width: 80px;
  font-size: 14px;
  text-align: center;
}
.other-points .points-mark__name{
  font-size: 9px;
  margin-top: 3px;
}
.other-points .points-mark span{
  width: 14px;
  height: 14px;
  font-size: 8px;
}
#reg-1 {
  top: 25%;
  left: 55%;
}

#reg-2 {
  bottom: 19.5%;
  left: 57.5%;
}

#reg-3 {
  bottom: 18.5%;
  right: 28.7%;
}

.other-points:nth-child(1) {
  top: 5%;
  left: 49.5%;
}

.other-points:nth-child(2) {
  top: 19%;
  left: 40.5%;
}

.other-points:nth-child(3) {
  display: none;
}

.other-points:nth-child(4) {
  top: 21%;
  left: 62.5%;
}

.other-points:nth-child(5) {
  top: 36%;
  left: 19.5%;
}

.other-points:nth-child(6) {
  top: 44%;
  left: 32.5%;
}

.other-points:nth-child(7) {
  top: 53%;
  left: 47.5%;
}

.other-points:nth-child(8) {
  top: 44%;
  left: 58.5%;
}

.other-points:nth-child(9) {
  top: 44%;
  left: 68%;
  width: 48px;
}

.other-points:nth-child(10) {
  top: 41%;
  left: 74.5%;
}

.other-points:nth-child(11) {
  top: 72%;
  left: 24%;
}

.other-points:nth-child(12) {
  top: 65%;
  left: 40%;
}

.other-points:nth-child(13) {
  top: 80%;
  left: 48.5%;
}

.other-points:nth-child(14) {
  display: none;
}

.other-points:nth-child(15) {
  display: none;
}

.other-points:nth-child(16) {
  top: 62%;
  left: 66.5%;
  width: 70px;
}

.other-points:nth-child(17) {
  top: 51%;
  left: 22.5%;
}
.points-list {
  position: absolute;
  display: none;
  min-width: 200px;
  background-color: var(--blue);
  border-radius: 6px;
  left: 50%;
  top: 102%;
  opacity: 0.98;
  z-index: 10;
}

.points-list li {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.points-list li a {
  pointer-events: none;
  transition: all 0.3s;
  color: #FFF;
  font-family: PT Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.points-list li:hover a {
  font-weight: 700;
}

.points-list li:last-child {
  border-bottom: 0;
}

.partners {
  padding: 100px 0;
}

.partners__title {
  text-align: center;
}

.partners__items {
  display: flex;
  margin-top: 50px;
  gap: 50px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.partners__item:hover .partners__item__img img {
  transform: scale(1.05);
}

.partners__item:hover .partners__item__img {
  background-color: #d7d7d7;
}

.partners__item__img {
  width: 320px;
  transition: all 0.3s;
  height: 100px;
  border-radius: 6px;
  background: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

.partners__item__img img {
  max-width: 250px;
  max-height: 70px;
  width: 100%;
  transition: all 0.3s;
  height: 100%;
}

.partners__item__name {
  max-width: 70%;
  /* margin-top: 20px; */
  color: var(--black);
  display: block;
  text-align: center;
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 20px auto 0 auto;
  line-height: 20px;
  /* 125% */
}

.about {
  padding-bottom: 100px;
}

.about__img {
  width: 100%;
  height: 400px;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.about__info {
  margin-top: 30px;
}
.about__info p:not(:last-child) {
  margin-bottom: 10px;
}
.about__info p strong {
  margin-top: 20px;
  display: block;
}
.about__info ul {
  margin-top: 10px;
}

.about__info ul li{
  list-style: disc;
  margin-left: 40px;
}

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

.about__info p {
  color: #000;
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.jobs {
  padding-bottom: 100px;
}

.jobs-items {
  display: flex;
  align-items: start;
  gap: 50px 20px;
  flex-wrap: wrap;
}

.jobs-item {
  width: calc(50% - 10px);
  display: flex;
  align-items: start;
  gap: 20px;
}

.jobs-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background: rgba(26, 84, 150, 0.05);
  border-radius: 50%;
}

.jobs-item__icon img {
  opacity: 1;
}

.jobs-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 83%;
}

.jobs-item__title {
  color: var(--blue);
  font-family: "PT Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
}

.jobs-item__descr {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  opacity: 0.8;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.documents {
  padding-bottom: 100px;
}

.documents-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.documents-item {
  width: calc(25% - 15px);
}

.documents-item:hover .documents-item__img img {
  transform: scale(1.05);
}

.documents-item__img {
  width: 100%;
  height: 332px;
  overflow: hidden;
}

.documents-item__img img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.document-item__name {
  margin-top: 20px;
  color: var(--black);
  font-family: "PT Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.reviews {
  padding-bottom: 100px;
}

.reviews__subtitle {
  margin-bottom: 20px;
  color: var(--black);
  font-family: "PT Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  /* 122.222% */
}

.page-partners {
  padding-top: 0;
}

.page-partners .partners__title {
  text-align: left;
}

.page-partners .partners__items {
  margin-top: 30px;
}

.portfolio {
  padding-bottom: 100px;
}

.portfolio-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.portfolio-item {
  display: flex;
  gap: 20px;
}

.portfolio-item__img {
  width: 40.5%;
  height: 243px;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio-item__img:hover img {
  transform: scale(1.1);
}

.portfolio-item__img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

.portfolio-item__info {
  width: 57.4%;
}

.portfolio-item__title {
  color: var(--black);
  margin-bottom: 22px;
  font-family: "PT Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  /* 127.778% */
}

.portfolio-item__descr p {
  color: var(--black);
  opacity: 0.8;
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.catalog {
  padding-bottom: 50px;
}

.catalog__title {
  margin-bottom: 50px;
}

.catalog-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 105px;
}

.catalog-item {
  width: 40.5%;
}

.catalog-item__title {
  color: var(--black);
  font-family: PT Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  transition: all 0.3s;
  line-height: 22px;
  /* 122.222% */
}

.catalog-item__title:hover {
  opacity: 0.6;
}

.catalog-item__article {
  color: var(--black);
  margin-top: 10px;
  font-family: "PT Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  opacity: 0.5;
}

.catalog-item__descr {
  margin-top: 10px;
}

.catalog-item__descr p {
  color: var(--black);
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.other-products {
  padding: 50px 0 100px 0;
}

.other-products__items {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.other-products__item {
  width: calc(25% - 15px);
  cursor: pointer;
}

.other-products__item:hover .other-products__item__img img {
  transform: scale(1.1);
}

.other-products__item:hover .other-products__item__title {
  color: rgba(0, 0, 0, 0.6705882353);
}

.other-products__item__img {
  width: 100%;
  height: 235px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.other-products__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transition: all 0.3s;
}

.other-products__item__title {
  color: var(--black);
  font-family: "PT Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  margin-bottom: 5px;
  transition: all 0.3s;
}

.other-products__item__descr {
  color: var(--black);
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.product {
  padding-bottom: 100px;
}

.product__info {
  max-width: 660px;
  margin: 0 auto;
}

.product__info ul li {
  list-style: disc;
  margin-bottom: 10px;
  margin-left: 40px;
}

.product__info img {
  width: 100%;
  border-radius: 6px;
  max-height: 300px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #D9D9D9;
  background: #FFF;
  margin-bottom: 30px;
}

.product__info p {
  margin-bottom: 30px;
  color: var(--black);
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
  opacity: 0.8;
}

.product__info h2,
.product__info h3,
.product__info h4,
.product__info h5,
.product__info h6 {
  color: var(--black);
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 122.222% */
}

.product__info h2 {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.product__info h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  opacity: 0.8;
}

.product__info table,
.product__info th,
.product__info td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-collapse: collapse;
  line-height: 22px;
  font-size: 14px;
}

.product__info table {
  width: 100%;
  margin-bottom: 30px;
}

.product__info table tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.product__info table td {
  padding: 8px 10px;
  color: var(--black);
  opacity: 0.9;
  font-weight: 400;
}

.page-news.news {
  background-color: #fff;
}

.page-news .news__items {
  flex-wrap: wrap;
  gap: 50px 20px;
}

.page-news .news-item {
  transition: all 0.8s !important;
  width: calc(33.3333333333% - 14px);
}

.page-news .news-item__img {
  height: 205px;
  border-radius: 6px;
}

.page-news .news-item__title {
  display: flex;
  justify-content: space-between;
  font-family: PT Sans;
  align-items: center;
}

.page-news .news-item__title:hover img {
  transform: scale(1.05);
}

.page-news .news-item__title:hover h2 {
  opacity: 0.6;
}

.page-news .news-item__title h2 {
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
  letter-spacing: -0.5px;
  transition: all 0.3s;
}

.page-news .news-item__title img {
  transition: all 0.3s;
}

.page-news .news-item__descr {
  margin-bottom: 12px;
}

.page-news .news-item__descr p {
  color: var(--black);
  opacity: 0.8;
}

.page-news .news-item__date {
  justify-content: start;
  gap: 5px;
  margin-bottom: 0;
}

.page-news .news-item__date p {
  font-size: 14px;
  opacity: 0.7;
}

.single-news {
  padding-bottom: 100px;
}

.single-news__content {
  max-width: 660px;
  margin: 0 auto;
}

.news-content__date {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.news-content__date p {
  font-size: 14px;
  opacity: 0.7;
}

.news-content__img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}

.news-content__title {
  color: var(--black);
  margin-bottom: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 125% */
  letter-spacing: -0.625px;
}

.news-content__descr p {
  opacity: 0.8;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 20px;
}

.news-content__descr p:last-child {
  margin-bottom: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 105px;
}

.pagination__btn {
  background-color: transparent;
  transition: 0.3s;
}
.pagination__btn:hover {
  transform: scale(1.2);
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination__item {
  display: block;
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  transition: 0.1s ease;
  border: 1px solid transparent;
  padding: 8px 15px;
}

.pagination__item:hover {
  border: 1px solid #195396;
  padding: 8px 15px;
  border-radius: 10px;
}

.pagination-active {
  color: #fff;
  background-color: #195396;
  box-sizing: border-box;
  padding: 8px 15px;
  border-radius: 10px;
  cursor: default;
}

.contacts {
  padding-bottom: 100px;
}

.contacts__content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.contacts__map {
  width: 57%;
}

.contacts__map iframe {
  width: 100%;
  border-radius: 6px;
}

.contacts__form {
  width: 40.5%;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
}

.contacts__form input,
.contacts__form textarea {
  width: 100%;
  border-radius: 6px;
  border: 0.5px solid #D8D8D8;
  background: #FFF;
  padding: 15px;
  color: var(--black);
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.contacts__form input::-moz-placeholder, .contacts__form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contacts__form textarea {
  resize: none;
  max-height: 100px;
  height: 100%;
  margin-bottom: 30px;
}

.contacts__form input {
  padding: 13px 15px;
  margin-bottom: 20px;
}

.contacts__form input[type=submit] {
  background-color: var(--blue_btn);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s;
}

.contacts__form input[type=submit]:hover {
  background-color: var(--blue);
}

.contacts-items {
  display: flex;
  margin-top: 100px;
  align-items: center;
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 29%;
  margin-right: 20px;
}

.contacts-item:nth-child(2) {
  margin-right: 60px;
}

.contacts-item__icon {
  background-color: rgba(25, 83, 150, 0.05);
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.contacts-item__icon:hover {
  background-color: rgba(25, 83, 150, 0.15);
}

.contacts-item__content {
  width: 69%;
  display: flex;
  flex-direction: column;
}

.contacts-item__content a {
  color: var(--black);
  font-size: 14px;
  line-height: 18px;
  opacity: 0.8;
}

.contacts-item__content a:hover {
  text-decoration: underline;
}

.contacts-item__name {
  color: var(--black);
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 10px;
}

.contacts-item__descr {
  font-size: 14px;
  line-height: 18px;
  opacity: 0.8;
}

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  display: none;
}

.modal__wrapper .modal {
  background: white;
  padding: 50px;
  border-radius: 6px;
  /* height: 480px; */
  width: 490px;
}

.modal__wrapper .modal form {
  width: 100%;
}

.modal__wrapper .modal__title {
  color: var(--black);
  text-align: center;
  font-family: PT Sans;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 100% */
  margin-bottom: 50px;
  text-transform: uppercase;
}

.modal__wrapper .modal__close {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.footer {
  padding-top: 100px;
  background-color: var(--blue);
}

.footer__inner {
  position: relative;
  z-index: 2;
}

.footer__inner::before {
  content: "";
  position: absolute;
  right: 16%;
  top: 9%;
  z-index: -1;
  width: 520px;
  height: 343px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/footer-shape.svg");
}

.footer__columns {
  display: flex;
  justify-content: space-between;
}

.footer__map {
  width: 49%;
}

.footer__map iframe {
  border-radius: 10px;
  width: 100%;
}

.footer__btn {
  margin-bottom: 30px;
  width: 100%;
  border: none;
  padding: 13px 0;
  background: var(--red);
  color: #FFF;
  text-align: center;
  font-family: PT Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 100% */
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
}

.footer__btn:hover {
  background-color: #c1131c;
}

.footer__nav {
  display: flex;
  align-items: flex-end;
  gap: 67px;
  margin-top: 50px;
  padding-bottom: 30px;
}

.footer__menu {
  display: flex;
  gap: 40px;
}

.footer__menu li a {
  color: #FFF;
  font-family: "PT Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.3s;
}

.footer__menu li a:hover {
  color: #b0b0b0;
}

.footer__copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer__copyright p {
  text-align: center;
  color: #FFF;
  font-family: PT Sans;
  opacity: 0.8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-info {
  width: 32%;
}

.footer-info__title {
  color: #FFF;
  font-family: "PT Sans";
  margin-bottom: 30px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
  text-transform: uppercase;
}

.footer-contacts__title {
  color: #FFF;
  font-family: "PT Sans";
  margin-bottom: 30px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 100% */
  text-transform: uppercase;
}

.footer-contacts__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-contacts__item .flex-col {
  display: flex;
  flex-direction: column;
}

.footer-contacts__item a,
.footer-contacts__item p {
  color: #FFF;
  opacity: 0.8;
  font-family: PT Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}

.footer-contacts__item a:hover {
  text-decoration: underline;
}

.footer-contacts__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1510px) {
  .hero {
    padding-top: 52px;
  }

  .hero-bg__items {
    top: 52px;
    height: 100%;
  }

  .geography-map__item svg {
    width: 100%;
    height: 100%;
  }

  #reg-1 {
    top: 27%;
    left: 58%;
  }

  #reg-2 {
    bottom: 20.5%;
    left: 63.5%;
  }

  #reg-3 {
    bottom: 21.5%;
    left: 75.5%;
  }
  .other-points:nth-child(1) {
    top: 7%;
    left: 50.5%;
  }

  .other-points:nth-child(2) {
    top: 19%;
    left: 38.5%;
  }

  .other-points:nth-child(3) {
    top: 25%;
    left: 52.5%;
    width: 107px;
  }

  .other-points:nth-child(4) {
    top: 23%;
    left: 69.5%;
  }

  .other-points:nth-child(5) {
    top: 36%;
    left: 8.5%;
  }

  .other-points:nth-child(6) {
    top: 44%;
    left: 26.5%;
  }

  .other-points:nth-child(7) {
    top: 53%;
    left: 47.5%;
  }

  .other-points:nth-child(8) {
    top: 44%;
    left: 63.5%;
  }

  .other-points:nth-child(9) {
    top: 44%;
    left: 76%;
    width: 48px;
  }

  .other-points:nth-child(10) {
    top: 43%;
    left: 86.5%;
  }

  .other-points:nth-child(11) {
    top: 72%;
    left: 15%;
  }

  .other-points:nth-child(12) {
    top: 65%;
    left: 37%;
  }

  .other-points:nth-child(13) {
    top: 83%;
    left: 49.5%;
  }

  .other-points:nth-child(14) {
    top: 68%;
    left: 58%;
  }

  .other-points:nth-child(15) {
    top: 69%;
    left: 67.5%;
  }

  .other-points:nth-child(16) {
    top: 64%;
    left: 75.5%;
    width: 70px;
  }

  .other-points:nth-child(17) {
    top: 52%;
    left: 13.5%;
  }
}

@media screen and (max-width: 991px) {
  .header__logo img {
    height: 52px;
    width: 114px;
  }

  .header__logo__bg {
    left: 50%;
    top: -33px;
    width: 90%;
  }

  .header__logo__bg svg {
    width: 100%;
  }

  .header__search {
    margin-left: auto;
    width: 250px;
    margin-right: 25px;
  }

  .header__nav {
    display: none;
  }

  .header-burger {
    display: flex;
  }

  .hero__inner {
    padding: 170px 0;
  }

  .hero-bg__items {
    max-height: 404px;
  }

  .news__items {
    flex-wrap: wrap;
  }

  .news-item {
    width: calc(33.3333333333% - 15px);
  }

  .products__item {
    width: calc(50% - 10px);
  }

  .services__item {
    width: calc(33.3333333333% - 14px);
  }

  .points-mark__name {
    font-size: 14px;
    /* font-weight: 600; */
  }
  #reg-1{
    left: 56%;
  }
  #reg-2{
    left: 60%;
  }
  .points-mark span {
    width: 12px;
    height: 12px;
    font-size: 8px;
  }
  .other-points .points-mark span{
    font-size: 6px;
  }
  .other-points .points-mark__name{
    font-weight: 400;
  }
  .breadcrumbs {
    padding-top: 100px;
    margin-bottom: 30px;
  }

  .about__img {
    height: 300px;
  }

  .documents-item {
    width: calc(33.3333333333% - 14px);
  }

  .documents-item__img {
    height: auto;
  }

  .other-products__item {
    width: calc(33.3333333333% - 14px);
  }

  .other-products__item__img {
    height: 200px;
  }

  .page-news {
    padding-top: 0;
  }

  .page-news .news__items {
    gap: 20px;
  }

  .page-news .news-item {
    width: calc(50% - 10px);
  }

  .contacts-items {
    margin-top: 50px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .contacts-item {
    width: 100%;
    margin-right: 0 !important;
  }

  .contacts-item__content {
    width: 88%;
  }

  .footer__nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 770px) {
  .hero__inner {
    padding: 100px 0;
  }

  .hero__title {
    font-size: 22px;
  }

  .hero-bg__items {
    max-height: 244px;
  }

  .mission__img {
    height: 210px;
  }

  .news-item {
    width: calc(50% - 10px);
  }

  .services__item {
    width: calc(50% - 10px);
  }

  .points-mark__name {
    font-size: 8px;
  }

  .jobs-items {
    gap: 20px;
  }

  .jobs-item {
    width: 100%;
  }

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

  .portfolio-item {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-item__img {
    width: 100%;
  }

  .portfolio-item__info {
    width: 100%;
  }

  .portfolio-item__title {
    margin-bottom: 15px;
  }

  .other-products__item {
    width: calc(50% - 10px);
  }

  .catalog__title {
    margin-bottom: 25px;
  }

  .catalog-items {
    gap: 30px;
  }

  .catalog-item {
    width: 100%;
  }

  .contacts__content {
    flex-direction: column;
    gap: 25px;
  }

  .contacts__map {
    order: 2;
    width: 100%;
    height: 300px;
  }

  .contacts__map > div {
    height: 100%;
  }

  .contacts__map iframe {
    height: 100%;
  }

  .contacts__form {
    width: 100%;
  }

  .footer {
    padding-top: 50px;
  }

  .footer__menu {
    gap: 20px;
  }

  .footer__columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer__map {
    order: 2;
    width: 100%;
    height: 350px;
  }

  .footer__map > div {
    height: 100%;
  }

  .footer__map iframe {
    height: 100%;
  }

  .footer-info {
    width: 100%;
  }
  .other-points .points-mark__name{
    font-size: 6px;
  }
  .other-points .points-mark span{
    font-size: 6px;
    width: 10px;
    height: 10px;
  }
  #reg-1{
    left: 55%;
  }
  #reg-2{
    left: 59.5%;
  }
  .other-points:nth-child(1) {
    top: 6%;
    
    left: 48.5%;
  }

  .other-points:nth-child(2) {
    top: 21%;
    left: 36.5%;
  }

  .other-points:nth-child(3) {
    left: 50.5%;
  }

  .other-points:nth-child(4) {
    left: 67.5%;
  }

  .other-points:nth-child(5) {
    left: 6.5%;
  }

  .other-points:nth-child(6) {
    left: 23.5%;
  }

  .other-points:nth-child(8) {
    left: 61.5%;
  }

  .other-points:nth-child(10) {
    top: 43%;
    left: 84.5%;
  }

  .other-points:nth-child(11) {
    left: 13%;
  }

  .other-points:nth-child(12) {
    left: 35%;
  }

  .other-points:nth-child(13) {
    left: 48.5%;
  }

  .other-points:nth-child(14) {
    left: 56%;
  }

  .other-points:nth-child(15) {
    left: 66.5%;
  }

  .other-points:nth-child(16) {
    left: 73.5%;
  }

  .other-points:nth-child(17) {
    left: 12.5%;
    width: 50px;
  }
}

@media screen and (max-width: 585px) {
  .header__logo img {
    width: 70px;
    height: 32px;
  }

  .header__logo__bg {
    left: 51%;
    top: -43px;
    width: 100%;
  }

  .header__search {
    padding: 5px 10px;
    width: 150px;
  }

  .header__search input {
    font-size: 14px;
  }

  .header__inner {
    padding: 10px 0;
  }

  .mission {
    padding: 35px 0;
  }

  .mission__inner {
    flex-direction: column;
  }

  .mission__item {
    width: 100%;
  }

  .mission__descr {
    font-size: 14px;
  }

  .title-black {
    font-size: 18px;
  }

  .news {
    padding: 35px 0;
  }

  .news-item {
    width: 100%;
    transition-duration: 0.8s !important;
    transition-delay: 0ms !important;
  }

  .news-item__info p {
    font-size: 14px;
  }

  .news__more {
    margin-top: 25px;
  }

  .products {
    padding: 35px 0;
  }

  .products__item {
    width: 100%;
    transition-delay: 0ms !important;
  }

  .products__item__descr {
    font-size: 14px;
  }

  .services {
    padding: 35px 0;
  }

  .services__item {
    width: 100%;
  }

  .services__item__img {
    height: 200px;
  }

  .services__item__descr {
    font-size: 14px;
  }

  .points-list {
    min-width: 91px;
  }

  .points-list li {
    padding: 5px;
  }

  .points-list li a {
    font-size: 8px;
  }

  .geography-map {
    padding: 35px 0;
  }
  #reg-1{
    left: 53%;
  }
  #reg-2{
    left: 57.5%;
  }
  .other-points .points-mark__name{
    display: none;
  }
  .other-points:nth-child(1) {
    left: 54.5%;
    top: 7%;
  }
  .other-points:nth-child(2) {
    left: 41.5%;
    top: 24%;
  }

  .other-points:nth-child(3) {
    top: 25%;
    left: 52.5%;
    width: 30px;
  }

  .other-points:nth-child(4) {
    left: 72.5%;
  }

  .other-points:nth-child(5) {
    left: 12.5%;
    top: 38%;
  }

  .other-points:nth-child(6) {
    left: 28.5%;
    top: 45%;
  }

  .other-points:nth-child(7) {
    top: 53%;
    left: 50.5%;
  }

  .other-points:nth-child(8) {
    top: 44%;
    left: 66.5%;
  }

  .other-points:nth-child(9) {
    top: 44%;
    left: 77%;
    width: 24px;
  }

  .other-points:nth-child(10) {
    top: 45%;
    left: 88.5%;
  }

  .other-points:nth-child(11) {
    top: 72%;
    left: 18%;
  }

  .other-points:nth-child(12) {
    top: 68%;
    left: 41%;
  }

  .other-points:nth-child(13) {
    top: 85%;
    left: 52.5%;
  }

  .other-points:nth-child(14) {
    top: 66%;
    left: 58%;
  }

  .other-points:nth-child(15) {
    top: 64%;
    left: 67.5%;
  }

  .other-points:nth-child(16) {
    top: 64%;
    left: 76.5%;
    width: 30px;
  }

  .other-points:nth-child(17) {
    left: 9.5%;
  }
  .geography-map__item {
    margin-top: 25px;
  }

  .partners {
    padding: 35px 0;
  }

  .partners__items {
    gap: 20px;
  }
  .partners__item__name{
    max-width: 80%;
  }
  .mb-30 {
    margin-bottom: 25px;
  }

  .breadcrumbs {
    padding-top: 85px;
  }

  .about {
    padding-bottom: 35px;
  }

  .about__img {
    height: 200px;
  }

  .about__info {
    margin-top: 25px;
  }

  .about__info p {
    font-size: 14px;
  }

  .jobs {
    padding-bottom: 35px;
  }

  .jobs-item {
    flex-direction: column;
    align-items: center;
  }

  .jobs-item__title {
    font-size: 18px;
    text-align: center;
  }

  .jobs-item__descr {
    text-align: center;
    font-size: 14px;
  }

  .documents {
    padding-bottom: 35px;
  }

  .documents-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .documents-item__img {
    width: 80%;
    height: auto;
  }

  .reviews {
    padding-bottom: 35px;
  }

  .portfolio-item__img {
    height: 200px;
  }

  .portfolio-item__title {
    margin-bottom: 10px;
  }

  .portfolio-item__descr p {
    font-size: 14px;
  }

  .other-products {
    padding: 35px 0;
  }

  .other-products__item {
    width: 100%;
  }

  .product {
    padding-bottom: 35px;
  }

  .product__info img {
    margin-bottom: 25px;
  }

  .product__info p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 18px;
  }

  .product__info h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .page-news .news-item {
    width: 100%;
  }

  .page-news .news-item__img {
    height: 200px;
  }

  .page-news .news-item__descr p {
    font-size: 14px;
  }

  .single-news {
    padding-bottom: 35px;
  }

  .news-content__title {
    font-size: 18px;
  }

  .news-content__descr p {
    font-size: 14px;
    line-height: 18px;
  }

  .contacts {
    padding-bottom: 35px;
  }

  .contacts__map {
    height: 200px;
  }

  .contacts-item__content {
    width: 70%;
  }

  .contacts__form input {
    margin-bottom: 15px;
  }

  .contacts__form textarea {
    margin-bottom: 15px;
  }

  .modal__wrapper .modal {
    width: 90%;
    padding: 25px;
    height: auto;
  }

  .modal__wrapper .modal__title {
    font-size: 20px;
  }

  .footer__menu {
    gap: 12px;
  }

  .footer__menu li a {
    font-size: 8px;
  }

  .footer__nav {
    margin-top: 25px;
  }

  .footer__map {
    height: 200px;
  }

  .footer-contacts__title {
    font-size: 18px;
  }

  .footer-info__title {
    font-size: 18px;
  }

  .footer-contacts__item {
    margin-bottom: 15px;
  }

  .footer__logo img {
    width: 100px;
  }

  .footer__copyright {
    padding: 10px 0;
  }

  .footer__copyright p {
    font-size: 10px;
  }
}

@media screen and (max-width: 400px) {
  .points-mark__name {
    font-size: 8px;
    display: none;
  }

  .points-mark span {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}