@charset "UTF-8";
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/GolosText-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/GolosText-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/GolosText-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Lora-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Lora-MediumItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Oswald-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Oswald-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Oswald-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype");
}
html, body {
  height: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  color: #332421;
  background: #FBFBF9;
  font-family: "Golos Text", sans-serif;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(44px, 9vw, 108px);
  font-weight: 400;
  line-height: clamp(50px, 9vw, 104px);
  letter-spacing: 0.43px;
}
h1 em {
  display: block;
  color: #b6523c;
  font-family: "Lora", serif;
  font-size: clamp(30px, 9vw, 100px);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(34px, 9vw, 104.76px);
  letter-spacing: 0.43px;
}

h2 {
  margin: 0;
  color: #332421;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
h2 em {
  color: #b6523c;
  font-family: "Lora", serif;
  font-style: italic;
  letter-spacing: 0.54px;
  text-transform: none;
}
h2 {
  font-size: clamp(38px, 2.8125vw, 54px);
  line-height: clamp(38px, 2.8125vw, 54px);
}
h2 em {
  font-size: inherit;
  font-weight: 500;
  line-height: clamp(38px, 2.8125vw, 54px);
}

.container {
  width: min(1660px, 100% - 80px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 600px);
  }
}

.header {
  background: #FBFBF9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.header_row {
  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;
  min-height: 108px;
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 225px;
}
.header_logo img {
  height: auto;
}
.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(24px, 3vw, 60px);
  font-size: 16px;
  font-weight: 500;
}
.header_nav a {
  padding: 7px 0;
}
.header_nav a:hover, .header_nav a.is-active {
  color: #A74430;
  border-bottom: 2px solid #A74430;
}
.header_burger {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header_row {
    min-height: 70px;
  }
  .header_logo {
    width: 156px;
    height: 48px;
  }
  .header_logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header_nav {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -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;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding: 120px 10px;
    gap: 60px;
    background: #f5efe7;
    -webkit-box-shadow: 0 10px 13.6px rgba(0, 0, 0, 0.25);
            box-shadow: 0 10px 13.6px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  }
  .header_nav a {
    padding: 0;
    color: #746b64;
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.1777px;
  }
  .header_nav a.is-active {
    padding-bottom: 5px;
    border-bottom: 2px solid #b6523c;
  }
  .header_nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header_burger {
    position: relative;
    z-index: 3;
    display: block;
  }
}

main {
  padding-top: 108px;
}
@media (max-width: 768px) {
  main {
    padding-top: 70px;
  }
}

.section-hero {
  background: #FCFCF7;
}
.section-hero_row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 700px;
}
.section-hero .hero_content {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(14px, 3vw, 24px);
  line-height: 1.5;
}
.section-hero h1 {
  margin: 0 0 28px;
}
.section-hero .hero_image {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: calc((100vw - 100%) / -5);
  width: 991px;
  height: 100%;
}
.section-hero .hero_image--main {
  top: auto;
  width: min(900px, 58vw);
  height: auto;
}
.section-hero .hero_image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.section-hero .hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero .hero_image--main img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1920px) {
  .section-hero .hero_image {
    right: calc((100vw - 100%) / -2);
  }
}
@media (max-width: 1400px) {
  .section-hero_row {
    min-height: 760px;
  }
}
@media (max-width: 1200px) {
  .section-hero_row {
    grid-template-columns: 1fr;
    padding: 58px 0 0;
  }
  .section-hero .hero_image {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100vw;
    max-width: none;
    margin-left: calc((100vw - 100%) / -2);
    height: auto;
  }
  .section-hero .hero_image img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .section-hero_row {
    padding: 0;
  }
}

.section-statistics {
  border-bottom: 1px solid #ded6cd;
  background: #F8F6F1;
}
.section-statistics_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section-statistics .statistics_item {
  position: relative;
  display: grid;
  min-height: 723px;
  place-items: center;
  -ms-flex-line-pack: start;
      align-content: start;
  padding: clamp(68px, 3.55vw, 68px) 20px 0;
  text-align: center;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .section-statistics .statistics_item {
    min-height: 513px;
  }
}
@media (max-width: 768px) {
  .section-statistics .statistics_item {
    aspect-ratio: 3/4;
  }
}
@media (max-width: 460px) {
  .section-statistics .statistics_item {
    aspect-ratio: auto;
  }
}
.section-statistics .statistics_item::before, .section-statistics .statistics_item::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: 32%;
  content: "";
  pointer-events: none;
}
.section-statistics .statistics_item::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(248, 245, 240, 0.96)), to(rgba(248, 245, 240, 0)));
  background: linear-gradient(90deg, rgba(248, 245, 240, 0.96), rgba(248, 245, 240, 0));
}
.section-statistics .statistics_item::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(248, 245, 240, 0.96)), to(rgba(248, 245, 240, 0)));
  background: linear-gradient(270deg, rgba(248, 245, 240, 0.96), rgba(248, 245, 240, 0));
}
.section-statistics .statistics_item strong, .section-statistics .statistics_item span {
  position: relative;
}
.section-statistics .statistics_item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 7.61vw, 146px);
  line-height: 100%;
  white-space: nowrap;
}
.section-statistics .statistics_item span {
  margin-top: 22px;
  color: #746b64;
  font-family: "Lora", serif;
  font-size: clamp(20px, 1.25vw, 24px);
  font-style: italic;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.54px;
}
@media (max-width: 991px) {
  .section-statistics .statistics_item span {
    line-height: 1.2;
  }
}
.section-statistics .statistics_item span::before {
  content: "";
  display: block;
  width: 30px;
  margin: 0 auto 14px;
  border-top: 2px solid #dc9b88;
}
@media (max-width: 768px) {
  .section-statistics_row {
    grid-template-columns: 1fr;
  }
}

