@charset "UTF-8";
@import "nuled.css";
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Gilroy;
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
}

img {
  display: block;
}

/* Базовая настройка */
.animate-on-scroll {
  opacity: 0;
  transition: all 1.2s ease;
  will-change: transform, opacity;
}

/* ЭФФЕКТЫ ДЛЯ h1 */
.slide-from-left {
  transform: translateX(-15%);
}

.slide-from-right {
  transform: translateX(15%);
}

.slide-from-top {
  transform: translateY(-20%);
}

.slide-from-bottom {
  transform: translateY(20%);
}

/* ЭФФЕКТЫ ДЛЯ БЛОКОВ */
.zoom-in {
  transform: scale(0.9);
}

.flip-in-x {
  transform: rotateX(90deg);
  transform-origin: center;
}

.flip-in-y {
  transform: rotateY(90deg);
  transform-origin: center;
}

.fade-up {
  transform: translateY(15%);
}

.fade-down {
  transform: translateY(-15%);
}

.slide-left {
  transform: translateX(-15%);
}

.slide-right {
  transform: translateX(15%);
}

.grow-in {
  transform: scale(0);
}

/* При появлении в зоне видимости */
.animate-on-scroll.animate {
  opacity: 1;
  transform: none;
  filter: none;
}

.header {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 20px 40px;
}

.header__top {
  max-width: 1432px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__top img {
  width: 239px;
  height: 66px;
}
.header__top a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 3px;
  background-color: rgb(1, 55, 159);
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  border-top: 2px solid #01379F;
  border-bottom: 2px solid #01379F;
}
.header__top a:hover {
  border-top: 2px solid rgb(1, 55, 159);
  border-bottom: 2px solid rgb(1, 55, 159);
  color: rgb(1, 55, 159);
  font-weight: 600;
  background-color: rgb(255, 255, 255);
  transform: scale(0.95);
  transition: 0.15s all;
}

@media (max-width: 685px) {
  .header__button {
    display: none;
  }
  .header {
    background-color: #CECEF0;
  }
}
@media (max-width: 400px) {
  .header {
    padding: 20px;
  }
  .header__top img {
    width: 119px;
    height: 33px;
  }
}
/* Бургер */
.burger__mobile {
  display: none;
}

.burger {
  width: 44px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

.burger span {
  display: block;
  width: 44px;
  height: 4px;
  background: rgb(0, 0, 0);
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}

/* Анимация превращения */
.burger.active span {
  background: #fff;
}

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

.burger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Чтобы линии сошлись по центру */
.burger.active span:nth-child(1),
.burger.active span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgb(1, 55, 159);
  color: #fff;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}
.mobile-menu.active {
  right: 0;
}

/* Кнопка крестик внутри меню */
.menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s;
  z-index: 1001;
}

.menu-close:hover {
  opacity: 0.7;
}

/* Ссылки */
.mobile-menu ul {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s;
}
.mobile-menu a:hover {
  opacity: 0.7;
}

@media (max-width: 980px) {
  .burger__mobile {
    display: block;
  }
}
.navigatyon {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 20px 40px;
  background-color: rgb(1, 55, 159);
}

