html {
  height: 100%;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, address {
  display: block;
}

audio, canvas {
  display: inline-block;
}

video {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

address {
  font-style: normal;
}

ul, ol, li, form, fieldset, a, img, div, figure, address {
  margin: 0;
  padding: 0;
  border: 0;
}

ul {
  list-style: inside;
}

ol {
  list-style: inside;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal inside;
}

ol {
  padding: 10px 0;
}

ol li {
  margin: 0 0 20px 0;
}

body {
  height: 100%;
  position: relative;
  background: #FDFAEB;
}

body, td, input, textarea, button {
  margin: 0px;
  padding: 0px;
}

body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.5s;
}

a:hover {
  text-decoration: none;
}

a, a:active, a:focus {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main {
  position: relative;
}

.cbc {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

input[type=submit] {
  cursor: pointer;
}

textarea,
button,
input[type=text],
input[type=number],
input[type=password] {
  -webkit-appearance: none !important;
  outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body, td, input, textarea, button {
  color: #674C54;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

.cbc {
  width: 100%;
  overflow: hidden;
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1080px;
  width: 100%;
}
@media (max-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

body.open-nav {
  padding-top: 61px;
  overflow: hidden;
}
body.open-nav .header__cover {
  display: none;
}
body.open-nav .cbc {
  overflow: hidden;
}
@media (max-width: 1200px) {
  body.open-nav .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
}

.burger-btn {
  width: 30px;
  height: 21px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  background: none;
  border: none;
  position: relative;
  outline: none;
}
.burger-btn span {
  position: absolute;
  left: 0;
  top: 9px;
  width: 30px;
  height: 3px;
  border-radius: 6px;
  background-color: #674C54;
  transition: 0.3s;
}
.burger-btn::before, .burger-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #674C54;
  transition: 0.3s;
  border-radius: 6px;
}
.burger-btn::before {
  top: 0;
}
.burger-btn::after {
  bottom: 0;
}
.burger-btn.open {
  height: 30px;
}
.burger-btn.open span {
  opacity: 0;
}
.burger-btn.open::before, .burger-btn.open::after {
  width: 28px;
  background: #674C54;
}
.burger-btn.open::before {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
}
.burger-btn.open::after {
  bottom: 50%;
  margin-bottom: -2px;
  transform: rotate(45deg);
}

/* header */
.header {
  padding: 20px 0 10px 0;
}
@media (max-width: 992px) {
  .header {
    padding: 15px 0;
  }
}
.header a {
  text-decoration: none;
}
.header .burger-btn {
  display: none;
}
.header__logo {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .header__logo {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    height: 30px;
    position: relative;
    z-index: 99;
  }
  .header__logo .h-logo {
    position: relative;
    top: -3px;
  }
  .header__logo .burger-btn {
    display: block;
  }
}
.header__nav {
  padding: 20px 0;
}
@media (max-width: 992px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDFAEB;
    padding: 75px 15px;
    overflow: auto;
  }
  .header__nav::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 60px;
    background: #FDFAEB;
    z-index: 9;
  }
}
.header__parts {
  padding: 20px 0;
}
@media (max-width: 992px) {
  .header__parts {
    display: none;
  }
}
.header__cover {
  padding: 5px 0;
}
@media (max-width: 992px) {
  .header__cover {
    margin-top: 15px;
  }
}
.header__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.h-logo {
  font-size: 27px;
  margin-bottom: -5px;
}
@media (max-width: 992px) {
  .h-logo {
    font-size: 20px;
  }
}

.h-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Georgia;
  color: #674c54;
  font-style: italic;
}
@media (max-width: 992px) {
  .h-nav {
    display: block;
    font-size: 22px;
  }
}
.h-nav__item {
  display: flex;
}
@media (max-width: 992px) {
  .h-nav__item {
    display: block;
    margin-bottom: 15px;
  }
  .h-nav__item:last-child {
    margin-bottom: 0;
  }
}
.h-nav__item::before {
  content: "/";
  margin: 0 10px;
  font-style: normal;
  color: #c1b4af;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 992px) {
  .h-nav__item::before {
    display: none;
  }
}
.h-nav__item:first-child::before {
  display: none;
}
.h-nav a:hover {
  text-decoration: underline;
}
.h-nav a.active {
  font-weight: bold;
}

.part-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Georgia;
  color: #674c54;
  font-style: italic;
}
@media (max-width: 992px) {
  .part-nav {
    display: block;
    font-size: 26px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(103, 76, 84, 0.2);
  }
}
.part-nav__item {
  display: flex;
}
@media (max-width: 992px) {
  .part-nav__item {
    display: block;
    margin-bottom: 15px;
  }
  .part-nav__item:last-child {
    margin-bottom: 0;
  }
}
.part-nav__item::before {
  content: "/";
  margin: 0 23px;
  font-style: normal;
  color: #c1b4af;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 992px) {
  .part-nav__item::before {
    display: none;
  }
}
.part-nav__item:first-child::before {
  display: none;
}
.part-nav a:hover {
  text-decoration: underline;
}

.box-title {
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0;
}
@media (max-width: 992px) {
  .box-title {
    font-size: 22px;
    font-weight: bold;
  }
}
.box-title a {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .box-title a {
    text-decoration: none;
  }
}
.box-title a:hover {
  text-decoration: none;
}

.main-page-column {
  display: flex;
  gap: 60px;
}
@media (max-width: 992px) {
  .main-page-column {
    display: block;
  }
}
.main-page-column__col {
  width: 50%;
}
@media (max-width: 992px) {
  .main-page-column__col {
    width: auto;
    margin-bottom: 40px;
  }
  .main-page-column__col:last-child {
    margin-bottom: 0;
  }
}


.first {font-size:23px;width: 75%;line-height: 28px;}

.comment {font-size:12px;border: 1px solid #E9DCD2;background-color: #FFFFFF;margin-top:1px;text-align:center;padding:5px 0}

.footer_menu {margin-top:20px;}
.footer_menu .part-nav__item {font-weight:100 !important;margin-top: 60px;}

@media (max-width: 992px) {
.first {font-size:18px;width: 80%;line-height: 25px;}
.footer_menu .part-nav__item {margin-top: 10px;}
}




.info-box {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .info-box {
    display: block;
    margin-bottom: 20px;
  }
  .info-box:last-child {
    margin-bottom: 0;
  }
}
.info-box:last-child {
  margin-bottom: 0;
}
.info-box__title {
  width: 100%;
}
.info-box__cover {
  width: 160px;
  margin-right: 15px;
}
@media (max-width: 992px) {
  .info-box__cover {
    width: 100%;
    margin-bottom: 20px;
  }
  .info-box__cover img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.info-box__text {
  width: calc(100% - 175px);
  font-size: 13px;
  text-align: justify;
}
@media (max-width: 992px) {
  .info-box__text {
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
  }
}

.news-list__item {
  margin-bottom: 14px;
}
.news-list__item:last-child {
  margin-bottom: 0;
}

.news-card {
  display: block;
}
.news-card__date {
  font-size: 11px;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .news-card__date {
    font-size: 14px;
  }
}
.news-card__title {
  font-size: 13px;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .news-card__title {
    font-size: 16px;
  }
}
.news-card__title:hover {
  text-decoration: none;
}

@media (max-width: 992px) {
  .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  .gallery .img {
    width: 33.33%;
    padding: 0 5px;
    margin: 0 0 20px !important;
  }
  .gallery .img img {
    display: block;
    width: 100%;
    height: auto;
  }
  .gallery .img > div > div {
    margin: 0 !important;
    width: 100% !important;
  }
  .gallery * {
    float: none !important;
  }
}
@media (max-width: 767px) {
  .gallery .img {
    width: 47%;
  }
  .gallery .img a {margin-top:0 !important}
}

@media (max-width: 992px) {
  .otzbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    background: #674C54;
    color: #fff;
    margin-bottom: 20px;
  }
  iframe {
    width: 100%;
  }
  .feedback_summary_item,
  ul,
  li,
  p {
    font-size: 16px;
    line-height: 1.4;
  }
  .feedback_summary_item *,
  ul *,
  li *,
  p * {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }
  .feedback_summary_item img,
  ul img,
  li img,
  p img {
    max-width: 100%;
    height: auto;
  }
  .all-news {
    margin-bottom: 15px !important;
  }
  .all-news .news-date {
    float: none;
    margin-bottom: 5px;
    font-size: 15px;
  }
  .all-news .all-news-link {
    margin: 0;
    display: block;
  }
  .newslist h2 {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  iframe {
    height: 200px;
  }
  p img {
    width: 100%;
  }
  div.row textarea,
  div.row input {
    width: 100%;
  }
}
.footer {
  padding: 25px 0;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .footer img {
    max-width: 100%;
  }
}
.footer__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 80px;
}
.footer__title a {
  text-decoration: underline;
}
.footer__title a:hover {
  text-decoration: none;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  max-width: 660px;
  margin: 0 auto;
}
.footer__col {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footer__col {
    padding: 0 10px;
  }
}
.footer__col img {
  display: block;
}
.footer__share {
  margin-top: 20px;
}

.f-dev {
  margin-bottom: 20px;

/*# sourceMappingURL=style.css.map */
/* Stylesheet: nstyle Modified On 2025-06-16 11:55:21 */
