/* global box-sizing */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*:focus-visible, button:focus-visible, a:focus-visible,
button:focus-visible, [type=button]:focus-visible, [type=reset]:focus-visible, [type=submit]:focus-visible {
  outline: 1.5px solid #ffffff;
}
/**/
 .lang-menu {
    display: flex;
    border: 1px solid #C1A551;
    position: absolute;
    left: 40px;
    bottom: 0;
    transform: translateY(100%);
  }
  .lang-menu .lang-menu__item {
    display: flex;
    border: 1px solid #C1A551;
    width: 57px;
    height: 57px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
  }
  .lang-menu a {
    text-decoration: none;
    background: #505134;
    color: #999A83;
  }
  .lang-menu span {
    background: #383924;
    color: #ffffff;
  }
/**/

h1 {
  font-family: "GolosText-SemiBold", sans-serif;
  font-weight: normal;
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 24px 0;
}

h2 {
  font-family: "GolosText-SemiBold", sans-serif;
  font-weight: normal;
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 24px 0;
}

h3 {
  font-family: "GolosText-SemiBold", sans-serif;
  font-weight: normal;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 24px 0;
}

h4 {
  font-family: "GolosText-SemiBold", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 24px 0;
}

.button-wrap {
  display: flex;
}

.button-wrap--center {
  justify-content: center;
}

.button-wrap--right {
  justify-content: flex-end;
}

.button-wrap--m-center {
  justify-content: center;
}

.two-buttons-wrap {
  display: flex;
  justify-content: center;
}
.two-buttons-wrap .s-button {
  margin-left: 4px;
}
.two-buttons-wrap .s-button:first-child {
  margin-left: 0;
  margin-right: 4px;
}

button {
  display: block;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

.s-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F05A29;
  border: 1px solid #F05A29;
  height: 50px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  min-width: 130px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
  color: #ffffff;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.s-button:hover {
  background-color: #ffffff;
  color: #F05A29;
}
.s-button:focus {
  background-color: #ffffff;
  color: #F05A29;
}
.s-button:disabled {
  opacity: 0.7;
}
.s-button.s-button--transparent {
  background-color: transparent;
  border: 1px solid #000000;
  color: #191A23;
}
.s-button.s-button--transparent:hover {
  background-color: #ffffff;
  color: #F05A29;
  border-color: #F05A29;
}
.s-button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  margin: 0;
}

.wpcf7-form {
  margin-top: 40px;
  padding: 20px;
  background: #383924;
  border-radius: 16px;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  padding: 0;
  margin-top: 20px;
}
.wpcf7-form .wpcf7-form-control-wrap:first-of-type {
  margin: 0;
}
.wpcf7-form .submit-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.wpcf7-form .wpcf7-spinner {
  margin: 0;
}

.wpcf7-response-output {
  color: #ffffff;
}

input[type=text], input[type=email], input[type=password], input[type=tel], textarea, .s-input {
  display: block;
  width: 100%;
  height: 56px;
  padding: 18px;
  border: none;
  background: #505134;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  border-radius: 10px;
}
input[type=text]:focus-visible, input[type=email]:focus-visible, input[type=password]:focus-visible, input[type=tel]:focus-visible, textarea:focus-visible, .s-input:focus-visible {
  outline: 1.5px solid #999A83;
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=tel]::placeholder, textarea::placeholder, .s-input::placeholder {
  font-size: 16px;
  line-height: 20px;
}

textarea {
  min-height: 200px;
  height: 200px;
  resize: none;
}

input[type=submit] {
  border: none;
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  font-family: "GolosText-Regular", sans-serif;
  color: #191A23;
  font-size: 16px;
  line-height: 20px;
}

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

a:hover {
  color: #F05A29;
  text-decoration: none;
}

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

picture, section, header, footer, nav, aside {
  display: block;
}

label {
  cursor: pointer;
}

picture {
  width: 100%;
  height: 100%;
}

.responsive-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.responsive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-wrapper img {
  transition: transform 0.1s ease-out;
}

.section-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.hide {
  display: none !important;
}

.svg {
  display: block;
}
.svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
}

.no-padding-t {
  padding-top: 0 !important;
}

.none {
  display: none;
}

.swiper-slide {
  height: auto;
}

.t-center, .m-t-center {
  text-align: center;
}

.mobile-hide, .mobile-hide-flex {
  display: none;
}

.tablet-container {
  max-width: 764px;
  margin-left: auto;
  margin-right: auto;
}