.navigatyon__link {
  display: flex;
  justify-content: flex-start;
  gap: 46px;
}
.navigatyon__link a {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0%;
  text-align: center;
  text-shadow: 1px 1px 1px black;
}
.navigatyon__link a:hover {
  transform: scale(0.95);
  transition: 0.15s all;
  color: rgb(204, 201, 201);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .navigatyon__link {
    gap: 20px;
  }
}
@media (max-width: 980px) {
  .navigatyon__link {
    display: none;
  }
  .navigatyon {
    padding: 13px 0;
  }
}
.top__content {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 53px 40px 104px 40px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.top__content p {
  color: rgb(0, 0, 0);
  font-size: clamp(0.875rem, 0.75rem + 0.67vw, 1.375rem);
  font-weight: 500;
  line-height: 120%;
  text-align: left;
}

.top__content-info {
  width: 948px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top__content-info h1 {
  color: rgb(0, 0, 0);
  font-size: clamp(1.125rem, 0.781rem + 1.83vw, 2.5rem);
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.top__content-mesages {
  width: 464px;
  height: auto;
  padding: 40px 33px;
  border-radius: 4px;
  background-color: #D8D7E4;
}
.top__content-mesages h3 {
  color: rgb(0, 0, 0);
  font-size: clamp(1.125rem, 1.031rem + 0.5vw, 1.5rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.content-info__top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
}
.content-info__top h4 {
  color: rgb(0, 0, 0);
  font-size: clamp(0.75rem, 0.594rem + 0.83vw, 1.375rem);
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  text-transform: uppercase;
}

.blue {
  width: 101px;
  height: 22px;
  background-color: rgb(1, 55, 159);
}

.content-info__title2 {
  display: none;
}

@media (max-width: 1080px) {
  .top__content {
    display: block;
    padding: 36px 5px 78px 5px;
  }
  .top__content p {
    text-align: center;
  }
  .content-info__title1 {
    display: none;
  }
  .content-info__title2 {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .top__content-info {
    width: 90%;
    margin: 0 auto;
  }
  .top__content-info h1 {
    text-align: center;
  }
  .top__content-mesages {
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 0;
  }
}
@media (max-width: 600px) {
  .top__content-info {
    width: 98%;
  }
  .top__content-mesages {
    width: 100%;
  }
  .content-info__title2 {
    width: 98%;
  }
}
@media (max-width: 440px) {
  .content-info__top {
    gap: 18px;
  }
  .blue {
    width: 51px;
    height: 16px;
  }
}
/* FORM - начало */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* расстояние между строками */
  width: 400px;
  font-family: Arial, sans-serif;
}
.contact-form .form-row {
  display: flex;
  gap: 6px; /* расстояние между полями в первой строке */
  /* Первая строка (имя + фамилия) */
  /* Остальные строки (email, телефон) */
}
.contact-form .form-row:nth-child(1) input:nth-child(1) {
  width: 181px;
  height: 50px;
}
.contact-form .form-row:nth-child(1) input:nth-child(2) {
  width: 213px;
  height: 50px;
}
.contact-form .form-row:nth-child(2) input, .contact-form .form-row:nth-child(3) input {
  width: 400px;
  height: 50px;
}
.contact-form input {
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus {
  border-color: rgb(1, 55, 159);
}
.contact-form .submit-btn {
  width: 400px;
  height: 50px;
  background: rgb(244, 180, 0);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 10px;
}
.contact-form .submit-btn:hover {
  opacity: 0.8;
  transform: scale(0.97);
  transition: 0.15s all;
}

/* FORM - конец */
@media (max-width: 1080px) {
  .contact-form {
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  .contact-form {
    width: 305px;
  }
  .contact-form .form-row {
    /* Первая строка (имя + фамилия) */
    /* Остальные строки (email, телефон) */
  }
  .contact-form .form-row:nth-child(1) input:nth-child(1) {
    width: 148px;
    height: 36px;
  }
  .contact-form .form-row:nth-child(1) input:nth-child(2) {
    width: 148px;
    height: 36px;
  }
  .contact-form .form-row:nth-child(2) input, .contact-form .form-row:nth-child(3) input {
    width: 305px;
    height: 36px;
  }
  .contact-form .submit-btn {
    width: 305px;
    height: 44px;
    background-color: rgb(56, 88, 245);
    color: #fff;
  }
}
@media (max-width: 350px) {
  .contact-form {
    width: 300px;
  }
  .contact-form .form-row {
    /* Первая строка (имя + фамилия) */
    /* Остальные строки (email, телефон) */
  }
  .contact-form .form-row:nth-child(1) input:nth-child(1) {
    width: 146px;
    height: 36px;
  }
  .contact-form .form-row:nth-child(1) input:nth-child(2) {
    width: 146px;
    height: 36px;
  }
  .contact-form .form-row:nth-child(2) input, .contact-form .form-row:nth-child(3) input {
    width: 300px;
    height: 36px;
  }
  .contact-form .submit-btn {
    width: 300px;
    height: 44px;
    background-color: rgb(56, 88, 245);
    color: #fff;
  }
}
.kard {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 100px 40px;
}

.kard-grid {
  display: grid;
  grid-template-columns: repeat(4, 343px);
  justify-content: center;
  gap: 20px;
}

.kard-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0px 0px 20px 0px;
  box-sizing: border-box;
  border: 1px solid rgba(193, 193, 193, 0.7);
  border-radius: 3px;
}
.kard-item img {
  width: 100%;
  max-height: 322px;
}
.kard-item h4 {
  color: rgb(1, 55, 159);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.kard-item p {
  color: rgb(1, 55, 159);
  font-size: clamp(0.875rem, 0.813rem + 0.33vw, 1.125rem);
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
}

.kard-item__title {
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 1450px) {
  .kard-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 1300px) {
  .kard-grid {
    display: grid;
    grid-template-columns: repeat(4, 270px);
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .kard-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  .kard {
    padding: 50px 10px;
  }
  .kard-item img {
    width: 100%;
    max-height: 370px;
  }
}
@media (max-width: 600px) {
  .kard-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .kard-item {
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
  }
}
.title__content {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  background: rgb(231, 232, 242);
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.title__content h2 {
  color: rgb(1, 55, 159);
  font-size: clamp(1.875rem, 1.719rem + 0.83vw, 2.5rem);
  font-weight: 400;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
}
.title__content p {
  color: rgb(1, 55, 159);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.title__content a {
  display: block;
  display: flex;
  width: 60%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 3px;
  background: rgb(1, 55, 159);
  color: rgb(255, 255, 255);
  font-size: clamp(1rem, 0.938rem + 0.33vw, 1.25rem);
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.title__content a:hover {
  border-top: 2px solid rgb(1, 55, 159);
  border-bottom: 2px solid rgb(1, 55, 159);
  background-color: #fff;
  color: rgb(1, 55, 159);
  transform: scale(0.95);
  transition: 0.15s all;
}

@media (max-width: 950px) {
  .title__content a {
    width: 80%;
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .title__content a {
    width: 90%;
    padding: 10px;
  }
}
@media (max-width: 450px) {
  .title__content a {
    width: 100%;
    padding: 10px;
  }
  .title__content {
    padding: 50px 5px;
  }
}
.kards__title {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 100px 40px;
}

.kards__grid {
  display: grid;
  grid-template-columns: repeat(2, 705px);
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: stretch; /* 👈 заставляем карточки растягиваться по высоте строки */
  gap: 20px;
}

.kards__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 👈 чтобы контент распределялся равномерно */
  align-items: flex-start;
  background: rgb(231, 232, 242);
  height: 100%; /* 👈 важно: карточка занимает всю высоту строки */
  box-sizing: border-box;
  padding-bottom: 40px;
}
.kards__item img {
  width: 100%;
  max-height: 338px;
  margin-bottom: 31px;
  -o-object-fit: cover;
     object-fit: cover;
}
.kards__item h4 {
  color: rgb(1, 55, 159);
  font-size: clamp(1.25rem, 1.188rem + 0.33vw, 1.5rem);
  font-weight: 700;
  line-height: 29px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 31px;
}
.kards__item p {
  color: rgb(1, 55, 159);
  font-size: clamp(1rem, 0.969rem + 0.17vw, 1.125rem);
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  margin-bottom: 0;
  flex-grow: 1; /* 👈 текст занимает всё оставшееся место */
}

@media (max-width: 1500px) {
  .kards__grid {
    display: grid;
    grid-template-columns: repeat(2, 650px);
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
}
@media (max-width: 1350px) {
  .kards__grid {
    display: grid;
    grid-template-columns: repeat(2, 550px);
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: start;
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .kards__grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .kards__item {
    width: 100%;
    max-width: 705px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .kards__grid {
    padding: 60px 20px;
  }
  .kards__item {
    max-width: 100%;
    font-size: 16px;
    padding: 15px;
  }
  .kards__title {
    padding: 20px 5px;
  }
}
.faq {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 100px 40px;
}

.faq__info {
  max-width: 1432px;
  height: auto;
  margin: 0 auto;
}
.faq__info h3 {
  color: rgb(56, 56, 56);
  font-size: clamp(1.563rem, 1.297rem + 1.42vw, 2.625rem);
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}
.faq__info h4 {
  color: rgb(8, 37, 124);
  font-size: clamp(1.375rem, 1.281rem + 0.5vw, 1.75rem);
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 28px;
}
.faq__info p {
  color: rgb(0, 0, 0);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 40px;
}

.faq__line {
  width: 100%;
  height: 1px;
  background-color: rgb(158, 158, 158);
  margin-top: 16px;
  margin-bottom: 52px;
}

@media (max-width: 600px) {
  .faq {
    padding: 30px 20px;
  }
  .faq__line {
    margin-bottom: 25px;
  }
  .faq__info h4 {
    margin-bottom: 14px;
  }
  .faq__info p {
    margin-bottom: 20px;
  }
}
.invested {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 100px 40px;
  background: rgb(231, 232, 242);
}

.invested__info {
  max-width: 1432px;
  height: auto;
  margin: 0 auto;
}
.invested__info h3 {
  color: rgb(1, 55, 159);
  font-size: clamp(1.563rem, 1.297rem + 1.42vw, 2.625rem);
  font-weight: 500;
  line-height: 130%;
  text-align: left;
  text-transform: uppercase;
}

.invested__line {
  width: 100%;
  height: 1px;
  background-color: rgb(158, 158, 158);
  margin-top: 16px;
  margin-bottom: 40px;
}

.invested__grid {
  max-width: 1432px;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 343px);
  grid-template-rows: auto auto;
  justify-content: center; /* выравнивание сетки по центру */
  align-items: stretch; /* 👈 одинаковая высота карточек в строке */
  gap: 20px;
  padding: 40px 0;
}

.invested__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%; /* 👈 карточка растягивается по высоте строки */
  padding: 20px 3px;
  border: 1px solid rgba(193, 193, 193, 0.7);
  border-radius: 3px;
}
.invested__item h5 {
  color: rgb(1, 55, 159);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.invested__item p {
  color: rgb(1, 55, 159);
  font-size: clamp(1rem, 0.969rem + 0.17vw, 1.125rem);
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
}
.invested__item:hover {
  background-color: aliceblue;
}

@media (max-width: 1480px) {
  .invested__grid {
    grid-template-columns: repeat(4, 300px);
  }
}
@media (max-width: 1300px) {
  .invested__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .invested__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .invested__grid {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }
  .invested__item {
    max-width: 100%;
    font-size: 16px;
    padding: 15px;
  }
  .invested {
    padding: 30px 10px;
  }
}
.pozityon {
  max-width: 1512px;
  height: auto;
  margin: 0 auto;
  padding: 100px 40px;
}

.pozityon__bloks {
  position: relative;
  max-width: 1432px;
  height: 878px;
  margin: 0 auto;
}
.pozityon__bloks img {
  display: block;
  position: absolute;
  right: 0;
  top: 62%;
  width: 35%;
  max-height: 333px;
  border-radius: 3px;
  z-index: 1;
}

.pozityon__bloks-info {
  width: 91%;
  height: auto;
  padding: 120px;
  border-radius: 3px;
  background: rgb(2, 120, 246);
  position: absolute;
  top: 0;
  left: 0;
}
.pozityon__bloks-info h2 {
  color: rgb(255, 255, 255);
  font-size: clamp(1.25rem, 1.125rem + 0.67vw, 1.75rem);
  font-weight: 400;
  line-height: 135%;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.pozityon__bloks-info p {
  color: rgb(255, 255, 255);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 400;
  line-height: 135%;
  text-align: left;
  margin-bottom: 40px;
}
.pozityon__bloks-info a {
  display: block;
  max-width: 500px;
  padding: 21px 88px;
  background-color: azure;
  border-radius: 3px;
  border-top: 1px solid #0278F6;
  border-bottom: 1px solid #0278F6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: clamp(1.125rem, 1.094rem + 0.17vw, 1.25rem);
  font-weight: 400;
  line-height: 135%;
  text-align: center;
}
.pozityon__bloks-info a:hover {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  color: white;
  background-color: #0278F6;
  transform: scale(0.95);
  transition: 0.15s all;
}

@media (max-width: 1100px) {
  .pozityon {
    padding: 30px 10px;
  }
  .pozityon__bloks-info a {
    padding: 20px;
  }
}
@media (max-width: 1000px) {
  .pozityon__bloks img {
    top: 82%;
    width: 25%;
    max-height: 200px;
  }
}
@media (max-width: 800px) {
  .pozityon__bloks-info {
    position: relative;
    width: 100%;
    padding: 20px;
  }
  .pozityon__bloks {
    height: auto;
  }
  .pozityon__bloks img {
    position: relative;
    width: 60%;
    max-height: 333px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .pozityon__bloks img {
    position: relative;
    width: 90%;
    max-height: 333px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pozityon__bloks-info a {
    padding: 7px;
  }
}/*# sourceMappingURL=style.css.map */