@font-face {
  font-family: "Inter";
  src: url("/css/fonts/Inter.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}

:root {
  --font-family: "Inter", sans-serif;

  --zelenyy-praymari: #0b7c12;
  --dark-zelenyy: #09630e;
}
.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.content_page {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1200px;
  color: #131516;
}
html {
  height: 100%;
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #424242;
  height: auto;
}

h1 {
  font-weight: 600;
  font-size: 36px;
  color: var(--dark-zelenyy);
  line-height: normal;
}
h2 {
  font-weight: 500;
  font-size: 36px;
  color: var(--dark-zelenyy);
  line-height: normal;
}
h3 {
  font-weight: 500;
  font-size: 20px;
  color: var(--dark-zelenyy);
  line-height: normal;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.nav {
  padding: 12px 0;

  position: fixed;
  top: 0;

  width: 100%;
  background-color: #fff;
  z-index: 10;

  border-bottom: 1px solid #eaeaea;
}
.nav-up {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;

  border-bottom: 1px solid rgba(11, 124, 18, 0.3);
}
.nav-up-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.nav-logo {
  font-weight: 700;
  font-size: 40px;
  color: var(--zelenyy-praymari);
}
.nav-up-item-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 108%;
  color: #737373;
}
.nav-phone {
  font-weight: 600;
  font-size: 18px;
  line-height: 78%;
  color: #000;

  &:hover {
    text-decoration: underline;
  }
}
.nav-up-item-info {
  .nav-up-item-text {
    margin-bottom: 5px;
  }
}
.nav-up-item-btn {
  border: 1px solid #c5c4c4;
  border-radius: 10px;
  padding: 15px 20px;
  font-weight: 400;
  font-size: 16px;
  color: #424242;

  cursor: pointer;

  transition: all 0.3s ease;

  &:hover {
    background: var(--zelenyy-praymari);
    border: 1px solid var(--zelenyy-praymari);
    color: #fff;
  }
}
.nav-down {
  padding: 15px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-down-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.nav-down-list-item a {
  font-weight: 400;
  font-size: 17px;
  color: #474747;
  transition: all 0.3s ease;

  &:hover {
    color: var(--zelenyy-praymari);
    text-decoration: underline;
  }
}
.nav-down-LK {
  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 10px;

  font-weight: 500;
  font-size: 17px;
  color: var(--zelenyy-praymari);

  transition: all 0.3s ease;

  &:hover {
    color: var(--dark-zelenyy);
  }
}

.hero {
  margin-top: 140px;
  height: 520px;

  padding: 70px 0;

  background-image: url(/img/hero-image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  margin-bottom: 100px;
}
.hero-box {
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.8);

  border: 1px solid #fff;
  border-radius: 25px;
  padding: 50px;

  width: 630px;
  height: 100%;
}
.hero-title {
  margin-bottom: 25px;
}
.hero-text {
  font-weight: 400;
  font-size: 19px;
  line-height: 135%;
  color: #424242;

  margin-bottom: 40px;
}
.hero-btn {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;

  border-radius: 10px;
  padding: 14px 30px;

  background: var(--zelenyy-praymari) !important;
  width: fit-content;

  cursor: pointer;

  transition: all 0.3s ease;

  &:hover {
    background: var(--dark-zelenyy);
  }
}

.news {
  margin-bottom: 100px;

  scroll-margin-top: 150px;
}
.news-title {
  margin-bottom: 30px;
}
.news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.news-bar {
  position: sticky;
  top: 160px;
  min-width: 300px;
  max-width: 300px;
}
.news-bar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 50px;
}
.news-bar-cat-btn {
  border: 1px solid #c5c4c4;
  border-radius: 10px;
  padding: 15px 20px;

  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #1e1e1e;

  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(50% - 5px);
  text-align: center;
  cursor: pointer;

  transition: background 0.3s ease, color 0.3s ease;

  &:hover {
    background: #efefef;
  }

  &:nth-child(3) {
    max-width: 100%;
  }
  &.active {
    border: none;
    background: var(--zelenyy-praymari);
    color: #fff;
    padding: 16px 21px;
  }
}
.news-bar-title {
  font-weight: 400;
  font-size: 17px;
  color: #1e1e1e;

  margin-bottom: 15px;
}
.news-bar-theme {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 50px;
}
.news-bar-theme-btn {
  border: 1px solid #c5c4c4;
  border-radius: 20px;
  padding: 10px 24px;

  font-weight: 400;
  font-size: 17px;
  color: #1e1e1e;

  transition: background 0.3s ease, color 0.3s ease;

  cursor: pointer;

  &:hover {
    background: #efefef;
  }
  &.active {
    padding: 11px 25px;
    &.green {
      background: rgba(11, 124, 18, 0.1);
      color: var(--dark-zelenyy);
      border: none;
    }
    &.gray {
      background: #eaeaea;
      color: #000;
      border: none;
    }
    &.blue {
      background: #a4d3ff;
      color: #004f99;
      border: none;
    }
    &.yellow {
      background: #fee86e;
      color: #1e1e1e;
      border: none;
    }
  }
}
.news-bar-year {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border: 1px solid rgba(197, 196, 196, 0.5);
  border-radius: 10px;
  padding: 14px 15px;

  background: #fff;

  cursor: pointer;

  font-weight: 400;
  font-size: 17px;
  color: #737373;

  position: relative;

  input {
    cursor: pointer;
  }

  svg {
  }
}

.news-bar-year-dropdown {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;

  border: 1px solid rgba(197, 196, 196, 0.5);
  border-radius: 10px;

  overflow: hidden;

  display: none;

  z-index: 100;

  scrollbar-width: thin;
}

.news-bar-year-dropdown-item {
  padding: 14px 15px;
  background: #fff;
  cursor: pointer;
  font-weight: 400;
  font-size: 17px;
  color: #737373;

  transition: all 0.3s ease;

  &:not(:last-child) {
    border-bottom: 1px solid rgba(197, 196, 196, 0.5);
  }

  &:hover {
    background: #efefef;
  }
}
.news-content {
  display: flex;
  flex-direction: column;
  gap: 30px;

  width: 100%;
}
.news-content-item {
  border-bottom: 1px solid #c5c4c4;
  padding: 0px 0px 25px 0px;

  width: 100%;
}
.news-content-item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #000;

  margin-bottom: 10px;
}
.news-content-item-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #000;
  opacity: 0.7;

  margin-bottom: 20px;

  overflow: hidden; /* Скрываем текст, выходящий за пределы контейнера */
  text-overflow: ellipsis; /* Добавляем многоточие в конце обрезанного текста */
  display: -webkit-box; /* Используем экспериментальный вебкит */
  -webkit-line-clamp: 3; /* Ограничиваем количество строк */
  -webkit-box-orient: vertical; /* Ориентация контейнера */
  line-height: 1.35; /* Устанавливаем межстрочный интервал */
  max-height: 4.05em;
}
.news-content-item-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  a {
    font-weight: 400;
    font-size: 17px;
    color: #004f99;
    &:hover {
      text-decoration: underline;
    }
  }
}
.news-content-item-down-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.news-content-item-down-item.mob {
  display: none;
}
.news-content-item-down-item-date {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #000;
  opacity: 0.8;
}
.news-content-item-down-item-theme {
  border-radius: 20px;
  padding: 7px 16px;

  font-weight: 400;
  font-size: 15px;
  &.green {
    background: rgba(11, 124, 18, 0.1);
    color: var(--dark-zelenyy);
  }
  &.gray {
    background: #eaeaea;
    color: #000;
  }
  &.blue {
    background: #a4d3ff;
    color: #004f99;
  }
  &.yellow {
    background: #fee86e;
    color: #1e1e1e;
  }
}