.m-container {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.m-container-tablet-full {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.shevron {
  width: 24px;
  height: 24px;
}

.button-space {
  margin-top: 38px;
}

.white-color {
  color: #ffffff;
}

.bg-black {
  background: #030003;
}

.overflow {
  overflow: hidden;
}

.main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.subsection {
  padding-top: 48px;
}

.section-description {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.swiper-pagination {
  margin-top: 48px;
  position: static;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 6px 0 6px;
  border: 1px solid #828282;
  background: none;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #383924;
}

.section-title-button .s-button {
  max-width: 360px;
}

.orange-text {
  background: #F05A29;
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #383924;
  z-index: 100;
  border-bottom: 2px solid #C1A551;
}
.header > .m-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
.header .logo {
  display: block;
  width: 40px;
  height: 40px;
}
.header .main-menu-button {
  position: relative;
  width: 32px;
  height: 32px;
}
.header .main-menu-button svg {
  position: absolute;
  top: 0;
  left: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.header .main-menu-button--open {
  opacity: 1;
  z-index: 1;
}
.header .main-menu-button--close {
  opacity: 0;
  z-index: 0;
}
.header .main-menu-button.active .main-menu-button--open {
  opacity: 0;
  z-index: 0;
}
.header .main-menu-button.active .main-menu-button--close {
  opacity: 1;
  z-index: 1;
}

.main-nav {
  display: none;
  width: 40%;
}

.main-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu .menu-item {
  position: relative;
}
.main-menu .menu-item a {
  text-decoration: none;
  color: #999A83;
  padding: 10px 0;
  display: block;
}
.main-menu .menu-item a:hover {
  color: #ffffff;
}
.main-menu .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #383924;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}
.main-menu .menu-item .sub-menu li {
  padding: 0;
}
.main-menu .menu-item .sub-menu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 18px;
}
.main-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.main-menu .menu-item-has-children > a .menu-arrow {
  transition: transform 0.3s ease;
  transform: translateY(1px);
}
.main-menu .menu-item-has-children:hover > a .menu-arrow {
  transform: rotate(180deg) translateY(0);
}

.main-menu-mob .main-menu {
  display: block;
}
.main-menu-mob .main-menu .menu-item-has-children.active > a .menu-arrow {
  transform: rotate(180deg) translateY(2px);
}
.main-menu-mob .main-menu .menu-item-has-children.active .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu-mob .main-menu .menu-item-has-children:hover > a .menu-arrow {
  transform: rotate(180deg) translateY(2px);
}
.main-menu-mob .main-menu .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu-mob .main-menu .menu-item .sub-menu {
  position: static;
  display: none;
}



.menu-section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  background: #ffffff;
  overflow: auto;
}
.menu-section .m-container {
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-section.active {
  display: block;
}

.standart-page {
  padding-top: 120px;
  padding-bottom: 80px;
}
.standart-page h1 {
  margin-bottom: 26px;
}

.breadcrumbs {
  font-size: 14px;
}
.breadcrumbs ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.breadcrumbs ul li {
  color: #A1A19E;
  display: flex;
  align-items: center;
}
.breadcrumbs ul li a {
  color: #A1A19E;
  text-decoration: none;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
}
.breadcrumbs ul li::after {
  content: "";
  margin-left: 4px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 12L5 12M18 12L14 16M18 12L14 8' stroke='%23A1A19E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.breadcrumbs ul li:last-child::after {
  content: none;
}

.page-description p {
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 18px 0;
}
.page-description img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.delimimter {
  margin-top: 40px;
  height: 2px;
  background: #e0e0e0;
}

.post-content {
  margin-top: 40px;
  padding-bottom: 40px;
}
.post-content ul {
  list-style-type: disc;
  padding-left: 15px;
}
.post-content h2 {
  margin-bottom: 40px;
}
.post-content h3 {
  font-size: 28px;
}
.post-content a {
  color: rgb(80, 81, 52);
}
.post-content a:hover {
  color: #F05A29;
}
.post-content .post-swiper {
  margin-top: 60px;
}
.post-content .post-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-content .post-swiper .swiper-slide img {
  object-fit: cover;
}
.post-content .post-swiper .swiper-pagination {
  position: static;
  margin-top: 24px;
  text-align: center;
}
.post-content .post-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: background-color 0.3s;
}
.post-content .post-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #F05A29;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-item {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item .gallery-image {
  padding-top: 64%;
  position: relative;
}
.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
}
.gallery-item .gallery-info {
  padding: 20px;
  background: #F7F7F7;
}
.gallery-item .gallery-info .gallery-name {
  display: block;
  font-family: "GolosText-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  margin: 0;
}
.gallery-item .gallery-info .gallery-positon {
  margin: 4px 0 0 0;
  font-family: "GolosText-SemiBold", sans-serif;
}
.gallery-item .gallery-info .gallery-desc {
  color: #191A23;
  margin: 24px 0 0 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-card {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}
.news-card .s-button {
  margin-top: 8px;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.news-title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}

.news-load-more {
  margin-top: 40px;
  text-align: center;
}

.page-description-small {
  margin-top: 40px;
  font-size: 20px;
  line-height: 26px;
}

.management-list .item {
  margin-top: 30px;
}
.management-list .item:first-child {
  margin-top: 0;
}
.management-list .image {
  position: relative;
  padding-top: 75%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.management-list .image img {
  position: absolute;
  top: 0;
  left: 0;
}
.management-list .text {
  border: 2px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  border-top: none;
  padding: 20px;
}
.management-list .text p {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
}

.posts-list {
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.post-card {
  margin-top: 40px;
}
.post-card:first-child {
  margin: 0;
}

.post-card__image {
  position: relative;
  padding-top: 50%;
}
.post-card__image a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.post-card__text-part {
  margin-top: 20px;
}
.post-card__text-part a {
  display: block;
  text-decoration: none;
}
.post-card__text-part .post-card__title {
  display: block;
  margin: 18px 0 0 0;
  font-size: 16px;
  line-height: 22px;
  color: #191A23;
}

.post-card__date {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  display: flex;
}
.post-card__date span {
  display: inline-block;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #505134;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 8px;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}
.pagination .nav-links {
  display: flex;
  column-gap: 8px;
}
.pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #383924;
  border-radius: 4px;
  color: #383924;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}
.pagination .page-numbers.current {
  background: #383924;
  color: #ffffff;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  width: auto;
  border: 0;
}

.documents-list {
  margin-left: -20px;
  margin-right: -20px;
}
.documents-list .item {
  padding: 30px 30px 30px 20px;
  position: relative;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  font-size: 20px;
  line-height: 26px;
}
.documents-list .item a {
  position: relative;
  z-index: 2;
}
.documents-list .item:first-child {
  border-top-width: 2px;
}
.documents-list .item:last-child {
  border-bottom-width: 2px;
}
.documents-list .item:hover {
  border-color: #505134;
}
.documents-list .item:hover a {
  color: #F05A29;
}
.documents-list .item .document-index {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-family: "GolosText-SemiBold", sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #F2F3EF;
}

.wp-block-file {
  margin-bottom: 60px;
}

.footer {
  background: #383924;
  padding: 28px 0 0 0;
  font-size: 16px;
  color: #ffffff;
}
.footer .footer-top {
  padding-bottom: 28px;
}
.footer .footer-logo {
  margin: 0 auto;
  width: 129px;
  height: 129px;
}
.footer .description-col {
  margin-top: 40px;
}
.footer .description-col p {
  margin: 0;
}
.footer .footer-delimiter {
  height: 1px;
  background: #e0e0e0;
}
.footer .footer-bottom {
  padding-top: 40px;
  padding-bottom: 28px;
}
.footer .email-col {
  text-align: center;
}
.footer .email-col a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.footer .email-col a:hover {
  text-decoration: underline;
}
.footer .social-col {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer .social-col .social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}
.footer .social-col .social-icon:hover {
  background-color: #F05A29;
  color: #F05A29;
}
.footer .footer-menu {
  margin-top: 28px;
}
.footer .footer-menu:first-child {
  margin: 0;
}
.footer .footer-menu ul li {
  margin-top: 8px;
}
.footer .footer-menu ul li:first-child {
  margin-top: 0;
}
.footer .footer-menu ul li a {
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  color: #ffffff;
}
.footer .footer-menu ul li a:hover {
  text-decoration: underline;
}
.footer .footer-social-col {
  margin-top: 40px;
}
.footer .footer-socials {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-top: 24px;
}
.footer .footer-socials:first-child {
  margin-top: 0;
}
.footer .footer-socials > a {
  display: block;
  width: 32px;
  height: 32px;
}
.footer .footer-socials p {
  font-size: 16px;
  margin: 0;
}
.footer .footer-socials p a {
  color: #ffffff;
}