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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  min-width: 350px;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  scrollbar-width: none;
  overflow-x: hidden;
  color: #1E2127;
  overflow-anchor: none;
  overflow-wrap: break-word;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
}
.wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 10px;
  }
}

h1, .h1 {
  position: relative;
  font-size: clamp(22px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
}

h2, .h2 {
  position: relative;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 40px;
}
@media screen and (max-width: 992px) {
  h2, .h2 {
    margin: 0 0 30px;
  }
}

h3, .h3 {
  position: relative;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 40px;
}
@media screen and (max-width: 992px) {
  h3, .h3 {
    margin: 0 0 30px;
  }
}
h3 span, .h3 span {
  white-space: nowrap;
}

h4, .h4 {
  position: relative;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 20px;
}

h5, .h5 {
  position: relative;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px;
}

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

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 992px) {
  main {
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 992px) {
  main.inner_page {
    margin: 90px 0 0;
  }
}

p {
  margin: 0 0 15px;
  line-height: 1.6;
  font-size: clamp(14px, 1vw, 16px);
}

input {
  outline: none;
}

section {
  margin: 40px 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  section {
    margin: 40px 0;
  }
}

.section {
  margin: 30px 0;
  position: relative;
}

.section-2 {
  margin: 30px 0;
  position: relative;
  border: 1px solid #E5E5E5;
  padding: 34px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .section-2 {
    padding: 20px;
  }
}

.hidden {
  display: none;
}

/*button*/
.btn {
  background: transparent;
  border-radius: 4px;
  padding: 0 20px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #9F1C30;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  text-transform: none;
  border: 1px solid #9F1C30;
}
.btn span {
  display: block;
  margin: 0 0 0 10px;
  background: url(../img/arrow.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
}
.btn:hover {
  background: transparent;
  border: 1px solid #9F1C30;
  color: #9F1C30;
  background: #fff;
}
.btn:hover span {
  background: url(../img/arrow_color.svg);
}
.btn.btn_color {
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .btn.btn_color {
    width: 100%;
  }
}
.btn.def {
  background: transparent;
  border: 1px solid rgba(159, 28, 48, 0.3019607843);
  color: #9F1C30;
  gap: 10px;
  border-radius: 4px;
}
.btn.def span {
  display: block;
  margin: 0 0 0 10px;
  background: url(../img/arrow_color.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
}
.btn.def:hover {
  border: 1px solid #333;
  color: #333;
}
.btn.def:hover span {
  background: url(../img/arrow_color2.svg);
}
.btn.white {
  background: #fff;
  color: #302E2E;
}
.btn.btn_search {
  height: 56px;
  border-radius: 0;
  font-size: 18px;
  width: 100%;
  margin: 24px 0;
}
.btn.btn_block {
  height: 56px;
  border-radius: 4px;
  font-size: 16px;
  margin: 24px 0;
}
.btn.btn_block_white {
  height: 56px;
  border-radius: 4px;
  font-size: 14px;
  margin: 24px 0;
  background: transparent;
  color: #8A2125;
}
.btn.no_bg {
  background: transparent;
  color: #fff;
}

/*header*/
.header_up {
  background: #6D060A;
}
@media screen and (max-width: 992px) {
  .header_up {
    display: none;
  }
}

.header_up_row {
  margin: 0 0 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social svg {
  fill: #fff;
}

.glasses svg {
  fill: #fff;
  max-width: 20px;
}

.search svg {
  max-width: 20px;
}

.room {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 18px;
}
.room svg {
  max-width: 25px;
}

header .main_menu {
  background: #8A2125;
}
@media screen and (max-width: 992px) {
  header .main_menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
  }
}
header .main_menu_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 992px) {
  header .main_menu_row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
}
header .main_menu_row .search_btn {
  color: #fff;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  header .main_menu_row .search_btn {
    display: block;
  }
}
header .main_menu_row .burger_mobile {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  header .main_menu_row .burger_mobile {
    display: block;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  font-size: clamp(8px, 1.8vw, 24px);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  header .logo {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  header .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 8px;
    text-align: center;
    gap: 5px;
  }
}
header .logo img {
  max-width: 180px;
}
@media screen and (max-width: 1200px) {
  header .logo img {
    height: auto;
  }
}
@media screen and (max-width: 992px) {
  header .logo img {
    max-width: 100px;
  }
}
header .logo span {
  display: block;
  font-weight: 700;
  font-size: clamp(8px, 3vw, 34px);
}
@media screen and (max-width: 992px) {
  header .logo span {
    font-size: 8px;
  }
}
header .social {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 992px) {
  header .social {
    display: none;
  }
}
header .social a {
  position: relative;
  padding: 0 50px 0 30px;
}
header .social a::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 1px;
  background: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(10deg) translate(0, -50%);
          transform: rotate(10deg) translate(0, -50%);
}
header .social a:last-child::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  height: 70px;
  background: #fff;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(10deg) translate(0, -50%);
          transform: rotate(10deg) translate(0, -50%);
}
header .nav {
  border: 1px solid #8A2125;
}
@media screen and (max-width: 992px) {
  header .nav {
    display: none;
  }
}
header .nav_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 120px;
}
header .burger {
  margin: 0 0 0 auto;
}
header .burger svg {
  max-width: 30px;
}
header nav {
  width: 100%;
}
header nav > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header nav > ul > li > a {
  color: #8A2125;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0;
  display: block;
}
@media screen and (max-width: 1200px) {
  header nav > ul > li > a {
    font-size: 18px;
  }
}
header nav .dropdown {
  position: relative;
}
header nav .dropdown:hover .sub_menu {
  display: block;
}
header nav .dropdown .sub_menu {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 10;
  min-width: 435px;
  border: 1px solid #D0D5DA;
  padding: 22px 0;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  header nav .dropdown .sub_menu {
    min-width: 340px;
  }
}
header nav .dropdown .sub_menu li {
  line-height: 1.6;
}
header nav .dropdown .sub_menu li a {
  color: #333;
  padding: 6px 40px 6px 22px;
  display: block;
}
@media screen and (max-width: 1200px) {
  header nav .dropdown .sub_menu li a {
    font-size: 14px;
  }
}
header nav .dropdown .sub_menu li a:hover {
  color: #8A2125;
}
header nav .dropdown .dop_menu {
  position: relative;
}
header nav .dropdown .dop_menu:hover > .sub_menu {
  display: block;
}
header nav .dropdown .dop_menu:hover > .icon_menu {
  -webkit-transform: translate(-10px, -35%) rotate(0deg);
          transform: translate(-10px, -35%) rotate(0deg);
}
header nav .dropdown .dop_menu .sub_menu {
  display: none;
  top: 0;
  left: 100%;
  position: absolute;
  min-width: 332px;
  -webkit-transform: translate(0, -23px);
          transform: translate(0, -23px);
}
@media screen and (max-width: 1200px) {
  header nav .dropdown .dop_menu .sub_menu {
    min-width: 280px;
  }
}
header nav .dropdown .dop_menu .sub_menu a {
  padding: 6px 35px 6px 22px;
}
header nav .dropdown .dop_menu .sub_menu .sub_menu {
  min-width: 423px;
  -webkit-transform: translate(0, -23px);
          transform: translate(0, -23px);
}
@media screen and (max-width: 1200px) {
  header nav .dropdown .dop_menu .sub_menu .sub_menu {
    min-width: 340px;
  }
}
header nav .dropdown .dop_menu .sub_menu .sub_menu a {
  padding: 6px 30px 6px 22px;
}
header nav .icon_menu {
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(-10px, -45%) rotate(-90deg);
          transform: translate(-10px, -45%) rotate(-90deg);
}

/*fix_main_menu*/
.fix_main_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 50px 90px;
  overflow: auto;
  background: url(../img/main_banner.png) no-repeat center/cover;
}
.fix_main_menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1200px) {
  .fix_main_menu {
    padding: 50px 20px;
  }
}
.fix_main_menu .container {
  height: 100%;
}
.fix_main_menu .mobile_multimenu {
  position: relative;
  z-index: 1;
  color: #fff;
  height: 100%;
}

.close_multimenu {
  color: #fff;
  position: absolute;
  top: 60px;
  left: 60px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .close_multimenu {
    left: 10px;
  }
}

.header_multimenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 50px;
}
.header_multimenu .logo {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header_multimenu .logo img {
  max-width: 156px;
}
.header_multimenu .logo span {
  font-size: 14px;
  color: #fff;
  max-width: 212px;
  text-transform: uppercase;
}
.header_multimenu .tap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-left: auto;
}
.header_multimenu .tap .phone {
  color: #fff;
}
.header_multimenu .tap .btn {
  height: 56px;
  font-size: 16px;
}

.main_multimenu {
  position: relative;
  height: calc(100% - 200px);
  min-height: 400px;
}
.main_multimenu .menu {
  max-width: 340px;
  list-style: none;
}
.main_multimenu .menu > li {
  margin: 0 0 30px;
}
.main_multimenu .menu > li > a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
}
.main_multimenu .menu > li > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
}
.main_multimenu .menu > li.active > a {
  position: relative;
  width: 100%;
  display: table;
}
.main_multimenu .menu > li.active > a::before {
  width: 225px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: 0;
  left: 100%;
  margin-left: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.main_multimenu .menu > li.active .sub_menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.main_multimenu .sub_menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 600px;
  right: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  list-style: none;
}
.main_multimenu .sub_menu li {
  margin: 0 0 10px;
}
.main_multimenu .sub_menu li a {
  color: #fff;
  font-size: 18px;
}
.main_multimenu .sub_menu li a:hover {
  color: #b0b0b0;/*//#333333;*/
}

.footer_multimenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  left: 0;
  right: 0;
  bottom: -60px;
  gap: 100px;
}
.footer_multimenu .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer_multimenu .footer_multimenu_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 0 0 0 auto;
}
.footer_multimenu .glasses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
}
.footer_multimenu .glasses:hover {
  color: #333;
}
.footer_multimenu .search_btn {
  cursor: pointer;
}
.footer_multimenu .search_btn:hover {
  color: #333;
}
.footer_multimenu .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer_multimenu .social a {
  width: 16px;
  color: #fff;
}
.footer_multimenu .social svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}

/*fix_searche*/
.fix_searche {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(9px);
  z-index: 9999;
}
.fix_searche::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 25, 25, 0.8);
  z-index: -1;
}
.fix_searche form {
  border: 1px solid #E5E5E5;
  background: #FFF;
  position: relative;
}
.fix_searche .all_search {
  font-size: 26px;
  font-weight: 500;
  color: #8A2125;
  border-bottom: 1px solid #8A2125;
  margin: 20px 0 70px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 992px) {
  .fix_searche .all_search {
    margin: 70px 0 30px;
    font-size: 14px;
  }
}

.header_search_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 992px) {
  .header_search_row .btn {
    position: absolute;
    top: 130px;
    height: 45px;
  }
}

.header_search_inner {
  position: relative;
  padding: 107px 0 5px;
  margin: 0 0 30px;
  border-bottom: 2px solid #D0D5DA;
}
@media screen and (max-width: 992px) {
  .header_search_inner {
    padding: 20px 0 5px;
  }
}
.header_search_inner::before {
  content: "\f002";
  font: var(--fa-font-solid);
  position: absolute;
  background-size: cover;
  font-size: 34px;
  left: 0;
  top: 82%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #999;
}
@media screen and (max-width: 992px) {
  .header_search_inner::before {
    top: 58%;
    font-size: 20px;
  }
}
.header_search_inner input {
  height: 40px;
  width: calc(100% - 80px);
  font-size: 24px;
  padding-left: 60px;
  border: none;
}
@media screen and (max-width: 992px) {
  .header_search_inner input {
    font-size: 12px;
  }
}
.header_search_inner input:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 0;
}
.header_search_inner input:focus::-moz-placeholder {
  color: transparent;
  opacity: 0;
}
.header_search_inner input:focus:-ms-input-placeholder {
  color: transparent;
  opacity: 0;
}
.header_search_inner input:focus::-ms-input-placeholder {
  color: transparent;
  opacity: 0;
}
.header_search_inner input:focus::placeholder {
  color: transparent;
  opacity: 0;
}

.header_search_close {
  position: absolute;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  font-size: 28px;
  color: #999;
}
@media screen and (max-width: 992px) {
  .header_search_close {
    font-size: 20px;
    top: 30%;
  }
}