.news-content-btn {
  font-weight: 500;
  font-size: 17px;
  color: #fff;

  border-radius: 10px;
  padding: 14px 30px;
  background: var(--zelenyy-praymari);

  cursor: pointer;
  width: fit-content;

  transition: all 0.3s ease;
  &:hover {
    background: var(--dark-zelenyy);
  }
}

.about {
  margin-bottom: 80px;
  scroll-margin-top: 150px;
}

.about-title {
  margin-bottom: 30px;
}
.about-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #474747;

  max-width: 900px;

  margin-bottom: 40px;
}
.about-tab-title {
  margin-bottom: 20px;
}
.about-tab-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  margin-bottom: 40px;
}
.about-tab-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #1e1e1e;

  border: 1px solid #c5c4c4;
  border-radius: 10px;
  padding: 15px 25px 15px 20px;

  transition: all 0.3s ease;
  &:hover {
    background: #efefef;
  }

  &.active {
    background: var(--zelenyy-praymari);
    color: #fff;
  }
}
.about-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}
#about-content-2 {
  gap: 10px;
  justify-content: space-between;
  align-items: stretch;
}
#about-content-3 {
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
.about-content-map {
  border-radius: 20px;
  max-width: 55%;
  overflow: hidden;
  img {
    width: 100%;
  }
}

