.req:after {
  content: "*";
  color: #f00;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

:root {
  --orange: #e84e0e;
  --gray: #706f6f;
  --light-gray: #F2F2F2;
  --white: #fff;
  --black: #161616;
  --border: #E6E0DF;
  --transition: 0.3s all;
}

a {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
  color: var(--black);
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.woff2") format("woff2"), url("../fonts/Lato-Italic.woff") format("woff"), url("../fonts/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Medium.woff2") format("woff2"), url("../fonts/Lato-Medium.woff") format("woff"), url("../fonts/Lato-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Semibold.woff2") format("woff2"), url("../fonts/Lato-Semibold.woff") format("woff"), url("../fonts/Lato-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
#tToTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10002;
  background: var(--orange);
  color: var(--bs-white);
  border: 1px solid var(--orange);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

.card-clickable {
  position: relative;
}
.card-clickable-link:after {
  content: "";
  position: absolute;
  inset: 0;
}
.card-clickable-none {
  position: relative;
}

/* Fixed footer */
html,
html body.admin-bar {
  height: calc(100vh - 32px) !important;
}

html body {
  height: 100vh !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
}

/* /Fixed footer */
.popup-form-callback {
  --popup-width: 430px;
}
.popup-success {
  --popup-width: 350px;
  text-align: center;
}
.popup__wrap {
  padding: var(--popup-padding, 1rem) !important;
  border-radius: var(--popup-border-radius, 1rem) !important;
  width: var(--popup-width, 100%) !important;
  max-width: var(--popup-max-width, 900px) !important;
  --fancybox-content-color: var(--popup-color, #171717);
  --fancybox-content-bg: var(--popup-bg, #fff);
}
.popup__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  color: #222;
}
.popup__icon {
  font-size: 4rem;
  color: #484;
  margin: 1rem 0;
}
.popup__icon svg {
  fill: currentColor;
}
.popup__title {
  font-size: 1.5rem;
  font-weight: 600;
}
.sprite-icon {
  height: 1em;
  width: 1em;
  fill: currentColor;
}

/* FancyBox */
.fancybox__container {
  --fancybox-bg: rgba(23, 23, 23, 0.76);
  width: 100vw;
}

.fancybox__slide.has-html .fancybox__content {
  padding: 0;
}

/* WordPress */
/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
  font-size: 0.875rem;
}

.wp-pagenavi .current,
.wp-pagenavi *:hover {
  color: var(--white);
  font-weight: 500;
  letter-spacing: normal;
  padding: 10px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--black);
  letter-spacing: normal;
  padding: 10px;
  cursor: pointer;
  border: none !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  background-color: var(--orange);
  color: var(--white) !important;
  border-radius: 4px;
}

.header {
  padding: 1.5rem 0 1rem;
}
.header__social {
  border-radius: 6px;
  background-color: var(--light-gray);
  padding: 0.75rem 1.5rem;
}
.header__menu {
  background-color: var(--orange);
  border-radius: 6px;
}
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.header__menu ul a {
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--orange);
  font-weight: 500;
  color: var(--white);
}
.header__menu ul a:hover {
  background-color: var(--white);
  color: var(--orange);
}
.header__menu-left {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1;
  padding: 1.625rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  max-width: 200px;
  border-radius: 6px;
}
.header__menu-left ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header__menu-left ul li {
  margin-bottom: 0.875rem;
}
.header__menu-left ul li:last-child {
  margin-bottom: 0;
}
.header__menu-left ul a {
  color: var(--black);
}
.header__menu-left ul a:hover {
  color: var(--orange);
}
.header__search {
  position: relative;
}
.header__search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--orange);
  width: 48px;
  height: 48px;
  border-radius: 6px;
  outline: none;
  border: none;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social a {
  margin-right: 0.7rem;
}
.social a:last-child {
  margin-right: 0;
}
.social a:hover {
  opacity: 0.7;
}
.social svg {
  width: 32px;
  height: 32px;
}

