header {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  position: relative;
}
header .inner_header_wrap {
  position: relative;
  padding: 0 25px;
  align-items: center;
  background-color: #9a1900;
  background: linear-gradient(0deg, #9a1900 0%, #9a1700 29%, #ff7979 100%);
}
header.fixed {
  position: fixed;
}
header.fixed .inner_header_wrap {
  background: linear-gradient(0deg, rgba(154, 25, 0, 0.65) 0%, rgba(154, 23, 0, 0.65) 29%, rgba(255, 121, 121, 0.65) 100%);
}
@media (max-width: 1024px) {
  header {
    position: relative !important;
  }
  header .inner_header_wrap {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

.menu_open {
  display: none;
  position: relative;
  border-top: 2px solid white;
  width: 25px;
  margin-left: 10px;
  border-bottom: 2px solid white;
  align-self: center;
  height: 18px;
}
.menu_open:after {
  content: "";
  width: 100%;
  top: 50%;
  height: 2px;
  background-color: white;
  position: absolute;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .menu_open {
    display: inline-block;
  }
}

.close_mobile_menu {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  border: 1px solid white;
  right: 10px;
  top: 10px;
  z-index: 10;
}
.close_mobile_menu:after, .close_mobile_menu:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
}
.close_mobile_menu:after {
  transform: translateY(-50%) rotate(-45deg);
}
.close_mobile_menu:before {
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1024px) {
  .close_mobile_menu {
    display: inline-block;
  }
}

.admin-bar header.fixed {
  top: 32px;
}
@media (max-width: 1024px) {
  .admin-bar header.fixed {
    top: 0px;
  }
  .admin-bar header.fixed .menu_wrap {
    top: 32px !important;
  }
}
@media (max-width: 1024px) {
  .admin-bar header .menu_wrap {
    top: 32px !important;
  }
}

@media (max-width: 1024px) {
  .menu_wrap {
    opacity: 0;
    transform: translateX(250px);
    position: fixed;
    height: 100vh;
    z-index: 11;
    background: linear-gradient(0deg, #9a1900 0%, #9a1700 29%, #ff7979 100%);
    right: 0;
    top: 0;
    width: 250px;
  }
  .menu_wrap.open {
    opacity: 1;
    transform: translateX(0px);
    transition: transform 0.3s, opacity 0.3s;
  }
}

#primary-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1024px) {
  #primary-menu-list {
    padding-top: 25px;
  }
}
#primary-menu-list li a {
  display: inline-block;
  padding: 14px 8px;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}
#primary-menu-list li a:hover {
  background-color: white;
  color: #9a1900;
}
@media (max-width: 1024px) {
  #primary-menu-list li {
    padding: 0 5px;
    width: 100%;
    flex-basis: 100%;
    text-align: center;
  }
}
#primary-menu-list li.current-menu-item a {
  background-color: white;
  color: #9a1900;
}

.search-form {
  font-size: 14px;
  display: none;
  position: absolute;
  top: 50%;
  max-width: 400px;
  display: none;
  width: 100%;
  right: 10px;
  transform: translateY(-50%);
  margin: 0 !important;
  z-index: 10;
}
.search-form.show {
  display: flex;
  justify-content: flex-end;
}
.search-form #search-form-1 {
  margin: 0;
}

.search_btn,
.search-submit {
  display: inline-block;
  cursor: pointer;
  background: transparent;
  background-image: url("../icons/search.svg");
  border: none;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}

.search-submit {
  display: none;
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: #9a1800;
  background-position: center;
}

.logo_wrap {
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .logo_wrap {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.search_wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .search_wrap {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.site_translate {
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}
.site_translate:hover {
  color: white;
}

.search_form_wrap {
  font-size: 0;
  display: flex;
  align-items: center;
}

.latest_news {
  background-color: #f6f6f6;
  padding: 13px 19px 13px 19px;
  max-height: 750px;
  overflow-y: auto;
}
.latest_news h4 {
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.latest_news ul li {
  border-bottom: 2px solid #dddddd;
  padding-bottom: 7px;
  margin-bottom: 7px;
  line-height: 1.4;
}
.latest_news ul li:first-child {
  border-width: 4px;
}
.latest_news ul li a {
  font-size: 14px;
  color: black;
  line-height: 1.4;
}
.latest_news ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .latest_news {
    max-height: 250px;
  }
}

.latest_news::-webkit-scrollbar {
  width: 5px;
}

.latest_news::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.latest_news::-webkit-scrollbar-thumb {
  background-color: #a7a5a5;
}

.slider_strip_wrap {
  overflow-x: hidden;
  background-color: #4e4e46;
}
.slider_strip_wrap .slider_strip {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  position: relative;
  display: flex;
  max-width: max-content;
  width: max-content;
}
.slider_strip_wrap .slider_strip.slick-initialized {
  overflow: visible;
  max-height: max-content;
}
.slider_strip_wrap .slide_strip {
  width: auto;
  flex: 0 0 auto;
}
.slider_strip_wrap .slide_strip h4 {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0;
  text-align: left;
  margin: 0;
  transition: background-color 0.3s;
}
.slider_strip_wrap .slide_strip h4 .strip_post_cat {
  font-size: 13px;
  color: white;
  border: 1px solid white;
  padding: 2px 5px;
}
.slider_strip_wrap .slide_strip h4 a {
  padding-bottom: 7px;
  padding-top: 8px;
  display: inline-block;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 700;
  padding-left: 10px;
}
.slider_strip_wrap .slide_strip h4:hover {
  background-color: #9a1900;
}

.open_footer {
  color: #aaa;
  text-transform: uppercase;
  font-size: 13px;
}
.open_footer:focus {
  color: #aaa;
}
.open_footer:hover {
  color: white;
}

.footer_inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  background-color: #2c2c2c;
}
.footer_inner .social_block {
  display: flex;
}
.footer_inner .social_icon:not(:last-child) {
  margin-right: 15px;
}
.footer_inner .social_icon:hover path {
  fill: white;
}

.footer_desc {
  display: none;
  width: 100%;
  padding: 15px;
}
.footer_desc p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.4;
}

.opened .footer_desc {
  display: block;
}

.visible_line {
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #aaa;
}

body {
  background: #dddddd;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Fira Sans", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Fira Sans", sans-serif;
}

.desc, p {
  font-family: "Noto Serif", serif;
}

ul li {
  font-family: "Noto Serif", serif;
}
[id^=attachment_] {
  max-width: 100%;
}
[id^=attachment_].aligncenter {
  margin: 0 auto;
  text-align: center;
}
[id^=attachment_] img {
  max-width: 100%;
}

main {
  min-height: calc(100vh - 141px);
}

.admin-bar main {
  min-height: calc(100vh - 141px - 32px);
}
.admin-bar .header_404 {
  min-height: calc(100vh - 141px - 32px);
}

.header_404 {
  margin: 0;
  min-height: calc(100vh - 141px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header_404 span.title {
  font-size: 120px;
  font-weight: 700;
}

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

a {
  text-decoration: none;
}

.row {
  max-width: 1370px;
}
.row .row {
  margin-right: 0;
  margin-left: 0;
}

.column {
  padding: 0;
}

.shadow {
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
}

.page_row {
  background-color: white;
}