.about-content-legend {
  position: sticky;
  top: 160px;
}
.about-content-legend-title {
  margin-bottom: 40px;
}
.about-content-legend-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.about-content-legend-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact {
  padding: 80px 0;
  background: #f8f8f8;

  scroll-margin-top: 150px;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
}
.contact-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;

  max-width: 50%;
  width: 100%;
}
.contact-left-content {
}
.contact-left-title {
  color: #000;

  margin-bottom: 20px;
}
.contact-left-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #474747;
  margin-bottom: 30px;
  a {
    font-weight: 500;
    text-decoration-skip-ink: none;
    color: #004f99;

    &:hover {
      text-decoration: underline;
    }
  }
}
.contact-left-item {
  &:first-child {
  }
}
.contact-left-item-title {
  font-weight: 500;
  font-size: 17px;
  color: #000;
  margin-bottom: 10px;
}
.contact-left-item-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: #474747;

  margin-bottom: 20px;

  &:last-child {
    margin-bottom: 0;
  }
  a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    color: var(--zelenyy-praymari);
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;

    margin-bottom: 20px;
    &:hover {
      text-decoration: underline;
    }
  }
}
.contact-left-img {
  border: 1px solid #eaeaea;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  img {
    width: 100%;
  }
}

.contact-right {
  max-width: 50%;
  width: 100%;
}
.contact-right-info {
  border: 1px solid #eaeaea;
  border-radius: 20px 20px 0 0;
  padding: 40px 40px 80px 40px;

  background: #fff;
}
.contact-right-info-vac {
  border: 1px solid var(--zelenyy-praymari);
  border-radius: 25px;
  padding: 9px 20px;

  font-weight: 400;
  font-size: 15px;
  color: var(--dark-zelenyy);

  width: fit-content;

  margin-bottom: 15px;
}
.contact-right-info-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  color: #000;

  margin-bottom: 10px;
}
.contact-right-info-text {
  a {
    color: #424242;
    text-wrap: nowrap;
    &:hover {
      text-decoration: underline;
    }
  }
}
.contact-right-form {
  border-radius: 30px;
  padding: 40px;
  background: var(--zelenyy-praymari);

  margin-top: -40px;

  button {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px 30px;

    font-weight: 500;
    font-size: 17px;
    color: #fff;

    transition: all 0.3s ease;

    &:hover {
      background: #000;
      border: 1px solid #000;
    }
  }
}
.contact-right-form-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 135%;
  color: #fff;
  margin-bottom: 20px;
}
.contact-right-form-input-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  .contact-right-form-input {
    max-width: 50%;
  }
}
.contact-right-form-input {
  display: flex;
  flex-direction: column;
  gap: 5px;

  margin-bottom: 20px;

  label {
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
    color: #fff;
  }
  input {
    width: 100%;

    border-radius: 5px;
    padding: 13px 15px;
    background: #fff;
  }
  textarea {
    border-radius: 5px;
    padding: 13px 15px;
    background: #fff;
    resize: none;
  }
}
.contact-right-form-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  margin-bottom: 25px;

  input[type="checkbox"] {
    appearance: none; /* Скрываем стандартный чекбокс */
    -webkit-appearance: none; /* Для Safari и Chrome */
    min-width: 16px;
    min-height: 16px;
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    position: relative;

    &:checked {
      background-color: var(--zelenyy-praymari); /* Заливка при checked */
    }

    &:checked::before {
      content: "\2713"; /* Юникод символ галочки */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 12px;
    }

    &:focus-visible {
      outline: 2px solid var(--zelenyy-praymari); /* Добавляем видимый фокус */
    }
  }
  label {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }
  a {
    font-weight: 400;
    font-size: 14px;
    color: #fff;

    &:hover {
      text-decoration: underline;
    }
  }
}