.btn {
  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: 6px;
  font-weight: 500;
  border: 1px solid var(--orange);
  padding: 0.5rem 1.3rem;
  color: var(--white);
  outline: none;
  background-color: var(--orange);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn_gray {
  background-color: var(--light-gray);
  border-color: var(--border);
  color: var(--black);
  padding: 1rem 1.5rem;
}
.btn_gray:hover {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}
.btn_right {
  margin-left: auto;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--light-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.search-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--orange);
  width: 48px;
  height: 48px;
  border-radius: 6px;
  outline: none;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 0.3125rem;
}
.search-form__input {
  width: 100%;
  padding: 0.625rem 0;
  border: none;
  background-color: var(--light-gray);
  outline: none;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  cursor: pointer;
  background-color: var(--orange);
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.header__burger_right.opened {
  position: fixed;
  top: 25px;
  right: 30px;
  z-index: 100;
}

.header__burger span {
  background-color: var(--white);
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 4px;
  border-radius: 2px;
  z-index: 3;
}

.header__burger span:first-child {
  position: relative;
  top: 0;
  -webkit-transition: top 0.3s 0.3s, transform 0.3s 0s;
  -webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.header__burger span:nth-child(2) {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__burger span:last-child {
  margin-bottom: 0;
  position: relative;
  top: 0;
  -webkit-transition: top 0.3s 0.3s, transform 0.3s 0s;
  -webkit-transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, -webkit-transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s;
  transition: top 0.3s 0.3s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.header__burger.opened span:first-child {
  top: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
  -webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.header__burger.opened span:nth-child(2) {
  opacity: 0;
}

.header__burger.opened span:last-child {
  top: -5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s 0s, transform 0.3s 0.3s;
  -webkit-transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, -webkit-transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s;
  transition: top 0.3s 0s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
}

.bread a {
  color: var(--black);
}

.header__menu_mobile {
  position: fixed;
  top: 0px;
  right: -100vw;
  background-color: var(--white);
  width: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 8;
  height: 100%;
  padding: 60px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 0;
  color: var(--black);
}

.header__menu_mobile.opened {
  right: 0;
}

.card {
  border-radius: 6px;
  background-color: var(--light-gray);
  padding: 1.25rem;
  border: none;
}
.card__title, .card h1 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.01em;
}
.card__item {
  display: block;
  font-weight: 600;
  color: var(--black);
  line-height: 110%;
}
.card__item_mini {
  padding: 1rem 0;
}
.card img {
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.card__title-big {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
  padding: 1.125rem 0 0.5rem;
  margin-bottom: 0.5rem;
}
.card_yellow {
  background-color: #F0D7AD;
  background-image: url("../img/texture.webp");
  background-position: bottom right;
  background-size: cover;
}
.card a:not(.btn) {
  color: var(--black);
}
.card a:not(.btn):hover {
  color: var(--orange);
}
.card a:not(.btn):hover .text {
  color: var(--orange);
}
.card__author {
  color: var(--orange);
  font-size: 0.9375rem;
}
.card_social {
  background-image: url("../img/social-bg.webp");
  background-size: cover;
  background-position: center;
}
.card__img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.card__img_white {
  background-color: var(--white);
}
.card__img_mini {
  height: 230px;
}
.card__img_mini img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain; 
}
.card__img:hover img {
  -webkit-transform: scale(1.2) rotate(-5deg);
          transform: scale(1.2) rotate(-5deg);
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.border-bottom {
  border-bottom: 1px solid var(--border);
}

.text {
  font-size: 0.9375rem;
  color: rgba(22, 22, 22, 0.8);
  line-height: 120%;
}
.text_mini {
  font-size: 0.8125rem;
}

.news-date {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  line-height: 110%;
  padding: 0.1875rem 0.5rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.slider_main {
  padding-bottom: 70px;
}

.slick-arrow {
  position: absolute;
  bottom: 0;
  font-size: 0;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--orange);
  z-index: 1;
  border: none;
  border-radius: 6px;
}

.slick-arrow:hover {
  opacity: 0.5;
}

.slick-prev {
  right: 50px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.29289 0.292954C6.68342 -0.09757 7.31643 -0.09757 7.70696 0.292954C8.09748 0.683479 8.09748 1.31649 7.70696 1.70702L2.41399 6.99999L7.70696 12.293C8.09748 12.6835 8.09748 13.3165 7.70696 13.707C7.31643 14.0975 6.68342 14.0975 6.29289 13.707L0.292893 7.70702C-0.0976311 7.31649 -0.0976311 6.68348 0.292893 6.29295L6.29289 0.292954Z' fill='white'/%3E%3C/svg%3E%0A");
}

.slick-next {
  right: 0;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.292893 0.292954C0.683418 -0.09757 1.31643 -0.09757 1.70696 0.292954L7.70696 6.29295C8.09748 6.68348 8.09748 7.31649 7.70696 7.70702L1.70696 13.707C1.31643 14.0975 0.683418 14.0975 0.292893 13.707C-0.0976311 13.3165 -0.0976311 12.6835 0.292893 12.293L5.58586 6.99999L0.292893 1.70702C-0.0976311 1.31649 -0.0976311 0.683479 0.292893 0.292954Z' fill='white'/%3E%3C/svg%3E%0A");
}

.wp-polls input[type=radio] {
  display: none;
}

.wp-polls label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wp-polls label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 50%;
  border: 1px solid var(--black);
}

.wp-polls input[type=radio]:checked + label:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 3px;
  top: 6px;
  border-radius: 50%;
  background-color: var(--black);
}

.wp-polls-ul {
  padding-left: 0;
  margin-left: 0;
}
.wp-polls-ul li {
  margin-bottom: 1rem;
}

.wp-polls .pollbar {
  border-radius: 6px;
}

.screen-reader-text {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
  grid-template-areas: "A B C" "A B D" "A B E";
}
.news-grid .card:first-child {
  grid-area: A;
}
.news-grid .card:nth-child(2) {
  grid-area: B;
}
.news-grid .card:nth-child(3) {
  grid-area: C;
}
.news-grid .card:nth-child(4) {
  grid-area: D;
}
.news-grid .card:nth-child(5) {
  grid-area: E;
}

.section {
  padding: 1.5rem 0;
}
.section__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.section_gray {
  background-color: var(--light-gray);
}

.report {
  display: block;
  color: var(--black);
}
.report:hover {
  color: var(--orange);
}
.report:hover .report__text {
  color: var(--orange);
}
.report__img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.report__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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), rgba(0, 0, 0, 0.6) 100%);
}
.report__img_video:after {
  content: "";
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 0.166992C32.5059 0.166993 41.833 9.49407 41.833 21C41.833 32.5059 32.5059 41.833 21 41.833C9.49407 41.833 0.166993 32.5059 0.166992 21C0.166992 9.49407 9.49407 0.166992 21 0.166992ZM16.3701 27.9443L27.9443 21L16.3701 14.0557V27.9443Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: cover;
}
.report .news-date {
  position: absolute;
  left: 8px;
  bottom: 8px;
  color: var(--white);
  z-index: 1;
}
.report__title {
  font-weight: 600;
  margin: 0.75rem 0;
}
.report__text {
  color: rgba(22, 22, 22, 0.8);
  font-size: 0.9375rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.slider-wrapper .slider {
  margin: 0 -8px;
}
.slider-wrapper .slider .slick-arrow {
  bottom: -72px;
}
.slider-wrapper .slider .slick-next {
  right: 8px;
}
.slider-wrapper .slider .slick-prev {
  right: 64px;
}
.slider-wrapper .slider .slide {
  padding: 0 8px;
}

.widget_calendar #calendar_wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 1.25rem;
}
.widget_calendar #calendar_wrap table#wp-calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 6px;
}
.widget_calendar thead th {
  font-size: 0.9375rem;
  text-align: center;
  padding: 0.375rem 0;
}
.widget_calendar thead th:nth-child(6), .widget_calendar thead th:nth-child(7) {
  color: var(--orange);
}
.widget_calendar caption {
  display: none;
}
.widget_calendar .wp-calendar-nav a {
  color: var(--orange);
}
.widget_calendar tbody td {
  text-align: center;
  height: 32px;
}
.widget_calendar tbody td a {
  font-weight: 600;
}
.widget_calendar tbody td a:hover {
  color: var(--orange);
}
.widget_calendar tbody #today, .widget_calendar tbody .today {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
  border-radius: 4px;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.sidebar select {
  width: 100%;
  border: none;
  padding: 0.625rem;
  border-radius: 5px;
  outline: none;
  appearance: none;
  color: var(--black);
  background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.2929 0.292878C12.6834 -0.0976463 13.3164 -0.0976463 13.707 0.292878C14.0975 0.683402 14.0975 1.31642 13.707 1.70694L7.70696 7.70694C7.31643 8.09746 6.68342 8.09746 6.29289 7.70694L0.292893 1.70694C-0.0976311 1.31642 -0.0976311 0.683402 0.292893 0.292878C0.683418 -0.0976463 1.31643 -0.0976463 1.70696 0.292878L6.99992 5.58585L12.2929 0.292878Z' fill='rgb(112,111,111)'/%3E%3C/svg%3E%0A");
  background-position: top 18px right 10px;
  background-repeat: no-repeat;
}