/*main_banner*/
.main_banner {
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .main_banner_row {
    margin: 40px 0 0;
  }
}
.main_banner_row .item {
  position: relative;
  max-height: 440px;
  overflow: hidden;
  border-radius: 10px;
}
.main_banner_row .img {
  position: relative;
  aspect-ratio: 9/4;
}
@media screen and (max-width: 768px) {
  .main_banner_row .img {
    aspect-ratio: 16/9;
  }
}
.main_banner_row .img::after {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  inset: 0;
}
.main_banner_row .banner_info {
  position: absolute;
  left: 50px;
  bottom: 45px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main_banner_row .banner_info {
    left: 24px;
    bottom: 20px;
  }
}
.main_banner_row .banner_info .date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 10px;
}
.main_banner_row .banner_info .title {
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 600;
  max-width: 70%;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .main_banner_row .banner_info .title {
    max-width: 90%;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .main_banner_row .banner_info .btn {
    height: 30px;
    font-size: 12px;
  }
}

/*new_main*/
.new_main {
  margin: 10px 0 20px;
}
.new_main .new_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin: 40px 0 60px;
}
@media screen and (max-width: 1200px) {
  .new_main .new_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .new_main .new_row {
    grid-template-columns: 1fr;
  }
}
.new_main .new_row .item {
  position: relative;
  color: #1E2127;
}
.new_main .new_row .item::before {
  content: "";
  position: absolute;
  right: -30px;
  width: 1px;
  height: 100%;
  background: #E4E4E4;
}
.new_main .new_row .item:last-child::before {
  display: none;
}
.new_main .new_row .img {
  position: relative;
  border-radius: 15px;
  max-height: 200px;
  overflow: hidden;
  margin: 0 0 14px;
}
.new_main .new_row .img img {
  position: absolute;
  inset: 0;
}
.new_main .new_row .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.new_main .new_row .date {
  margin: 0 0 10px;
  color: rgba(30, 33, 39, 0.6);
  font-size: 12px;
}
.new_main .new_row .title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
}
.new_main .new_row + .btn {
  margin: 0 auto;
}

.new_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F3F5F7;
  border-radius: 100px;
  padding: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .new_filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    border-radius: 0;
    background: transparent;
  }
}
.new_filter .item_f {
  padding: 0 20px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 48px;
  color: rgba(30, 33, 39, 0.5019607843);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .new_filter .item_f {
    font-size: 12px;
    padding: 0 14px;
    height: 30px;
  }
}
.new_filter .item_f.active {
  background: #8A2125;
  border-radius: 50px;
  color: #fff;
}
.new_filter .item_f.active:hover {
  color: #fff;
}
.new_filter .item_f:hover {
  color: #8A2125;
}

/*deputy*/
.deputy {
  padding: 60px 0;
}

.deputy_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin: 0 0 60px;
}
@media screen and (max-width: 1400px) {
  .deputy_row {
    grid-template-columns: 1fr;
  }
}
.deputy_row .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .deputy_row .item {
    width: 433px;
  }
}
@media screen and (max-width: 768px) {
  .deputy_row .item {
    width: 280px;
    grid-template-columns: 1fr;
    border: 1px solid #D0D5DA;
    border-radius: 15px;
  }
}
.deputy_row .item::before {
  content: "";
  position: absolute;
  right: -40px;
  width: 1px;
  height: 100%;
  background: #E4E4E4;
}
@media screen and (max-width: 1300px) {
  .deputy_row .item::before {
    right: -50px;
  }
}
@media screen and (max-width: 768px) {
  .deputy_row .item::before {
    display: none;
  }
}
.deputy_row .item:last-child::before {
  display: none;
}
.deputy_row .item:hover .desc {
  color: #9F1C30;
}
.deputy_row .item .img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 768px) {
  .deputy_row .item .img {
    min-height: 320px;
  }
}
.deputy_row .item .img img {
  position: absolute;
  inset: 0;
}
.deputy_row .item .img::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.deputy_row .item .deputy_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .deputy_row .item .deputy_info {
    padding: 20px;
  }
}
.deputy_row .item .name {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
}
.deputy_row .item .date_title {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(30, 33, 39, 0.4);
  font-weight: 500;
}
.deputy_row .item .date {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0 0 10px;
}
.deputy_row .item .desc {
  font-size: 14px;
  color: #7C818A;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 20px;
}
.deputy_row .item .btn {
  margin: auto 0 0;
}
.deputy_row + .btn {
  margin: 0 auto;
}

/*legislation*/
.legislation {
  padding: 0 0 60px;
}

.legislation_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 60px;
}
@media screen and (max-width: 1200px) {
  .legislation_row {
    grid-template-columns: 1fr;
  }
}
.legislation_row .item {
  background: #fff;
  padding: 34px;
  border-radius: 15px;
}
.legislation_row .item .num {
  background: rgba(138, 33, 37, 0.1019607843);
  height: 44px;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  color: #8A2125;
  font-size: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.legislation_row .item .item_wrap {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  border-bottom: 1px solid rgba(138, 33, 37, 0.1490196078);
}
@media screen and (max-width: 768px) {
  .legislation_row .item .item_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .legislation_row .item .item_wrap .img {
    max-width: 200px;
  }
}
.legislation_row .item .title {
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  margin: 0 0 15px;
}
.legislation_row .item .date {
  color: rgba(30, 33, 39, 0.4);
  font-size: 14px;
  font-weight: 500;
}
.legislation_row .item .date span {
  color: #1E2127;
}
.legislation_row .item .icon_wrap {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 22px 0 0;
}
@media screen and (max-width: 680px) {
  .legislation_row .item .icon_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.legislation_row .item .icon_row {
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (max-width: 680px) {
  .legislation_row .item .icon_row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.legislation_row .item .icon_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #1E2127;
  font-weight: 500;
}
@media screen and (max-width: 680px) {
  .legislation_row .item .icon_item {
    display: grid;
    grid-template-columns: 30px 1fr;
  }
}
.legislation_row .item .more {
  color: #8A2125;
}
.legislation_row + .btn {
  margin: 0 auto;
}

/*committee*/
.committee_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .committee_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .committee_row {
    grid-template-columns: 1fr;
  }
}
.committee_row .item {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.0588235294);
          box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.0588235294);
  padding: 35px;
  border-radius: 15px;
  position: relative;
  min-height: 238px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .committee_row .item {
    min-height: 216px;
  }
}
.committee_row .item .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 178px;
  height: 152px;
}
@media screen and (max-width: 768px) {
  .committee_row .item .img {
    width: 100px;
    height: 100px;
  }
}
.committee_row .item .img img {
  position: absolute;
  inset: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.committee_row .item .img::before {
  content: "";
  display: block;
  padding: 86% 0 0;
}
.committee_row .item .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .committee_row .item .title {
    font-size: 16px;
  }
}
.committee_row .item .more {
  margin: auto 0 0;
}

/*fraction*/
.fraction_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 53px;
}
@media screen and (max-width: 992px) {
  .fraction_row {
    gap: 20px;
  }
}
@media screen and (max-width: 520px) {
  .fraction_row {
    grid-template-columns: 1fr;
  }
}
.fraction_row .item {
  background: #F3F5F7;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .fraction_row .item {
    padding: 10px 15px;
  }
}

/*svg_map_row*/
.svg_map_row {
  background: #F3F5F7;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .svg_map_row {
    padding: 20px;
  }
}
.svg_map_row svg {
  display: block;
  margin: auto;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.svg_map_row .link_map {
  cursor: pointer;
  stroke-width: 1;
  cursor: pointer;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.svg_map_row .link_map:hover {
  fill: #8A2125;
}
.svg_map_row .link_map.active {
  fill: #8A2125;
}
.svg_map_row .tooltip {
  position: absolute;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  -webkit-box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
  min-width: 377px;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 768px) {
  .svg_map_row .tooltip {
    width: 200px;
    min-width: auto;
    padding: 15px;
  }
}
.svg_map_row .tooltip.active {
  display: block;
}
.svg_map_row .tooltip .title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 5px;
}
@media screen and (max-width: 768px) {
  .svg_map_row .tooltip .title {
    font-size: 14px;
  }
}
.svg_map_row .tooltip .num {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 14px;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .svg_map_row .tooltip .num {
    font-size: 10px;
    margin: 0 0 5px;
  }
}
.svg_map_row .tooltip a {
  color: #9F1C30;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .svg_map_row .tooltip a {
    font-size: 10px;
  }
}
.svg_map_row .svg_map_filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  background: #fff;
  border-radius: 100px;
  height: 55px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.svg_map_row .btn_map {
  color: rgba(30, 33, 39, 0.5019607843);
  padding: 0 20px;
  border-radius: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
}
@media screen and (max-width: 768px) {
  .svg_map_row .btn_map {
    font-size: 12px;
  }
}
.svg_map_row .btn_map.active {
  background: #8A2125;
  color: #fff;
}

/*all_news*/
.all_news {
  margin-bottom: 0;
}

.all_news_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1400px) {
  .all_news_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .all_news_row {
    grid-template-columns: 1fr;
  }
}
.all_news_row + .btn {
  margin: 0 auto;
}
.all_news_row .item_new {
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  overflow: hidden;
}
.all_news_row .item_new:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
}
.all_news_row .item_new .img {
  position: relative;
  aspect-ratio: 1/0.65;
  overflow: hidden;
}
.all_news_row .item_new .item_new_params {
  padding: 27px 35px;
}
.all_news_row .item_new .item_new_tag {
  font-size: 12px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 9px;
}
.all_news_row .item_new .item_new_title {
  margin: 15px 0 13px;
  font-size: 18px;
}
.all_news_row .item_new .item_new_desc {
  color: #666;
  font-size: 14px;
  margin: 0 0 16px;
}
.all_news_row .item_new .item_new_date {
  font-size: 12px;
}

/*left_banner*/
.left_banner {
  max-height: 310px;
  overflow: auto;
}
.left_banner .item {
  border: 1px solid #E5E5E5;
  padding: 17px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}
.left_banner .item img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .left_banner .item {
    font-size: 14px;
    gap: 10px;
    grid-template-columns: 60px 1fr;
    padding: 12px;
  }
}

/*deputy_page*/
.deputy_page {
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .deputy_page .btn {
    margin: 0 auto;
  }
}
.deputy_page .deputy_text {
  margin: -30px 0 30px;
  color: #333333;
}
.deputy_page .deputy_text a {
  color: #8A2125;
}
.deputy_page .deputy_text p {
  margin: 0 0 10px;
}

.deputy_page_row {
  display: grid;
  gap: 40px;
}
.deputy_page_row .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 26px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
}
@media screen and (max-width: 992px) {
  .deputy_page_row .item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .deputy_page_row .item {
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }
}
.deputy_page_row .item .img {
  position: relative;
  aspect-ratio: 3/4;
}
@media screen and (max-width: 768px) {
  .deputy_page_row .item .img {
    border-radius: 15px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .deputy_page_row .item .deputy_desc {
    padding: 22px;
  }
}
.deputy_page_row .item .deputy_desc .btn {
  margin: 10px 0 0;
}
.deputy_page_row .item .position_title {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin: 0 0 10px;
}
.deputy_page_row .item .position {
  font-size: 20px;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .deputy_page_row .item .position {
    margin: 0 0 20px;
    font-size: 18px;
  }
}
.deputy_page_row .item .name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.deputy_page_row .item .link {
  display: table;
  /*font-size: 14px;*/
  color: #333;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .deputy_page_row .item .link {
    font-size: 16px;
  }
}
.deputy_page_row .item .text {
  margin: 20px 0;
  line-height: 1.4;
  color: #666;
  font-size: 14px;
}
.deputy_page_row .item .text.color {
  color: #000;
}
/*chairman*/
.chairman {
  margin: 30px 0 0;
  border: 1px solid #E5E5E5;
  padding: 43px;
}
@media screen and (max-width: 1200px) {
  .chairman {
    padding: 20px;
  }
}