.footer {
  padding: 50px 0;
  background: #1e1e1e;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.footer-wrapper-item {
  max-width: 25%;
  width: 100%;

  &:nth-child(1) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  &:nth-child(2) {
    max-width: 50%;
  }
}
.footer-logo {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #fff;
}
.footer-item-text {
  font-weight: 400;
  font-size: 13px;
  line-height: 108%;
  color: #fff;
}
.footer-text {
  font-weight: 400;
  font-size: 14px;
  color: #e2e2e2;
  opacity: 0.5;

  margin-bottom: 10px;
}
.policy {
  font-weight: 400;
  font-size: 14px;
  color: #e2e2e2;
  opacity: 0.5;
  transition: all 0.3s ease;
  &:hover {
    opacity: 1;
  }
}
.WW_btn {
  opacity: 0.5;
  transition: all 0.3s ease;
  &:hover {
    opacity: 1;
  }
}

.news_detail {
  margin-top: 142px;

  padding: 40px 0 80px;

  .news-content-item-down-item {
    margin-bottom: 30px;
  }
  .news-content-item-down-item-date {
  }
  .news-content-item-down-item-theme {
  }
}

.back {
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #004f99;

  &:hover {
    text-decoration: underline;
  }
}
.news_detail-title {
  color: #000;

  margin-top: 30px;
  margin-bottom: 20px;
}

.news_detail-content {
  margin-bottom: 30px;
  max-width: 80%;

  ol {
    padding-left: 20px;
  }
}
.news_detail-doc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.news_detail-doc-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;

  max-width: calc(100% / 3 - 80px / 3);
  flex-basis: calc(100% / 3 - 80px / 3);

  flex-grow: 1;
  flex-shrink: 1;

  &:hover {
    .news_detail-doc-item-title {
      text-decoration: underline;
    }
  }
}
.news_detail-doc-item-content {
}
.news_detail-doc-item-title {
  font-weight: 500;
  font-size: 16px;
  color: #004f99;
}
.news_detail-doc-item-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: rgba(0, 0, 0, 0.7);
}

.about-content-item {
  width: 50%;

  border-radius: 20px;
  padding: 40px;
  background: #f8f8f8;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;

  .news_detail-doc-item {
    max-width: 100%;
    flex-basis: 100%;

    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}
.about-content-item-text {
  p {
    margin-bottom: 10px;
    &:last-child {
      margin-bottom: 0;
    }
  }
  a {
    font-weight: 400;
    font-size: 17px;
    line-height: 135%;
    color: #474747;

    &:hover {
      text-decoration: underline;
    }
  }
}
.about-content-item-title {
  margin-bottom: 10px;
}

.about-content-item-actual {
  border-radius: 10px;
  padding: 15px 20px 15px 15px;
  background: #fee86e;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #474747;
}

.modal {
  background: rgba(0, 0, 0, 0.7);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 100;
  display: none;
}
.popup {
  position: relative;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 25px;
  max-width: 1000px;
  overflow: hidden;
  display: none;
}
.dostup {
}
.confirmPhone,
.thanks {
  background: #fff;
  padding: 50px 40px;
  border: 1px solid #fff;
  max-width: 450px;
  .popup-wrapper-form-text {
    margin-bottom: 20px;
  }
}
.cookie {
  padding: 20px 35px;
  border: 1px solid #fff;
  max-width: 100%;
  width: 100%;
  background: #fff;

  top: 90%;
  left: 0;

  transform: none;

  .cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #222;

    button {
      border-radius: 10px;
      padding: 15px 30px;
      background: #000;

      font-family: var(--font-family);
      font-weight: 500;
      font-size: 17px;
      color: #fff;
    }
  }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;

  cursor: pointer;
}
.popup-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.popup-wrapper-form {
  border: 1px solid #fff;
  padding: 50px 40px;
  backdrop-filter: blur(7px);
  background: #fff;
}
.popup-wrapper-form-title {
  font-weight: 600;
  font-size: 26px;
  color: var(--dark-zelenyy);

  margin-bottom: 40px;

  line-height: normal;
}
.popup-wrapper-form-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.popup-wrapper-form-item {
  input {
    border: 1px solid #b5b5b5;
    border-radius: 5px;
    padding: 13px 15px;
    width: 100%;

    margin-bottom: 15px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}
.input-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: #848484;
  margin-bottom: 5px;
}
.popup-wrapper-form-item-check {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  input {
    margin-top: 3px;
    width: auto;
    margin-bottom: 0;
    min-width: 18px;
    min-height: 18px;
  }
  label {
    font-weight: 400;
    font-size: 14px;
    color: #474747;

    a {
      font-weight: 400;
      font-size: 14px;
      color: #474747;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.popup-btn {
  border: 1px solid var(--zelenyy-praymari);
  border-radius: 10px;
  padding: 15px 30px;

  font-weight: 500;
  font-size: 17px;
  color: var(--zelenyy-praymari);

  transition: all 0.3s ease;

  &:hover {
    background: var(--zelenyy-praymari);
    color: #fff;
  }
}
.popup-wrapper-img {
  max-width: 60%;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.hero-img {
  display: none;
}

.burger {
  display: none;
}

.menu {
  border: 1px solid #e2e2e2;
  padding: 20px 15px;
  background: #fff;

  position: fixed;
  top: 158px;
  left: 0;

  transform: translateY(-300%);
  opacity: 0;
  z-index: 200;
  width: 100%;

  transition: all 0.3s ease;
  .nav-down-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    .nav-down-list-item a {
      font-size: 18px;
    }
  }
}

#adress-p {
  display: none;
}
#adress-pop {
  display: none;
}
.zoom_02 {
  display: none;
}
.error {
  margin-top: 140px;
  height: calc(100vh - 140px - 180px);
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 80px 0;
  background: #f8f8f8;
}

