@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url(../font/Roboto-Light.ttf) format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/Roboto-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/Roboto-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}
@font-face {
  font-family: "Roboto";
  src: url(../font/Roboto-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
}
@font-face {
  font-family: "Inter";
  src: url(../font/Inter-SemiBold.ttf) format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
}
@font-face {
  font-family: "Inter";
  src: url(../font/Inter-Medium.ttf) format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
}
@font-face {
  font-family: "Inter";
  src: url(../font/Inter-Regular.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 130%;
  font-weight: 400;
  color: #173F37;
}

.bodyStopScroll {
  /*overflow: hidden;*/
  height: 100vh;
}

button {
  outline: none;
  border: none;
  padding: 0;
  font-family: "Roboto", sans-serif;
  transition: 0.3s all;
}
button:hover {
  cursor: pointer;
}

input, textarea, select, button {
  border: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  transition: 0.3s all;
  caret-color: #1F2023;
}

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

li {
  transition: 0.3s all;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s all;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.justify-start {
  justify-content: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.align-start {
  align-items: start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-column {
  flex-direction: column;
}

.show {
  display: block !important;
}

.w-full {
  width: 100%;
}

.info-box p {
	text-align: justify;
}
.relative {
  position: relative;
}

.w-40 {
  width: 39%;
}

.w-60 {
  width: 60%;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.mt24 {
  margin-top: 24px;
}

.mt61 {
  margin-top: 61px;
}

.container {
  max-width: 1380px;
  padding: 0 20px;
  margin: 0 auto;
}

.input-box,
.text-box {
  position: relative;
  margin-bottom: 8px;
}
.input-box .form-inp,
.input-box .form-text,
.text-box .form-inp,
.text-box .form-text {
  width: 100%;
  height: 45px;
  border-radius: 4px;
  border: 1px solid rgba(23, 63, 55, 0.1019607843);
  padding: 12px;
  font-size: 14px;
  background: transparent;
  font-weight: 500;
  color: #173f37;
}
.input-box .form-inp:focus,
.input-box .form-text:focus,
.text-box .form-inp:focus,
.text-box .form-text:focus {
  border-color: #173F37;
}
.input-box .form-text,
.text-box .form-text {
  padding: 18px 24px;
  border-radius: 28px 28px 0 28px;
  height: 120px;
  margin: 16px 0;
}
.input-box .test,
.text-box .test {
  position: absolute;
  right: 12px;
  top: 12px;
  display: none;
}
.input-box .error,
.text-box .error {
  display: block !important;
}
.input-box .error img:first-child,
.text-box .error img:first-child {
  display: none;
}
.input-box .error img:last-child,
.text-box .error img:last-child {
  display: block;
}

.text-box {
  margin-bottom: 0;
}
.text-box .form-text {
  height: 133px;
  border-radius: 4px;
  margin: 0;
  resize: none;
  padding: 12px;
  padding-bottom: 100px;
}

.success {
  display: block !important;
}
.success img:first-child {
  display: block;
}
.success img:last-child {
  display: none;
}

.check-box {
  font-size: 14px;
  line-height: 15px;
  color: #173f37;
  margin: 24px 0;
}
.check-box a {
  text-decoration: underline;
  display: block;
  margin-left: 3px;
}
.check-box label {
  display: flex;
  flex-wrap: wrap;
}
.check-box input {
  appearance: none;
  min-width: 17px;
  height: 17px;
  background-image: url(../img/svg/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 8px;
  cursor: pointer;
}
.check-box input:checked {
  background-image: url(../img/svg/checked.svg);
}

.select {
  width: 100%;
  position: relative;
}
.select-head {
  width: 100%;
  height: 47px;
  border-radius: 4px;
  border: 0.5px solid rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  padding: 16px;
  color: #312C24;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
}
main .posts .post-sidebar .mob_pro-btn {
    display: none;
  }
.select-head span {
  display: inline-block;
  margin-right: 16px;
}
.select-head span:last-child {
  margin-right: 5px;
}
.select-head .select-active {
  color: #131313;
}
.select .options {
  position: absolute;
  top: 95%;
  right: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  z-index: 5;
  display: none;
  padding: 0 16px 8px 16px;
}
.select .options .option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}
.select .options .option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 80%;
}
.select .options .option label input {
  appearance: none;
  width: 17px;
  height: 17px;
  background-image: url(../img/svg/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  cursor: pointer;
}
.select .options .option label input:checked {
  background-image: url(../img/svg/checked.svg);
}
.select .options .option span {
  color: #8f8d8b;
}

.showSelect .select-head {
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}
.showSelect .select-head svg {
  transform: rotate(180deg);
}
.showSelect .options {
  display: block;
}

.btn {
  min-width: 89px;
  height: 33px;
  background: #173F37;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  padding: 0 12px;
  font-size: 18px;
  font-weight: 500;
}
.btn:hover {
  background: #4f9587;
}

.link-btn {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #173F37;
  display: inline-block;
}
.link-btn:hover {
  color: #000;
  opacity: 0.8;
}

.title-text {
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  color: #000;
}

.header {
  border-top: 18px solid #4F9587;
}
.header .logo {
  display: inline-block;
  margin-right: 25px;
}
.header-top {
  padding: 16px 0;
  font-size: 14px;
  line-height: 100%;
}
.header-top .search-btn {
  cursor: pointer;
  margin-right: 16px;
}
.header-top .search-btn:hover {
  opacity: 0.8;
}
.header-top .location {
  margin-right: 16px;
}
.header-top .location img {
  margin-right: 6px;
}
.header-top .top-link {
  margin-right: 16px;
  white-space: nowrap;
}
.header-top .top-link:last-child {
  margin-right: 25px;
}
.header-top .top-link img {
  margin-right: 6px;
}
.header-top .top-link span {
  transition: 0.3s all;
  border-bottom: 1px solid transparent;
}
.header-top .top-link:hover span {
  border-color: #173F37;
}
.header nav {
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
.header-nav {
  font-size: 16px;
  line-height: 100%;
  padding: 12px 0 16px;
}
.header-nav .nav-item {
  margin-right: 13px;
  font-weight: 400;
  min-height: 38px;
  display: flex;
  align-items: center;
  position: relative;
}
.header-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 104%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: rgba(23, 63, 55, 0.1019607843);
}
.header-nav .nav-item:first-child::after {
  display: none;
}
.header-nav .nav-item:last-child {
  margin-right: 0;
}
.header-nav .nav-item:last-child::after {
  display: none;
}
.header-nav .nav-item li, .header-nav .nav-item a {
  transition: none;
}
.header-nav .nav-item .link-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav .nav-item .link-arrow::after {
  content: url(../img/svg/arrow-link.svg);
  margin: -4px 0 0 6px;
  transition: 0.3s all;
}
.header-nav .nav-item .nav-list {
  font-weight: 300;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 50;
  width: 271px;
  padding: 13.5px 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.header-nav .nav-item .nav-list .list {
  margin-bottom: 12px;
  position: relative;
  padding: 0 10px;
}
.header-nav .nav-item .nav-list .list:last-child {
  margin: 0;
}
.header-nav .nav-item .nav-list .list li {
  margin-bottom: 12px;
}
.header-nav .nav-item .nav-list .list li:last-child {
  margin: 0;
}
.header-nav .nav-item .nav-list .list .link-arrow::after {
  margin-top: 0;
  transform: rotate(-90deg);
}
.header-nav .nav-item .nav-list .list .list-link {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  z-index: 50;
  width: 271px;
  padding: 13.5px 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.header-nav .nav-item .nav-list .list .list-link li {
  padding: 0 10px;
}
.header-nav .nav-item .nav-list .list .list-link li:hover a {
  font-weight: 400 !important;
}
.header-nav .nav-item .nav-list .list:hover a {
  font-weight: 400;
}
.header-nav .nav-item .nav-list .list:hover .link-arrow::after {
  transform: rotate(-180deg);
}
.header-nav .nav-item .nav-list .list:hover .list-link {
  display: block;
}
.header-nav .nav-item .nav-list .list:hover .list-link li a {
  font-weight: 300;
}
.header-nav .nav-item:hover .link-arrow::after {
  margin-top: 0;
  transform: rotate(-180deg);
}
.header-nav .nav-item:hover .nav-list {
  display: block;
}
.header-top_mobile {
  padding: 10px 0 8px;
  display: none;
  position: relative;
  z-index: 100;
  background: #fff;
}
.header-top_mobile .menu-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.header-top_mobile .menu-btn img:last-child {
  display: none;
}
.header-top_mobile .clickedMenu img:first-child {
  display: none;
}
.header-top_mobile .clickedMenu img:last-child {
  display: block;
}
.header-top_mobile .search-btn {
  margin-right: 22px;
}
.header .menu {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: #fff;
  padding-top: 72px;
  transition: 0.3s linear;
  overflow-y: scroll;
}
.header .menu .menu-nav {
  font-size: 16px !important;
  padding: 0;
}
.header .menu .menu-nav .nav-item {
  margin: 0;
  min-height: auto;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
  flex-wrap: wrap;
  font-weight: 400;
}
.header .menu .menu-nav .nav-item a {
  display: flex;
  width: 100%;
}
.header .menu .menu-nav .nav-item .nav-list {
  position: relative;
  top: 0;
  width: 100%;
  padding: 0;
  box-shadow: none;
  display: none;
  padding-top: 16px;
  font-weight: 300;
}
.header .menu .menu-nav .nav-item .nav-list br {
  display: none;
}
.header .menu .menu-nav .nav-item .nav-list .list {
  margin-bottom: 16px;
  padding: 0;
}
.header .menu .menu-nav .nav-item .nav-list .list:last-child {
  margin-bottom: 0;
}
.header .menu .menu-nav .nav-item .nav-list .list li {
  margin-bottom: 16px;
}
.header .menu .menu-nav .nav-item .nav-list .list li:last-child {
  margin-bottom: 0;
}
.header .menu .menu-nav .nav-item .nav-list .list .list-link {
  position: relative;
  left: 0;
  width: 100%;
  padding: 16px 0;
  box-shadow: none;
  display: none;
  background: rgba(23, 63, 55, 0.0588235294);
  padding: 6px 8px;
  margin-top: 16px;
  font-size: 14px;
}
.header .menu .menu-nav .nav-item .nav-list .list .list-link li {
  padding: 0;
  margin-bottom: 12px;
}
.header .menu .menu-nav .nav-item .nav-list .list .list-link li:last-child {
  margin: 0;
}
.header .menu .menu-nav .link-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu .menu-nav .link-arrow::after {
  content: url(../img/svg/arrow-link.svg);
  transition: 0.3s all;
}
.header .menu .menu-nav .rotate {
  font-weight: 400;
}
.header .menu .menu-nav .rotate::after {
  transform: rotate(180deg);
}
.header .showMenu {
  left: 0;
}
.header .popUp-search {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  top: 0;
  left: 0;
}
.header .popUp-search .popUp-content {
  margin: 160px auto;
  width: 737px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
}
.header .popUp-search .search-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #173f37;
}
.header .popUp-search .input-box {
  display: flex;
  margin-top: 24px;
  position: relative;
}
.header .popUp-search .input-box .form-inp {
  margin-right: 6px;
  font-size: 14px;
  font-weight: 500;
}
.header .popUp-search .search-icon {
  position: absolute;
  top: 11px;
  right: 11px;
}
.header .popUp-search .search-button {
  height: 45px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .block1 {
  margin: 24px 0;
}
main .block1-banner {
  width: 65%;
  padding: 60px 40px 35px;
  text-align: center;
  background-image: url(../img/png/gradient.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  color: #fff;
}
main .block1-banner .logo {
  width: 80%;
}
main .block1-banner .banner-text {
  margin-top: 80px;
  padding-top: 19px;
  font-size: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
}
main .block1-item {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .block1-item .item {
  border: 1px solid rgba(23, 63, 55, 0.1019607843);
  border-radius: 12px;
  padding: 17px 22px 17px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
main .block1-item .item:last-child {
  margin-bottom: 0;
}
main .block1-item .item-info {
  border-left: 1px solid #D4E5DD;
  width: 80%;
  font-size: 16px;
  line-height: 100%;
  padding-left: 12px;
}
main .block1-item .item-info .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
main .block2 {
  padding: 40px 0;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .block2-info {
  width: 49%;
  font-size: 18px;
}
main .block2-text {
  margin-top: 12px;
}
main .block2-text:last-child {
  padding-top: 12px;
  font-weight: 500;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .block2 .link-btn {
  margin-top: 40px;
}
main .block2-img {
  width: 49%;
  height: 346px;
  border-radius: 12px;
  object-fit: cover;
}
main .block3 {
  padding: 34px 0 38px;
}
main .block3-info {
  width: 49%;
}
main .block3-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .block3-item:first-child {
  padding-top: 0;
  border: none;
}
main .block3-item .hashtag {
  padding: 4px 8px;
  background: #eef0f4;
  font-size: 14px;
  letter-spacing: 3px;
}
main .block3-item .item-text {
  margin: 16px 0;
  font-size: 18px;
  font-weight: 500;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
main .block3-item .item-text:hover {
  text-decoration: underline;
}
main .block3-item .item-data {
  font-size: 16px;
  color: #999;
  display: flex;
  align-items: center;
}
main .block3-item .item-data::before {
  content: url(../img/svg/clock.svg);
  margin: 6px 6px 0 0;
}
main .block3-banner {
  width: 49%;
  height: 663px;
  background: #173f37;
  border-radius: 12px;
  color: #fff;
  padding: 35px;
  position: relative;
  overflow: hidden;
}
main .block3-banner .lightning {
  position: absolute;
  top: 0;
  right: -5%;
}
main .block3-banner .banner-name {
  font-size: 28px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
main .block3-banner .banner-data {
  font-size: 16px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
main .block3-banner .banner-data::before {
  content: url(../img/svg/clock3.svg);
  margin: 6px 6px 0 0;
}
main .block3-banner .info {
  position: relative;
  z-index: 3;
}
main .block3-banner .info-title {
  font-size: 18px;
  font-weight: 500;
}
main .block3-banner .info-link {
  display: flex;
  align-items: center;
  margin-top: 12px;
  margin-right: 24px;
  font-size: 16px;
}
main .block3-banner .info-link img {
  margin-right: 6px;
}
main .block3-banner .title {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
main .block3-banner .text {
  margin: 8px 0 24px;
  padding-bottom: 24px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  position: relative;
  z-index: 3;
}
main .block3-banner .text a {
  text-decoration: underline;
}
main .block3-banner .link-btn {
  margin-top: 40px;
  border-color: #fff;
}
main .block3-banner .link-btn:hover {
  color: #fff;
}
main .posts {
  margin: 30px 0;
  font-family: "Inter", sans-serif;
}
main .posts .post-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px;
  margin-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%
}
main .posts .post-box .title-text {
  color: #173f37;
  font-family: "Inter", sans-serif;
}
main .posts .post-box .data {
  padding: 3px 8px;
  border-radius: 4px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 24px;
}
main .posts .post-box .data img {
  margin-right: 6px;
}
main .posts .post-box .info-text, main .posts .post-box p {
  font-size: 18px;
  line-height: 130%;
  margin-top: 24px;
}
main .posts .post-box .top-text {
  padding-top: 24px;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .posts .post-box .info-box {
  margin-top: 24px;
}
main .posts .post-box .info-box .info-title, main .posts .post-box h2 {
  font-size: 20px;
  font-weight: 600;
}
main .posts .post-box .info-box .info-list li, .page-template main .posts .post-box ul li {
  margin-top: 24px;
  text-indent: 20px;
  position: relative;
}
main .posts .post-box .info-box .info-list li::before, .page-template main .posts .post-box ul li::before {
  content: "•";
  display: block;
  position: absolute;
  top: 3px;
  left: -20px;
  font-size: 25px;
}
main .posts .post-box ul li::before {
  top: -1px !important;
}
main .posts .post-box .join-association {
  margin-top: 24px;
  width: 253px;
  font-size: 18px;
}
main .posts .post-box .association {
  margin: 24px 0 12px;
  font-size: 18px;
}
main .posts .post-box .association .title {
  font-weight: 600;
  margin-bottom: 12px;
}
main .posts .post-box .address {
  font-size: 18px;
}
main .posts .post-box .address .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
main .posts .post-box .address-link {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
main .posts .post-box .address-link img {
  margin-right: 6px;
}
main .posts .post-box .news-img {
  width: 100%;
  height: 292px;
  border-radius: 12px;
  object-fit: cover;
  margin: 31px 0;
}
main .posts .post-box .news-info {
  padding: 24px 0;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
  font-size: 18px;
}
main .posts .post-box .news-info .title {
  font-weight: 600;
  font-size: 18px;
}
main .posts .post-box .news-info .title a {
  border-bottom: 1px solid #173F37;
}
main .posts .post-box .news-info .text {
  margin-top: 24px;
}
main .posts .post-box .schedule-title {
  font-size: 20px;
  font-weight: 600;
}
main .posts .post-box .schedule-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
}
main .posts .post-box .schedule-list {
  margin-top: 24px;
  padding-left: 12px;
  border-left: 3px solid #1E5046;
}
main .posts .post-box .schedule-list li {
  font-size: 18px;
  margin-bottom: 13px;
  display: flex;
  align-items: start;
}
main .posts .post-box .schedule-list li:last-child {
  margin-bottom: 0;
}
main .posts .post-box .schedule-list li img {
  margin: 3px 6px 0 0;
}
main .posts .post-box .schedule-list li strong {
  font-weight: 600;
}
main .posts .post-box .news-item {
  margin-top: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .posts .post-box .news-item .item {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .posts .post-box .news-item .item-icon {
  width: 136px;
  height: 92px;
  border-radius: 8px;
  background: #173f37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
main .posts .post-box .news-item .item-text {
  font-size: 20px;
  font-weight: 600;
}
main .posts .post-box .news-sub .sub-title {
  font-size: 24px;
  font-weight: 600;
}
main .posts .post-box .news-sub .link {
  margin-top: 30px;
  margin-right: 50px;
}
main .posts .post-box .news-sub .link:last-child {
  margin-right: 0;
}
main .posts .post-box .news-sub .link-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
main .posts .post-box .news-sub .link a {
  display: flex;
  align-items: center;
  font-size: 18px;
}
main .posts .post-box .news-sub .link a img {
  margin: 1px 6px 0;
}
main .posts .post-box .advice-title {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0;
}
main .posts .post-box .advice-list {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .posts .post-box .advice-list li {
  display: flex;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 400;
}
main .posts .post-box .advice-list li:last-child {
  margin-bottom: 0;
}
main .posts .post-box .advice-list li .num {
  min-width: 21px;
  height: 21px;
  border-radius: 1.4px;
  border: 1px solid #E3E3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  margin-right: 6px;
}
main .posts .post-box .advice-list li .text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
main .posts .post-box .advice-list li .text strong {
  font-weight: 500;
  display: flex;
  align-items: center;
}
main .posts .post-box .advice-list li .text strong::after {
  content: "•";
  display: block;
  font-size: 20px;
  margin: 0 6px;
}
main .posts .post-box .advice .advice-faq li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}
main .posts .post-box .advice .advice-faq li:last-child {
  margin-bottom: 0;
}
main .posts .post-sidebar {
  min-width: 318px;
  height: auto;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  max-width: 300px !important;
}
main .posts .post-sidebar .btn-mob {
  appearance: none;
  display: none;
}
main .posts .post-sidebar .post-item {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
  margin-bottom: 12px;
}
main .posts .post-sidebar .post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
main .posts .post-sidebar .post-item .post-name {
  font-weight: 500;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
main .posts .post-sidebar .post-item .post-name:hover {
  text-decoration: underline;
}
main .posts .post-sidebar .post-item .post-data {
  font-weight: 400;
  margin-top: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
main .posts .post-sidebar .post-item .post-data span span:first-child {
  display: inline-block;
  margin-left: 5px;
}
main .posts .post-sidebar .post-item .post-data::before {
  content: url(../img/svg/clock.svg);
  margin: 6px 6px 0 0;
}
main .posts .post-sidebar .post_list .post-item .post-data {
  margin-top: 0;
}
main .posts .post-sidebar .protocols input {
  display: none;
}
main .posts .post-sidebar .protocols label {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .posts .post-sidebar .protocols label::after {
  content: url(../img/svg/arrow-link.svg);
  margin-top: -5px;
}
main .posts .post-sidebar .protocols .post_list {
  display: none;
  margin-top: 12px;
}
main .posts .post-sidebar .protocols .post_list .post-item:last-child {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
  margin-bottom: 12px;
}
main .posts .post-sidebar .protocols .post_list .post-item {
  display: block !important;
}
main .posts .post-sidebar .protocols .post_list .post-item .post-data {
  display: flex !important;
  margin: 0 !important;
}
main .posts .post-sidebar .protocols input:checked ~ label {
  padding-bottom: 0;
  border: none;
}
main .posts .post-sidebar .protocols input:checked ~ label::after {
  transform: rotate(180deg);
  margin-top: 5px;
}
main .posts .post-sidebar .protocols input:checked ~ .post_list {
  display: block;
}
/*
main .posts .post-sidebar .protocols:first-child label {
  padding-top: 0;
}*/
main .posts .post-sidebar .protocols:last-child label {
  border: none;
}
main .posts .news-sidebar {
  min-width: 318px;
}
main .posts .news-sidebar .news-item {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  margin-bottom: 24px;
}
main .posts .news-sidebar .news-item:last-child {
  margin-bottom: 0;
}
main .posts .news-sidebar .news-item .title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #E3E3E3;
}
main .posts .news-sidebar .news-item .info-soc {
  display: flex;
  align-items: start;
  margin-top: 8px;
}
main .posts .news-sidebar .news-item .info-soc img {
  margin: 3px 6px 0 0;
}
main .posts .news-sidebar .news-item .price-list {
  width: 100%;
}
main .posts .news-sidebar .news-item .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}
main .posts .news-sidebar .news-item .price-list li:last-child {
  margin-bottom: 6px;
}
main .posts .news-sidebar .news-item .price-list li strong {
  font-weight: 600;
}
main .posts .news-sidebar .news-item .price-list li img {
  margin-right: 4px;
}
main .posts .news-sidebar .news-item .quantity {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  padding: 4px 6px;
  background: #f7f7f7;
  border-radius: 4px;
}
main .posts .news-sidebar .education {
  border: none;
  color: #fff;
  background: #173f37;
}
main .posts .news-sidebar .education .title {
  border: none;
  padding-bottom: 0;
}
main .posts .news-sidebar .education .participation {
  font-size: 15px;
  color: #fff;
  background: #1e5248;
  border-radius: 4px;
  padding: 6px 12px;
  margin-top: 8px;
  display: inline-block;
}
main .sort {
  display: flex;
  align-items: center;
  margin: 18px 0;
  font-size: 16px;
  line-height: 100%;
  font-family: "Inter", sans-serif;
}
main .sort .sort-text {
  margin-right: 16px;
}
main .sort .sorts {
  display: flex;
}
main .sort .sort-btn {
  cursor: pointer;
  margin-right: 12px;
}
main .sort .sort-btn:last-child {
  margin-right: 0;
}
main .sort .sort-btn input {
  display: none;
}
main .sort .sort-btn span {
  display: flex;
  padding: 4px 12px;
  border-radius: 4px;
  background: #f7f7f7;
}
main .sort .sort-btn input:checked ~ span {
  background: #173f37;
  color: #fff;
}
main .accounting {
  margin: 31px 0;
  font-family: "Inter", sans-serif;
}
main .accounting-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 35px;
}
main .accounting-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 15px;
}
main .accounting-item {
  width: 100%;
  height: 127px;
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
main .accounting-item p.accounting-text {
  bottom: 20px;
  position: relative;
}
main .accounting-item .data-items,
main .statements-item .data-items{
    font-size: 13px;
    padding: 0px 15px;
    text-align: left;
    flex-wrap: wrap;
}
main .accounting-item .data-items .data,
main .statements-item .data-items .data
 {
    display: flex;
    width: 100%;
    gap: 5px;
    font-size: 13px;
}
main .accounting-item .data-items .data img,
main .statements-item .data-items .data img
 {
  width: 20px;
  height: auto;
}
main .pagination-controls {
  margin-top: 24px;
  font-family: "Inter", sans-serif;
}
main .pagination-controls .prev-btn,
main .pagination-controls .next-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #173F37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
main .pagination-controls .disabled {
  pointer-events: none;
  background: #E3E3E3;
}
main .pagination-controls .pagination {
  margin: 0 8px;
}
main .pagination-controls .pagination li {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-right: 8px;
  cursor: pointer;
}
main .pagination-controls .pagination li:last-child {
  margin-right: 0;
}
main .pagination-controls .pagination li:hover {
  border-color: #173F37;
}
main .pagination-controls .pagination .active {
  border-color: #173F37;
}
main .roadmap {
  margin: 24px 0;
  font-family: "Inter", sans-serif;
}
main .roadmap-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 35px;
}
main .roadmap-title, .roadmap .menu-item-depth-0 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 18px;
}
main .roadmap-title a {
  border-bottom: 1px solid #173F37;
}
main .roadmap-list

{
  margin-top: 20px;
  border-left: 3px solid #173F37;
  padding-left: 12px;
  font-size: 18px;
  font-weight: 400;
}
 .roadmap ul.menu-depth-list-link{
  margin-top: 20px;
  padding-left: 12px;
  font-size: 18px;
  font-weight: 400;
}

main .roadmap-list li {
  margin-bottom: 12px;
}
main .roadmap-list li:first-child, .roadmap .menu-item-depth-1 a.link-arrow,
 .roadmap .list.menu-item-depth-1.menu-item.menu-item-type-post_type.menu-item-object-page{
  font-weight: 500;
}
main .roadmap-list li:last-child {
  margin-bottom: 0;
}
main .roadmap-list li a {
  border-bottom: 1px solid #173F37;
}
main .acts {
  margin: 26px 0;
  font-family: "Inter", sans-serif;
}
main .acts-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 35px;
}
main .acts-box .sort {
  margin: 0;
}
main .acts-item .item {
  width: 100%;
  min-height: 75px;
  border: 1px solid #E3E3E3;
  padding: 27px 36px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 16px;
}
main .acts-item .item:first-child {
  margin-top: 24px;
}
main .acts-item .item a {
  border-bottom: 1px solid #173F37;
}
main .statements {
  margin: 28px 0;
  font-family: "Inter", sans-serif;
  min-height: 600px;
}
main .statements-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 35px;
}
main .statements-box .sort {
  margin: 0;
}
main .statements-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 24px;
}
main .statements-item .item {
  width: 100%;
  min-height: 117px;
  border: 1px solid #E3E3E3;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-direction: column;
}
main .statements-item .item-text {
  font-size: 16px;
  font-weight: 500;
}
main .statements-item .item-download {
  width: 136px;
  height: 33px;
  border-radius: 4px;
  background: #173F37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 11px;
}
main .statements-item .item-download::after {
  content: url(../img/svg/download.svg);
  margin-left: 6px;
}
main .tables {
  font-size: 12px;
  margin: 20px 0;
  font-family: "Inter", sans-serif;
}
main .tables-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 19px;
}
main .tables table {
  border-spacing: 9px;
  width: 100%;
  margin: 24px 0 20px;
}
main .tables table thead th {
  background: #F7F7F7;
  border-radius: 6px;
  font-weight: 400;
  padding: 10px;
  line-height: 130%;
  white-space: nowrap;
}
main .tables table thead th:first-child {
  min-width: 42px;
}
main .tables table tbody td {
  text-align: center;
  padding: 10px;
  height: 66px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  line-height: 100%;
}
main .tables-registry .sort {
  align-items: start;
  flex-direction: column;
}
main .tables-registry .sort .sort-text {
  margin-bottom: 4px;
}
main .tables-registry .sort .sort-btn {
  margin: 12px 12px 0 0;
}
main .tables-registry table thead th {
  max-width: 200px;
}
main .tables-registry table thead th:first-child {
  min-width: auto;
}
main .tables-registry table thead th:nth-child(7), main .tables-registry table thead th:nth-child(8) {
  max-width: 81px;
  font-size: 9px;
}
main .tables-registry table tbody td {
  max-width: 200px;
}
main .tables-registry table tbody td:nth-child(7), main .tables-registry table tbody td:nth-child(8) {
  max-width: 60px;
  font-size: 9px;
  padding-left: 0px;
  padding-right: 0px;
}
main .tables-registry table tbody td:nth-child(7) p, main .tables-registry table tbody td:nth-child(8) p {
  display: inline-block;
}
main .contact {
  margin: 34px 0;
  font-family: "Inter", sans-serif;
}
main .contact-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px 19px;
}
main .contact-map {
  position: relative;
  margin: 24px 0;
  padding: 42px 27px;
  display: flex;
  justify-content: end;
}
main .contact-map .map, main .contact-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
main .contact-form {
  width: 50%;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  z-index: 3;
  visibility: hidden;
}
main .contact-form .form-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
main .contact-form .submit-form {
  position: absolute;
  right: 6px;
  bottom: 16px;
}
main .contact-list {
  font-size: 18px;
  line-height: 100%;
}
main .contact-list li {
  margin-top: 20px;
}
main .contact-list li:first-child {
  margin-top: 0;
}
main .contact-list .list-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
main .contact-list:last-child li:last-child {
  margin-top: 38px;
}
main .contact-item {
  margin-top: 35px;
  padding: 24px 24px 0;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding-right: 67px;
}
main .contact-item .item-title {
  font-size: 20px;
  font-weight: 600;
}
main .contact-item a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin: 12px 12px 0 0;
}
main .contact-item a img {
  margin: 3px 6px 0 0;
}
main .contact-item .item {
  margin-bottom: 24px;
}
main .contact-item .item:first-child a span {
  border-bottom: 1px solid #173F37;
}
main .results {
  margin: 31px 0;
  font-family: "Inter", sans-serif;
}
main .results-box {
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 28px;
}
main .results-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
}
main .results-list li:first-child {
  margin-top: 36px;
}
main .results-list li:last-child {
  margin-bottom: 36px;
}
main .results-list li::after {
  content: url(../img/svg/arrow.svg);
}
main .results-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #173f37;
  width: 93%;
  display: block;
}
main .results-list li a:hover {
  text-decoration: underline;
}

.footer {
  padding-top: 40px;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
  font-size: 16px;
}
.footer-item {
  width: 260px;
}
.footer-item .item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer .nav li:hover {
  font-weight: 500;
}
.footer .nav .nav-item {
  font-weight: 400;
  display: flex;
  align-items: center;
  position: relative;
}
.footer .nav .nav-item:first-child::after {
  display: none;
}
.footer .nav .nav-item:last-child {
  margin-right: 0;
}
.footer .nav .nav-item:last-child::after {
  display: none;
}
.footer .nav .nav-item li, .footer .nav .nav-item a {
  transition: none;
}
.footer .nav .nav-item .link-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .nav .nav-item .link-arrow::after {
  content: url(../img/svg/arrow-link.svg);
  margin: -4px 0 0 6px;
  transition: 0.3s all;
}
.footer .nav .nav-item .nav-list {
  font-weight: 300;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  z-index: 50;
  width: 300px;
  padding: 13.5px 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.footer .nav .nav-item .nav-list .list {
  margin-bottom: 12px;
  position: relative;
  padding: 0 10px;
}
.footer .nav .nav-item .nav-list .list:last-child {
  margin: 0;
}
.footer .nav .nav-item .nav-list .list li {
  margin-bottom: 12px;
}
.footer .nav .nav-item .nav-list .list li:last-child {
  margin: 0;
}
.footer .nav .nav-item .nav-list .list .link-arrow::after {
  margin-top: 0;
  transform: rotate(-90deg);
}
.footer .nav .nav-item .nav-list .list .list-link {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  z-index: 50;
  width: 300px;
  padding: 13.5px 0;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  display: none;
}
.footer .nav .nav-item .nav-list .list .list-link li {
  padding: 0 10px;
}
.footer .nav .nav-item .nav-list .list .list-link li:hover a {
  font-weight: 400 !important;
}
.footer .nav .nav-item .nav-list .list:hover a {
  font-weight: 400;
}
.footer .nav .nav-item .nav-list .list:hover .link-arrow::after {
  transform: rotate(-180deg);
}
.footer .nav .nav-item .nav-list .list:hover .list-link {
  display: block;
}
.footer .nav .nav-item .nav-list .list:hover .list-link li a {
  font-weight: 300;
}
.footer .nav .nav-item:hover .link-arrow::after {
  margin-top: 0;
  transform: rotate(-180deg);
}
.footer .nav .nav-item:hover .nav-list {
  display: block;
}
.footer .location img {
  margin: 5px 6px 0 0;
}
.footer .footer-link {
  margin-top: 12px;
}
.footer .footer-link img {
  margin: 5px 6px 0 0;
}
.footer .footer-link span {
  border-bottom: 1px solid transparent;
}
.footer .footer-link:hover span {
  border-color: #173F37;
}
.footer-form {
  width: 318px;
  position: relative;
}
.footer-form .submit-form {
  position: absolute;
  right: 6px;
  bottom: 15px;
}
.footer-copyright {
  margin-top: 60px;
  padding: 23px 0;
  border-top: 1px solid rgba(23, 63, 55, 0.1019607843);
  font-size: 16px;
  color: #999;
}

.popUp {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  overflow-y: scroll;
}
.popUp-content {
  width: 403px;
  background: #fff;
  position: relative;
  animation: popUp-anim 0.3s linear;
  border-radius: 12px;
  margin: 50px auto;
  padding: 28px;
}
.popUp-content .title-text {
  font-size: 24px;
  font-weight: 600;
}
.popUp-content .info-text {
  font-size: 16px;
  margin: 12px 0 24px;
  line-height: 100%;
}
.popUp-content .submit-form {
  width: 163px;
  height: 45px;
}
.popUp-form {
  padding: 24px 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.popUp-thanks {
  text-align: center;
}

.popUp-table {
  font-family: "Inter", sans-serif;
  font-size: 12.33px;
  line-height: 130%;
}
.popUp-table .popUp-content {
  width: 1000px;
  height: auto;
  border-radius: 12px;
  padding: 28px;
}
.popUp-table .table-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.popUp-table .table-item:last-child {
  margin-bottom: 0;
}
.popUp-table .table-item .th {
  width: 25%;
  border-radius: 6px;
  background: #f7f7f7;
  min-height: 66px;
  padding: 9px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-table .table-item .td {
  width: 73%;
}
.popUp-table .table-item .td .td-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.popUp-table .table-item .td .td-item:last-child {
  margin-bottom: 0;
}
.popUp-table .table-item .td .td-item .item-th {
  width: 20%;
  border-radius: 6px;
  background: #f7f7f7;
  padding: 5px 2px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-table .table-item .td .td-item .item-td {
  width: 78%;
  border-radius: 6px;
  border: 1px solid #E3E3E3;
  padding: 9px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-table .table-item .td .td-info {
  width: 100%;
  min-height: 66px;
  border-radius: 6px;
  border: 1px solid #E3E3E3;
  padding: 9px 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popUp-table .table-item .td .td-info ul {
  text-align: left;
}
.popUp-table .table-item .item {
  width: 32%;
}
.popUp-table .table-item .item .item-th {
  width: 100%;
  min-height: 66px;
  border-radius: 6px;
  background: #f7f7f7;
  padding: 5px 2px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.popUp-table .table-item .item .item-td {
  width: 100%;
  min-height: 66px;
  border-radius: 6px;
  border: 1px solid #E3E3E3;
  padding: 15px 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/*
.popUpHide {
  animation: popUp-anim-hide 0.5s linear !important;
}*/
.input-box.table {
  width: 25%;
  margin: 55px 0 -20px 0;
}
@keyframes popUp-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes popUp-anim-hide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes menu-anim {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0;
  }
}
@media (max-width: 1370px) {
  .header-nav {
    font-size: 14px;
  }
  .header-nav .nav-item::after {
    left: 107%;
  }
}
@media (max-width: 1300px) {
  .header .logo img {
    width: 156px;
  }
  .header-top {
    font-size: 12px;
    padding: 8px 0;
  }
  .header-nav {
    font-size: 12px;
    padding: 8px 0;
  }
  .header-nav .nav-item {
    margin-right: 0;
    min-height: 24px;
  }
  .header-nav .nav-item::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  main .accounting-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  main .accounting-item .data-items,
  main .statements-item .data-items
   {
    font-size: 11px;
  }
  main .acts-box {
    padding: 16px;
  }
  main .acts-top {
    flex-direction: column;
    align-items: start;
  }
  main .acts-top .sort {
    margin-top: 12px;
  }
  main .acts-item .item {
    padding: 13px 11px;
    min-height: auto;
  }
  main .statements-item {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
  }
  main .tables .container {
    padding-right: ;
  }
  main .tables-box {
    border: none;
    border-radius: 0;
    padding: 0;
  }
  main .tables .table-scroll {
    overflow-x: scroll;
    margin-right: 20px;
  }
  main .tables .table-scroll::-webkit-scrollbar {
    height: 45px;
    border-radius: 4px;
    background: rgba(153, 153, 153, 0.2);
  }
  main .tables .table-scroll::-webkit-scrollbar-thumb {
    background: #173F37 url(../img/svg/arrow-scroll.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
  }
  main .tables .table-item {
    border: 1px solid #E3E3E3;
    border-right: 0;
    border-radius: 12px 0 0 12px;
    padding: 28px 19px;
    padding-bottom: 0;
    margin-bottom: 14px;
    padding-right: 0;
  }
  main .facts .container {
    padding-right: 20px;
  }
  main .facts .table-item {
    border-right: 1px solid #E3E3E3;
    border-radius: 12px;
  }
  .popUp-table .popUp-content {
    width: 97%;
  }
}
@media (max-width: 992px) {
    .data-items {
        flex-wrap: wrap;
    }
  .btn {
    min-width: 64px;
    height: 28px;
    font-size: 14px;
  }
  .header {
    border-top: none;
  }
  .header .logo {
    margin: 0;
  }
  .header .logo img {
    width: 156px;
  }
  .header-top {
    display: none;
  }
  .header nav {
    display: none;
  }
  .header-top_mobile {
    display: flex;
    border-top: 10px solid #4F9587;
    border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
  }
  main .block1-banner {
    width: 100%;
  }
  main .block1-item {
    width: 100%;
    margin-top: 12px;
  }
  main .block2-info {
    width: 100%;
  }
  main .block2-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 22px;
  }
  main .block3-info {
    width: 100%;
    margin-top: 30px;
  }
  main .block3-banner {
    width: 100%;
  }
  main .statements-item {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    padding: 0;
    font-size: 14px !important;
  }
  .footer-item {
    line-height: 100%;
  }
  .footer-item .item-title {
    font-size: 16px;
  }
  .footer-item, .footer-form {
    width: 49%;
    margin-top: 30px;
  }
  .footer .nav .nav-item {
    flex-direction: column;
    align-items: start;
    margin-bottom: 12px;
    line-height: 100%;
  }
  .footer .nav .nav-item li, .footer .nav .nav-item a {
    transition: none;
  }

  .footer .nav .nav-item span, .footer .nav .nav-item a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .nav .nav-item .nav-list {
    position: relative;
    top: 0;
    width: 100%;
    padding: 0;
    box-shadow: none;
    margin-top: 12px;
    display: none;
  }
  .footer .nav .nav-item .nav-list .list {
    margin-bottom: 12px;
    position: relative;
    padding: 0;
  }
  .footer .nav .nav-item .nav-list .list:last-child {
    margin-bottom: 0;
  }
  .footer .nav .nav-item .nav-list .list li {
    margin-bottom: 12px;
  }
  .footer .nav .nav-item .nav-list .list li:last-child {
    margin-bottom: 0;
  }
  .footer .nav .nav-item .nav-list .list .link-arrow::after {
    transform: none;
  }
  .footer .nav .nav-item .nav-list .list .list-link {
    position: relative;
    left: 0;
    width: 100%;
    padding: 16px 0;
    box-shadow: none;
    display: none;
    background: rgba(23, 63, 55, 0.0588235294);
    padding: 6px 8px;
    margin-top: 16px;
    font-size: 14px;
    display: none;
  }
  .footer .nav .nav-item .nav-list .list .list-link li {
    padding: 0;
  }
  .footer .nav .nav-item .nav-list .list:hover .link-arrow::after {
    transform: none;
  }
  .footer .nav .nav-item .nav-list .list:hover .list-link {
    display: none;
  }
  .footer .nav .nav-item:hover .link-arrow::after {
    transform: none;
  }
  .footer .nav .nav-item:hover .nav-list {
    display: none;
  }
  .footer-copyright {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 767px) {
main .pagination-controls .prev-btn, main .pagination-controls .next-btn {
  width: 35px;
  height: 20px;
  }
main .pagination-controls .pagination li {
    font-size: 9px;
    width: 20px;
    height: 20px;
    margin: 0 7px;
}
main .pagination-controls .pagination {
  margin: 0 8px;
  width: 100%;
  flex-wrap: wrap;
}
main .accounting-item .data-items .data, main .statements-item .data-items .data {
  font-size: 11px;
}
    .input-box.table {
      width: 100%;
      margin: 25px 0 -20px 0;
    }
  .header .popUp-search {
    background: transparent;
  }
  .header .popUp-search .popUp-content {
    width: 100%;
    height: 100%;
    margin: 70px 0 0;
    border-radius: 0;
    padding: 24px;
  }
  .header .popUp-search .search-title {
    font-size: 18px;
  }
  .header .popUp-search .input-box {
    margin-top: 12px;
  }
  .header .popUp-search .input-box .form-inp {
    margin-right: 0;
  }
  .header .popUp-search .search-button {
    display: none;
  }
  main .posts {
    margin: 12px 0;
  }
  main .posts .container {
    flex-direction: column-reverse;
  }
  main .posts .post-box {
    padding: 16px;
    margin-right: 0;
  }
  main .posts .post-box .title-text {
    font-size: 18px;
  }
  main .posts .post-box .data {
    font-size: 11px;
    margin-top: 20px;
  }
  main .posts .post-box .info-text, main .posts .post-box p {
    font-size: 16px;
    margin-top: 20px;
  }
  main .posts .post-box .top-text {
    padding-top: 20px;
  }
  main .posts .post-box .info-box {
    margin-top: 20px;
  }
  main .posts .post-box .info-box .info-list li, .page-template .posts .post-box ul li {
    margin-top: 20px;
  }
  main .posts .post-box .join-association {
    margin-top: 20px;
  }
  main .posts .post-box .association {
    margin: 20px 0 12px;
    font-size: 16px;
  }
  main .posts .post-box .address {
    font-size: 14px;
  }
  main .posts .post-box .schedule-list li {
    font-size: 16px;
  }
  main .posts .post-box .news-item .item {
    align-items: start;
  }
  main .posts .post-box .news-item .item-icon {
    min-width: 59px;
    height: 40px;
    border-radius: 4px;
  }
  main .posts .post-box .news-item .item-icon img {
    height: 22px;
  }
  main .posts .post-box .news-item .item-text {
    font-size: 16px;
  }
  main .posts .post-box .news-sub .sub-title {
    font-size: 18px;
  }
  main .posts .post-box .news-sub .link {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  main .posts .post-box .news-sub .link:last-child {
    margin-right: 0;
  }
  main .posts .post-box .news-sub .link-title {
    font-size: 14px;
  }
  main .posts .post-box .news-sub .link a {
    font-size: 14px;
  }
  main .posts .post-box .news-img:first-child {
    display: none;
  }
  main .posts .post-box .news-img:last-child {
    display: block !important;
    object-position: top;
    height: 215px;
  }
  main .posts .post-box .advice-title {
    font-size: 16px;
    margin: 20px 0;
  }
  main .posts .post-box .advice-list {
    padding-bottom: 20px;
  }
  main .posts .post-box .advice-list li {
    margin-bottom: 7px;
    font-size: 14px;
  }
  main .posts .post-box .advice-list li .num {
    margin-top: 5px;
  }
  main .posts .post-box .advice-list li .text {
    flex-direction: column;
    align-items: start;
  }
  main .posts .post-box .advice-list li .text strong {
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  main .posts .post-box .advice-list li .text strong::after {
    display: none;
  }
  main .posts .post-box .advice .advice-faq li {
    font-size: 16px;
  }
  main .posts .post-sidebar {
    min-width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
  }
  main .posts .post-sidebar .post-item {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
    margin-bottom: 8px;
    line-height: 130%;
    display: none;
  }
  main .posts .post-sidebar .post-item:first-child {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
  }
  main .posts .post-sidebar .post-item .post-data {
    margin-top: 8px;
    display: none;
  }
  main .posts .post-sidebar .post-item .post-data::before {
    margin: 6.5px 6px 0 0;
  }
  main .posts .post-sidebar .btn-mob {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 20;
    display: block;
    top: 16px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .posts .post-sidebar .btn-mob::before {
    content: url(../img/svg/arrow-link.svg);
  }
  main .posts .post-sidebar .btn-mob:checked::before {
    transform: rotate(180deg);
  }
  main .posts .post-sidebar .btn-mob:checked ~ .post-list .post-item {
    line-height: 130%;
    display: block;
  }
  main .posts .post-sidebar .btn-mob:checked ~ .post-list .post-item:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
    margin-bottom: 8px;
  }
  main .posts .post-sidebar .btn-mob:checked ~ .post-list .post-item .post-data {
    display: block;
  }
  main .posts .post-sidebar .post_list .post-item .post-data {
    font-size: 14px;
    margin-top: 8px;
  }
  main .posts .post-sidebar .mob_pro-btn {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  main .posts .post-sidebar .mob_pro-btn::after {
    content: url(../img/svg/arrow-link.svg);
    margin-top: -5px;
  }
  main .posts .post-sidebar .protocols-box {
    display: none;
  }
  main .posts .post-sidebar #mob_pro:checked ~ .protocols-box {
    display: block;
  }
  main .posts .post-sidebar #mob_pro:checked ~ .mob_pro-btn::after {
    transform: rotate(180deg);
    margin-top: 5px;
  }
  main .posts .post-sidebar .protocols label {
    font-size: 14px;
  }
  main .posts .post-sidebar .protocols .post_list .post-item:first-child {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
    margin-bottom: 12px;
  }
 /* main .posts .post-sidebar .protocols:first-child label {
    display: none;
  }*/
  main .posts .show_postSidebar .post-item {
    line-height: 130%;
    display: block;
  }
  main .posts .show_postSidebar .post-item:first-child {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(23, 63, 55, 0.1019607843);
    margin-bottom: 8px;
  }
  main .posts .show_postSidebar .post-item .post-data {
    display: block;
  }
  main .posts .news-sidebar {
    min-width: 100%;
    margin-bottom: 12px;
  }
  main .posts .news-sidebar .news-item {
    margin-bottom: 12px;
  }
  main .sort {
    flex-direction: column;
    align-items: start;
    font-size: 14px;
    line-height: 100%;
  }
  main .sort .sort-text {
    margin-right: 0;
    margin-bottom: 12px;
  }
  main .sort .sort-btn {
    font-size: 12px;
  }
  main .accounting .title-text {
    font-size: 24px;
  }
  main .accounting-box {
    padding: 16px;
  }
  main .accounting-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  main .statements {
    min-height: auto;
  }
  main .statements-box {
    padding: 16px;
  }
  main .statements-item {
    grid-template-columns: repeat(1, 1fr);
  }
  main .facts .container {
    padding-right: 0;
  }
  main .facts .table-item {
    border-right: 0;
    border-radius: 12px 0 0 12px;
  }
  main .facts .table-facts {
    overflow-x: scroll;
    margin-right: 20px;
  }
  main .facts .table-facts::-webkit-scrollbar {
    height: 45px;
    border-radius: 4px;
    background: rgba(153, 153, 153, 0.2);
  }
  main .facts .table-facts::-webkit-scrollbar-thumb {
    background: #173F37 url(../img/svg/arrow-scroll.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
  }
  main .tables .pagination-controls {
    /*margin-left: -20px;*/
    margin: 0px;
  }
  main .contact {
    margin: 12px 0;
  }
  main .contact-box {
    padding: 16px;
  }
  main .contact-map {
    position: relative;
    margin: 24px 0;
    padding: 0;
    flex-direction: column;
    justify-content: start;
  }
  main .contact-map .map, main .contact-map .map iframe {
    position: relative;
    height: 200px;
  }
  main .contact-form {
    width: 100%;
    padding: 24px;
    margin-top: 24px;
    margin-top: 24px;
    display: none;
  }
  main .contact-form .form-title {
    font-size: 18px;
  }
  main .contact-form .submit-form {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 16px;
    width: 100%;
  }
  main .contact-list {
    font-size: 16px;
  }
  main .contact-list .list-title {
    font-size: 16px;
  }
  main .contact-list li {
    margin-top: 20px;
  }
  main .contact-list li:first-child {
    margin-top: 20px;
  }
  main .contact-list:last-child li:last-child {
    margin-top: 20px;
  }
  main .contact-item {
    padding-right: 24px;
  }
  main .contact-item .item-title {
    font-size: 16px;
  }
  main .contact-item a {
    font-size: 14px;
  }
  .popUp-table .popUp-content {
    padding: 28px;
  }
  .popUp-table .table-item {
    flex-direction: column;
  }
  .popUp-table .table-item .th {
    width: 100%;
    margin-bottom: 16px;
  }
  .popUp-table .table-item .td {
    width: 100%;
  }
  .popUp-table .table-item .td .td-item .item-th {
    min-width: 112px;
    padding: 4px 2px;
    margin-right: 10px;
  }
  .popUp-table .table-item .td .td-item .item-td {
    width: 100%;
  }
  .popUp-table .table-item .td .td-info {
    padding: 8px;
  }
  .popUp-table .table-item .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .popUp-table .table-item .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .title-text {
    font-size: 24px;
  }
  main .block1 {
    margin: 12px 0 21px;
  }
  main .block1-banner {
    padding: 34px 30px;
  }
  main .block1-banner .logo {
    width: 100%;
  }
  main .block1-banner .banner-text {
    margin-top: 16px;
    line-height: 100%;
    padding-top: 16px;
    font-size: 14px;
  }
  main .block1-item .item {
    padding: 13px 11px 13px 14px;
    margin-bottom: 12px;
  }
  main .block1-item .item-info {
    font-size: 14px;
    width: 85%;
  }
  main .block1-item .item-info .title {
    font-size: 16px;
  }
  main .block1-item .item .item-icon {
    height: 42px;
  }
  main .block2 {
    padding: 30px 0;
  }
  main .block2-info {
    font-size: 16px;
  }
  main .block3 {
    padding: 30px 0 20px;
  }
  main .block3-item {
    margin-top: 10px;
    padding-top: 16px;
  }
  main .block3-item:first-child {
    margin-top: 24px;
  }
  main .block3-item .item-text {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }
  main .block3-item .item-data {
    font-size: 12px;
  }
  main .block3-banner {
    height: auto;
    padding: 28px 23px;
  }
  main .block3-banner .lightning {
    width: 150px;
    top: 58%;
    right: 0;
  }
  main .block3-banner .banner-name {
    font-size: 24px;
  }
  main .block3-banner .banner-data {
    font-size: 12px;
  }
  main .block3-banner .info-title {
    font-size: 14px;
  }
  main .block3-banner .info-box {
    flex-direction: column;
  }
  main .block3-banner .info-link {
    margin-right: 0;
    font-size: 14px;
  }
  main .block3-banner .title {
    font-size: 16px;
    line-height: 100%;
    margin-top: 20px;
  }
  main .block3-banner .text {
    margin: 8px 0 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 100%;
  }
  main .block3-banner .link-btn {
    margin-top: 24px;
  }
  main .accounting-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }
  main .roadmap {
    margin: 12px 0;
  }
  main .roadmap-box {
    padding: 16px;
  }
  main .roadmap-title, .roadmap .menu-item-depth-0  {
    font-size: 16px;
  }
  main .roadmap-list, .roadmap ul.menu-depth-list-link {
    font-size: 16px;
  }
  main .tables-registry .sort .sort-btn {
    margin-right: 0;
  }
  main .results {
    margin: 12px 0;
  }
  main .results-box {
    padding: 16px;
  }
  .popUp-content {
    width: 96%;
    padding: 24px 20px;
  }
}
@media (max-width: 410px) {
    main .accounting-item .data-items,
    main .statements-item .data-items{
      font-size: 11px;
    }
}
@media (max-width: 365px){
    main .accounting-item .data-items,
    main .statements-item .data-items
     {
      font-size: 8px;
    }
}
.footer-item .nav .nav-item:first-child,
.footer-item .nav .nav-item:last-child{
    display: none;
}
.wpcf7-spinner, .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}
.check-box.d-flex.align-center p{
    display: flex;
    align-items: center;
}

.page-template-sovet_associacii .post-box ul li::before{
    content: "" !important;
    top:0 !important;
    left:0 !important;
}
.page-template-sovet_associacii  .posts .post-box ul li {
  text-indent: 0 !important;
 }
.page-template-sovet_associacii  .posts .post-box p {
   margin-top: 0 !important;
 }
ul.post-list.post_list p {
    display: grid;
    gap: 10px;
}
ul.post-list.post_list p a {
  color: #173F37;
  font-weight: 500;
}
main .accounting-list1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 15px;
}
.roadmap li ul{
   border-left: 3px solid #173F37;
   margin-bottom: 30px;
}
.roadmap li ul ul{
   border-left: none;
}
main .accounting-item1 {
  width: 100%;
  height: 117px;
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}
.post-sidebar ul.post-list br{
    display: none;
}
.page-template-default ol {
  list-style: unset;
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.show {
  display: block !important;
}
.data-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
main .accounting-item p.accounting-text {
  font-size: 18px;
  line-height: 130%;
  margin-top: 24px;
  font-weight: 500;
}