.chairman_row .item {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 33px;
  margin: 0 0 36px;
}
@media screen and (max-width: 1200px) {
  .chairman_row .item {
    grid-template-columns: 1fr;
  }
}
.chairman_row .item .chairman_img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .chairman_row .item .chairman_img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-height: 300px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1200px) {
  .chairman_row .item .chairman_info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.chairman_row .item .position_title {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.chairman_row .item .link_row {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #E5E5E5;
}
.chairman_row .item .link_row a {
  display: block;
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 14px;
  margin: 0 0 10px;
}
.chairman_row .item .position {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6980392157);
  padding: 0 0 39px;
  position: relative;
}
.chairman_row .item .position::before {
  content: "";
  position: absolute;
  bottom: 0;
  background: #E5E5E5;
  height: 1px;
  width: 100%;
  left: 0;
  right: 0;
}
.chairman_row .item .name {
  color: #000;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 600;
}
.chairman_row .item .tel {
  margin: 0 0 15px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  color: #000;
}
.chairman_row .item .tel + p {
  font-size: 14px;
}
.chairman_row .item .item_row {
  margin: 0 0 15px;
  font-size: 14px;
}
.chairman_row .item .item_row .title {
  font-weight: 600;
  margin: 0 0 4px;
}
.chairman_row .item .item_row .text {
  font-size: 12px;
}

/*video_gallery*/
.video_gallery {
  margin: 30px 0 0;
}

.video_gallery_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1400px) {
  .video_gallery_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .video_gallery_row {
    grid-template-columns: 1fr;
  }
}
.video_gallery_row + .btn {
  margin: 0 auto;
}
.video_gallery_row .item {
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  overflow: hidden;
}
.video_gallery_row .item .img {
  position: relative;
  aspect-ratio: 2/1.32;
  overflow: hidden;
}
.video_gallery_row .item .item_params {
  padding: 26px 29px;
}
@media screen and (max-width: 768px) {
  .video_gallery_row .item .item_params {
    padding: 26px;
  }
}
.video_gallery_row .item .item_tag {
  font-size: 12px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 9px;
  margin: 0 0 20px;
  color: #333;
}
.video_gallery_row .item .item_title {
  margin: 15px 0 13px;
  font-size: 18px;
}
.video_gallery_row .item .item_desc {
  color: #666;
  font-size: 18px;
  margin: 0 0 16px;
}
.video_gallery_row .item .item_date {
  font-size: 12px;
  color: #333;
}

/*piple_list*/
.piple_list {
  margin: 30px 0;
}

.piple_list_row .item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 17px;
  border: 1px solid #E5E5E5;
  padding: 20px 30px;
  border-radius: 4px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .piple_list_row .item {
    padding: 20px;
  }
}
.piple_list_row .item .img {
  height: 60px;
}
.piple_list_row .item .name {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .piple_list_row .item .name {
    font-size: 14px;
    max-width: 200px;
  }
}
.piple_list_row .item .desc {
  margin: 0 0 4px;
  color: #999;
  font-size: 12px;
}

/*agendas*/
.agendas {
  margin: 30px 0 0;
}

.agendas_row .title_doc {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .agendas_row .title_doc {
    text-align: left;
  }
}
.agendas_row .info_doc {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 55px;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .agendas_row .info_doc {
    padding: 0;
  }
}
.agendas_row .btn_block_white {
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .agendas_row .btn_block_white {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .agendas_row ol {
    padding: 0 0 0 10px;
  }
}

/*structure*/
.structure {
  margin: 30px 0 0;
}
.structure.theme_3 {
  min-width: 1100px;
}
@media screen and (max-width: 768px) {
  .structure.theme_3 {
    min-width: 100%;
  }
}

.structure_row {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .structure_row {
    gap: 10px;
  }
}
.structure_row .item {
  background: #8A2125;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 74px;
  padding-left: 124px;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .structure_row .item {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 25px;
  }
}
.structure_row .item:first-child::before {
  display: none;
}
.structure_row .item:last-child::after {
  display: none;
}
.structure_row .item::before {
  content: "";
  position: absolute;
  bottom: 100%;
  top: -30px;
  height: 40%;
  left: 60px;
  border-left: 2px dashed #333333;
}
@media screen and (max-width: 768px) {
  .structure_row .item::before {
    display: none;
  }
}
.structure_row .item::after {
  content: "";
  position: absolute;
  top: 100%;
  bottom: 0;
  height: 40%;
  left: 60px;
  border-left: 2px dashed #333333;
}
@media screen and (max-width: 768px) {
  .structure_row .item::after {
    display: none;
  }
}
.structure_row .item .item_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.structure_row .sub_item_row {
  display: grid;
  gap: 10px;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .structure_row .sub_item_row {
    padding: 0;
  }
}
.structure_row .sub_item_row .sub_item {
  border: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 62px;
  padding-left: 25px;
  border-radius: 10px;
  position: relative;
  color: #8A2125;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .structure_row .sub_item_row .sub_item {
    padding: 25px;
    height: auto;
  }
}
.structure_row .sub_item_row .sub_item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: -40px;
  width: 40px;
  border-top: 2px dashed #333333;
}
@media screen and (max-width: 768px) {
  .structure_row .sub_item_row .sub_item::before {
    display: none;
  }
}
.structure_row .sub_item_row .sub_item::after {
  content: "";
  position: absolute;
  top: -12px;
  bottom: 2px;
  left: -41px;
  border-left: 2px dashed #333333;
}
@media screen and (max-width: 768px) {
  .structure_row .sub_item_row .sub_item::after {
    display: none;
  }
}
.structure_row .str:last-child .sub_item:last-child::after {
  bottom: 30px;
}

.structure_2_row .item {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #fff;
  background: #8A2125;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .structure_2_row .item {
    height: 90px;
  }
}
.structure_2_row .item_2 {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #8A2125;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  margin: 33px auto 70px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 14px;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .item_2 {
    height: auto;
    padding: 14px;
    width: 100%;
    margin: 10px 0;
  }
}
.structure_2_row .level_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
  }
}
.structure_2_row .level_3 .item_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #8A2125;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 0 14px;
  height: 94px;
  width: 100%;
  max-width: 214px;
  position: relative;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_3 .item_3 {
    border: none;
    max-width: 100%;
    padding: 14px;
    height: auto;
  }
}
.structure_2_row .level_3 .item_3::before {
  /*content: "";*/
  position: absolute;
  top: 0;
  right: 0;
  height: 200px;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_3 .item_3::before {
    display: none;
  }
}
.structure_2_row .level_4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0 0;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_4 {
    margin: 10px 0;
    grid-template-columns: 1fr;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.structure_2_row .level_4 .item_4 {
  background: #fff;
  padding: 10px;
  border: 1px solid #E5E5E5;
  min-height: 64px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_4 .item_4 {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 14px;
    min-height: auto;
  }
}
.structure_2_row .level_4 .item_4::before {
  /*content: "";*/
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_4 .item_4::before {
    display: none;
  }
}
.structure_2_row .level_4 .item_4:nth-child(odd)::before {
  left: 60%;
}
.structure_2_row .level_4 .item_4:nth-child(even)::before {
  left: 40%;
}
.structure_2_row .level_5 {
  margin: 70px 0 0;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_5 {
    margin: 10px 0;
  }
}
.structure_2_row .level_5 .item_5 {
  background: #fff;
  padding: 10px;
  border: 1px solid #E5E5E5;
  max-width: 900px;
  min-height: 94px;
  border-radius: 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_5 .item_5 {
    min-height: auto;
    padding: 14px;
  }
}
.structure_2_row .level_5 .item_5::before {
  /*content: "";*/
  position: absolute;
  top: 0;
  right: 0;
  height: 360px;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_5 .item_5::before {
    display: none;
  }
}
.structure_2_row .level_6 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin: 36px 0 0;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_6 {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }
}
.structure_2_row .level_6 .item_6 {
  background: #fff;
  padding: 10px;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_6 .item_6 {
    padding: 14px;
  }
}
.structure_2_row .level_6 .item_6::before {
  /*content: "";*/
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .structure_2_row .level_6 .item_6::before {
    display: none;
  }
}
.structure_2_row .level_6 .item_6:last-child::before {
  left: 30%;
}
.structure_2_row .level_6 .item_6:first-child::before {
  left: 70%;
}

.structure_3_row .item {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #fff;
  background: #8A2125;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}
.structure_3_row .item_2 {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #8A2125;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  margin: 33px auto 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 14px;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .structure_3_row .item_2 {
    width: 100%;
    margin: 10px 0;
  }
}
.structure_3_row .item_2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .structure_3_row .item_2::before {
    display: none;
  }
}
.structure_3_row .item_2::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  height: 100%;
  width: 1px;
  background: #000;
  bottom: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .structure_3_row .item_2::after {
    display: none;
  }
}
.structure_3_row .level_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.structure_3_row .level_3 .item_3 {
  display: grid;
  gap: 20px 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 {
    gap: 10px;
    width: 100%;
  }
}
.structure_3_row .level_3 .item_3 .sub_item_3_title {
  text-align: center;
  color: #8A2125;
  background: #fff;
  border: 1px solid #E5E5E5;
  font-weight: 700;
  padding: 0 14px;
  height: 124px;
  width: 100%;
  max-width: 174px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3_title {
    max-width: 100%;
    height: auto;
    min-height: 60px;
    text-align: left;
  }
}
.structure_3_row .level_3 .item_3 .sub_item_3_title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3_title::before {
    display: none;
  }
}
.structure_3_row .level_3 .item_3 .sub_item_3_title::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 1px;
  background: #000;
  top: -30px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3_title::after {
    display: none;
  }
}
.structure_3_row .level_3 .item_3 .sub_item_3 {
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  width: 100%;
  max-width: 180px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3 {
    max-width: 100%;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.structure_3_row .level_3 .item_3:last-child .sub_item_3_title {
  font-weight: 400;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.structure_3_row .level_3 .item_3:last-child .sub_item_3_title::after {
  width: 50%;
  right: 50%;
}
.structure_3_row .level_3 .item_3:first-child .sub_item_3_title::after {
  width: 60%;
  left: 50%;
}

/*block_list*/
.block_list {
  margin: 30px 0;
}

.block_list_row .item {
  display: grid;
  grid-template-columns: 45px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  border: 1px solid #E5E5E5;
  padding: 20px 30px;
  border-radius: 4px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .block_list_row .item {
    padding: 20px;
  }
}
.block_list_row .item .img {
  height: 60px;
}
.block_list_row .item .name {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .block_list_row .item .name {
    font-size: 14px;
    max-width: 200px;
  }
}
.block_list_row .item .desc {
  margin: 0 0 4px;
  color: #999;
  font-size: 12px;
}

/*control*/
.control_row {
  display: grid;
  gap: 30px;
}
.control_row .item {
  border: 1px solid #E5E5E5;
  padding: 26px;
}
.control_row .item .status {
  color: #999;
  font-size: 12px;
  margin: 0 0 2px;
}
.control_row .item .position {
  font-size: 20px;
  margin: 0 0 20px;
}
.control_row .item .name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.control_row .item .cont {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 14px;
}

/*contact*/
@media screen and (max-width: 1200px) {
  .contacts_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .contacts_row {
    grid-template-columns: 1fr;
  }
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 356px;
  gap: 30px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1200px) {
  .contacts {
    grid-template-columns: 1fr;
  }
}
.contacts .contact_info {
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 4px;
  overflow: hidden;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}
.contacts .address {
  position: relative;
}
.contacts .map_contact {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 1200px) {
  .contacts .map_contact {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.contacts .desc_contact .title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 30px;
}
.contacts .info_row {
  padding: 25px 32px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contacts .info_row {
    padding: 20px;
  }
}
.contacts .info_row .btn {
  width: 100%;
}
.contacts .info_item {
  margin: 0 0 20px;
}
.contacts .adress_row {
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 1;
  padding: 0 25px 25px 25px;
}
.contacts .adress_row .title {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 10px;
}
.contacts .info_title {
  font-size: 12px;
  margin: 0 0 7px;
  color: #999;
}
.contacts .info_time_text {
  font-size: 14px;
}
.contacts .info_address {
  font-size: 18px;
  line-height: 1.2;
}
.contacts .info_phone_link {
  display: table;
  color: #333;
}
.contacts .info_phone_link:hover {
  color: #95C11F;
}
.contacts .info_link {
  display: table;
  color: #333;
}
.contacts .info_img {
  position: relative;
}
.contacts .info_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/*filter_img*/
.filter_img .item {
  height: 100%;
  position: relative;
  overflow: visible;
}
.filter_img .item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: #E4E4E4;
}
@media screen and (max-width: 1200px) {
  .filter_img .item::after {
    right: -10px;
  }
}
@media screen and (max-width: 768px) {
  .filter_img .item::after {
    display: none;
  }
}
.filter_img .item:last-child::after {
  display: none;
}
.filter_img .item img {
  max-height: 112px;
}
.filter_img .fraction_row {
  margin: 0 0 40px;
}
@media screen and (max-width: 1200px) {
  .filter_img .fraction_row {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .filter_img .fraction_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.filter_img .filter_alphabet ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .filter_img .filter_alphabet ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 12px 20px;
  }
}
.filter_img .filter_alphabet ul li a {
  color: #666;
  font-size: 21px;
}
.filter_img .filter_alphabet ul li a:hover {
  color: #8A2125;
}
.filter_img .filter_alphabet ul li a.active {
  color: #8A2125;
  font-weight: 700;
  position: relative;
}
.filter_img .filter_alphabet ul li a.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid #8A2125;
}
.filter_img .filter_alphabet .all_alphabet {
  color: #666;
  font-size: 21px;
}
.filter_img .filter_alphabet .all_alphabet:hover {
  color: #8A2125;
}

/*footer*/
footer {
  background: #8A2125;
  padding: 50px 0 0;
  color: #fff;
}
footer ul {
  list-style: none;
}
footer a {
  color: rgba(255, 255, 255, 0.5019607843);
}

.footer_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 0fr 0fr;
  gap: 20px 76px;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer_row {
    grid-template-columns: 1fr;
    grid-template-rows: 0fr;
    gap: 10px;
  }
}
.footer_row .f_menu {
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .footer_row .f_menu {
    margin: 0;
    font-size: 14px;
  }
}
.footer_row .f_menu .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
}
.footer_row .f_menu ul li {
  margin: 0 0 12px;
}
.footer_row .f1 {
  grid-column: 1/1;
}
@media screen and (max-width: 768px) {
  .footer_row .f1 {
    grid-column: auto;
  }
}
.footer_row .f2 {
  grid-column: 1/4;
  grid-row: 2/2;
}
@media screen and (max-width: 992px) {
  .footer_row .f2 {
    grid-column: 1/5;
  }
}
@media screen and (max-width: 768px) {
  .footer_row .f2 {
    grid-column: auto;
  }
}
.footer_row .f3 {
  grid-column: 2/3;
}
@media screen and (max-width: 992px) {
  .footer_row .f3 {
    grid-column: 1/2;
  }
}
@media screen and (max-width: 768px) {
  .footer_row .f3 {
    grid-column: auto;
  }
}
.footer_row .f4 {
  grid-column: 3/3;
}
@media screen and (max-width: 992px) {
  .footer_row .f4 {
    grid-column: 2/5;
  }
}
@media screen and (max-width: 768px) {
  .footer_row .f4 {
    grid-column: auto;
  }
}
.footer_row .f5 {
  grid-column: 4/4;
  grid-row: 1/3;
}
@media screen and (max-width: 992px) {
  .footer_row .f5 {
    grid-column: 2/5;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 768px) {
  .footer_row .f5 {
    grid-column: auto;
    grid-row: auto;
  }
}
.footer_row .f_contact .title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 23px;
}
.footer_row .f_social {
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 50px;
  height: 54px;
  padding: 0 20px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 7px;
}
.footer_row .f_social .social {
  gap: 10px;
}
.footer_row .f_social .icon {
  width: 18px;
  height: 18px;
}
.footer_row .f_social .icon svg {
  width: 100%;
  height: 100%;
}
.footer_row .f_contact_row {
  margin: 24px 0 0;
}
.footer_row .f_contact_row .cont {
  margin: 0 0 20px;
}
.footer_row .f_contact_row .cont_title {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 14px;
  margin: 0 0 7px;
}
.footer_row .f_contact_row .cont_desc {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.footer_row .f_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer_row .f_link_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}
.footer_row .f_link_list .icon {
  width: 25px;
  height: 25px;
}
.footer_row .f_link_list .icon svg {
  width: 100%;
  height: 100%;
}
.footer_row .f_link_list .link_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.f_lk_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .f_lk_row {
    grid-template-columns: 1fr;
  }
}