.error-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.error-wrapper-item {
  span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #000;

    margin-bottom: 7px;
  }
  h2 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 36px;
    color: #000;
    margin-bottom: 30px;
  }

  a {
    background: var(--zelenyy-praymari);

    border-radius: 10px;
    padding: 14px 30px;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #fff;

    display: inline-block;
  }
  img {
    height: 300px;
  }
}
.error-wrapper-item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 135%;
  color: rgba(0, 0, 0, 0.7);

  margin-bottom: 30px;
}

.lk {
  padding: 60px 0;

  margin-top: 140px;

  min-height: calc(100vh - 140px - 180px);
}
.lk-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lk-nav-list-item {
  border: 1px solid #c5c4c4;
  border-radius: 30px;
  padding: 10px 24px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  color: #1e1e1e;

  transition: all 0.3s ease;
  white-space: nowrap;

  &:hover {
    background: var(--zelenyy-praymari);
    color: #fff;
  }

  &.active {
    background: var(--zelenyy-praymari);
    color: #fff;
    border: 1px solid var(--zelenyy-praymari);
  }
}

/* Таблица в лк */
.table {
  margin-bottom: 20px;

  &.feedback {
    .table-header {
      display: flex;
      align-items: center;

      border-bottom: 1px solid rgba(181, 181, 181, 0.5);
    }
    .table-header-item {
      padding: 10px;

      font-family: var(--font-family);
      font-weight: 600;
      font-size: 16px;
      line-height: 120%;
      color: #222;

      &:nth-child(1) {
        width: 20%;
      }
      &:nth-child(2) {
        width: 30%;
      }
      &:nth-child(3) {
        width: 30%;
      }
      &:nth-child(4) {
        width: 20%;
        text-align: center;
      }
    }
    .table-list {
      display: flex;
      flex-direction: column;
    }
    .table-list-row {
      display: flex;
      align-items: center;

      border-bottom: 1px solid rgba(181, 181, 181, 0.5);

      height: 56px;

      transition: all 0.3s ease;

      cursor: pointer;
      &:hover {
        background: #efefef;
      }
    }
    .table-list-row-item {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 16px;
      line-height: 120%;
      color: #222;

      padding: 10px;

      &:nth-child(1) {
        width: 20%;
      }
      &:nth-child(2) {
        width: 30%;
      }
      &:nth-child(3) {
        width: 30%;
      }
      &:nth-child(4) {
        width: 20%;
        text-align: center;
      }
    }
  }
}