.dzen-card {
  max-width: 100%;
}

.sidebar-wrapper {
  position: sticky;
  top: 0;
}

.card a.orange {
  color: var(--orange);
}

.card_contacts .text {
  margin-bottom: 0.3125rem;
}

.map {
  height: 100%;
}

.contacts .slider-wrapper .slick-arrow {
  top: -55px;
  bottom: auto;
}

.news__img {
  display: flex;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.news__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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), rgba(0, 0, 0, 0.6) 100%);
}
.news__title {
  position: absolute;
  bottom: 24px;
  left: 0;
  padding: 0 6.25rem;
}
.news h1 {
  position: relative;
  z-index: 1;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--white);
  line-height: 110%;
}
.news h1.h1_black{
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 20px;
}

.news__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.625rem;
}
.news__text-mini {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-right: 0.375rem;
}
.news__banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: 700px;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}
.news__banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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), rgba(0, 0, 0, 0.6) 100%);
}

.news__tag {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.1875rem 0.5rem;
  font-size: 0.875rem;
  line-height: 100%;
  border-radius: 10px;
  border: 1px solid var(--orange);
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
}
.news__tag:hover {
  color: var(--orange);
  background-color: var(--white);
}

.post-nav {
  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: 0.5rem;
  border-radius: 6px;
  background-color: var(--light-gray);
  color: var(--black);
}
.post-nav__title {
  font-weight: 600;
}
.post-nav__icon {
  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;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  background-color: var(--orange);
}
.post-nav:hover {
  color: var(--orange);
}