.f_lk {
  background: rgba(255, 255, 255, 0.1019607843);
  padding: 16px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .f_lk {
    display: block;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
}
.f_lk span {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .f_lk span {
    background: rgba(255, 255, 255, 0.1019607843);
    padding: 16px 30px;
    display: block;
    border-radius: 4px;
    text-align: center;
    margin: 0 0 10px;
    font-size: 14px;
  }
}
.f_lk .btn_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .f_lk .btn_row {
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .f_lk .btn {
    width: 100%;
  }
}
.f_lk .btn:last-child {
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
}
.f_lk form {
  width: 100%;
}
.f_lk .form_row {
  display: grid;
  grid-template-columns: 1fr 214px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .f_lk .form_row {
    grid-template-columns: 1fr;
  }
}
.f_lk .form-input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: transparent;
  outline: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .f_lk .form-input {
    font-size: 14px;
    border: 1px solid #fff;
    height: 50px;
    border-radius: 4px;
  }
}
.f_lk .form-input::-webkit-input-placeholder {
  color: #fff;
}
.f_lk .form-input::-moz-placeholder {
  color: #fff;
}
.f_lk .form-input:-ms-input-placeholder {
  color: #fff;
}
.f_lk .form-input::-ms-input-placeholder {
  color: #fff;
}
.f_lk .form-input::placeholder {
  color: #fff;
}
.f_lk .form-input:focus::-webkit-input-placeholder {
  color: transparent;
}
.f_lk .form-input:focus::-moz-placeholder {
  color: transparent;
}
.f_lk .form-input:focus:-ms-input-placeholder {
  color: transparent;
}
.f_lk .form-input:focus::-ms-input-placeholder {
  color: transparent;
}
.f_lk .form-input:focus::placeholder {
  color: transparent;
}

.f_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  font-size: 12px;
}
@media screen and (max-width: 992px) {
  .f_down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
  }
}
.f_down .copyright {
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 992px) {
  .f_down .copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.f_down .link {
  padding-right: 160px;
}
@media screen and (max-width: 992px) {
  .f_down .link {
    padding: 0;
  }
}

.new_filter {
  border-radius: 20px;
}

/**/
@media screen and (max-width: 768px) {
  #event {
    padding: 20px 0;
  }
}

.event-description-title,
.event-period-title {
  background: #F4E9EA;
  padding: 18px 48px;
  font-size: 24px;
  font-weight: 600;
  border: 1px solid #D0D5DA;
}
@media screen and (max-width: 768px) {
  .event-description-title,
  .event-period-title {
    padding: 18px 20px;
  }
}

.event-description-value {
  border-left: 1px solid #D0D5DA;
  border-right: 1px solid #D0D5DA;
  padding: 20px 48px;
  min-height: 224px;
}
@media screen and (max-width: 768px) {
  .event-description-value {
    padding: 18px 20px;
  }
}

.event-period-value {
  padding: 20px 48px;
  border-left: 1px solid #D0D5DA;
  border-right: 1px solid #D0D5DA;
  border-bottom: 1px solid #D0D5DA;
}
@media screen and (max-width: 768px) {
  .event-period-value {
    padding: 18px 20px;
  }
  .event-period-value span {
    white-space: nowrap;
  }
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}
.icon.arrow {
  background: url(../img/arrow_color.svg) no-repeat center/cover;
}
.icon.doc {
  background: url(../img/doc.svg) no-repeat center/cover;
}
.icon.download {
  background: url(../img/download.svg) no-repeat;
  height: 20px;
  background-position: center;
}
.icon.download2 {
  background: url(../img/download2.svg) no-repeat center/cover;
  width: 12px;
  height: 16px;
}
.icon.link {
  background: url(../img/link.svg) no-repeat center/cover;
  width: 12px;
  height: 20px;
}
.icon.glasses {
  background: url(../img/glasses.svg) no-repeat center/cover;
  width: 12px;
  height: 20px;
}
.icon.map360 {
  background: url(../img/map360.svg) no-repeat center/cover;
  width: 12px;
  height: 20px;
}
.icon.arrow_up {
  background: url(../img/arrow_up.svg) no-repeat center/cover;
  width: 26px;
  height: 22px;
}
.icon.phone {
  background: url(../img/phone.svg) no-repeat center/cover;
  width: 8px;
  height: 14px;
}
.icon.map {
  background: url(../img/map.svg) no-repeat center/cover;
  width: 10px;
  height: 14px;
}
.icon.burger_mob {
  background: url(../img/burger.svg) no-repeat center/cover;
  width: 23px;
  height: 12px;
}

.bg_grey {
  background: #F3F5F7;
}

.line_title {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
}
.line_title span {
  position: relative;
  top: 20px;
  width: 100%;
  height: 1px;
  background: #E4E4E4;
}

.banner .img {
  border-radius: 15px;
  overflow: hidden;
}

/*mobile_menu*/
.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
  padding: 7px 20px;
  width: 320px;
  height: 100vh;
  overflow: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (min-width: 992px) {
  .mobile_menu {
    display: none;
  }
}
.mobile_menu.hidden {
  -webkit-transform: translateX(-325px);
          transform: translateX(-325px);
}
.mobile_menu .prev_mobile_menu {
  position: absolute;
  top: 10px;
  left: 20px;
  cursor: pointer;
  z-index: 99;
}
.mobile_menu .prev_mobile_menu + .close_mobile_menu {
  color: #000;
  top: 10px;
}
.mobile_menu .prev_mobile_menu.hidden + .close_mobile_menu {
  color: #fff;
  top: 20px;
}
.mobile_menu .close_mobile_menu {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 99;
  color: #fff;
}
.mobile_menu .close_mobile_menu svg {
  width: 32px;
  height: 32px;
}
.mobile_menu .wr {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile_menu .wr a {
  color: #000;
  padding-right: 20px;
}
.mobile_menu .wr a:hover {
  color: #8A2125;
}
.mobile_menu .wr a + span {
  margin: 0 0 0 auto;
  font-size: 12px;
  cursor: pointer;
}
.mobile_menu .wr + h3 {
  position: absolute;
  z-index: 999;
  top: 40px;
  line-height: 1.2;
}
.mobile_menu ul {
  margin: 125px 0 30px;
  list-style: none;
}
.mobile_menu ul li {
  margin: 0 0 10px;
}
.mobile_menu .sub_menu {
  position: absolute;
  top: 0px;
  background: #fff;
  left: 0;
  width: 320px;
  padding: 90px 20px 20px;
  z-index: 9;
  height: 100vh;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: auto;
  margin: 0;
}
.mobile_menu .sub_menu.hidden {
  -webkit-transform: translateX(325px);
          transform: translateX(325px);
}
.mobile_menu .sub_menu li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  color: #000;
}
.mobile_menu .sub_menu li a:hover {
  color: #8A2125;
}
.mobile_menu .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: #8A2125;
  padding: 12px 0;
  text-align: center;
}
.mobile_menu .logo img {
  max-width: 99px;
}
.mobile_menu .logo span {
  display: block;
  max-width: 65%;
}
.mobile_menu .mobile_contact {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}
.mobile_menu .mobile_contact a {
  color: #000;
}
.mobile_menu .mobile_contact .phone {
  font-weight: 600;
}
.mobile_menu .mobile_contact .phone svg {
  position: relative;
  top: 1px;
}
.mobile_menu .mobile_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.mobile_menu .address {
  font-size: 12px;
  color: #000;
  position: relative;
  margin: 0 0 15px;
}
.mobile_menu .address svg {
  position: absolute;
  top: 0;
  left: 0;
}
.mobile_menu .glasses {
  display: block;
  font-size: 12px;
  color: #BDBDBD;
  margin: 0 0 15px;
}
.mobile_menu .language {
  display: block;
  font-size: 12px;
  color: #000;
}
.mobile_menu .social {
  margin: 20px 0;
  gap: 10px;
}
.mobile_menu .social svg {
  width: 20px;
  fill: #BDBDBD;
}

/*breadcrumbs*/
.breadcrumbs {
  margin: 20px 0;
  display: table;
}
.breadcrumbs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 20px;
  margin: 0;
}
.breadcrumbs ul li {
  margin: 0;
  font-size: 13px;
  color: #8A2125;
}
.breadcrumbs ul .link {
  position: relative;
}
.breadcrumbs ul .link::before {
  content: "/";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: -12px;
  color: rgba(0, 0, 0, 0.4509803922);
}
.breadcrumbs ul .link a {
  color: rgba(0, 0, 0, 0.4509803922);
}