.form_profile {
  max-width: 500px;
}
.form_profile-up {
  margin-bottom: 40px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_profile-up-item {
  &.phone {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
.form_profile-input {
  border: 1px solid #b5b5b5;
  border-radius: 5px;
  padding: 14px 15px;

  display: flex;
  align-items: center;
  gap: 5px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;

  input {
    width: 100%;
  }

  &.phone {
    width: 190px;
  }
}

.form_profile-up-item-flex-item:nth-child(2) {
  display: flex;
  align-items: end;
  gap: 10px;
}

.label_up {
  font-weight: 400;
  font-size: 15px;
  color: #1e1e1e;
  margin-bottom: 5px;
}

.empty_btn {
  border: 1px solid #c5c4c4;
  border-radius: 10px;
  padding: 13px 20px;

  font-weight: 400;
  font-size: 16px;
  color: #000;

  width: fit-content;

  cursor: pointer;
  transition: all 0.3s ease;

  &:hover {
    background: #f8f8f8;
  }
}

.form_info {
  margin-top: 10px;

  border-radius: 5px;
  padding: 15px 10px;

  background: #f8f8f8;

  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #474747;

  position: relative;
}

.form_info-close {
  position: absolute;

  top: 10px;
  right: 10px;
  cursor: pointer;
}
.form-title {
  margin-bottom: 5px;
}

.form_profile-down-item {
  margin: 20px 0;

  display: flex;
  flex-direction: column;
  gap: 10px;

  .form_profile-input {
    width: 90%;
  }
}
.form_profile-down-item-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form_eye {
  cursor: pointer;
  transition: all 0.3s ease;
  &:hover {
    filter: brightness(0.8);
  }
}
.form_btn {
  width: 100%;
  text-align: center;

  &:disabled {
    opacity: 0.3;
  }
}

.feedback_list-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;

  display: none;
}
.feedback_list-item {
  border-radius: 20px;
  padding: 20px;

  background: #f8f8f8;

  cursor: pointer;

  transition: all 0.3s ease;

  &:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
}
.feedback_list-item-title {
  color: #000;

  margin-bottom: 20px;
}
.feedback_list-item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #222;

  margin-bottom: 20px;
}
.feedback_list-item-flex {
  display: flex;
  justify-content: space-between;

  .feedback_list-item-text {
    text-align: end;
    margin-bottom: 0;
  }
}
.feedback_list-item-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #222;
}

.vote_btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  color: #004f99;

  cursor: pointer;

  transition: all 0.3s ease;

  &:hover {
    filter: brightness(0.8);
  }
}

.vote_btn_complete {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  color: #0b7c12;

  cursor: pointer;

  transition: all 0.3s ease;
}

.popup.vote {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 40px;
}
.vote-form-questions {
  border-radius: 20px;
  padding: 20px 30px 20px 20px;

  background: #f8f8f8;

  display: flex;
  flex-direction: column;
  gap: 20px;

  overflow-y: auto;

  margin-bottom: 30px;

  max-height: 450px;
}
.vote-form-questions-item {
}
.vote-form-questions-item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  color: #222;

  margin-bottom: 20px;
}
.vote-form-questions-item-answers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vote-form-questions-item-answers-item {
  font-weight: 400;
  font-size: 15px;
  color: #474747;

  display: inline-flex; /* Align radio button and text nicely */
  align-items: center;
  cursor: pointer;
  margin-right: 15px;

  input {
    display: none;
  }

  .custom-radio {
    height: 18px; /* Adjust size as needed */
    width: 18px; /* Adjust size as needed */
    margin-right: 8px; /* Space between the radio circle and text */
    border: 2px solid #ccc; /* Light gray border for unchecked state */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block;
    position: relative; /* Needed for the inner dot */
  }

  /* Style the inner dot when the radio button is checked */
  input:checked ~ .custom-radio {
    border-color: #008000; /* Green border for checked state */
  }

  input:checked ~ .custom-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; /* Size of the inner green dot */
    height: 10px; /* Size of the inner green dot */
    border-radius: 50%;
    background-color: #008000; /* Green color for the inner dot */
  }

  /* Optional: Style for when the label is hovered */
  .radio-label:hover .custom-radio {
    border-color: #aaa; /* Slightly darker border on hover */
  }

  /* Optional: Style for when the label is focused (e.g., via keyboard navigation) */
  input:focus ~ .custom-radio {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.3); /* A subtle green glow */
  }
}