.section-chapters {
  margin: clamp(40px, 8vw, 148px) 0;
}
.section-chapters_row {
  display: grid;
}
.section-chapters .chapters_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 45px;
}
.section-chapters .chapter_card {
  position: relative;
  display: block;
  min-height: 770px;
  padding: 30px;
  color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 22px 30px rgba(48, 39, 31, 0.35);
          box-shadow: 0 22px 30px rgba(48, 39, 31, 0.35);
}
@media (max-width: 1400px) {
  .section-chapters .chapter_card {
    min-height: 570px;
  }
}
@media (max-width: 768px) {
  .section-chapters .chapter_card {
    min-height: 472px;
  }
}
.section-chapters .chapter_card::before {
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(246, 237, 224, 0.1);
  content: "";
  pointer-events: none;
}
.section-chapters .chapter_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 14, 11, 0.12)), to(rgba(20, 14, 11, 0.88)));
  background: linear-gradient(180deg, rgba(20, 14, 11, 0.12), rgba(20, 14, 11, 0.88));
}
.section-chapters .chapter_card img {
  position: absolute;
  inset: 0;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.section-chapters .chapter_card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.section-chapters .chapter_card span {
  position: relative;
  z-index: 1;
}
.section-chapters .chapter_card .chapter_number, .section-chapters .chapter_card .chapter_caption {
  font-size: 12px;
  letter-spacing: 0.24em;
}
.section-chapters .chapter_card .chapter_number {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 43px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 28.8px;
  letter-spacing: 5.04px;
}
.section-chapters .chapter_card .chapter_number::after {
  display: block;
  width: 30px;
  margin-top: 12px;
  border-top: 1px solid #A74430;
  content: "";
}
.section-chapters .chapter_card .chapter_caption {
  position: absolute;
  top: 32px;
  right: 43px;
  padding: 4px 10px 5.19px;
  border: 1px solid rgba(246, 237, 224, 0.35);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-chapters .chapter_card .chapter_info {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: 90%;
}
.section-chapters .chapter_card .chapter_info b {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.section-chapters .chapter_card .chapter_info small, .section-chapters .chapter_card .chapter_info .chapter_link {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
}
.section-chapters .chapter_card .chapter_info small {
  font-family: "Lora", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: normal;
}
.section-chapters .chapter_card .chapter_info .chapter_link {
  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;
  gap: 12px;
  margin-top: 25px;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.32px;
  font-style: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-chapters .chapter_card .chapter_info .chapter_link::before {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 5px;
  border-top: 1px solid rgba(246, 237, 224, 0.2784313725);
  content: "";
}
.section-chapters .chapter_card .chapter_info .chapter_link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.section-chapters .chapter_card .chapter_info .chapter_link:hover svg {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
@media (max-width: 991px) {
  .section-chapters .chapters_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-chapters .chapter_card {
    min-height: 470px;
    padding: 20px;
  }
  .section-chapters .chapter_card .chapter_info {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }
}
@media (max-width: 768px) {
  .section-chapters .chapters_grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .section-chapters .chapter_card {
    min-height: 450px;
  }
  .section-chapters .chapter_card .chapter_info {
    max-width: 60%;
  }
}

.section-records {
  padding: clamp(70px, 8vw, 145px) 0;
  background: #f1ebe2;
}
.section-records_row {
  display: grid;
}
.section-records .records_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.section-records .records_heading a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.32px;
  color: #b6523c;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-records .records_heading a svg path {
  fill: currentColor;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.section-records .records_heading a:hover {
  color: #1d1b20;
}
.section-records .records_list {
  margin-top: 40px;
  border-top: 1px solid #d9d0c6;
}
.section-records .record {
  display: grid;
  grid-template-columns: 80px minmax(260px, 1.6fr) minmax(260px, 1.75fr) 16px;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 138px;
  padding: 18px;
  border-bottom: 1px solid #d9d0c6;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.section-records .record:hover {
  background: #f7f2eb;
}
.section-records .record:hover .record_arrow {
  opacity: 1;
}
.section-records .record img {
  width: 80px;
  height: 100px;
}
.section-records .record span small, .section-records .record span b, .section-records .record i, .section-records .record em {
  display: block;
}
.section-records .record span small, .section-records .record em {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.section-records .record span b {
  margin-top: 10px;
  color: #2f201d;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24.96px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.section-records .record .record_info {
  display: block;
  margin-top: 8px;
  color: #5e544e;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.section-records .record .record_details {
  display: grid;
  grid-template-columns: 0.8fr 0.95fr;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-records .record .record_arrow {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.section-records .record i {
  color: #5e544e;
  font-family: "Lora", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0;
}
.section-records .record em {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}
.section-records .record em.red {
  color: #b6523c;
}
@media (max-width: 768px) {
  .section-records_row {
    position: relative;
    padding-bottom: clamp(48px, 8vw, 80px);
  }
  .section-records .records_heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-records .records_heading a {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .section-records .records_list {
    margin-top: 40px;
  }
  .section-records .record {
    grid-template-columns: 80px 1fr;
    gap: 4px 16px;
    padding: 14px 0;
  }
  .section-records .record .record_info {
    display: none;
  }
  .section-records .record img {
    grid-row: 1/3;
    width: 80px;
    height: 100px;
  }
  .section-records .record span small {
    line-height: 13px;
  }
  .section-records .record span b {
    color: #28211d;
    font-size: 20px;
    line-height: 25px;
  }
  .section-records .record .record_details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column: 2;
    gap: 0;
    margin-top: 0;
  }
  .section-records .record .record_details i, .section-records .record .record_details em {
    display: block;
    color: #5e544e;
    font-family: "Lora", serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0;
    text-transform: none;
  }
  .section-records .record .record_details em::before {
    content: "·";
    margin: 0 10px;
  }
  .section-records .record .record_details em.red {
    color: #b6523c;
  }
  .section-records .record .record_arrow {
    display: none;
  }
}

.section-quote {
  margin: clamp(40px, 6vw, 120px) 0;
  background: #FBFBF9;
  text-align: center;
}
.section-quote_row {
  display: grid;
  justify-items: center;
}
.section-quote svg {
  display: block;
}
.section-quote blockquote {
  margin: 30px 0 25px;
  color: #2f201d;
  font-family: "Lora", serif;
  font-size: clamp(30px, 2vw, 42px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0;
}
.section-quote small {
  color: #5e544e;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
}
.section-quote small::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #88807a;
  margin-right: 16px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .section-quote blockquote {
    font-size: 24px;
    line-height: 28px;
  }
  .section-quote blockquote br {
    display: none;
  }
  .section-quote small {
    color: #88807a;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 2.52px;
  }
}

.footer {
  border-top: 1px solid #ded6cd;
  background: #f1ebe2;
}
.footer_row {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) 1fr;
  gap: clamp(50px, 15vw, 280px);
  padding: clamp(40px, 6vw, 110px) 0;
}
.footer_brand {
  color: #746b64;
  font-size: 14px;
  line-height: 1.5;
}
.footer_brand .header_logo {
  margin-bottom: 28px;
  color: #332421;
  max-width: 207px;
}
.footer_brand > div {
  color: #5e544e;
  font-size: clamp(14px, 1.04167vw, 16px);
  line-height: clamp(16px, 1.45833vw, 22px);
  max-width: 400px;
}
@media (max-width: 768px) {
  .footer_brand > div {
    max-width: 100%;
  }
}
.footer_nav {
  display: grid;
  grid-template-columns: clamp(140px, 10vw, 250px) 1fr;
  gap: clamp(20px, 5vw, 50px);
}
.footer_nav b, .footer_nav a {
  display: block;
}
.footer_nav b {
  margin-bottom: 20px;
  color: #2F201D;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
}
.footer_nav a {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #5E544E;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer_nav a:hover {
  color: #ac4e39;
}
.footer_bottom {
  border-top: 1px solid #ded6cd;
}
.footer_bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 35px 0;
  color: #5e544e;
  font-size: 14px;
  line-height: 22px;
}
.footer_bottom .container a:hover {
  color: #ac4e39;
}
@media (max-width: 768px) {
  .footer_bottom .container {
    padding: 10px 0;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer_row {
    grid-template-columns: 1fr;
    gap: 43px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer_nav a {
    font-weight: 400;
  }
  .footer_nav > div:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer_nav > div:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.section-archive-banner {
  margin: clamp(40px, 6.25vw, 120px) 0;
  background: #FBFBF9;
  overflow: hidden;
}
.section-archive-banner--database {
  margin: clamp(40px, 6.25vw, 120px) 0 0;
}
.section-archive-banner_row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 800px) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 305px;
  padding: clamp(40px, 5vw, 80px) clamp(40px, 3vw, 45px);
  gap: clamp(30px, 5vw, 80px);
  overflow: hidden;
  border-radius: 20px;
}
.section-archive-banner_background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.section-archive-banner_background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-archive-banner_content, .section-archive-banner_button {
  position: relative;
  z-index: 1;
}
.section-archive-banner_title {
  color: #2f201d;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
.section-archive-banner_title em {
  color: #ac4e39;
  font-family: "Lora", serif;
  font-style: italic;
  letter-spacing: 0.54px;
  text-transform: none;
}
.section-archive-banner_title {
  font-size: clamp(30px, 3vw, 42px);
  line-height: clamp(35px, 3vw, 54px);
  white-space: nowrap;
}
.section-archive-banner_title em {
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 500;
  line-height: clamp(32px, 3vw, 54px);
}
.section-archive-banner_description {
  margin-top: 20px;
  color: #5e544e;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: clamp(16px, 2.1875vw, 35px);
}
.section-archive-banner_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fbf9f4;
  background: #ac4e39;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-archive-banner_button:hover {
  background: #8f3d2b;
}
.section-archive-banner_button {
  min-width: 382px;
  min-height: 76px;
  padding: 20px 40px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(15px, 2vw, 30px);
}
@media (max-width: 1200px) {
  .section-archive-banner_row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .section-archive-banner_button {
    min-width: 280px;
  }
}
@media (max-width: 991px) {
  .section-archive-banner_row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .section-archive-banner_title {
    white-space: normal;
  }
  .section-archive-banner_button {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .section-archive-banner .container {
    width: 100%;
  }
  .section-archive-banner_row {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 30px;
    border-radius: 0;
    background: #f5efe7;
    overflow: visible;
  }
  .section-archive-banner_row::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(181.08deg, rgba(245, 239, 231, 0.96) 45.906%, rgba(245, 239, 232, 0) 56.437%);
    pointer-events: none;
  }
  .section-archive-banner_background {
    opacity: 0.4;
    overflow: visible;
  }
  .section-archive-banner_background img {
    position: absolute;
    top: 37.39%;
    left: -0.06%;
    width: 120.23%;
    max-width: none;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-archive-banner_content, .section-archive-banner_button {
    z-index: 2;
  }
  .section-archive-banner_title em {
    display: block;
    font-weight: 400;
    letter-spacing: 0.1359px;
  }
  .section-archive-banner_button {
    width: 100%;
    min-height: 64px;
    background: #a74430;
    letter-spacing: 0.1777px;
  }
}

.section-materials {
  background: #FBFBF9;
  padding: clamp(80px, 5.469vw, 105px) 0 clamp(64px, 7.292vw, 140px);
}
.section-materials_row {
  display: grid;
  gap: 50px;
}
.section-materials_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1400px) {
  .section-materials_row {
    gap: clamp(32px, 4.17vw, 50px);
  }
  .section-materials_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section-materials {
    padding-top: 10px;
  }
  .section-materials_row {
    gap: 24px;
  }
  .section-materials_list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.materials-card {
  position: relative;
  display: block;
  aspect-ratio: 540/461;
  overflow: hidden;
  border-radius: 15px;
  background: #f9f6f1;
}
.materials-card_background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.materials-card_content {
  position: relative;
  z-index: 2;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  height: 100%;
  padding: 61px 53px 67px 137px;
}
.materials-card_title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
}
.materials-card_description {
  margin-top: 11px;
  max-width: 280px;
  color: #000;
  font-size: 16px;
  line-height: 22px;
}
.materials-card_link {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #000;
}
.materials-card_link i {
  margin-left: 8px;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}
.materials-card:hover .materials-card_link {
  color: #ac4e39;
}
@media (max-width: 1400px) {
  .materials-card_content {
    padding-right: clamp(28px, 4.4vw, 53px);
    padding-left: clamp(92px, 11.42vw, 137px);
  }
}
@media (max-width: 991px) {
  .materials-card_content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .materials-card {
    aspect-ratio: 353/315;
  }
  .materials-card_content {
    height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
    padding: 43px 20px 36px 20%;
  }
  .materials-card::after {
    background: -webkit-gradient(linear, left top, right top, color-stop(28%, #f9f6f1), color-stop(60%, rgba(249, 246, 241, 0.88)), to(rgba(249, 246, 241, 0.15)));
    background: linear-gradient(90deg, #f9f6f1 28%, rgba(249, 246, 241, 0.88) 60%, rgba(249, 246, 241, 0.15) 100%);
  }
  .materials-card_description {
    max-width: 235px;
    font-size: 14px;
    line-height: 16px;
  }
  .materials-card_link {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.18px;
  }
}

.section-hero_row {
  zoom: 1;
}
@media (max-width: 1920px) {
  .section-hero_row {
    --hero-zoom: clamp(.5, calc(100vw / 1440px - .333333), 1);
    zoom: var(--hero-zoom);
  }
}
.section-hero h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .section-hero_row {
    --hero-zoom: 1;
    zoom: 1;
  }
  .section-hero h1 {
    width: auto;
    white-space: normal;
  }
}

#chapters-duo {
  margin: 0;
  padding: clamp(40px, 7vw, 148px) 0;
  background: #F5EFE7;
}
#chapters-duo .chapter_card::before {
  display: none;
}
#chapters-duo .chapter_card .chapter_info b {
  font-size: clamp(24px, 3vw, 42px);
}

.section-person {
  padding: clamp(80px, 7.8125vw, 150px) 0 clamp(60px, 7.29vw, 140px);
  background: #fbfbf9;
  border-bottom: 1px solid #dbd4ce;
}
.section-person_row {
  display: grid;
  grid-template-columns: minmax(350px, 546px) minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
.section-person_photo {
  position: sticky;
  top: 128px;
  margin-top: -56px;
  aspect-ratio: 546/679;
  overflow: hidden;
  border-radius: 26px;
  background: url("../img/fone.png") center/cover no-repeat;
}
.section-person_photo img {
  position: absolute;
  top: 6.31%;
  left: 5.18%;
  width: 90.11%;
  height: 89.68%;
  border-radius: 16.6px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-person_content {
  min-width: 0;
}
.section-person_heading {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
.section-person_name {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 2.8125vw, 54px);
  font-weight: 600;
  line-height: clamp(42px, 2.8125vw, 54px);
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
.section-person_years {
  color: #ac4e39;
  font-family: "Lora", serif;
  font-size: clamp(38px, 2.8125vw, 54px);
  font-style: italic;
  font-weight: 500;
  line-height: clamp(42px, 2.8125vw, 54px);
  letter-spacing: 0.54px;
}
.section-person_data {
  display: grid;
}
.section-person_item {
  display: grid;
  grid-template-columns: clamp(190px, 16.667vw, 320px) minmax(0, 1fr);
  gap: clamp(40px, 10.42vw, 200px);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 15px 10px;
  border-bottom: 1px solid #dbd4ce;
}
.section-person_item:last-child {
  border-bottom: 0;
}
.section-person_label {
  color: #000;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 600;
  line-height: 22px;
}
.section-person_value {
  color: #000;
  font-size: clamp(16px, 1.042vw, 20px);
  font-weight: 400;
  line-height: 25px;
  overflow-wrap: anywhere;
}
@media (max-width: 1200px) {
  .section-person_row {
    grid-template-columns: minmax(300px, 450px) minmax(0, 1fr);
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .section-person_row {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
    gap: 30px;
  }
  .section-person_photo {
    top: 100px;
    margin-top: 0;
  }
  .section-person_item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .section-person {
    padding: 60px 0 40px;
  }
  .section-person .container {
    width: 100%;
  }
  .section-person_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .section-person_photo {
    position: relative;
    top: auto;
    margin-top: 0;
    width: calc(100% - 40px);
    margin: 0 20px;
    aspect-ratio: 353/444;
    border-radius: 17px;
  }
  .section-person_content {
    width: 100%;
  }
  .section-person_heading, .section-person_data {
    padding: 0 20px;
  }
  .section-person_heading {
    gap: 15px;
    margin-bottom: 40px;
  }
  .section-person_name {
    font-size: clamp(28px, 7.63vw, 30px);
    line-height: clamp(32px, 8.91vw, 35px);
  }
  .section-person_years {
    font-size: clamp(22px, 6.11vw, 24px);
    line-height: clamp(24px, 6.36vw, 25px);
  }
  .section-person_item {
    gap: 5px;
    padding: 0 0 20px;
  }
  .section-person_item:not(:first-child) {
    padding-top: 20px;
  }
  .section-person_label, .section-person_value {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
  }
  .section-person_value {
    color: #5e544e;
  }
}

.section-tabs {
  padding: clamp(60px, 7.8125vw, 150px) 0;
  background: #F9F6F1;
}
.section-tabs_row {
  display: grid;
  gap: clamp(40px, 2.604vw, 50px);
}
.section-tabs_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(30px, 4.6875vw, 90px);
  padding-bottom: clamp(18px, 1.042vw, 20px);
  border-bottom: 1px solid #dbd4ce;
}
.section-tabs_button {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: clamp(4px, 0.3125vw, 6px) 0;
  border: 0;
  color: #2f201d;
  background: transparent;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 1.5625vw, 30px);
  font-weight: 600;
  line-height: clamp(28px, 1.823vw, 35px);
  letter-spacing: 0.54px;
  text-transform: uppercase;
  cursor: pointer;
}
.section-tabs_button::after {
  position: absolute;
  right: 0;
  bottom: clamp(-21px, -1.094vw, -19px);
  left: 0;
  height: 2px;
  background: #ac4e39;
  content: "";
  opacity: 0;
}
.section-tabs_button.is-active {
  color: #ac4e39;
}
.section-tabs_button.is-active::after {
  opacity: 1;
}
.section-tabs_content {
  min-width: 0;
}
.section-tabs_panel.is-active {
  display: block;
}
.section-tabs_biography {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 2.604vw, 50px);
}
.section-tabs_text {
  display: grid;
  gap: 10px;
  color: #000;
  font-size: clamp(16px, 1.042vw, 20px);
  font-weight: 400;
  line-height: clamp(22px, 1.302vw, 25px);
}
.section-tabs_gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.section-tabs_gallery a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.section-tabs_gallery img {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.section-tabs_gallery a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.section-tabs_memory {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  -webkit-column-gap: clamp(24px, 2.344vw, 45px);
     -moz-column-gap: clamp(24px, 2.344vw, 45px);
          column-gap: clamp(24px, 2.344vw, 45px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  min-height: 274px;
  padding: clamp(40px, 3.125vw, 60px) clamp(24px, 4.6875vw, 90px);
  border-radius: clamp(20px, 1.563vw, 30px);
  background: url("../img/fone2.png") center/cover no-repeat;
}
.section-tabs_memory svg {
  grid-row: span 2;
  width: 54px;
  height: 67px;
}
.section-tabs_memory blockquote {
  max-width: 1180px;
  margin: 0;
  color: #2f201d;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 2vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(16px, 3vw, 35px);
}
.section-tabs_memories {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.section-tabs_signature {
  justify-self: end;
  color: #88807a;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  line-height: clamp(16px, 2vw, 35px);
}
@media (max-width: 1200px) {
  .section-tabs_gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .section-tabs_biography {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section-tabs {
    padding: clamp(40px, 15.625vw, 60px) 0;
  }
  .section-tabs_nav {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .section-tabs_nav::-webkit-scrollbar {
    display: none;
  }
  .section-tabs_gallery {
    gap: 8px;
  }
  .section-tabs_memory {
    grid-template-columns: clamp(18px, 5.814vw, 20px) minmax(0, 1fr);
    -webkit-column-gap: clamp(14px, 4.651vw, 16px);
       -moz-column-gap: clamp(14px, 4.651vw, 16px);
            column-gap: clamp(14px, 4.651vw, 16px);
    row-gap: clamp(26px, 8.721vw, 30px);
    min-height: 168px;
    padding: clamp(28px, 8.14vw, 32px) clamp(20px, 6.977vw, 24px);
  }
  .section-tabs_memory svg {
    grid-row: span 2;
    width: clamp(18px, 5.814vw, 20px);
    height: clamp(22px, 7.558vw, 26px);
  }
}

.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;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.section-404 {
  overflow: hidden;
  background: #f9f6f1;
}
.section-404_row {
  position: relative;
  display: grid;
  min-height: clamp(680px, 40.625vw, 780px);
  place-items: start center;
  overflow: hidden;
  background: #f9f6f1;
}
.section-404_background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-404_content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(330px, 28vw, 400px);
  width: 100%;
  padding: clamp(80px, 5.729vw, 110px) clamp(16px, 2.083vw, 40px) clamp(40px, 5.208vw, 100px);
  text-align: center;
}
.section-404_title {
  color: #2f201d;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: clamp(30px, 3.125vw, 42px);
  line-height: clamp(35px, 3.125vw, 54px);
}
.section-404_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #a74430;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-404_button:hover {
  background: #8f3d2b;
}
.section-404_button {
  width: min(374px, 100%);
  min-height: 76px;
  padding: clamp(18px, 1.302vw, 25px) clamp(24px, 2.083vw, 40px);
  font-size: clamp(14px, 1.042vw, 20px);
  line-height: 1.3;
}
@media (max-width: 991px) {
  .section-404_background {
    top: auto;
    right: 50%;
    bottom: 0;
    left: auto;
    width: auto;
    min-width: 100%;
    max-width: none;
    height: auto;
    min-height: 100%;
    -o-object-position: center bottom;
       object-position: center bottom;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.section-information {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 6.25vw, 120px) 0;
  background: #FAF6F1;
}
.section-information_row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 677px) minmax(0, 1fr);
  grid-template-rows: auto 280px;
  gap: 50px clamp(60px, 8.594vw, 165px);
}
.section-information_add, .section-information_contacts, .section-information_goal {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.section-information_add {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 30px;
}
.section-information_contacts {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 30px;
}
.section-information_goal {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 30px;
}
.section-information_title {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 2.188vw, 42px);
  font-weight: 600;
  line-height: clamp(38px, 2.813vw, 54px);
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
.section-information_title--red {
  color: #ac4e39;
}
.section-information_text {
  color: #2f201d;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 22px;
}
.section-information_text strong {
  font-weight: 600;
}
.section-information_text--closing {
  color: #000;
}
.section-information_list {
  display: grid;
  gap: 10px;
  width: min(100%, 489px);
  padding: 10px;
}
.section-information_item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: #2f201d;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 22px;
}
.section-information_item img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-information_item span {
  grid-column: 2;
}
.section-information_contact-list {
  display: grid;
  gap: 20px;
}
.section-information_contact {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #2f201d;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 600;
  line-height: 22px;
}
.section-information_contact > :last-child {
  font-size: clamp(16px, 1.042vw, 20px);
  font-weight: 400;
  line-height: 25px;
  overflow-wrap: anywhere;
}
.section-information_letter {
  position: absolute;
  z-index: 0;
  top: clamp(200px, 23vw, 295px);
  right: calc((100vw - 100%) / -2);
  width: clamp(650px, 52vw, 860px);
  height: auto;
  pointer-events: none;
}
.section-information_letter img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .section-information_row {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 50px 60px;
  }
  .section-information_letter {
    top: 42%;
    right: auto;
    left: 52%;
    width: 760px;
  }
}
@media (max-width: 991px) {
  .section-information_row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 50px 40px;
  }
  .section-information_goal {
    grid-column: span 2;
  }
  .section-information_letter {
    top: 48%;
    left: 45%;
    width: 680px;
  }
}
@media (max-width: 768px) {
  .section-information {
    padding: clamp(60px, 15.625vw, 80px) 0;
  }
  .section-information_row {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 50px;
  }
  .section-information_add, .section-information_contacts, .section-information_goal {
    gap: 24px;
  }
  .section-information_goal {
    grid-column: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-information_contacts {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .section-information_title {
    font-size: clamp(30px, 8.372vw, 32px);
    line-height: clamp(38px, 10.465vw, 40px);
  }
  .section-information_list {
    width: 100%;
    padding: 0;
  }
  .section-information_item {
    gap: 12px;
  }
  .section-information_contact-list {
    gap: 16px;
  }
  .section-information_contact {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .section-information_contact > :last-child {
    font-size: clamp(16px, 4.651vw, 18px);
    line-height: 22px;
  }
  .section-information_letter {
    position: relative;
    top: auto;
    left: auto;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    justify-self: center;
    width: 255px;
    margin: 0 0 0 auto;
  }
}

.section-hero .hero_content .hero_subtitle {
  color: #ac4e39;
  font-family: "Lora", serif;
  font-size: clamp(32px, 3.75vw, 54px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.section-hero .hero_content .hero_description {
  max-width: 585px;
  margin-top: 16px;
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.667vw, 24px);
  font-weight: 400;
  line-height: 35px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .section-hero .hero_content .hero_description {
    line-height: 1.4;
  }
}

.section-database {
  padding: clamp(44px, 5.469vw, 105px) 0 clamp(64px, 7.292vw, 140px);
  background: #faf6f1;
}
.section-database_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.section-database_heading {
  display: grid;
  gap: 24px;
  color: #5e544e;
  font-size: clamp(16px, 1.042vw, 20px);
  line-height: 1.4;
}
.section-database_form {
  display: grid;
  gap: 0;
  padding: 40px 30px;
  border-radius: 30px;
  background: #F5EFE7;
}
.section-database_fields, .section-database_extra {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(2, minmax(180px, 0.7fr));
  gap: 24px;
}
.section-database_extra {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 24px;
}
.section-database_extra[hidden] {
  display: none;
}
.section-database_field {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 0;
  color: #2f201d;
  font-size: clamp(13px, 0.833vw, 16px);
  font-weight: 600;
  line-height: 1.3;
}
.section-database_field > span {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 22px;
}
.section-database_field input, .section-database_field > button {
  width: 100%;
  height: 76px;
  padding: 16px clamp(52px, 4vw, 76px) 16px clamp(24px, 2.083vw, 40px);
  border: 1px solid #ded6cd;
  border-radius: 0;
  outline: 0;
  color: #2f201d;
  background: #fffdfb;
  font: inherit;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.section-database_field input::-webkit-input-placeholder, .section-database_field > button::-webkit-input-placeholder {
  color: #988e87;
  opacity: 1;
}
.section-database_field input::-moz-placeholder, .section-database_field > button::-moz-placeholder {
  color: #988e87;
  opacity: 1;
}
.section-database_field input:-ms-input-placeholder, .section-database_field > button:-ms-input-placeholder {
  color: #988e87;
  opacity: 1;
}
.section-database_field input::-ms-input-placeholder, .section-database_field > button::-ms-input-placeholder {
  color: #988e87;
  opacity: 1;
}
.section-database_field input::placeholder, .section-database_field > button::placeholder {
  color: #988e87;
  opacity: 1;
}
.section-database_field input:focus, .section-database_field > button:focus {
  border-color: #ac4e39;
  -webkit-box-shadow: 0 0 0 2px rgba(172, 78, 57, 0.12);
          box-shadow: 0 0 0 2px rgba(172, 78, 57, 0.12);
}
.section-database_field > svg {
  position: absolute;
  top: 50%;
  right: clamp(22px, 2.083vw, 40px);
  width: 32px;
  height: 32px;
  color: #645d57;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-database_field--select > button {
  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;
  gap: 12px;
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
}
.section-database_field--select > button svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.section-database_field--select.is-open > button svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section-database_options {
  position: absolute;
  z-index: 2;
  top: calc(100% + 16px);
  left: 0;
  display: grid;
  visibility: hidden;
  width: 100%;
  max-height: 430px;
  padding: 20px 40px;
  border: 1px solid #c9bdb1;
  background: #fcfaf7;
  opacity: 0;
  overflow-y: auto;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s, -webkit-transform 0.2s;
}
.section-database_options [role=option] {
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid #ded6cd;
  color: #88807a;
  background: transparent;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  cursor: pointer;
}
.section-database_options [role=option]:hover, .section-database_options [role=option]:focus, .section-database_options [role=option][aria-selected=true] {
  color: #ac4e39;
  background: transparent;
}
.section-database_options [role=option]:last-child {
  border-bottom: 0;
}
.section-database_options::-webkit-scrollbar {
  width: 16px;
}
.section-database_options::-webkit-scrollbar-track {
  margin: 20px 10px 20px 0;
  border-radius: 12px;
  background: #f5efe7;
}
.section-database_options::-webkit-scrollbar-thumb {
  border: 4px solid #f5efe7;
  border-radius: 12px;
  background: #5e544e;
}
.section-database_options {
  scrollbar-color: #5e544e #f5efe7;
  scrollbar-width: thin;
}
.is-open .section-database_options {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section-database_actions {
  display: contents;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
}
.section-database_more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 76px;
  padding: 16px 24px;
  border: 1px solid #ded6cd;
  color: #645d57;
  background: #f8f3ed;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.section-database_more:hover {
  color: #fff;
  background: #a74430;
}
.section-database_submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #a74430;
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-database_submit:hover {
  background: #8f3d2b;
}
.section-database_submit {
  min-width: 0;
  min-height: 76px;
  padding: 16px 30px;
  border: 0;
  font-size: clamp(15px, 0.938vw, 18px);
  line-height: 1.2;
  cursor: pointer;
}
.section-database_results.section-records {
  padding: 0;
  background: transparent;
}
.section-database_results[hidden] {
  display: none;
}
.section-database_pagination {
  display: grid;
  grid-template-columns: 46px auto 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
  margin-top: clamp(40px, 4.167vw, 80px);
  color: #2f201d;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.823vw, 24px);
  font-weight: 400;
  line-height: 35px;
}
.section-database_pagination-pages {
  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: 19px;
}
.section-database_pagination a, .section-database_pagination-ellipsis {
  display: grid;
  place-items: center;
}
.section-database_pagination a {
  min-width: 46px;
  padding: 9px;
  border-radius: 15px;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.section-database_pagination a:hover {
  color: #fff;
  background: #ac4e39;
}
.section-database_pagination a.is-active {
  color: #fff;
  background: #ac4e39;
}
.section-database_pagination-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  height: 53px;
  padding: 6px 15px;
  border: 1px solid #f5efe7;
  border-radius: 12px;
  background: #f5efe7;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
.section-database_pagination-arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
}
.section-database_pagination-arrow--next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section-database_pagination-arrow:hover:not(:disabled) {
  border-color: #dbd4ce;
}
.section-database_pagination-arrow:disabled {
  border-color: transparent;
  color: #88807a;
  background: #f3eee7;
  cursor: default;
  opacity: 0.5;
}
.section-database_record {
  display: grid;
  grid-template-columns: 130px minmax(300px, 1.6fr) minmax(180px, 0.85fr) minmax(180px, 0.85fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 38px;
  min-height: 206px;
  padding: 24px 18px;
  border-bottom: 1px solid #ded6cd;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-database_record:hover {
  background: #f7f2eb;
}
.section-database_record img {
  min-width: 130px;
  width: 130px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-database_record i, .section-database_record em {
  padding-top: 4px;
}
.section-database_record i {
  color: #5e544e;
  font-family: "Lora", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
}
.section-database_record em {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}
.section-database_person {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 9px;
  padding-top: 3px;
}
.section-database_person small {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.section-database_person b {
  color: #2f201d;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24.96px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.section-database_person > span {
  color: #5e544e;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.section-database_status--red {
  color: #ac4e39 !important;
}
.section-database_filter-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  padding-top: 6px;
  color: #88807a;
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 1.3;
}
.section-database_reset {
  min-width: min(100%, 382px);
  min-height: 76px;
  padding: 16px 24px;
  border: 1px solid #ded6cd;
  color: #645d57;
  background: #f8f3ed;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  -webkit-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}
.section-database_reset:hover {
  color: #fff;
  background: #a74430;
}
@media (max-width: 1400px) {
  .section-database_extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1200px) {
  .section-database_row {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .section-database_row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-database_fields, .section-database_extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-database_field {
    grid-column: 1/-1;
  }
  .section-database_more {
    grid-column: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-database_more:hover {
    color: #645d57;
    background: #f8f3ed;
  }
  .section-database_submit {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 768px) {
  .section-database {
    padding: clamp(60px, 18.75vw, 72px) 0;
  }
  .section-database_heading {
    gap: 16px;
  }
  .section-database_form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
  .section-database_form.is-expanded .section-database_actions {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section-database_form.is-expanded .section-database_filter-footer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-database_fields {
    display: contents;
  }
  .section-database_extra {
    display: contents;
    grid-template-columns: 1fr;
    gap: 16px;
    grid-column: 1/-1;
    padding-top: 0;
  }
  .section-database_field {
    gap: 8px;
  }
  .section-database_field input, .section-database_field > button {
    height: 70px;
    padding: 15px 16px;
  }
  .section-database_field input[type=search] {
    padding-right: 76px;
  }
  .section-database_field input[type=search]::-webkit-search-cancel-button {
    position: absolute;
    top: 50%;
    right: 54px;
    margin: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .section-database_field > svg {
    right: 18px;
    width: 26px;
    height: 26px;
  }
  .section-database_field--select > button {
    padding-right: 40px;
  }
  .section-database_actions {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 16px;
    padding-top: 0;
  }
  .section-database_more {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section-database_submit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 65px;
    min-height: 65px;
  }
  .section-database_more {
    width: 100%;
    height: 65px;
  }
  .section-database_filter-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 16px;
    padding-top: 0;
  }
  .section-database_filter-footer > span {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .section-database_pagination {
    grid-template-columns: 46px auto 46px;
    gap: 13px;
    line-height: 16px;
  }
  .section-database_pagination a {
    min-width: 36px;
    min-height: 45px;
  }
  .section-database_pagination-pages {
    gap: 13px;
  }
  .section-database_pagination-last {
    display: none;
  }
  .section-database_reset {
    width: 100%;
    min-height: 65px;
  }
  .section-database_record {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 8px 16px;
    min-height: 0;
    padding: 16px 0;
  }
  .section-database_record img {
    grid-row: span 2;
    width: 80px;
    height: 100px;
  }
  .section-database_record i, .section-database_record em {
    padding-top: 0;
  }
  .section-database_record i {
    -ms-flex-item-align: end;
        align-self: end;
  }
  .section-database_record em {
    -ms-flex-item-align: end;
        align-self: end;
    text-align: right;
  }
  .section-database_person {
    gap: 5px;
    padding-top: 0;
  }
  .section-database_person small {
    line-height: 19px;
  }
  .section-database_person b {
    font-size: clamp(16px, 6vw, 18px);
  }
  .section-database_person > span {
    font-size: 13px;
    line-height: 1.45;
  }
}

main {
  position: relative;
}

.section-breadcrumbs {
  position: absolute;
  z-index: 10;
  top: 140px;
  left: 0;
  width: 100%;
  color: #88807a;
  font-size: clamp(14px, 0.729vw, 14px);
  font-weight: 400;
  line-height: 22px;
  pointer-events: none;
}
.section-breadcrumbs_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 0.94vw, 18px);
}
.section-breadcrumbs_row a {
  pointer-events: auto;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-breadcrumbs_row a:hover {
  color: #ac4e39;
}
.section-breadcrumbs_row span[aria-hidden=true] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6px;
  height: 9px;
}
.section-breadcrumbs_row span[aria-hidden=true] svg {
  width: 6px;
  height: 9px;
}
.section-breadcrumbs_mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-breadcrumbs {
    position: relative;
    top: auto;
    padding: clamp(20px, 5vw, 40px) 0;
    background: #FCFCF7;
  }
  .section-breadcrumbs_row {
    display: none;
  }
  .section-breadcrumbs_mobile {
    display: block;
  }
  .section-breadcrumbs_mobile a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(10px, 0.94vw, 18px);
    color: inherit;
    font: inherit;
    line-height: inherit;
    pointer-events: auto;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .section-breadcrumbs_mobile a:hover {
    color: #ac4e39;
  }
  .section-breadcrumbs_mobile a:hover path {
    stroke: #ac4e39;
  }
  .section-breadcrumbs_mobile svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6px;
            flex: 0 0 6px;
    width: 6px;
    height: 9px;
  }
}

.section-breadcrumbs + .section-person {
  padding-top: clamp(120px, 9vw, 172px);
}
@media (max-width: 768px) {
  .section-breadcrumbs + .section-person {
    padding-top: 0;
  }
}

.section-page-title {
  padding: clamp(80px, 5.469vw, 105px) 0 clamp(64px, 7.292vw, 140px);
}
@media (max-width: 768px) {
  .section-page-title {
    padding-top: 10px;
  }
}

.section-media {
  padding-bottom: clamp(60px, 7.8125vw, 150px);
}
.section-media_row {
  display: grid;
  gap: clamp(30px, 2.604vw, 50px);
}
.section-media_gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.section-media_gallery a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.section-media_gallery img {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.section-media_gallery a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.section-media_more {
  justify-self: center;
  color: #ac4e39;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(18px, 1.042vw, 20px);
  font-weight: 500;
  line-height: 25px;
  text-decoration: underline;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-media_more:hover {
  color: #8f3d2b;
}
@media (max-width: 1200px) {
  .section-media_gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .section-media_gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section-media_gallery {
    gap: 8px;
  }
}

.section-documents {
  padding: 105px 0 40px;
  background: #FBFBF9;
}
.section-documents_row {
  display: grid;
  gap: clamp(30px, 2.604vw, 50px);
}
.section-documents_list {
  display: grid;
  gap: 12px;
}
.section-documents_item {
  display: grid;
  grid-template-columns: minmax(56px, 60px) 60px minmax(0, 1fr) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(140px, 8.958vw, 172px);
  padding: clamp(28px, 2.604vw, 50px) clamp(24px, 4.167vw, 80px);
  -webkit-column-gap: clamp(16px, 2.083vw, 40px);
     -moz-column-gap: clamp(16px, 2.083vw, 40px);
          column-gap: clamp(16px, 2.083vw, 40px);
  background: #f9f6f1;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-documents_item:hover {
  background: #EBE8E3;
}
.section-documents_type {
  color: #5e544e;
  font-family: "Oswald", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 24.96px;
  letter-spacing: 0.24px;
  text-align: right;
  text-transform: uppercase;
}
.section-documents_icon {
  width: 54px;
  height: auto;
  color: #ac4e39;
}
.section-documents_info {
  display: grid;
  min-width: 0;
  gap: 10px;
  color: #000;
  font-size: clamp(18px, 1.042vw, 20px);
  font-weight: 400;
  line-height: 25px;
}
.section-documents_info small {
  color: #88807a;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(18px, 1.042vw, 20px);
  font-weight: 400;
  line-height: 25px;
}
.section-documents time {
  padding-left: clamp(20px, 2.604vw, 50px);
  color: #5e544e;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(18px, 1.042vw, 20px);
  font-weight: 400;
  line-height: 25px;
  white-space: nowrap;
}
.section-documents_more {
  justify-self: center;
  color: #ac4e39;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 25px;
  text-decoration: underline;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-documents_more:hover {
  color: #8f3d2b;
}
@media (max-width: 1200px) {
  .section-documents_item {
    grid-template-columns: 56px 54px minmax(0, 1fr) auto;
    padding-right: clamp(24px, 4.167vw, 50px);
    padding-left: clamp(24px, 4.167vw, 50px);
  }
}
@media (max-width: 991px) {
  .section-documents_item {
    grid-template-columns: 50px 50px minmax(0, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 12px;
  }
  .section-documents time {
    grid-column: 3;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .section-documents {
    padding-top: 10px;
  }
  .section-documents_item {
    grid-template-columns: 44px 16px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    min-height: 129px;
    padding: 20px;
    -webkit-column-gap: 21px;
       -moz-column-gap: 21px;
            column-gap: 21px;
  }
  .section-documents_type {
    grid-row: span 3;
    font-size: clamp(13px, 3.646vw, 14px);
    line-height: 25px;
    letter-spacing: 0;
  }
  .section-documents_icon {
    grid-row: span 3;
    width: 16px;
    height: 20px;
  }
  .section-documents_info {
    display: contents;
  }
  .section-documents_info > span {
    grid-column: 3;
    grid-row: 1;
    color: #000;
    font-family: "Golos Text", sans-serif;
    font-size: clamp(13px, 3.646vw, 14px);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0;
  }
  .section-documents_info small {
    grid-column: 3;
    grid-row: 3;
    font-size: clamp(13px, 3.646vw, 14px);
    line-height: 16px;
    letter-spacing: 0;
  }
  .section-documents time {
    grid-row: 2;
    font-size: clamp(13px, 3.646vw, 14px);
    line-height: 16px;
    letter-spacing: 0;
  }
}

.section-blog {
  padding: clamp(80px, 5.47vw, 105px) 0 clamp(40px, 6.25vw, 120px);
}
.section-blog_row {
  display: grid;
  gap: clamp(40px, 4.6vw, 88px);
}
.section-blog_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.section-blog_card {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  min-width: 0;
  gap: clamp(22px, 1.56vw, 30px);
  padding: clamp(16px, 0.94vw, 18px) clamp(16px, 0.94vw, 18px) clamp(26px, 1.56vw, 30px);
  background: #f1ebe2;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-blog_card:hover {
  background: #5e544e;
  color: #88807a;
}
.section-blog_card:hover .section-blog_card-content {
  color: #fff;
}
.section-blog_card:hover a {
  color: #fff;
}
.section-blog_card:hover a svg path {
  fill: #fff;
}
.section-blog_card img {
  aspect-ratio: 360/302;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blog_card-content {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 13px;
  color: #332421;
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.section-blog_card-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  color: #000;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-blog_card-content a:hover {
  color: #ac4e39;
}
.section-blog_card-content a svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13px;
          flex: 0 0 13px;
  height: 20px;
  margin-left: 4px;
}
.section-blog_card-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
.section-blog_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  color: #ac4e39;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 25px;
  text-decoration: underline;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.section-blog_more:hover {
  color: #8f3d2b;
}
@media (max-width: 1200px) {
  .section-blog_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .section-blog_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section-blog {
    padding-top: 10px;
  }
  .section-blog_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.section-records .record {
  border-left: 2px solid transparent;
  -webkit-transition: background-color 0.2s, border-left-color 0.2s;
  transition: background-color 0.2s, border-left-color 0.2s;
}
.section-records .record:hover {
  border-left-color: #ac4e39;
}

.section-hero--about h1 {
  width: 100%;
}
.section-hero--about h1 em {
  font-size: clamp(24px, 7vw, 54px);
  line-height: 1.2;
}
.section-hero--about h1 em span {
  display: block;
}
.section-hero--about h1 em span:last-child {
  margin-left: clamp(0px, 17vw, 125px);
}
.section-hero--about .hero_content > div {
  color: #88807a;
}

.section-hero .hero_database-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 59px;
  margin-top: 36px;
  padding: 12px 33px;
  color: #fff;
  border-radius: 30px;
  background: #ac4e39;
  font-family: "Golos Text", sans-serif;
  font-size: clamp(14px, 1.667vw, 24px);
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.section-hero .hero_database-button:hover {
  background: #8f3d2b;
}
.section-hero .hero_database-button + .hero_description {
  margin-top: 44px;
}
@media (max-width: 768px) {
  .section-hero .hero_database-button {
    height: 40px;
    min-height: 40px;
    margin-top: 15px;
    padding: 10px 16px;
    line-height: 20px;
  }
  .section-hero .hero_database-button + .hero_description {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .section-hero_row {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .section-hero .hero_content {
    padding: 0 0 40px;
  }
}
@media (max-width: 1200px) {
  .section-hero .hero_image {
    -ms-flex-item-align: end;
        align-self: end;
  }
}

body.menu-open .header_burger {
  opacity: 0.4;
}

.section-archive-banner--memory {
  margin: clamp(40px, 6.25vw, 120px) 0 0;
}

@media (max-width: 768px) {
  .section-archive-banner--memory .section-archive-banner_background, .section-archive-banner--database .section-archive-banner_background {
    opacity: 1;
  }
  .section-archive-banner--memory .section-archive-banner_background img, .section-archive-banner--database .section-archive-banner_background img {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 393px;
    max-width: none;
    height: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.section-database_fields {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section-database_fields .section-database_field {
  grid-column: span 2;
}
@media (max-width: 991px) {
  .section-database_fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-database_fields .section-database_field {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .section-database_fields {
    grid-template-columns: 1fr;
  }
}
.section-database_reset {
  width: calc((100% - 72px) / 4);
  min-width: 0;
}
@media (max-width: 1400px) {
  .section-database_reset {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .section-database_reset {
    width: 100%;
  }
}

.section-hero--about h1 em {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .section-hero--about h1 em {
    padding-top: 0;
  }
}

.section-blog_card-content a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .section-hero h1 {
    margin: 0 0 15px;
  }
}

@media (max-width: 768px) {
  .header {
    border-bottom: 1px solid #DBD4CE;
  }
}