@media screen and (max-width: 768px) {
  aside {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  aside.dop_filter {
    display: block;
  }
  aside.dop_filter .left_menu, aside.dop_filter .left_banner {
    display: none;
  }
}
aside.active {
  display: block;
}
aside.active .left_menu {
  display: none;
}
aside.active .left_banner {
  display: none;
}
aside .fix {
  position: sticky;
  top: 0;
  z-index: 9;
}
aside .left_menu {
  margin: 0px 0 40px;
  list-style: none;
}
aside .left_menu > li {
  background: #fff;
  font-size: 15px;
  position: relative;
}
aside .left_menu > li:first-child {
  border-radius: 4px 4px 0 0;
}
aside .left_menu > li:last-child {
  border-bottom: 1px solid rgb(229, 229, 229);
  border-radius: 0 0 4px 4px;
}
aside .left_menu > li > a {
  color: #333;
  padding: 16px 23px 16px 23px;
  border-top: 1px solid rgb(229, 229, 229);
  border-left: 1px solid rgb(229, 229, 229);
  border-right: 1px solid rgb(229, 229, 229);
  border-bottom: 1px solid transparent;
  display: block;
}
aside .left_menu > li > a.active {
  background: #8A2125;
  color: #fff;
  border-radius: 4px 4px 0 0;
  border: 1px solid #8A2125;
}
aside .left_menu > li > a.active:hover {
  color: #fff;
}
aside .left_menu > li > a:hover {
  color: #8A2125;
  border: 1px solid #8A2125;
}
aside .left_menu > li > a:focus-visible {
  outline: none;
  outline-offset: 0;
}
aside .left_menu .left_dropdown {
  position: relative;
}
aside .left_menu .left_dropdown:hover .left_sub_menu {
  display: block;
}
aside .left_menu .left_sub_menu {
  position: absolute;
  background: #fff;
  left: 100%;
  top: 0;
  width: 350px;
  border: 1px solid #D0D5DA;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
aside .left_menu .left_sub_menu a {
  padding: 12px 76px 12px 12px;
  display: block;
  color: #333;
}
aside .left_menu .left_sub_menu a:hover {
  color: #8A2125;
}
aside .left_menu .dropdown .this {
  font-weight: 600;
}
aside .left_menu .dropdown a:hover {
  color: #8A2125 !important;
}
aside .left_menu .dropdown a.active {
  background: #8A2125;
  color: #fff !important;
}
aside .left_menu .dropdown ul {
  list-style: none;
}
aside .left_menu .dropdown .sub_meu_level > li {
  background: #F3F5F7;
  font-size: 15px;
  position: relative;
}
aside .left_menu .dropdown .sub_meu_level > li > a {
  color: #333;
  padding: 16px 23px 16px 23px;
  border-top: 1px solid rgb(229, 229, 229);
  border-left: 1px solid rgb(229, 229, 229);
  border-right: 1px solid rgb(229, 229, 229);
  border-bottom: 1px solid transparent;
  display: block;
  padding-left: 40px;
}
aside .left_menu .dropdown .sub_meu_level_2 > li {
  background: #DADCDF;
  font-size: 15px;
  position: relative;
}
aside .left_menu .dropdown .sub_meu_level_2 > li > a {
  color: #333;
  padding: 16px 23px 16px 23px;
  border-top: 1px solid rgb(229, 229, 229);
  border-left: 1px solid rgb(229, 229, 229);
  border-right: 1px solid rgb(229, 229, 229);
  border-bottom: 1px solid transparent;
  display: block;
  padding-left: 60px;
}
aside .left_menu .dropdown .sub_meu_level_3 > li {
  background: #D1D3D6;
  font-size: 15px;
  position: relative;
}
aside .left_menu .dropdown .sub_meu_level_3 > li > a {
  color: #333;
  padding: 16px 23px 16px 23px;
  border-top: 1px solid rgb(229, 229, 229);
  border-left: 1px solid rgb(229, 229, 229);
  border-right: 1px solid rgb(229, 229, 229);
  border-bottom: 1px solid transparent;
  display: block;
  padding-left: 80px;
}
aside .left_menu .dropdown .sub_meu_level_4 > li {
  background: #bbbec1;
  font-size: 15px;
  position: relative;
}
aside .left_menu .dropdown .sub_meu_level_4 > li > a {
  color: #333;
  padding: 16px 23px 16px 23px;
  border-top: 1px solid rgb(229, 229, 229);
  border-left: 1px solid rgb(229, 229, 229);
  border-right: 1px solid rgb(229, 229, 229);
  border-bottom: 1px solid transparent;
  display: block;
  padding-left: 100px;
}
aside .left_menu .dropdown .arrow_drop {
  position: absolute;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
aside .left_menu .dropdown .arrow_drop.open {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contetn_row {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 33px;
  margin: 25px 0;
}
@media screen and (max-width: 768px) {
  .contetn_row {
    grid-template-columns: 1fr;
    margin: 20px 0;
  }
}
@media screen and (max-width: 1200px) {
  .contetn_row .new_filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    background: transparent;
  }
}
@media screen and (max-width: 992px) {
  .contetn_row .banner_info {
    left: 20px;
    bottom: 20px;
  }
}
.contetn_row .banner_info .title {
  font-size: 24px;
  max-width: 90%;
}
@media screen and (max-width: 992px) {
  .contetn_row .banner_info .title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}

/*pagination*/
.pagination {
  margin: 40px auto 0;
  display: table;
}
.pagination .btn_reset {
  margin: 0 auto;
}
.pagination .dots {
  color: #9F1C30;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
  list-style: none;
}
.pagination ul li.dots {
  font-size: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .pagination ul li.dots {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 405px) {
  .pagination ul {
    max-width: 300px;
  }
}
.pagination ul li.active {
  font-size: 14px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #9F1C30;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pagination ul li.active {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}
.pagination ul li a {
  font-size: 14px;
  color: #9F1C30;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .pagination ul li a {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}
.pagination ul li a.prev, .pagination ul li a.next, .pagination ul li a.start, .pagination ul li a.end {
  padding: 10px;
  width: auto;
}
@media screen and (max-width: 1200px) {
  .pagination ul li a.prev, .pagination ul li a.next, .pagination ul li a.start, .pagination ul li a.end {
    display: none;
  }
}
.pagination ul li a.active, .pagination ul li a:hover {
  background: #9F1C30;
  color: #fff;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .checkbox {
    font-size: 14px;
  }
}
.checkbox .checkbox-label {
  margin: 0;
  font-size: 14px;
}
.checkbox .checkbox-label a {
  color: #8A2125;
}
.checkbox .pass-label {
  margin: 0 0 0 auto;
  color: #8A2125;
}
.checkbox input, .checkbox .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #E5E5E5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkbox input:after, .checkbox .checkbox-input:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.checkbox input:checked::after, .checkbox .checkbox-input:checked::after {
  background: url(../img/checked.svg) no-repeat center/cover;
  border-radius: 5px;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 12px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .radio {
    font-size: 14px;
  }
}
.radio .checkbox-label {
  margin: 0;
  font-size: 14px;
}
.radio .checkbox-label a {
  color: #8A2125;
}
.radio .pass-label {
  margin: 0 0 0 auto;
  color: #8A2125;
}
.radio input, .radio .checkbox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #E5E5E5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100px;
  overflow: hidden;
}
.radio input:after, .radio .checkbox-input:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 100px;
}
.radio input:checked::after, .radio .checkbox-input:checked::after {
  background: #8A2125;
  inset: 0;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.checkbox.theme-2 {
  margin: 0 0 20px;
}

.form_theme {
  margin: 0 0 40px;
}
.form_theme .calendar {
  margin: 20px 0 0;
}
.form_theme .calendar_title {
  margin: 0 0 10px;
}
.form_theme .btn_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.form_theme .btn_left .btn {
  width: 100%;
  border-radius: 4px;
}
.form_theme .input_row {
  position: relative;
}
.form_theme .input_row .password_toggle {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 15px;
  cursor: pointer;
  background: url(../img/pass.svg) no-repeat center/cover;
  width: 18px;
  height: 14px;
}
.form_theme .input_row .password_toggle.open {
  background: url(../img/pass_open.svg) no-repeat center/cover;
}
.form_theme label {
  margin: 0 0 20px;
  display: block;
  position: relative;
}
.form_theme label span {
  color: #333;
  font-size: 14px;
  position: relative;
  margin: 0 0 13px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
.form_theme label span.required::before {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  color: #8A2125;
}
.form_theme label span.error_form {
  color: #8A2125;
}
@media screen and (max-width: 768px) {
  .form_theme label span.error_form {
    display: none;
  }
}
.form_theme .error_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form_theme .form_input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  background: #fff;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
}
.form_theme .form_input:focus::-webkit-input-placeholder {
  color: transparent;
}
.form_theme .form_input:focus::-moz-placeholder {
  color: transparent;
}
.form_theme .form_input:focus:-ms-input-placeholder {
  color: transparent;
}
.form_theme .form_input:focus::-ms-input-placeholder {
  color: transparent;
}
.form_theme .form_input:focus::placeholder {
  color: transparent;
}
.form_theme .form_input.novalidate {
  border: 1px solid #8A2125;
}
.form_theme textarea.form_input {
  min-height: 130px;
  resize: none;
}
.form_theme .btn_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 34px;
}
@media screen and (max-width: 480px) {
  .form_theme .btn_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .form_theme .btn_row .btn {
    margin: 20px 0 0;
  }
}

#calendar {
  width: 100%;
  margin: 0 0 20px;
  padding: 20px 0;
}

[data-calendar-theme=light] .vanilla-calendar-day__btn_today {
  background: #9F1C30;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  color: #fff;
}

[data-calendar-theme=light] .vanilla-calendar-day__btn {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

[data-calendar-theme=light] .vanilla-calendar-day__btn:hover {
  background: #9F1C30;
  color: #fff;
}

[data-calendar-theme=light] .vanilla-calendar-day__btn_selected, [data-calendar-theme=light] .vanilla-calendar-day__btn_selected:hover {
  background: #8A2125;
  border-radius: 50px !important;
  width: 30px;
  height: 30px;
}

[data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_selected, [data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_selected:hover {
  background: transparent;
  color: #8A2125;
  font-weight: 600;
}

[data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected, [data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected, [data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected:hover, [data-calendar-theme=light] .vanilla-calendar-day_selected-intermediate .vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected:hover {
  background: transparent;
  color: #8A2125;
  font-weight: 600;
}

.share_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.share_row .item {
  background: #F3F5F7;
  padding: 5px 11px;
  font-size: 12px;
  color: rgba(30, 33, 39, 0.5019607843);
  border-radius: 5px;
}

.slider_news {
  max-width: 1117px;
  position: relative;
  padding: 0 60px;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .slider_news {
    padding: 0 50px;
  }
}
.slider_news .item {
  max-width: 230px;
  aspect-ratio: 1/0.7;
  overflow: hidden;
}
.slider_news + .btn {
  margin: 0 auto;
}

.news_detail_img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/8;
  border-radius: 15px;
  margin: 0 0 30px;
}

.news_detail_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .news_detail_title {
    font-size: 18px;
  }
}

.news_detail_prev {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .news_detail_prev {
    font-size: 16px;
  }
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  background: url(../img/slide.svg) no-repeat center/cover;
  width: 42px;
  height: 40px;
  right: var(--swiper-navigation-sides-offset, 2px);
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    width: 40px;
    height: 38px;
    right: var(--swiper-navigation-sides-offset, 0);
  }
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  background: url(../img/slide.svg) no-repeat center/cover;
  width: 42px;
  height: 40px;
  left: var(--swiper-navigation-sides-offset, 2px);
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    width: 40px;
    height: 38px;
    left: var(--swiper-navigation-sides-offset, 0);
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.video {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-height: 460px;
  margin: 30px 0;
}
@media screen and (max-width: 1200px) {
  .video {
    max-height: 360px;
  }
}
@media screen and (max-width: 992px) {
  .video {
    max-height: 260px;
  }
}
@media screen and (max-width: 768px) {
  .video {
    max-height: 340px;
  }
}
@media screen and (max-width: 480px) {
  .video {
    max-height: 260px;
  }
}
.video img {
  position: absolute;
  inset: 0;
}
.video::before {
  content: "";
  display: block;
  padding: 100% 0 0;
}
.video .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.all_detail_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  margin: 0 0 27px;
  color: #333;
}
.all_detail_desc .path {
  font-size: 12px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
}

/*document*/
div.document {
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  div.document {
    margin: 30px 0;
  }
}
div.document.theme-2 {
  border: 1px solid #D0D5DA;
  border-radius: 4px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  div.document.theme-2 {
    border: 0;
    padding: 0;
  }
}
div.document .doc_wrap {
  margin: 0 0 70px;
}
div.document .doc_wrap:last-child {
  margin: 0;
}
div.document .doc_wrap:last-child .document_row {
  margin: 0;
}

.document_row {
  display: grid;
  gap: 10px;
}
.document_row .item {
  display: grid;
  grid-template-columns: 88px 1fr 124px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #E5E5E5;
  padding: 27px 30px;
}
@media screen and (max-width: 1200px) {
  .document_row .item {
    grid-template-columns: 88px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .document_row .item {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 20px;
  }
}
.document_row .item:hover .doc_title {
  color: #8A2125;
}
.document_row .item .icon_doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .document_row .item .icon_doc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row: 1/3;
  }
  .document_row .item .icon_doc img {
    max-height: 32px;
    width: auto;
  }
}
.document_row .item .doc_title {
  display: table;
  font-weight: 600;
  margin: 0 0 6px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .document_row .item .doc_title {
    font-size: 14px;
  }
}
.document_row .item .doc_desc {
  font-size: 12px;
  line-height: 1.4;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .document_row .item .doc_desc {
    font-size: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .document_row .item .doc_params {
    grid-column: 2/3;
  }
}
.document_row .item .doc_info {
  color: #B8B8B8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .document_row .item .doc_info {
    grid-column: 2/2;
  }
}
.document_row .item .doc_info a {
  color: #B8B8B8;
}
.document_row .doc_row {
  margin: 0 0 30px;
}
.document_type_2 {
  margin: 30px 0;
}
.document_type_2 .item {
  grid-template-columns: 43px 206px 1fr 124px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .document_type_2 .item {
    grid-template-columns: 43px 1fr;
  }
}
.document_type_2 .item:hover .doc_title {
  color: #8A2125;
}
@media screen and (max-width: 1200px) {
  .document_type_2 .item .doc_params {
    display: none;
  }
}
.document_type_2 .item .doc_params .doc_title {
  font-size: 14px;
}
.document_type_2 .item .doc_params_list .doc_title {
  font-size: 16px;
}
.document_type_2 .item .doc_params_list .doc_text span {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin: 0 0 5px;
}
.document_type_2 .item .response {
  display: none;
  grid-template-columns: 1fr 124px;
  font-size: 14px;
  color: #666;
  grid-column: 3/5;
}
@media screen and (max-width: 1200px) {
  .document_type_2 .item .response {
    grid-column: 2/2;
    grid-template-columns: 1fr 40px;
  }
}
.document_type_2 .item .response.show {
  display: grid;
  border-top: 1px solid #D0D5DA;
  padding: 6px 0 0;
}
.document_type_2 .item .response_desc {
  line-height: 1.4;
}
.document_type_2 .item .response_close {
  margin: 0 0 0 auto;
  color: #999;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.document_type_2 .btn {
  margin: 0 0 30px auto;
}

.theme-2 .document_row .item {
  grid-template-columns: 40px 1fr 124px;
}
@media screen and (max-width: 1200px) {
  .theme-2 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
.theme-2 .document_row .item:hover .doc_title {
  color: #8A2125;
}
@media screen and (max-width: 1200px) {
  .theme-2 .document_row .item .doc_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .theme-2 .document_row .item .doc_desc {
    margin: 0 0 10px;
  }
}

.theme-3 .document_row {
  margin: 20px 0 10px;
}
.theme-3 .document_row .item {
  grid-template-columns: 40px 1fr 124px;
}
@media screen and (max-width: 1200px) {
  .theme-3 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
.theme-3 .document_row .item:hover .doc_title {
  color: #8A2125;
}
@media screen and (max-width: 1200px) {
  .theme-3 .document_row .item .doc_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .theme-3 .document_row .item .doc_desc {
    margin: 0 0 10px;
  }
}
.theme-3 h3, .theme-3 h4 {
  margin: 0 0 10px;
}

.theme-4 .document_row .item {
  grid-template-columns: 40px 1fr 124px;
}
@media screen and (max-width: 1200px) {
  .theme-4 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
.theme-4 .document_row .item:hover .doc_title {
  color: #8A2125;
}
@media screen and (max-width: 1200px) {
  .theme-4 .document_row .item .doc_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .theme-4 .document_row .item .doc_desc {
    margin: 0 0 10px;
  }
}
.theme-4 .document_row .doc_info .print {
  background: #F3F5F7;
  padding: 5px 11px;
  font-size: 12px;
  color: rgba(30, 33, 39, 0.5019607843);
  border-radius: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.theme-4 .document_row .doc_params .doc_title + span {
  display: block;
  color: #999;
  font-size: 14px;
  margin: -5px 0 10px;
}

.content ul, .content ol {
  margin: 0 0 0 18px;
}
.content ul li, .content ol li {
  margin: 0 0 10px;
  line-height: 1.4;
}
.content.page_table {
  overflow: hidden;
}
.content .btn_search {
  display: none;
}
@media screen and (max-width: 768px) {
  .content .btn_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.content p {
  color: #333;
}
.content.shema {
  overflow-x: auto;
}
.content.shema .share_row {
  min-width: 1100px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .content.shema .share_row {
    min-width: 100%;
  }
}

.theme-5 .document_row {
  margin: 0 0 30px;
}
.theme-5 .document_row .item {
  grid-template-columns: 80px 1fr 124px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  .theme-5 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
.theme-5 .document_row .item:hover .doc_title {
  color: #8A2125;
}
@media screen and (max-width: 1200px) {
  .theme-5 .document_row .item .doc_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .theme-5 .document_row .item .doc_desc {
    margin: 0 0 10px;
  }
}

.theme-6 .document_row .item {
  grid-template-columns: 40px 1fr 70px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  .theme-6 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
.theme-6 .document_row .item:hover .doc_title {
  color: #8A2125;
}
.theme-6 .document_row .item .doc_title {
  font-size: 14px;
  margin: 0 0 10px;
}
.theme-6 .document_row .item .doc_desc {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  .theme-6 .document_row .item .doc_desc {
    grid-template-columns: 0.8fr 1fr;
  }
}
@media screen and (max-width: 992px) {
  .theme-6 .document_row .item .doc_desc {
    grid-template-columns: 1fr;
  }
}

.theme-7 .document_row .item {
  grid-template-columns: 40px 0.9fr 1fr 50px;
  gap: 10px 27px;
}
@media screen and (max-width: 1200px) {
  .theme-7 .document_row .item {
    grid-template-columns: 40px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .theme-7 .document_row .item {
    gap: 10px 15px;
  }
}
.theme-7 .document_row .item:hover .doc_title {
  color: #8A2125;
}
.theme-7 .document_row .doc_params .doc_title {
  font-size: 15px;
}
.theme-7 .document_row .doc_info .print {
  background: #F3F5F7;
  padding: 5px 11px;
  font-size: 12px;
  color: rgba(30, 33, 39, 0.5019607843);
  border-radius: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1200px) {
  .theme-7 .document_row .doc_params_sub {
    grid-column: 2/3;
  }
}
.theme-7 .document_row .doc_params_sub .doc_title {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}
.theme-7 .document_row .doc_params_sub span {
  color: #8A2125;
}

/*history*/
.history {
  margin: 30px 0;
}

.history_row {
  display: grid;
  gap: 10px;
}
.history_row .item {
  border: 1px solid #E5E5E5;
  padding: 40px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .history_row .item {
    font-size: 14px;
    padding: 20px;
    gap: 16px;
  }
}
.history_row .item .desc_history {
  max-width: 640px;
}

.deputy_block_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .deputy_block_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .deputy_block_row {
    grid-template-columns: 1fr;
  }
}
.deputy_block_row .item {
  border: 1px solid #E5E5E5;
  padding: 35px 30px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}

.deputy_block_2_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .deputy_block_2_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .deputy_block_2_row {
    grid-template-columns: 1fr;
  }
}
.deputy_block_2_row .item {
  border: 1px solid #E5E5E5;
  padding: 35px 30px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
}
.deputy_block_2_row .deputy_desc {
  font-size: 24px;
  font-weight: 600;
}
.deputy_block_2_row .deputy_date {
  font-size: 20px;
  color: #333;
}

/*page_link*/
.page_link {
  margin: 30px 0;
}

.page_link_row {
  display: grid;
  gap: 36px;
}
.page_link_row .item {
  border: 1px solid #E5E5E5;
  padding: 25px;
  font-size: 16px;
  font-weight: 700;
  color: #8A2125;
  border-radius: 10px;
}
.page_link_row .title {
  color: #8A2125;
  text-decoration: underline;
}
.page_link_row .title.title_date {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.page_link_row .title_sub_data {
  color: #8A2125;
  font-size: 18px;
}
.page_link_row .title_sub_data span {
  font-weight: 500;
  margin: 10px 0 0;
  display: table;
}
.page_link_row ul {
  margin: 10px 0 10px 20px;
}
.page_link_row ul li {
  line-height: 1.2;
  margin: 0 0 5px;
  color: #333;
}
.page_link_row ul li a {
  color: #333;
  text-decoration: underline;
  font-weight: 400;
}

.gallery_slide {
  margin: 30px 0;
}

.params_video_desc {
  color: rgba(30, 33, 39, 0.5019607843);
  font-size: 18px;
  margin: 10px 0 0;
}
@media screen and (max-width: 768px) {
  .params_video_desc {
    font-size: 14px;
  }
}

.params_video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 18px;
  color: rgba(30, 33, 39, 0.5019607843);
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .params_video {
    font-size: 14px;
    gap: 20px;
  }
}

.params_video_up .download {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(30, 33, 39, 0.5019607843);
}
@media screen and (max-width: 768px) {
  .params_video_up .download {
    font-size: 14px;
  }
}

.video_detail {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.video_detail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video_detail + .views {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .video_detail + .views {
    font-size: 12px;
  }
}

/*custom-select*/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  border-radius: 4px;
}

.custom-select-wrapper + .bl_table {
  margin: 20px 0 0;
}

.custom-select-wrapper select {
  display: none;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 14px;
}

.custom-select-trigger {
  position: relative;
  display: block;
  padding: 0 64px 0 30px;
  line-height: 60px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  color: rgba(51, 51, 51, 0.6117647059);
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .custom-select-trigger {
    padding: 0 64px 0 30px;
  }
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 2px 0;
  border: 1px solid rgb(230, 230, 230);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 9;
  padding: 10px 0;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.option-hover:before {
  color: #483698;
}

.custom-option {
  position: relative;
  display: block;
  padding: 10px 42px;
  cursor: pointer;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}

.custom-option.selection {
  color: #8A2125;
}

.select_sources {
  margin: 10px 0;
}
.select_sources > span {
  color: #333333;
  font-size: 14px;
  position: relative;
  margin: 0 0 10px;
  display: block;
  width: 100%;
}
.select_sources > span.required::before {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
}

/*modal_document*/
.modal_document {
  width: 100%;
  max-width: 1078px;
}
@media screen and (max-width: 768px) {
  .modal_document {
    padding: 20px;
  }
}
.modal_document .item {
  display: grid;
  grid-template-columns: 40px 1fr 124px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #E5E5E5;
  padding: 27px 30px;
}
@media screen and (max-width: 1200px) {
  .modal_document .item {
    grid-template-columns: 40px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .modal_document .item {
    grid-template-columns: 1fr;
    gap: 5px 10px;
    padding: 10px;
  }
}
.modal_document .item .icon_doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .modal_document .item .icon_doc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 10px;
  }
  .modal_document .item .icon_doc img {
    max-height: 40px;
    width: auto;
  }
}
.modal_document .item .doc_title {
  font-weight: 600;
  margin: 0 0 9px;
}
@media screen and (max-width: 768px) {
  .modal_document .item .doc_title {
    font-size: 14px;
  }
}
.modal_document .item .doc_desc {
  font-size: 12px;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .modal_document .item .doc_desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .modal_document .item .doc_desc {
    font-size: 10px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 1200px) {
  .modal_document .item .doc_params {
    grid-column: 2/3;
  }
}
@media screen and (max-width: 768px) {
  .modal_document .item .doc_params {
    grid-column: 1;
  }
}
.modal_document .item .doc_info {
  color: #B8B8B8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .modal_document .item .doc_info {
    grid-column: 2/2;
  }
}
@media screen and (max-width: 768px) {
  .modal_document .item .doc_info {
    grid-column: 1;
  }
}
.modal_document .item .doc_info a {
  color: #B8B8B8;
}
.modal_document .doc_mod_info {
  padding: 0 20px 0 88px;
}
@media screen and (max-width: 768px) {
  .modal_document .doc_mod_info {
    padding: 0;
  }
}
.modal_document .doc_mod_title {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 20px;
}
.modal_document .doc_mod_row {
  display: grid;
  gap: 10px;
  padding-left: 30px;
  border-left: 1px solid #D0D5DA;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .modal_document .doc_mod_row {
    padding: 0;
    border-left: 0;
  }
}
.modal_document .doc_mod_item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .modal_document .doc_mod_item {
    grid-template-columns: 1fr;
  }
}
.modal_document .doc_mod_item span {
  color: #000;
}
.modal_document .doc_mod_item span:last-child {
  color: rgba(0, 0, 0, 0.6);
}
.modal_document .doc_mod_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .modal_document .doc_mod_btn {
    padding: 0;
  }
}
.modal_document .doc_mod_btn .btn_mod {
  background: #F3F5F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(30, 33, 39, 0.5019607843);
  height: 24px;
  border-radius: 5px;
  gap: 10px;
}
.modal_document .modal_title {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal_document .modal_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .modal_document .btn {
    width: 100%;
  }
}

.date_link {
  border: 1px solid #D0D5DA;
  padding: 5px;
  border-radius: 4px;
  margin: 30px 0;
}
.date_link ul {
  list-style: none;
}
.date_link > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 440px) {
  .date_link > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.date_link > ul > li {
  margin: 0;
}
.date_link > ul > li.dropdown {
  position: relative;
}
.date_link > ul > li.dropdown .sub_date {
  display: none;
  margin: 0;
  position: absolute;
  background: #fff;
  border: 1px solid #D0D5DA;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 22px;
  min-width: 173px;
  z-index: 2;
  left: 0;
}
@media screen and (max-width: 440px) {
  .date_link > ul > li.dropdown .sub_date {
    min-width: auto;
  }
}
.date_link > ul > li.dropdown .sub_date a {
  color: #000;
}
.date_link > ul > li.dropdown .sub_date a.active, .date_link > ul > li.dropdown .sub_date a:hover {
  color: #8A2125;
}
.date_link > ul > li.dropdown:hover .sub_date {
  display: block;
}
.date_link > ul > li > a {
  border-radius: 4px;
  min-width: 74px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  font-size: 14px;
  color: rgba(30, 33, 39, 0.5019607843);
}
.date_link > ul > li > a.active {
  background: #8A2125;
  color: #fff;
  position: relative;
}
.date_link > ul > li > a.active:hover {
  color: #fff;
}
.date_link > ul > li > a:hover {
  color: #8A2125;
}
.date_link + .document {
  margin: 0;
}

/*monitoring*/
.monitoring {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin: 30px 0;
}
@media screen and (max-width: 1200px) {
  .monitoring {
    grid-template-columns: 1fr;
  }
}
.monitoring .item {
  padding: 30px;
  border: 1px solid #E5E5E5;
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .monitoring .item {
    font-size: 16px;
    grid-template-columns: 40px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .monitoring .item {
    grid-template-columns: 32px 1fr;
    font-size: 12px;
    gap: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .monitoring .item .img {
    max-width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .monitoring .item .img {
    max-width: 32px;
  }
}

/*monitoring_table*/
.monitoring_table {
  margin: 30px 0;
}
.monitoring_table .title {
  background: #8A2125;
  padding: 21px 48px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.monitoring_table .item {
  padding: 46px 48px;
  font-size: 16px;
  border-left: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .monitoring_table .item {
    padding: 24px 20px;
    font-size: 14px;
  }
}
.monitoring_table .item:nth-child(even) {
  background: #F4E9EA;
}

/*error*/
.error {
  border: 1px solid #E5E5E5;
  padding: 70px 183px;
  text-align: center;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .error {
    padding: 70px;
  }
}
@media screen and (max-width: 768px) {
  .error {
    border: 0;
    padding: 0;
  }
}
.error .title {
  color: #8A2125;
  font-size: 48px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .error .title {
    font-size: 40px;
  }
}
.error .btn {
  margin: 67px auto 0;
}
@media screen and (max-width: 768px) {
  .error .btn {
    margin: 37px auto 0;
  }
}

/*search*/
.pgn {
  font-size: 14px;
  line-height: 1.4;
}

.page_border {
  border: 1px solid #E5E5E5;
  padding: 34px;
  border-radius: 4px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .page_border {
    padding: 0;
    border: 0;
  }
}
.page_border.theme_2 {
  margin: 30px 0;
}
.page_border .theme_table:last-child {
  margin: 0;
}
.page_border p:last-child {
  margin: 0;
}

.all_page_search .item {
  margin: 0 0 35px;
}
.all_page_search .item:last-child {
  margin: 0;
}
.all_page_search .item .title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  .all_page_search .item .title {
    font-size: 18px;
  }
}
.all_page_search .item .desc_more {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555;
  margin: 0 0 16px;
}
.all_page_search .item .date {
  font-size: 10px;
  margin: 5px 0;
}
@media screen and (max-width: 768px) {
  .all_page_search .item .date {
    font-size: 10px;
  }
}
.all_page_search .item .path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 10px;
  font-size: 11px;
}
.all_page_search .item .path ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 10px;
  list-style: none;
  margin: 0;
}
.all_page_search .item .path ul li {
  position: relative;
  margin: 0;
}
.all_page_search .item .path ul li::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -7px;
}
.all_page_search .item .path ul li:last-child::before {
  display: none;
}

.recaptcha {
  margin: 10px 0;
}
.recaptcha img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

#thanks {
  max-width: 650px;
  padding: 60px 0;
}
#thanks .modal_title {
  margin: 0 0 50px;
}
#thanks span {
  color: #8A2125;
}
#thanks .btn {
  margin: 0 auto;
}

#thanks-recovery {
  max-width: 750px;
  padding: 60px 50px;
}
#thanks-recovery .modal_title {
  margin: 0 0 20px;
}
#thanks-recovery .modal_title + p {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0 0 60px;
}
#thanks-recovery span {
  color: #8A2125;
}
#thanks-recovery .btn {
  margin: 0 auto;
}