.admin-actions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  width: 100%;

  flex-wrap: nowrap;

  button {
    margin: 0;
  }
}
.confirm_btn {
  font-weight: 500;
  font-size: 17px;

  color: var(--zelenyy-praymari);

  border: 1px solid var(--zelenyy-praymari);
  border-radius: 10px;
  padding: 15px 30px;

  width: 100%;

  text-align: center;

  cursor: pointer;

  background: #fff;

  transition: 0.3s all ease;

  &:hover {
    color: #fff;
    background: var(--zelenyy-praymari);
  }
}
.cancel_btn {
  border-radius: 10px;
  padding: 15px 30px;

  background: var(--zelenyy-praymari);

  width: 100%;

  text-align: center;
  cursor: pointer;

  font-weight: 500;
  font-size: 17px;
  color: #fff;
  border: 1px solid var(--zelenyy-praymari);

  transition: 0.3s all ease;

  &:hover {
    background: var(--dark-zelenyy);
  }
}

.addNews-title {
  margin-bottom: 30px;
}

.admin-popup {
  max-width: 450px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 25px;

  padding: 40px;

  background: #fff;
}

.admin-backdrop {
  filter: blur(5px);
}

.confirm_btn {
  font-weight: 500;
  font-size: 17px;

  color: var(--zelenyy-praymari);

  border: 1px solid var(--zelenyy-praymari);
  border-radius: 10px;
  padding: 15px 30px;

  width: 100%;

  text-align: center;

  cursor: pointer;

  background: #fff;

  transition: 0.3s all ease;

  &:hover {
    color: #fff;
    background: var(--zelenyy-praymari);
  }
}
.cancel_btn {
  border-radius: 10px;
  padding: 15px 30px;

  background: var(--zelenyy-praymari);

  width: 100%;

  text-align: center;
  cursor: pointer;

  font-weight: 500;
  font-size: 17px;
  color: #fff;
  border: 1px solid var(--zelenyy-praymari);

  transition: 0.3s all ease;

  &:hover {
    background: var(--dark-zelenyy);
  }
}
.admin-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  color: #09630e;

  text-align: left;

  padding: 0;
}
.admin-content {
  padding: 0 !important;
  padding-top: 20px !important;
  text-align: left;
}
.admin-actions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  width: 100%;

  flex-wrap: nowrap;

  button {
    margin: 0;
  }
}

.addFeedback {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 40px;

  .admin-actions {
    margin-top: 20px;
  }

  .addFile {
    margin-bottom: 20px;

    width: fit-content;
  }

  .addNews-form-input_flex-item {
    width: 100%;

    &:nth-child(4) {
      width: 100%;
      max-width: 100%;
    }
  }
}

.addNews-form-input_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  gap: 20px;

  margin-bottom: 10px;
}
.form_input-textarea {
  border: 1px solid #b5b5b5;
  border-radius: 10px;
  padding: 14px 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  resize: vertical;

  width: 100%;

  margin-bottom: 30px;

  max-height: 300px;

  input {
    width: 100%;
  }
}
.addNews-form-input_flex-item {
  .form_input {
    border: 1px solid #b5b5b5;
    border-radius: 10px;
    padding: 14px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    input {
      width: 100%;
    }
  }
  &:nth-child(1) {
    max-width: 100%;
    width: 100%;
  }
  &:nth-child(2) {
    max-width: 100%;
    width: 100%;
  }
  &:nth-child(3) {
    max-width: calc(100% / 3 - (40px / 3));
    width: 100%;
  }
  &:nth-child(4) {
    width: 100%;

    max-width: calc(100% / 3 - (40px / 3));
  }
  &:nth-child(5) {
    width: 100%;

    max-width: calc(100% / 3 - (40px / 3));
  }
}