.page-content a {
  color: var(--orange);
}

.footer {
  background: var(--light-gray);
  padding: 2.625rem 0;
}
.footer__link {
  font-weight: 600;
}
.footer__link a {
  color: var(--black);
}
.footer__link a:hover {
  color: var(--orange);
}
.footer__menu ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.footer__menu li {
  margin-bottom: 1.25rem;
}
.footer__menu li a {
  color: var(--black);
  font-weight: 500;
}
.footer__menu li a:hover {
  color: var(--orange);
}
.footer .search-form__input, .footer .search-form {
  background-color: var(--white);
}
.footer .btn {
  width: 100%;
  max-width: 100%;
}

.copy {
  font-size: 13px;
  color: var(--black);
  opacity: 0.6;
}

.input {
  padding: 0.375rem 0.5rem;
  outline: none;
  width: 100%;
  border-radius: 6px;
  background-color: var(--light-gray);
  margin-top: 0.625rem;
  border: none;
}

textarea {
  height: 160px;
  resize: none;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid var(--orange);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  vertical-align: text-top;
  margin-right: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.29412L5.46533 8.65842C5.65962 8.84832 5.97 8.84832 6.1643 8.65842L14 1' stroke='rgb(232, 78, 14)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat;
  background-position: center;
}

.acceptance {
  line-height: 110%;
  font-size: 0.9375rem;
}

.acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.acceptance a {
  color: var(--black);
  text-decoration: underline;
}

.acceptance .wpcf7-list-item {
  margin-left: 0;
}

.popup__content .btn {
  max-width: 100%;
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.cookiegdpr {
  --gdpr-btn-color: #fff;
  --gdpr-btn-bg: var(--orange);
  --gdpr-btn-border: 1px solid var(--orange);
  --gdpr-btn-border-radius: .375rem;
  --gdpr-btn-padding: .375rem .75rem;
  --gdpr-btn-bg-hover: #fff;
  --gdpr-btn-color-hover: var(--orange);
  --gdpr-btn-border-color-hover: #fff;
  --gdpr-bottom: 1rem;
  --gdpr-border-radius: .375rem;
  --gdpr-z-index: 10001;
  --gdpr-bg: rgba(255, 255, 255, .88);
  --gdpr-padding: .625rem;
  --gdpr-link-color: var(--orange);
}

.text-content a {
  color: var(--orange);
}
#custom-search .input {
  margin-top: 0;
  margin-bottom: 8px;
}
.max-text {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 110%;
  padding: 0 1rem;
}
.footer_text,
.footer_text a{
  color: var(--gray);
  font-size: 14px;
}
.portal-post-content table{
  margin: 20px 0px;
  width: 100%;
}
.portal-post-content table tr{
  border-bottom: 1px solid #f2f2f2;
}
.portal-post-content table tr td{
  padding: 6px;
  text-align: left;
}
.news_content img{
  margin-bottom: 10px;
}
.news-title {
  font-weight: 600;
  line-height: 110%;
}