/*user_profile*/
.user_profile > .btn {
  margin: 0 0 30px;
}

/*registration*/
.registration {
  margin: 58px 0;
}
.registration .form_theme {
  padding: 60px 0;
  max-width: 650px;
  margin: 0 auto;
}
.registration .form_theme .title {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 30px;
  font-size: 50px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .registration .form_theme .title {
    font-size: 22px;
  }
}
.registration .form_theme .title_recovery {
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 30px;
  font-size: 44px;
  font-weight: 700;
}
.registration .form_theme .title_recovery + p {
  text-align: center;
}
.registration .btn {
  margin: 32px auto 0;
}

.doc-2 {
  margin: 0 0 50px;
}

.sub_document {
  margin: 15px 0 15px 70px;
}
@media screen and (max-width: 768px) {
  .sub_document {
    margin: 15px 0 15px 0px;
  }
}
.sub_document .document_row {
  padding: 0 0 0 30px;
  border-left: 1px solid #D0D5DA;
}
.sub_document .document_row .item {
  padding: 0;
  border: none;
}

.doc_title_plan {
  font-size: 20px;
  margin: 0 0 10px;
}

.page_text_doc_header {
  text-align: right;
  margin: 0 0 60px;
}

.page_text_doc_subtitle {
  text-align: center;
  margin: 0 0 60px;
}