.lk-nav-out {
  margin-top: 20px;
}
.lk-nav-out-btn {
  padding: 15px 20px;
  width: 100%;

  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  color: #000;
  opacity: 0.7;

  transition: 0.3s all ease;

  &:hover {
    opacity: 1;
  }
}

.lk {
  .news-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .lk-nav-out-btn {
      display: none;
    }
  }

  .news-bar {
    .page-up-content-right {
      display: none;
    }
  }
}
.page-up-content-right {
  border-radius: 10px;
  padding: 15px;

  background: var(--zelenyy-praymari);
  color: #fff;
  font-size: 17px;
  transition: all 0.3s ease;

  &:hover {
    background: var(--dark-zelenyy);
  }
}

.btn_with_img {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.fileInputWrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.input_hidden {
  display: none;
}

.file_load_contain {
  display: none;
  border: 1px solid #b5b5b5;
  color: var(--zelenyy-praymari);
  justify-content: space-between;
  background: #ffffff;
  text-align: start;
  padding: 13px 15px;
  border-radius: 5px;
}

.file_load_contain a {
  color: var(--zelenyy-praymari);
  text-decoration: underline;
  max-width: 250px;
  overflow: hidden;
}

.file_load {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  border: none;
  color: var(--zelenyy-praymari);
  justify-content: space-between;
  background: transparent;
  text-align: start;
  width: max-content;
  padding: 13px 15px;
}
.file_load:hover {
  background: #ffffff;
}

.text_hidden {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.lk_btn {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--dark-zelenyy);
  cursor: pointer;
}

.modal__content {
  position: fixed;
  width: 100%;
  height: max-content;
  background: #ffffff;
  border-radius: 10px;
  z-index: 999;
  display: none;
  flex-direction: column;
  max-height: 722px;
  overflow: auto;
  border: 1px solid #ffffff;
  backdrop-filter: blur(7px);
  max-width: 550px;
  padding: 40px;
}

.admin_modal_content {
  box-shadow: 4px 6px 6.8px 0px #0000001f;
  background: #f9f9f9;
  max-width: 550px !important;
}

.modal__content .form_input {
  input {
    border: 1px solid #b5b5b5;
    border-radius: 10px;
    padding: 14px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.modal_login_title {
  font-size: 24px;
  font-weight: 600;
}

.modal_form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.registration_block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.error_input {
  border: 1px solid #c91212 !important;
}
.error__text {
  display: none;
  color: #ff6c6c;
  margin-top: 10px;
}

.password-contain {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.password-contain__bottom {
  display: flex;
  justify-content: space-between;
}

.forgot_pass {
  color: #004f99;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.modal__content_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.password_input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.view_pass {
  width: 29px;
  height: 29px;
  background: url(/img/mdi_eye.svg) center / contain no-repeat;
}
.view_pass.active {
  background: url(/img/mdi_eye_active.svg) center / contain no-repeat;
}

.dropdown {
  position: relative;
}

.dropdown_icon {
  max-width: 87px;
}

.dropdown__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid #b5b5b5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown__value {
  padding: 14px 15px;
  cursor: pointer;
}

.dropdown__value_img {
  width: 30px;
  height: 30px;
}

.dropdown__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  height: max-content;
  transform: rotate(0deg) translateY(-50%);
}

.dropdown__arrow.active {
  transform: rotate(180deg) translateY(50%);
}

.dropdown__contain {
  position: absolute;
  top: 50px;
  left: 0;
  border-radius: 10px;
  border: 1px solid #c5c4c480;
  overflow: auto;
  display: none;
  width: 100%;
  z-index: 9;
  background: #ffffff;
  max-height: 400px;
}

.dropdown__contain.open {
  display: block;
}

.dropdown__contain .dropdown__contain_item {
  cursor: pointer;
  line-height: 135%;
  font-size: 17px;
  border-bottom: 1px solid #c5c4c480;
  padding: 10px 15px;
}
.dropdown__contain_item:hover {
  background: #efefef;
}

.dropdown__contain_item.active {
  color: var(--dark-zelenyy);
}

.dropdown__contain_item:last-child {
  border-bottom: none;
}

.dropdown_filter {
  top: 20px;
  border-radius: 0 0 10px 10px;
  min-width: max-content;
}

.vote_list,
.news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.desctop { }
.mobile {
  display: none;
 }