@font-face {
  font-family: 'FS Elliot Pro';
  src: url("../fonts/FSElliotPro.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SPSL-New-Cyrillic';
  src: url("../fonts/SPSL-New-Cyrillic.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FS Elliot Pro';
  src: url("../fonts/FSElliotPro-Bold.woff") format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --container-padding: 16px;
  --accent-color: #7e2032;
}
body {
  font-family: 'FS Elliot Pro';
}
.h2 {
  color: #1c1c1c;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.button a {
  text-decoration: none;
  background: var(--accent-color);
  min-width: 160px;
  padding: 0 32px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  text-transform: uppercase;
  color: #fff;
  transition: 0.24s;
}
.button a:hover {
  background: #9a273d;
}
.container {
  max-width: calc(1460px + var(--container-padding) * 2);
  padding: 0 var(--container-padding);
  margin: 0 auto;
}
.hamburger {
  height: 24px;
  padding: 0;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: #fff;
}
.app__line {
  height: 36px;
  background: #eee0c6;
}
@media (max-width: 575.98px) {
  .h2 {
    font-size: 32px;
  }
}
.header {
  background: #eee0c6;
  overflow: hidden;
  padding: 32px 0 8px;
}
.header__logo {
  text-align: center;
}
.header__logo a {
  text-decoration: none;
  color: #a31414;
  display: inline-block;
  position: relative;
}
.header__logo a:before {
  content: url("../img/header-img1.png");
  position: absolute;
  left: -132px;
  display: block;
  top: -32px;
}
.header__logo a:after {
  content: url("../img/header-img2.png");
  position: absolute;
  right: -144px;
  margin: 0 auto;
  display: block;
  top: -28px;
}
.header__title {
  font-size: 52px;
  font-family: 'SPSL-New-Cyrillic', serif;
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 32px #fff, 0 0 48px #fff, 0 0 64px #fff, 0 0 128px #fff;
  line-height: 0.8;
}
.header__text {
  font-size: 14px;
  text-transform: uppercase;
}
.calendar a
{
 color:var(--accent-color);
}
.nav {
  background: var(--accent-color);
  padding: 8px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}
.nav__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav__burger {
  height: 24px;
  display: none;
}
.nav__menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 24px;
}
.nav__menu ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  transition: 0.24s;
}
.nav__menu ul li a:hover {
  color: #eee0c6;
}
.nav__tools {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.nav__search {
  flex-shrink: 0;
}
.nav-search {
  position: relative;
  height: 36px;
}
.nav-search__input {
  height: 100%;
}
.nav-search__input input {
  height: 100%;
  border: none;
  width: 270px;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
}
.nav-search__input input:focus {
  outline: none;
}
.nav-search__input input::-webkit-input-placeholder {
  color: var(--accent-color);
  opacity: 0.5;
  text-transform: uppercase;
}
.nav-search__input input::-moz-placeholder {
  color: var(--accent-color);
  opacity: 0.5;
  text-transform: uppercase;
}
.nav-search__icon {
  width: 40px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.nav-search__icon img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 100%;
  height: 100%;
  display: block;
}
.nav__socials {
  flex-shrink: 0;
}
.nav__socials ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
}
.mobile {
  background: var(--accent-color);
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  max-width: 290px;
  width: 100%;
  z-index: 10;
  transform: translateX(-100%);
  transition: 0.24s;
}
.mobile_active {
  transform: translateX(0);
}
.mobile__wrapper {
  padding: 24px;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.mobile__close {
  text-align: right;
}
.mobile__menu ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 16px;
}
.mobile__menu ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  transition: 0.24s;
}
.mobile__menu ul li a:hover {
  color: #eee0c6;
}
@media (max-width: 1399.98px) {
  .nav__menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .nav__burger {
    display: block;
  }
  .nav__menu {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .nav__tools {
    gap: 16px;
  }
  .nav__grid {
    gap: 16px;
  }
  .nav-search__input input {
    width: 160px;
  }
}
.slider {
  background: #fff;
  padding-top: 20px;
  padding-bottom:0px;
}
.slider-item__image {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.slider-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.slider-item__date {
  color: #a31414;
  font-size: 14px;
  margin-bottom: 7px;
}
.slider-item__title {
  margin-bottom: 8px;
}
.slider-item__title a {
  color: #a66d17;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
}
.slider-item__title a:hover {
  text-decoration: underline;
}
.slider-item__text {
  margin-bottom: 10px;
 font-size: 14px;
    line-height: 1.214285714285714;
}
.slider-item__link a {
  font-size: 16px;
  color: #a66d17;
}
.slider-item__link a:hover {
  text-decoration: none;
}
.main {
  padding: 32px 0;
  background: linear-gradient(30deg, #f0d199 0%, #fff 57%, #f5e3c9 73%, #fdfaf4 100%);
}
.main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.main__right {
  display: grid;
  gap: 64px;
  margin-top: 60px;
}
@media (max-width: 1399.98px) {
  .main__grid {
    grid-template-columns: 3fr 4fr;
  }
}
@media (max-width: 1199.98px) {
  .main__grid {
    grid-template-columns: 1fr;
  }
  .main__right {
    margin-top: 0;
  }
}
.list__h2 {
  margin-bottom: 24px;
}
.list__nav {
  margin-bottom: 40px;
  background: var(--accent-color);
  padding: 2px;
}
.list__nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px 2px;
  list-style: none;
}
.list__nav ul li a {
  color: #fff;
  display: block;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.list__nav ul li a:hover {
  color: var(--accent-color);
  background: #f5e4c9;
}
.list__nav ul li.active a {
  color: var(--accent-color);
  background: #f5e4c9;
}
.list__items {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}
.list-news {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}
.list-news__image {
  border-radius: 6px;
  overflow: hidden;
  height: 84px;
  position: relative;
  top: 2px;
}
.list-news__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.list-news__date {
  color: #a31414;
  font-size: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.list-news__date:after {
  content: '';
  height: 1px;
  background: var(--accent-color);
  flex: 1;
  display: block;
  margin-left: 16px;
}
.list-news__title {
  margin-bottom: 4px;
}
.list-news__title a {
  color: #a66d17;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}
.list-news__title a:hover {
  text-decoration: underline;
}
.list-news__text {
  font-size: 14px;
  line-height: 1.214285714285714;
}
/* start klir */
.list-klir__image {
  border-radius: 6px;
  overflow: hidden;
  height: 184px;
  position: relative;
  top: 2px;
}
/* end klir */
@media (max-width: 1199.98px) {
  .main .list__items {
    height: 1000px;
    overflow-y: auto;
  }
}
.article {
  padding-bottom: 64px;
  position: relative;
}
.article:after {
  content: '';
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(244,223,183,0.4));
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
}
.article__grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: flex-start;
  gap: 44px;
}
.article__grid2 {
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: flex-start;
  gap: 44px;
}
.article__left {
  padding-top: 32px;
}
.article__right {
  padding: 32px 24px 64px;
  background: linear-gradient(30deg, #f0d199 0%, #fff 57%, #f5e3c9 73%, #fdfaf4 100%);
}
.article__image {
  position: relative;
  margin-bottom: 16px;
}
.article__image:before {
  content: '';
  display: block;
  padding-top: calc((600 / 920) * 100%);
}
.article__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.article__image2 {
  position: relative;
  float:left;
  margin-bottom: 16px;
  margin-right:30px;
}
.article__image2:before {
  content: '';
  display: block;

}
.article__image2 img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.article__date {
  font-size: 14px;
  color: #a31414;
  margin-bottom: 24px;
}
.article__title {
  margin-bottom: 32px;
}
.article__title h2 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.166666666666667;
}
.article__content {
  gap: 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
}
.article-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.article-gallery__title {
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #a31414;
  font-size: 18px;
  font-weight: bold;
}
.article-gallery__image {
  position: relative;
}
.article-gallery__image:before {
  content: '';
  display: block;
  padding-top: calc((110 / 164) * 100%);
}
.article-gallery__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.article__text {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.article__text p {
  font-size: 16px;
  line-height: 1.375;
}
.article__note {
  font-size: 12px;
  text-align: right;
  font-style: italic;
  color: var(--accent-color);
}
.owl-prev
{
left: -80px;
    background:none;
    height: 92px;
    background-color:none;
    width: 32px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;

}
.owl-next
{
right: -80px;
    background:none;
    height: 92px;
    background-color:none;
    width: 32px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;

}
.bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}
.bio__image {
  height: 400px;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}
.bio__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.bio__h2 {
  margin-bottom: 32px;
}
.bio__text {
  font-size: 13px;
  line-height: 1.307692307692308;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.bio__links {
  margin-bottom: 24px;
}
.bio__links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.bio__links ul li a {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 18px;
}
.bio__links ul li a:hover {
  text-decoration: none;
}

.bio__links ul li.active a {
  font-weight: bold;
}
@media (max-width: 1599.98px) {
  .owl-carousel {
    display: none;
    width: 88%;
    margin: 0 auto;
    z-index: 1;
}
}
@media (max-width: 1399.98px) {
  .article__grid {
    grid-template-columns: 2fr 1fr;
  }
  .article__grid2 {
    grid-template-columns: 1fr 2fr;
  }
  .owl-carousel {
    display: none;
    width: 80%;
    margin: 0 auto;
    z-index: 1;
}
}
@media (max-width: 1199.98px) {
  .article__grid {
    grid-template-columns: 4fr 3fr;
  }
  .article__grid2 {
    grid-template-columns: 3fr 4fr;
  }
  .article__content {
    grid-template-columns: 1fr;
  }
  .article__text {
    order: 1;
  }
  .article__gallery {
    order: 2;
  }
  .article__title h2 {
    font-size: 32px;
  }
}
@media (max-width: 991.98px) {
  .article__grid {
    grid-template-columns: 1fr;
  }
  .article__grid2 {
    grid-template-columns: 1fr;
  }
  .owl-prev
  {
  left:-50px;
  }
  .owl-next
  {
  right:-50px;
  }
}
@media (max-width: 575.98px) {
  .article__title h2 {
    font-size: 24px;
  }
  .article__right {
    padding: 0;
    background: none;
  }
  .owl-prev
  {
  left:-30px;
  }
  .owl-next
  {
  right:-45px;
  }
   .owl-prev img
  {
  width:50%;
  }
  .owl-next img
  {
   width:50%;
  }
  .list-news__date:after {

    display: none;

}
  .list-news__title a {
    color: #a66d17;
    font-weight: bold;
    font-size: 16px;
    line-height:1.1;
    text-decoration: none;
	}
	.bio__links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    grid-template-columns: 50% 50%;
    }
    .bio__links ul ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;

}
    .bio__links ul li a {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 12px;
    line-height:1.1 !important;
    }
    .bio__links ul li{

    line-height:1.1 !important;
    }
    .article__left
    {
     padding-top:0px;
    }
    .article__grid2 {

    gap: 0px;
	}
	.app__line
	{
	 background-color:#fff;
	 height:10px;
	}
	.slider
	{
	 padding-top:20px;
	 padding-bottom:20px;
	}
}

.second__text hr
{
 margin-top:30px;
 margin-bottom:30px;
 background-color:var(--accent-color);
}
.second__text h2
{
color: #1c1c1c;
    font-size: 36px;
    margin-top:20px;
    margin-bottom:20px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}
.second__text h3
{
color:var(--accent-color);
    font-size: 24px;
    margin-top:20px;
    margin-bottom:20px;
    line-height: 1.2;
    font-weight: bold;

}
.second__text .accent
{
color:var(--accent-color);
    font-size: 24px;
    margin-bottom:20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: bold;

}
.second__text table
{
        width: 100%  !important; /* Ширина таблицы */
        border-spacing: 0; /* Расстояние между ячейками */
        border:none !important;
      }
.second__text table tr:nth-child(2n+1) {
        background: #f0f0f0; /* Цвет фона */
        color:#000 !important;
      }
.second__text ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.second__text ul li a {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 18px;
}
.second__text ul li a:hover {
  text-decoration: none;
}
.second__text
{
 padding-bottom:20px;
 min-height:600px;
}
.second__text a
{
  color: var(--accent-color);
}
.second__text a:hover {
  text-decoration: none;
}
.second__text ol {
  padding: 0;
  margin: 0;
  margin-left:20px;
  display: grid;
  gap: 8px;
}
.second__text ol li a {
  color: var(--accent-color);

}
.second__text ol li a:hover {
  text-decoration: none;
}
.pagination-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.pagination-pages {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.pagination-pages-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-right: 20px;
}
.pagination-pages-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.pagination-pages-item:not(:last-child) {
  margin-right: 10px;
}
.pagination-pages-item.active a,
.pagination-pages-item:hover a {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#fbfbfb));
  background-image: linear-gradient(to top, #f3f3f3 0%, #fbfbfb 100%);
}
.pagination-pages-item a {
  border: 1px dashed transparent;
  border-bottom-color: #000;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #231f20;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.pagination-per {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.pagination-per-item:not(:last-child) {
  margin-right: 15px;
}
.pagination-per-item.active a,
.pagination-per-item:hover a {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f3f3f3), to(#fbfbfb));
  background-image: linear-gradient(to top, #f3f3f3 0%, #fbfbfb 100%);
}
.pagination-per-item a {
  border: 1px dashed transparent;
  border-bottom-color: #000;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  height: 40px;
  display: -webkit-box;
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #231f20;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.larr
{
 float:left;
 background-color:var(--accent-color);
 color:#fff !important;
 width:40px;
 height:40px;
 font-weight:bold;
 text-align:center;
 line-height:40px;
 font-size:22px;
 text-decoration:none;
}
.rarr
{
 float:right;
 background-color:var(--accent-color);
 color:#fff  !important;
 width:40px;
 height:40px;
 font-weight:bold;
 text-align:center;
 line-height:40px;
 font-size:22px;
  text-decoration:none;
}
@media (max-width: 767.98px) {
  .bio {
    grid-template-columns: 220px 1fr;
  }
  .bio__image {
    height: 290px;
  }
}
@media (max-width: 575.98px) {
  .bio {
    grid-template-columns: 1fr;
  }
  .bio__image {
    height: auto;
  }
}
.media__head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.media__h2 {
  flex-shrink: 0;
}
.media__nav {
  background: var(--accent-color);
  flex: 1;
  padding: 2px;
}
.media__nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px 2px;
  list-style: none;
}
.media__nav ul li a {
  color: #fff;
  display: block;
  padding: 6px 12px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.media__nav ul li a:hover {
  color: var(--accent-color);
  background: #f5e4c9;
}
.media__nav ul li.active a {
  color: var(--accent-color);
  background: #f5e4c9;
}
.media__main {
  margin-bottom: 48px;
}
.media-main__image {
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  position: relative;
}
.media-main__image:before {
  content: '';
  padding-top: calc((460px / 700px) * 100%);
  display: block;
}
.media-main__image a {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: url("../img/play.png") no-repeat left 36px center;
  background-color: rgba(103,103,103,0.5);
  position: absolute;
}
.media-main__image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  display: block;
}
.media-main__title a {
  color: #a66d17;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.375;
}
.media-main__title a:hover {
  text-decoration: underline;
}
.media__cards {
  display: grid;
  gap: 24px;
}
.media-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 180px 1fr;
}
.media-card__body {
  margin-top: 4px;
}
.media-card__image {
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
}
.media-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.media-card__title {
  margin-bottom: 16px;
}
.media-card__title a {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.111111111111111;
  color: #a66d17;
  text-decoration: none;
}
.media-card__title a:hover {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .media__head {
    flex-direction: column;
    align-items: stretch;
  }
  .media-card {
    grid-template-columns: 1fr;
  }
  .media-card__image {
    height: auto;
  }
}
.announcement__h2 {
  margin-bottom: 24px;
}
.announcement__cards {
  display: grid;
  gap: 32px;
  margin-bottom: 24px;
}
.announcement-card {
  display: grid;
  align-items: center;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}
.announcement-card__image {
  border-radius: 8px;
  overflow: hidden;
}
.announcement-card__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.announcement-card__title a {
  color: #a66d17;
  font-size: 24px;
  line-height: 1.375;
  font-weight: bold;
  text-decoration: none;
}
.announcement-card__title a:hover {
  text-decoration: underline;
}
.announcement__link a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  color: var(--accent-color);
}
.announcement__link a:hover {
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .announcement-card {
    grid-template-columns: 1fr;
  }
}
.accents__blocks {
  display: grid;
  gap: 32px;
}
.accents-block__h2 {
  margin-bottom: 16px;
}
.accents-block__link a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  color: var(--accent-color);
}
.accents-block__link a:hover {
  text-decoration: none;
}
.accents__cards {
  margin-bottom: 32px;
  display: grid;
  gap: 24px;
}
.accents-card__date {
  color: #a31414;
  font-size: 14px;
  margin-bottom: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.accents-card__date:after {
  content: '';
  height: 1px;
  background: var(--accent-color);
  flex: 1;
  display: block;
  margin-left: 16px;
}
.accents-card__title a {
  font-size: 18px;
  color: #a66d17;
  text-decoration: none;
}
.accents-card__title a:hover {
  text-decoration: underline;
}
.accents-card__text {
  font-size: 14px;
  line-height: 1.214285714285714;
}
.necrology__h2 {
  margin-bottom: 24px;
}
.necrology__items {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
.necrology-item {
  display: flex;
  gap: 24px;
}
.necrology-item__date {
  color: #a31414;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  top: 4px;
}
.necrology-item__title a {
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.388888888888889;
  color: #a66d17;
}
.necrology-item__title a:hover {
  text-decoration: underline;
}
.necrology__link a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  color: var(--accent-color);
}
.necrology__link a:hover {
  text-decoration: none;
}
.calendar__widget img {
  max-width: 100%;
  display: block;
}
.logos {
  padding: 32px 0;
  background: #fff;
}
.logos__item {
  height: 100px;
  width: 100%;
}
.logos__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.footer {
  background: var(--accent-color);
  color: #fff;
  padding: 24px 0;
}
.footer a {
  color: #f7e5c5;
}
.footer a:hover {
  text-decoration: none;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer__left {
  display: flex;
  gap: 16px;
}
.footer__metrics {
  position: relative;
  top: 8px;
  flex-shrink: 0;
}
.footer__metrics img {
  display: block;
}
.footer__copyright {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer__copyright span {
  font-size: 18px;
}
.footer__links ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer__links ul li a {
  color: #fff;
}
.footer__right {
  text-align: right;
}
.footer__info {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
}
.footer__dev {
  font-size: 14px;
  color: #f7e5c5;
}
@media (max-width: 767.98px) {
  .footer__grid {
    flex-direction: column;
  }
  .footer__right {
    text-align: left;
  }
}
.youtube-thumb-wrap {
  position: relative;
  padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  height: 0;
  overflow: hidden;
}
.youtube-thumb-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}
.ptable
{
width:100%;
}
.window-pop-up .inp
{
 	width:170px;
}
.window-pop-up .btn {
    text-decoration: none;
    background: var(--accent-color);
    min-width: 160px;
    padding: 0 32px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    text-transform: uppercase;
    color: #fff;
    transition: 0.24s;
}
.window-pop-up .btn:hover {
  background: #9a273d;
}