.block_list_row {
  margin: 0 0 20px;
}

/*table*/
.table_title {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 20px;
}

.table_sub_title {
  font-size: 20px;
  margin: 0 0 20px;
}

.theme_table {
  margin: 0 0 40px;
  overflow-x: auto;
}
.theme_table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 990px;
}
@media screen and (max-width: 768px) {
  .theme_table table {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .theme_table table thead tr {
    width: 100%;
    display: none;
  }
}
.theme_table table thead tr th {
  background: #8A2125;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 20px 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .theme_table table thead tr th {
    display: block;
    padding: 12px 12px 0;
    height: 60px;
  }
}
.theme_table table thead tr th:first-child {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .theme_table table thead tr th:first-child {
    padding: 12px 12px 0;
  }
}
.theme_table table tbody tr {
  border-top: 1px solid #D0D5DA;
  border-left: 1px solid #D0D5DA;
  border-right: 1px solid #D0D5DA;
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr {
    margin: 0 0 20px;
    display: block;
    border: 0;
  }
}
.theme_table table tbody tr:last-child {
  border-bottom: 1px solid #D0D5DA;
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr:last-child {
    border-bottom: 0;
  }
}
.theme_table table tbody tr:nth-child(even) {
  background: #F4E9EA;
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr:nth-child(even) {
    background: #fff;
  }
}
.theme_table table tbody tr td {
  font-size: 16px;
  padding: 50px 30px;
  color: #333;
  width: 20%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr td {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.1;
    height: 60px;
    border-bottom: 1px solid #D0D5DA;
    border-left: 1px solid #D0D5DA;
    border-right: 1px solid #D0D5DA;
    padding: 0 0 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.theme_table table tbody tr td:first-child {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr td:first-child {
    border-top: 1px solid #D0D5DA;
    padding: 0 0 0 12px;
    height: 62px;
  }
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr td:first-child::before {
    border-top: 1px solid #D0D5DA;
    height: 60px;
    -webkit-transform: translate(-100%, -2px);
            transform: translate(-100%, -2px);
  }
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr td:last-child::before {
    border-bottom: 1px solid #D0D5DA;
    height: 61px;
    -webkit-transform: translate(-100%, -1px);
            transform: translate(-100%, -1px);
  }
}
@media screen and (max-width: 768px) {
  .theme_table table tbody tr td::before {
    content: attr(data-title);
    width: 140px;
    background: #8A2125;
    -webkit-transform: translate(-100%, -1px);
            transform: translate(-100%, -1px);
    border-bottom: 1px solid #D0D5DA;
    border-left: 1px solid #D0D5DA;
    padding: 0 0 0 12px;
    height: 59px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
  }
}

/*theme_table_2*/
.theme_table_2 {
  overflow-x: auto;
}
.theme_table_2 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 990px;
}
.theme_table_2 table thead tr th {
  background: #8A2125;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 20px 0 20px 30px;
  text-align: left;
}
.theme_table_2 table thead tr th:first-child {
  padding-left: 50px;
  width: 30%;
}
.theme_table_2 table tbody tr {
  border-top: 1px solid #D0D5DA;
  border-left: 1px solid #D0D5DA;
  border-right: 1px solid #D0D5DA;
}
.theme_table_2 table tbody tr:last-child {
  border-bottom: 1px solid #D0D5DA;
}
.theme_table_2 table tbody tr:nth-child(even) {
  background: #F4E9EA;
}
.theme_table_2 table tbody tr td {
  font-size: 16px;
  padding: 50px 30px;
  color: #333;
  width: 20%;
  position: relative;
}
.theme_table_2 table tbody tr td:first-child {
  padding-left: 50px;
}

/*theme_table_3*/
.theme_table_3 {
  overflow-x: auto;
}
.theme_table_3 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 990px;
  table-layout: auto;
}
.theme_table_3 table thead tr th {
  background: #8A2125;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 20px 0 20px 30px;
  text-align: left;
  word-wrap: break-word;
}
.theme_table_3 table thead tr th:first-child {
  padding-left: 50px;
  width: 30%;
}
.theme_table_3 table tbody tr {
  border-top: 1px solid #D0D5DA;
  border-left: 1px solid #D0D5DA;
  border-right: 1px solid #D0D5DA;
}
.theme_table_3 table tbody tr:last-child {
  border-bottom: 1px solid #D0D5DA;
}
.theme_table_3 table tbody tr:nth-child(even) {
  background: #F4E9EA;
}
.theme_table_3 table tbody tr td {
  font-size: 16px;
  padding: 50px 30px;
  color: #333;
  width: 5%;
  position: relative;
  word-wrap: break-word;
}
.theme_table_3 table tbody tr td:first-child {
  padding-left: 50px;
}

/*share_theme*/  
.share_theme {
  margin: 100px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 480px) {
  .share_theme {
    width: 100%;
    margin: 24px auto 0;
  }
}
.share_theme .share_theme_title {
  text-align: center;
}
.share_theme .btn_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .share_theme .btn_row {
    grid-template-columns: 1fr;
  }
}
.share_theme .btn_row .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  min-width: 200px;
  height: 60px;
}
@media screen and (max-width: 992px) {
  .share_theme .btn_row .btn {
    min-width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .share_theme .btn_row .btn {
    min-width: 100%;
    width: 100%;
  }
}

/*accreditation*/
.accreditation_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .accreditation_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .accreditation_row {
    grid-template-columns: 1fr;
  }
}
.accreditation_row .item {
  border: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 140px;
  padding: 10px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
}
.accreditation_row .item:hover .title {
  color: #8A2125;
}
.accreditation_row .item:hover .link {
  color: #8A2125;
}
.accreditation_row .item .title {
  font-size: 18px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}
.accreditation_row .item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}
.accreditation_row .item .deg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/**/
.fraction_page_row {
  display: grid;
  gap: 50px;
}
.fraction_page_row .item {
  display: grid;
  grid-template-columns: 120px 1fr 183px;
  gap: 10px 50px;
  border: 1px solid #D0D5DA;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .fraction_page_row .item {
    grid-template-columns: 120px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .fraction_page_row .item {
    gap: 10px 20px;
    grid-template-columns: 60px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .fraction_page_row .item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.fraction_page_row .item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  border-bottom: 1px solid #E4E4E4;
}
.fraction_page_row .item:last-child::before {
  display: none;
}
.fraction_page_row .item .title {
  color: #1E2127;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}
.fraction_page_row .item .desc {
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .fraction_page_row .item .desc {
    font-size: 12px;
  }
}
.fraction_page_row .item .link_row {
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .fraction_page_row .item .link_row {
    grid-column: 2/3;
  }
}
.fraction_page_row .item .link_row a {
  color: #1E2127;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.fraction_detail_row .item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 50px;
  border: 1px solid #D0D5DA;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .fraction_detail_row .item {
    grid-template-columns: 90px 1fr;
    gap: 10px 20px;
  }
}
.fraction_detail_row .item .title {
  color: #1E2127;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}
.fraction_detail_row .item .desc {
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .fraction_detail_row .item .desc {
    font-size: 12px;
  }
}

/*arms*/
.arms_row {
  margin: 30px 0 0;
}
.arms_row .item {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 34px;
  border: 1px solid #E5E5E5;
  padding: 26px;
  border-radius: 4px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1200px) {
  .arms_row .item {
    grid-template-columns: 230px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .arms_row .item {
    grid-template-columns: 130px 1fr;
  }
}
@media screen and (max-width: 768px) {
  .arms_row .item {
    grid-template-columns: 1fr;
  }
}
.arms_row .item .img {
  max-height: 500px;
}
.arms_row .item .img img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .arms_row .item .img {
    max-height: 100%;
  }
}
.arms_row .props_info .title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.arms_row .props_info .sub_text {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}
.arms_row .props_info .date {
  font-size: 14px;
  margin: 0 0 10px;
}
.arms_row .props_info .num {
  font-size: 14px;
  margin: 0 0 16px;
}
.arms_row .props_info .sub_title {
  font-size: 20px;
  margin: 0 0 3px;
}
.arms_row .props_info .text {
  font-size: 14px;
  line-height: 1.4;
}

.link_color {
  font-size: 24px;
  color: #8A2125;
  font-weight: 600;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .link_color {
    font-size: 14px;
  }
}

/*page_deputat*/
.page_deputat {
  max-width: 610px;
  margin: 30px auto 190px;
  text-align: center;
}
.page_deputat .img {
  max-width: 138px;
  margin: 0 auto 16px;
}
.page_deputat .title {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .page_deputat .title {
    font-size: 30px;
  }
}
.page_deputat .sub_title {
  font-size: 35px;
  color: #8A2125;
  font-weight: 600;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .page_deputat .sub_title {
    font-size: 20px;
  }
}
.page_deputat .link_icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .page_deputat .link_icon {
    grid-template-columns: 1fr;
  }
}
.page_deputat .link_icon .item_link {
  border: 1px solid #D0D5DA;
  border-radius: 15px;
  padding: 19px 10px;
  display: block;
  color: #333;
  height: 150px;
  width: 190px;
}
@media screen and (max-width: 768px) {
  .page_deputat .link_icon .item_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 26px 30px;
  }
}
.page_deputat .link_icon .item_link img {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .page_deputat .link_icon .item_link img {
    margin: 0;
    width: 30px;
    height: 100%;
  }
}
.page_deputat .link_icon span {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

/*gallery_row*/
.gallery_row {
  display: grid;
  gap: 20px;
  margin: 0 0 30px;
}
.gallery_row .item {
  padding: 26px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  display: grid;
  grid-template-columns: 147px 1fr;
  gap: 68px;
}
@media screen and (max-width: 992px) {
  .gallery_row .item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.gallery_row .item .img {
  max-height: 147px;
}
@media screen and (max-width: 992px) {
  .gallery_row .item .img {
    max-height: 100%;
  }
}
.gallery_row .item .title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.gallery_row .item .date {
  font-size: 20px;
  margin: 0 0 34px;
}

.gallery_detail .btn {
  margin: 0 auto;
}

.gallery_detail_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 0 0 20px;
}
@media screen and (max-width: 992px) {
  .gallery_detail_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .gallery_detail_row {
    grid-template-columns: 1fr;
  }
}

/*dop_banner*/
.dop_banner_row {
  background: #F4F4F4;
  border-radius: 10px;
}
.dop_banner_row .item {
  display: grid;
  grid-template-columns: 88px 1fr 96px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  padding: 10px 20px;
  min-height: 110px;
}
@media screen and (max-width: 768px) {
  .dop_banner_row .item {
    grid-template-columns: 40px 1fr 40px;
    min-height: 80px;
  }
}
.dop_banner_row .item .more {
  color: #9F1C30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .dop_banner_row .item .more span {
    display: none;
  }
}
.dop_banner_row .item .img {
  background: #fff;
  border-radius: 50%;
  min-height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .dop_banner_row .item .img {
    min-height: 40px;
  }
}
.dop_banner_row .item .desc {
  text-align: center;
}
.dop_banner_row .item .desc .title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .dop_banner_row .item .desc .title {
    font-size: 16px;
  }
}
.dop_banner_row .item .desc .date {
  color: #7C818A;
}
@media screen and (max-width: 768px) {
  .dop_banner_row .item .desc .date {
    font-size: 14px;
  }
}

/*svg_map_tab*/
#svg_map_tab2 .svg_map_tab_row {
  padding: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 992px) {
  #svg_map_tab2 .svg_map_tab_row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #svg_map_tab2 .svg_map_tab_row {
    grid-template-columns: 1fr;
  }
}
#svg_map_tab2 .item {
  position: relative;
}
#svg_map_tab2 .item::before {
  content: attr(data-name);
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 32px;
  font-weight: 600;
  color: rgba(138, 33, 37, 0.2);
}
#svg_map_tab2 .item ul {
  list-style: none;
  padding: 30px 0 30px 10px;
  display: grid;
  gap: 10px;
}
#svg_map_tab2 .item ul a {
  color: rgba(30, 33, 39, 0.6509803922);
  font-size: 14px;
  font-weight: 500;
}

.modal_link {
  display: none;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .modal_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.title_color {
  font-size: 24px;
  font-weight: 500;
}

._color_bordo {
  color: #8A2125;
}

.form_theme_2 {
  margin: 30px 0;
}
.form_theme_2 .success_text {
  color: #8A2125;
}
.form_theme_2 .form_theme_row {
  display: grid;
  gap: 30px;
}
.form_theme_2 .form_theme_row label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form_theme_2 .item_form_title {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  margin: 0 0 10px;
}
.form_theme_2 .item_form_title.required::after {
  content: "*";
  margin-left: 3px;
  color: #8A2125;
}
.form_theme_2 .item_form_row {
  display: grid;
  gap: 12px;
  padding: 10px;
}
.form_theme_2 .item_form_row .radio span {
  font-size: 14px;
}
.form_theme_2 .item_form_row .textarea {
  display: grid;
  gap: 10px;
  font-size: 14px;
  width: 100%;
}
.form_theme_2 .item_form_row .textarea .checkbox-input {
  min-height: 130px;
  resize: vertical;
  outline: none;
  font-size: 16px;
  padding: 10px;
}
.form_theme_2 .checkbox {
  font-size: 14px;
}

/*interrogation*/
.interrogation_row {
  display: grid;
  gap: 10px;
}
.interrogation_row .item {
  border: 1px solid #D0D5DA;
  padding: 30px;
  border-radius: 4px;
  display: grid;
  gap: 10px;
}
.interrogation_row .item .item_title {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
}
.interrogation_row .item .item_desc {
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(30, 33, 39, 0.5019607843);
}

.up_arrow {
  cursor: pointer;
  position: fixed;
  bottom: 8%;
  right: 20px;
  visibility: hidden;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .up_arrow {
    display: none;
  }
}
.up_arrow svg {
  fill: #D0D5DA;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.up_arrow.visible {
  visibility: visible;
}
.up_arrow:hover svg {
  fill: #D0D5DA;
}

.detail_text {
  margin: 0 0 20px;
}

/**/
.accordionjs {
  display: grid;
  gap: 10px;
}

.accordion_title_theme {
  border: 1px solid #E5E5E5;
  background: #F8F8F8;
  border-radius: 10px;
  padding: 25px 60px 25px 25px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordion_title_theme {
    font-size: 14px;
  }
}
.accordion_title_theme::before {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}
.accordion-desc_theme {
  padding: 10px 0;
  display: grid;
  gap: 10px;
}

.accordion_theme_row.acc_active .accordion_title_theme::before {
  -webkit-transform: rotate(225deg) translateY(-50%);
          transform: rotate(225deg) translateY(-50%);
}

.structure_3_row .level_3 .item_3 .sub_item_3_1 {
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #E5E5E5;
  width: 100%;
  max-width: 180px;
  color: #333;
  position: relative;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3_1 {
    max-width: 100%;
    min-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.structure_3_row .level_3 .item_3 .sub_item_3_1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 173px;
  width: 1px;
  background: #000;
  bottom: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  left: 30%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .structure_3_row .level_3 .item_3 .sub_item_3_1::before {
    display: none;
  }
}
.img_address_row {
  display: grid;
  grid-template-columns: 122px 1fr;
  justify-items: end;
  padding: 46px 40px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 1200px) {
  .img_address_row {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 20px;
  }
}
.img_address_row .desc {
  text-align: right;
  line-height: 1.4;
  font-size: 16px;
  color: #333333;
}
@media screen and (max-width: 1200px) {
  .img_address_row .desc {
    text-align: left;
    margin: 20px 0 0;
  }
}
.img_address_row .text {
  margin: 15px 0 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

.block_info_row {
  padding: 26px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}

.title_link {
  color: #8A2125;
  font-size: 24px;
  font-weight: 600;
  text-decoration: underline;
}

.block_piple_row {
  display: grid;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .block_piple_row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .block_piple_row {
    grid-template-columns: 1fr;
  }
}
.block_piple_row .item {
  display: grid;
  grid-template-columns: 300px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  padding: 26px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 1200px) {
  .block_piple_row .item {
    grid-template-columns: 200px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .block_piple_row .item {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .block_piple_row .item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .block_piple_row .item .desc {
    padding: 20px;
  }
}
.block_piple_row .item .status {
  color: #999999;
  font-size: 12px;
}
.block_piple_row .item .title {
  font-size: 20px;
  text-decoration: underline;
  color: #333;
  margin: 0 0 40px;
  display: table;
}
@media screen and (max-width: 992px) {
  .block_piple_row .item .title {
    margin: 0 0 20px;
  }
}
.block_piple_row .item .name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
}
.block_piple_row .item .text {
  color: rgba(0, 0, 0, 0.6980392157);
  font-size: 14px;
  line-height: 1.2;
}