@charset "UTF-8";
/* ================================================================================================================ */
/* СТИЛИ ОБНУЛЕНИЯ ================================================================================================ */
/* ================================================================================================================ */
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /*    overflow: auto;*/
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
/* ================================================================================================================ */
/* ПОДКЛЮЧЕНИЕ ШРИФТОВ ============================================================================================ */
/* ================================================================================================================ */
@font-face {
  font-family: "PTSans";
  src: url("../fonts/PTSans-Regular.woff2") format("woff2"), url("../fonts/PTSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSans";
  src: url("../fonts/PTSans-Bold.woff2") format("woff2"), url("../fonts/PTSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../fonts/PTSerif-Regular.woff2") format("woff2"), url("../fonts/PTSerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PTSerif";
  src: url("../fonts/PTSerif-Bold.woff2") format("woff2"), url("../fonts/PTSerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ================================================================================================================ */
/* СТИЛИ UI ======================================================================================================= */
/* ================================================================================================================ */
/* Общие стили и классы*/
.container {
  max-width: 1354px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container-mini {
  max-width: 1264px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container-big {
  max-width: 1584px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

body {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #80889f;
  line-height: normal;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.wrapper .main {
  flex: 1 1 auto;
}

/* Кнопки/Ссылки */
.btn {
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  box-shadow: none;
  box-sizing: none;
  display: block;
  transition: 0.3s;
}
.btn_start {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  padding: 12px 32px;
  background: #00123f;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
}
.btn_start:hover {
  background: #041e49;
}
.btn_acent {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  padding: 12px 32px;
  background: #cbaa76;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
}
.btn_acent:hover {
  background: #b78e4e;
}
.btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: grey;
}
.btn:active {
  opacity: 0.8;
}
/* Загрузка */
.sending-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.3);
}
.sending-main img {
  width: 150px;
}
.sending-main.active {
  opacity: 1;
  visibility: visible;
}

/* Елементы формы */
/* -input */
.input-custom {
  margin: 12px 0;
}
.input-custom label {
  display: block;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: 140%;
  margin: 0 0 7px 0;
}
.input-custom input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 14px 24px;
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 50px;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
}
.input-custom input:focus {
  border: 1px solid #80889f;
}
.input-custom__error {
  display: none;
  margin: 5px 0 0 0;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #e52d2e;
  line-height: 140%;
}
.input-custom .error input {
  border: 1px solid #e52d2e;
}
.input-custom .error textarea {
  border: 1px solid #e52d2e;
}
.input-custom .error .input-custom__error {
  display: block;
}
.input-custom textarea {
  padding: 14px 24px;
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  height: 100px;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
}
.input-custom textarea:focus {
  border: 1px solid #80889f;
}

.input-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.input-copy label {
  padding-left: 16px;
}
.input-copy .input-custom {
  width: 100%;
  margin: 0;
}
.input-copy .input-custom input {
  color: #80889f;
}
.input-copy__btn {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background: #00123f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.3s;
}
.input-copy__btn:before {
  font-size: 24px;
  color: #fff;
}
.input-copy__btn:hover {
  cursor: pointer;
  background: #cbaa76;
}

/* -select */
.select-custom label {
  display: block;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 140%;
  margin: 0 0 7px 0;
}
.select-custom__box {
  position: relative;
}
.select-custom__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
.select-custom__arrow:before {
  order: 2;
  font-size: 8px;
  color: #00123f;
  transition: 0.3s;
}
.select-custom select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8f9fa;
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00123f;
  line-height: normal;
}

/* -checkbox */
.input-checkbox {
  margin: 5px 0;
}
.input-checkbox input {
  display: none;
}
.input-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #80889f;
  line-height: 140%;
}
.input-checkbox label:before {
  content: "";
  display: block;
  background: #fff;
  border: 1px solid #80889f;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0 12px 0 0;
}
.input-checkbox input:checked + label {
  color: #00123f;
}
.input-checkbox input:checked + label:before {
  border-color: #00123f;
  background: #00123f url("../icon/check.svg") no-repeat center;
}
.input-checkbox input.error + label:before {
  border: 1px solid red;
}

.input-radio {
  margin: 20px 0;
}
.input-radio input {
  display: none;
}
.input-radio label {
  cursor: pointer;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
  position: relative;
  padding: 3px 0 0 30px;
}
.input-radio label:before {
  content: "";
  display: block;
  background: #f6f6f6;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  width: 24px;
  height: 24px;
  flex: 0 0 20px;
  margin: 0 12px 0 0;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.input-radio label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
  transition: 0.3s;
  transform: scale(0);
}
.input-radio input:checked + label:after {
  transform: scale(1);
}

/* -input-photos */
.input-photos__title {
  font-family: "PTSans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 130%;
  margin: 0 0 10px 0;
}
.input-photos__body {
  display: flex;
  align-items: center;
}
.input-photos__input {
  position: relative;
}
.input-photos__input input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-size: 0;
  cursor: pointer;
}
.input-photos__btn {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #777;
  background: url("../icon/img.svg") center/80% auto no-repeat;
}
.input-photos__info {
  margin-left: 24px;
}
.input-photos__text {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 130%;
}
.input-photos__format {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #999;
  line-height: 130%;
}

/* ЕЛЕМЕНТЫ СЛАЙДЕРОВ */
.slider-slider {
  overflow: hidden;
}
/* - Пагинации */
.pagination-custom {
  margin: 0 30px;
}
.pagination-custom .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  opacity: 0.5;
  border: none;
  background: #00123f;
}
.pagination-custom .swiper-pagination-bullet-active {
  background: #00123f;
  opacity: 1;
}

/* - блок управления слайдера */
.swiper-control {
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.swiper-control .swiper-pagination {
  position: static;
  margin: 0;
  width: auto;
}

/* -кнопки слайдера */
.button-prev,
.button-next {
  cursor: pointer;
  background: #cbaa76;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-prev:before,
.button-next:before {
  font-size: 13px;
  color: #fff;
}
.button-prev:hover,
.button-next:hover {
  transform: scale(1.1);
}
.button-prev.swiper-button-disabled,
.button-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button-prev.swiper-button-lock,
.button-next.swiper-button-lock {
  display: none;
}

/* end--------------------*/
/* Общие стили для блока .more */
.more__link {
  font-weight: 700;
  margin: 0 8px;
  cursor: pointer;
}

/* Пагинация */
.page-numbers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.page-numbers a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00123f;
  line-height: normal;
  margin: 4px;
  border: none;
  transition: 0.3s;
}
.page-numbers a:hover {
  color: #cbaa76;
}
.page-numbers .current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: normal;
  margin: 4px;
  border: none;
  background: #00123f;
  border-radius: 50px;
}
.page-numbers .prev,
.page-numbers .next {
  transition: 0.3s;
}
.page-numbers .prev span,
.page-numbers .next span {
  pointer-events: none;
}
.page-numbers .prev span:before,
.page-numbers .next span:before {
  font-size: 14px;
  transition: 0.3s;
  color: #00123f;
}
.page-numbers .prev:before,
.page-numbers .next:before {
  font-size: 14px;
  transition: 0.3s;
  color: #cbaa76;
}
.page-numbers .prev:hover span:before,
.page-numbers .next:hover span:before {
  color: #cbaa76;
}
.page-numbers .prev {
  margin-right: 24px;
}
.page-numbers .next {
  margin-left: 24px;
}

/* Линии */
.hr-vertic {
  width: 1px;
  flex: 0 0 1px;
  height: 100%;
  background: #e5e7ec;
  display: block;
  height: auto;
}

.hr-horiz {
  width: 100%;
  height: 1px;
  background: #e5e7ec;
  display: block;
}

.margin {
  margin: 72px 0;
}

.padding {
  padding: 72px 0;
}

.margin-mini {
  margin: 54px 0;
}

.bg-light {
  background: #f8f9fa;
}

.stikers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stiker {
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  padding: 6px 12px;
  background: #00123f;
  border-radius: 8px;
}
.stiker_acent {
  background: #cbaa76;
}
.stiker_green {
  background: #0a9e1b;
}
.stiker_red {
  background: #fa0000;
}
.stiker_yelloy {
  background: #dacc00;
}

.btn-decor {
  display: block;
  padding: 40px;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  background: #00123f;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  transition: 0.3s;
}
.btn-decor:hover {
  background: #041e49;
}
.btn-decor__ivon {
  background: #cbaa76;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-decor__ivon:before {
  font-size: 16px;
  color: #fff;
}
.btn-decor__title {
  font-weight: 700;
  font-size: 24px;
  max-width: 150px;
  text-align: right;
  color: #fff;
}

.lang {
  position: relative;
}
.lang:hover .lang__list {
  opacity: 1;
  visibility: visible;
}
.lang__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang__btn:before {
  font-size: 8px;
  color: #00123f;
  order: 3;
}
.lang__name {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
  text-transform: uppercase;
}
.lang__img {
  width: 28px;
  height: 20px;
  border-radius: 2px;
}
.lang__list {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  position: absolute;
  top: 140%;
  left: 50%;
  background: #fff;
  border: 1px solid #e5e7ec;
  border-radius: 16px;
  transform: translate(-50%, 0);
  overflow: hidden;
}
.lang__list a:hover {
  background: #e5e7ec;
}
.lang__item {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
  padding: 8px 24px;
  display: block;
  transition: 0.3s;
  text-transform: uppercase;
}

.list-cat {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.list-cat__item {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
  padding: 12px 32px;
  border: 1px solid #e5e7ec;
  border-radius: 50px;
  display: block;
  transition: 0.3s;
}
.list-cat__item:hover {
  background: #e5e7ec;
}
.list-cat__item.active {
  background: #00123f;
  color: #fff;
}

.list-cat-start {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list-cat-start__item {
  transition: 0.3s;
  display: block;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
}
.list-cat-start__item.active {
  color: #cbaa76;
}
.list-cat-start__item:hover {
  color: #cbaa76;
}

.share-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 24px;
  gap: 32px;
  background: #cbaa76;
}
.share-block__title {
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #00123f;
  line-height: normal;
  margin: 0;
}
.share-block__left {
  display: flex;
  gap: 16px;
  align-items: center;
}
.drop-box__btn {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8f9fa;
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00123f;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drop-box__btn:before {
  order: 2;
  font-size: 8px;
  color: #00123f;
  transition: 0.3s;
}
.drop-box__btn.active:before {
  transform: rotate(180deg);
}
.drop-box__body {
  overflow: hidden;
  transition: 0.3s;
  max-height: 0px;
}
.drop-box__content {
  padding: 20px 16px 0 16px;
}

.decor-light {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1920px;
}
.decor-light__item {
  position: absolute;
  transform: translate(-50%, -50%);
}
.decor-light__item_1 {
  left: 0%;
  top: 80%;
}
.decor-light__item_2 {
  top: 20%;
  left: 90%;
}
.decor-light__item_3 {
  left: 0%;
  top: 50%;
}
.decor-light__item_4 {
  top: 10%;
  left: 100%;
}
.decor-light__item_5 {
  left: 0%;
  top: 60%;
}
.decor-light__item_6 {
  top: 30%;
  left: 100%;
}

.meesege-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px;
  justify-content: center;
  min-height: 350px;
  background: #f8f9fa;
  border-radius: 32px;
}

.gradient {
  position: relative;
}
.gradient:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 18, 63, 0) 0%, #00123f 100%);
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .after992 {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .before992 {
    display: none;
  }
  .decor-light {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .share-block {
    flex-direction: column;
  }
  .share-block__title {
    max-width: 100%;
    font-size: 20px !important;
  }
  .share-block__left {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  .container-big {
    padding: 0 20px;
  }
  .container-mini {
    padding: 0 20px;
  }
  /* Пагинация */
  .page-numbers a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .page-numbers .current {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .page-numbers .prev span:before,
  .page-numbers .next span:before {
    font-size: 12px;
  }
  .page-numbers .prev:before,
  .page-numbers .next:before {
    font-size: 12px;
  }
  .page-numbers .prev {
    margin-right: 12px;
  }
  .page-numbers .next {
    margin-left: 12px;
  }
  .margin {
    margin: 40px 0;
  }
  .padding {
    padding: 40px 0;
  }
  .margin-mini {
    margin: 32px 0;
  }
  .btn-decor {
    padding: 20px;
    border-radius: 12px;
  }
  .btn-decor__ivon {
    width: 40px;
    height: 40px;
  }
  .btn-decor__ivon:before {
    font-size: 12px;
  }
  .btn-decor__title {
    font-size: 18px;
    max-width: 120px;
  }
  .list-cat {
    justify-content: center;
    gap: 6px;
  }
  .list-cat__item {
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #e5e7ec;
  }
  .drop-box__btn {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
  }
  .drop-box__content {
    padding: 16px 12px 0 12px;
  }
  /* -select */
  .select-custom select {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 16px;
  }
  .select-custom__arrow {
    right: 12px;
  }
}
/* ================================================================================================================ */
/* СТИЛИ ПОПАП ОКОН =============================================================================================== */
/* ================================================================================================================ */
.popup-link {
  cursor: pointer;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.3);
  max-height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  z-index: -5;
}
.popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 40;
}
.popup__wraper {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 30px 15px;
  max-width: 650px;
}
.popup__body {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transform: scale(0);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
.popup.active .popup__body {
  transform: scale(1);
}
/* ================================================================================================================ */
/* СТИЛИ ТЕКСТОВОЙ СТРАНИЦЫ  ====================================================================================== */
/* ================================================================================================================ */
/* Основные заголовки и текста */
h1 {
  color: #00123f;
  font-size: 48px;
  font-family: "PTSerif", sans-serif;
  margin: 32px 0;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  color: #00123f;
  font-size: 32px;
  font-family: "PTSerif", sans-serif;
  margin: 24px 0;
  font-weight: 700;
}

.title-block {
  margin: 0;
  margin-bottom: 32px;
}

h3 {
  color: #00123f;
  font-size: 24px;
  font-weight: 700;
  font-family: "PTSerif", sans-serif;
  margin: 20px 0;
}

h4 {
  color: #00123f;
  font-size: 24px;
  font-family: "PTSans", sans-serif;
  margin: 16px 0;
  font-weight: 700;
}

h5 {
  color: #00123f;
  font-size: 16px;
  font-family: "PTSans", sans-serif;
  margin: 16px 0;
}

h6 {
  font-family: "PTSans", sans-serif;
  color: #00123f;
  font-size: 16px;
  margin: 16px 0;
}

p {
  font-size: 18px;
  margin: 12px 0;
}

.img-box {
  margin: 20px 0;
  display: grid;
  gap: 16px;
}
.img-box_2 {
  grid-template-columns: repeat(2, 1fr);
}
.img-box_3 {
  grid-template-columns: repeat(3, 1fr);
}
.img-box__item {
  position: relative;
  padding-bottom: 70%;
  border-radius: 24px;
  overflow: hidden;
}
.img-box__item img {
  border-radius: 0px !important;
}

.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6 {
  color: #fff;
}
.text-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.text-center {
  text-align: center !important;
}

.text-custom p:first-child,
.text-custom h1:first-child,
.text-custom h2:first-child,
.text-custom h3:first-child,
.text-custom h4:first-child,
.text-custom h5:first-child,
.text-custom h6:first-child,
.text-custom img:first-child,
.text-custom ul:first-child,
.text-custom ol:first-child,
.text-custom .btn:first-child {
  margin-top: 0;
}
.text-custom p:last-child,
.text-custom h1:last-child,
.text-custom h2:last-child,
.text-custom h3:last-child,
.text-custom h4:last-child,
.text-custom h5:last-child,
.text-custom h6:last-child,
.text-custom img:last-child,
.text-custom ul:last-child,
.text-custom ol:last-child,
.text-custom .btn:last-child {
  margin-bottom: 0;
}
.text-custom .hr-horiz {
  margin: 32px 0;
}
.text-custom img {
  max-width: 100%;
  border-radius: 24px;
}
.text-custom figure {
  margin: 20px 0;
}
.text-custom p {
  font-size: 18px;
}
.text-custom p em,
.text-custom p i {
  font-style: italic;
}
.text-custom p strong,
.text-custom p b {
  font-weight: 500;
  color: #00123f;
}
.text-custom p a {
  color: #cbaa76;
  text-decoration: underline;
}
.text-custom ul {
  margin: 20px 0;
  padding: 0 0 0 24px;
}
.text-custom ul li {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #80889f;
  line-height: normal;
  padding: 0 0 0 20px;
  position: relative;
  display: flex;
  margin: 4px 0;
}
.text-custom ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00123f;
  position: absolute;
  left: 0;
  top: 9px;
}
.text-custom ol {
  margin: 20px 0;
  padding: 0 0 0 24px;
}
.text-custom ol li {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #80889f;
  line-height: normal;
  margin: 4px 0;
}
.text-custom ol li::marker {
  font-weight: 700;
  color: #00123f;
}
.text-custom blockquote {
  padding: 16px 24px 16px 24px;
  margin: 20px 0;
  background: #e5e7ec;
  color: #00123f;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
}
.text-custom blockquote:before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: block;
  background: url("../icon/blockquote.svg") center/100% auto no-repeat;
}
@media screen and (max-width: 576px) {
  .text-custom .hr-horiz {
    margin: 24px 0;
  }
  .text-custom p {
    font-size: 16px;
  }
  .text-custom ul {
    margin: 16px 0;
    padding: 0 0 0 8px;
  }
  .text-custom ul li {
    font-size: 16px;
    padding: 0 0 0 16px;
  }
  .text-custom ul li:before {
    top: 7px;
  }
  .text-custom ol {
    margin: 16px 0;
    padding: 0 0 0 20px;
  }
  .text-custom ol li {
    font-size: 16px;
  }
  .text-custom ol li::marker {
    font-size: 16px;
  }
  .text-custom blockquote {
    font-size: 16px;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    margin: 24px 0;
    font-size: 30px;
  }
  h2 {
    margin: 20px 0;
    font-size: 24px;
  }
  .title-block {
    margin-bottom: 24px;
    text-align: center;
  }
  h3 {
    margin: 18px 0;
    font-size: 20px;
  }
  h4 {
    margin: 16px 0;
    font-size: 16px;
  }
  h5 {
    margin: 14px 0;
    font-size: 14px;
  }
  h6 {
    margin: 12px 0;
    font-size: 14px;
  }
  p {
    margin: 12px 0;
    font-size: 16px;
  }
  .img-box {
    margin: 16px 0;
    gap: 8px;
  }
  .img-box_3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .img-box__item {
    border-radius: 16px;
  }
}
/* ================================================================================================================ */
/* СТИЛИ ОБЩИХ БЛОКОВ  ============================================================================================ */
/* ================================================================================================================ */
/* Стили для header */
.header {
  padding: 16px 0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  transition: 0.3s;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 6;
  border-bottom: 1px solid #e5e7ec;
}
.header .logo {
  position: relative;
  z-index: 7;
}
.header .lang {
  position: relative;
  z-index: 7;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-indent {
  margin-top: 90px;
}

.mob-992 {
  display: none;
}

.burger-body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.burger {
  position: relative;
  z-index: 7;
  height: 18px;
  width: 25px;
}
.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: #00123f;
  transition: 0.5s;
}
.burger span:nth-child(1) {
  transform: translate(-50%, -50%);
  top: 0%;
  left: 50%;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) scale(1);
}
.burger span:nth-child(3) {
  bottom: 0;
  transform: translate(-50%, 0%);
  left: 50%;
}
.burger.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
.burger.active span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) scale(0);
}
.burger.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  bottom: auto;
}

/* ------- адаптация ------- */
@media screen and (min-width: 992px) {
  .navigation {
    position: relative;
    z-index: 6;
  }
  .navigation ul {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 992px) {
  .mob-992 {
    display: block;
  }
  .burger-body {
    flex-direction: column;
    gap: 24px;
    align-items: start;
    padding: 132px 32px 32px 32px;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    min-height: 100%;
    max-height: 100%;
    overflow: auto;
    z-index: 5;
    transform: translate(100%, 0);
    transition: 0.3s;
    opacity: 0;
    width: 100%;
    max-width: 320px;
  }
  .burger-body__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
  }
  .burger-body.active {
    transform: translate(0%, 0);
    opacity: 1;
  }
  .burger-body .lang {
    order: 0;
  }
}
@media screen and (max-width: 576px) {
  .header .logo img {
    max-width: 120px;
  }
  .burger-body {
    padding: 132px 20px 20px 20px;
    max-width: 100%;
    align-items: center;
  }
}
/* ------- end ------- */
/* Стили для Главное меню */
.navigation {
  flex: 1 1 auto;
  margin-right: 24px;
}
.navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.navigation > ul > li {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .navigation > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  .navigation > ul > li:hover > a:before {
    transform: rotate(180deg);
  }
}
.navigation > ul > li > a, .navigation > ul > li > span {
  display: block;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00123f;
  line-height: normal;
  padding: 8px 8px 8px 0;
  transition: 0.3s;
}
.navigation > ul > li > a:hover, .navigation > ul > li > span:hover {
  color: #cbaa76;
}
.navigation .sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 100%;
  padding: 0px 0;
  z-index: 100;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7ec;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translate(-50%, 10%);
  max-height: 500px;
  overflow: auto;
  max-width: 350px;
  width: 100vw;
}
.navigation .sub-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.navigation .sub-menu li {
  display: block;
  width: 100%;
}
.navigation .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #e5e7ec;
}
.navigation .sub-menu li > a,
.navigation .sub-menu li > span {
  max-width: 100%;
  display: block;
  padding: 16px 20px;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
  transition: 0.3s;
  background: #fff;
}
@media (hover: hover) {
  .navigation .sub-menu li > a:hover,
  .navigation .sub-menu li > span:hover {
    background: #e5e7ec;
  }
}
.navigation > ul > li > ul > li > ul.sub-menu {
  border: none;
  border-radius: 0px;
  max-width: 100%;
  z-index: 5;
  transform: translate(0%, 0%);
  display: none;
  position: static;
}
.navigation > ul > li > ul > li > ul.sub-menu.active {
  position: static;
  transform: translate(0%, 0%);
  display: block;
}
.navigation > ul > li > ul > li > ul > li {
  border: none !important;
}
.navigation > ul > li > ul > li > ul > li a {
  color: #00123f;
  padding: 10px 24px !important;
}
.navigation > ul > li > ul > li > ul > li a:before {
  content: "- ";
}

.li-sub-menu > a {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.li-sub-menu > a:before {
  content: "";
  order: 2;
  margin-left: 9px;
  margin-top: 4px;
  transform: rotate(0deg);
  transition: 0.3s;
  display: block;
  width: 10px;
  height: 10px;
  display: block;
  background: url("../icon/down.svg") 50% 50%/100% auto no-repeat;
}
.li-sub-menu > a.active:before {
  transform: rotate(180deg);
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    padding: 8px 4px;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .navigation {
    order: 2;
    margin: 0;
    width: 100%;
    flex: 0 0 auto;
  }
  .navigation > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .navigation > ul > li {
    width: 100%;
  }
  .navigation > ul > li > a, .navigation > ul > li > span {
    padding: 16px 0px;
    font-size: 20px;
    text-transform: none;
  }
  .navigation > ul > li > a.active, .navigation > ul > li > span.active {
    border-top: 1px solid #cbaa76;
    color: #cbaa76;
  }
  .navigation > ul > li > a.active:before, .navigation > ul > li > span.active:before {
    color: #cbaa76;
  }
  .navigation .sub-menu {
    position: static;
    left: 0%;
    top: 0%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    border: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    display: none;
    overflow: hidden;
    transform: translate(0, 0);
    padding: 0 16px;
    background: #000;
    max-height: none;
    max-width: none;
  }
  .navigation .sub-menu.active {
    display: block;
    transform: translate(0, 0);
    border-bottom: 1px solid #cbaa76;
  }
  .navigation .sub-menu li {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .navigation .sub-menu li > a,
  .navigation .sub-menu li > span {
    padding: 20px 0px;
    font-size: 14px;
    color: #fff;
    text-transform: none;
  }
}
@media screen and (max-width: 576px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    text-align: center;
  }
}
/* Стили для box */
.box {
  display: flex;
  flex-direction: column;
  gap: 148px;
}
.box_mini {
  transform: scale(0.7);
}
.box__cell {
  position: relative;
}
.box__row {
  display: flex;
  align-items: center;
  gap: 148px;
}
.box__row_down {
  position: absolute;
  top: 224px;
  left: 224px;
}
.box__item {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transform: rotate(45deg);
}
.box__item_none {
  opacity: 0;
  pointer-events: none;
}
.box__item_strokeW70 {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.box__item_bgBlue {
  background: #041e49;
}
.box__item_img img {
  transform: scale(1.4) rotate(-45deg);
}
.box__item_bgWhite90 {
  background: rgba(255, 255, 255, 0.9);
}
.box__item_bgAcent {
  background: #cbaa76;
}

/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для footer */
.footer-top {
  padding: 32px 0px;
  background: #cbaa76;
}
.footer-top__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-top__title {
  font-size: 24px;
  font-weight: 700;
  max-width: 270px;
  margin: 0;
}
.footer-top__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.networks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.networks__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #00123f;
}
.networks__item:before {
  font-size: 16px;
  color: #fff;
}
.networks__item:hover {
  background: #041e49;
}

.form-sub {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-main {
  background: #00123f;
}
.footer-main__body {
  padding: 72px 0;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer-main__coll {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-main__title {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #cbaa76;
  line-height: normal;
  margin: 0;
}
.footer-main__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main__down {
  border-top: 1px solid #80889f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
.footer-main__coop {
  margin: 0;
}

.bible-text {
  max-width: 290px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bible-text__text {
  font-family: "PTSerif", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: normal;
  margin: 0px;
}
.bible-text__link {
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: normal;
  margin: 0px;
}

.footer-nav ul li a {
  display: block;
  padding: 10px 0;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: normal;
}
.footer-nav ul li a:hover {
  color: #cbaa76;
}

.dev {
  margin: 0;
}
.dev a {
  color: #fff;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .footer-top__body {
    flex-direction: column;
    gap: 24px;
  }
  .footer-top__title {
    font-size: 24px;
    font-weight: 700;
    max-width: 270px;
    margin: 0;
    text-align: center;
  }
  .footer-main .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-main__body {
    gap: 48px;
    flex-direction: column;
    align-items: center;
  }
  .footer-main__coll {
    gap: 24px;
  }
  .footer-main__title {
    text-align: center;
  }
  .bible-text__text {
    text-align: center;
  }
  .bible-text__link {
    text-align: center;
  }
  .footer-nav ul li a {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-top__right {
    flex-direction: column;
    width: 100%;
  }
  .form-sub {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .form-sub .input-custom {
    width: 100%;
    margin: 0;
  }
  .form-sub .btn {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .footer-top__body {
    gap: 20px;
  }
  .footer-top__form {
    width: 100%;
  }
  .footer-top__title {
    font-size: 18px;
    max-width: 100%;
  }
  .bible-text__text {
    font-size: 16px;
  }
  .bible-text__link {
    font-size: 20px;
  }
  .footer-main__body {
    padding: 48px 0;
  }
  .footer-main__down {
    flex-direction: column;
    gap: 16px;
  }
  .footer-main__coop {
    text-align: center;
  }
  .dev {
    text-align: center;
  }
}
/* ------- end ------- */
/* Стили для .head-page */
.head-page {
  overflow: hidden;
  background: #00123f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 350px;
  position: relative;
}
.head-page .container {
  position: relative;
  z-index: 3;
}
.head-page__ofer {
  max-width: 590px;
}
.head-page__box1 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 80%;
}
.head-page__box2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 15%;
  left: -9%;
}
.head-page_big {
  min-height: 550px;
}
.head-page_big .head-page__box2 {
  left: 5%;
  top: 10%;
}
.head-page_big .head-page__box1 {
  left: 95%;
  top: 25%;
}
.head-page_big .head-page__body {
  display: flex;
  justify-content: flex-end;
}
.head-page_big .head-page__ofer {
  max-width: 650px;
}

.project-head-page .ofer__text {
  max-width: 100%;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1400px) {
  .head-page_big .head-page__box2 {
    transform: translate(-50%, -50%) scale(0.7);
  }
  .head-page_big .head-page__box1 {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media screen and (max-width: 1200px) {
  .head-page__box1 {
    transform: translate(-50%, -50%) scale(0.7);
    top: 50%;
    left: 80%;
  }
  .head-page__box2 {
    transform: translate(-50%, -50%) scale(0.7);
    top: 15%;
    left: -9%;
  }
}
@media screen and (max-width: 992px) {
  .head-page__body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .head-page__box1 {
    transform: translate(-50%, -50%) scale(0.5);
    top: 80%;
    left: 80%;
  }
  .head-page__box2 {
    transform: translate(-50%, -50%) scale(0.5);
    top: 15%;
    left: -9%;
  }
  .head-page_big {
    padding: 400px 0 32px 0;
  }
  .head-page_big .head-page__body {
    justify-content: center;
  }
  .head-page_big .head-page__box2 {
    top: 10%;
    left: 10%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  .head-page_big .head-page__box1 {
    display: none;
  }
  .head-page_big .ofer__text {
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .head-page {
    min-height: 250px;
  }
  .head-page__box1 {
    transform: translate(-50%, -50%) scale(0.4);
    display: none;
  }
  .head-page__box2 {
    transform: translate(-50%, -50%) scale(0.4);
  }
  .head-page .ofer .ofer__title {
    text-align: center;
  }
  .head-page .ofer .ofer__text {
    text-align: center;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.news-cart {
  display: flex;
  flex-direction: column;
}
.news-cart__img {
  display: block;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  border-radius: 24px;
  overflow: hidden;
}
.news-cart__img .stikers {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.news-cart__body {
  flex: 1 1 auto;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.news-cart__body .btn {
  margin-top: 8px;
}
.news-cart__title {
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
}
.news-cart__text {
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .news-cart__img {
    border-radius: 16px;
  }
  .news-cart__img .stikers {
    top: 12px;
    left: 12px;
  }
  .news-cart__body {
    padding: 16px 16px 0 16px;
  }
  .news-cart__body .btn {
    margin-top: 8px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.product-cart {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-cart__img {
  display: block;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  border-radius: 24px;
  overflow: hidden;
}
.product-cart__img .stikers {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.product-cart__body {
  flex: 1 1 auto;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.product-cart__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.product-cart__title {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #00123f;
  line-height: normal;
}
.product-cart__footer {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid #e5e7ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status {
  margin: 0;
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #80889f;
  line-height: normal;
}
.status_not {
  color: #880303;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price__start {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #00123f;
  line-height: normal;
  margin: 0;
}
.price__old {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #80889f;
  line-height: normal;
  text-decoration: line-through;
  margin: 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .product-cart__img {
    border-radius: 16px;
  }
  .product-cart__img .stikers {
    top: 12px;
    left: 12px;
  }
  .product-cart__body {
    padding: 16px 16px 0 16px;
  }
  .product-cart__top {
    gap: 6px;
    margin-bottom: 4px;
  }
  .product-cart__title {
    font-size: 16px;
  }
  .product-cart__footer {
    padding-top: 12px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.about-body {
  position: relative;
  overflow: hidden;
}
.about-body__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 54px;
}
.about-body__galerry {
  width: 100%;
}

/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для .about-list */
.about-list__title {
  max-width: 600px;
}

.list-person__box {
  max-height: 600px;
  overflow: hidden;
  transition: 1s;
  position: relative;
}
.list-person__box:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgb(255, 255, 255) 90%);
  z-index: 3;
  opacity: 1;
  transition: 0.3s;
  pointer-events: none;
}
.list-person__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.list-person__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-top: 1px solid #e5e7ec;
  position: relative;
}
.list-person__item:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #e5e7ec;
  top: 24px;
  bottom: 24px;
  right: 0;
  display: block;
}
.list-person__item:nth-child(3n):before {
  display: none;
}
.list-person__title {
  margin: 0;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
}
.list-person__down {
  border-top: 1px solid #e5e7ec;
  padding: 32px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-person__btn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.list-person__btn:before {
  font-size: 5px;
  color: #fff;
  order: 2;
}
.list-person__btn .after {
  display: none;
}
.list-person__btn.active {
  background: #cbaa76;
}
.list-person__btn.active .before {
  display: none;
}
.list-person__btn.active .after {
  display: block;
}

.list-person__box.active:before {
  opacity: 0;
}

.person {
  display: flex;
  gap: 16px;
}
.person__img {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.person__text {
  margin: 0;
  font-size: 16px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .list-person__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .list-person__item:nth-child(3n):before {
    display: block;
  }
  .list-person__item:nth-child(2n):before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .list-person__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .list-person__item:before {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .about-list__title {
    text-align: left;
  }
  .list-person__item {
    padding: 20px 16px;
  }
}
/* ------- end ------- */
/* Стили для .about-map */
.about-map__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.about-map__ofer {
  max-width: 360px;
  width: 100%;
}
.about-map__ofer:before {
  font-size: 64px;
  color: #cbaa76;
  margin-bottom: 24px;
  display: block;
}
.about-map__title {
  margin: 0;
}
.about-map__text {
  margin: 16px 0;
}
.about-map__img img {
  width: 100%;
  height: auto;
}
.about-map__hr {
  margin: 64px 0;
}
.about-map__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.about-map__info .contact-box {
  width: 100%;
  padding: 0;
}
.about-map__info .contact-box hr {
  display: none;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .about-map__body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .about-map__ofer:before {
    text-align: center;
  }
  .about-map__title {
    text-align: center;
  }
  .about-map__text {
    text-align: center;
  }
  .about-map__info {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .about-map__info {
    max-width: 350px;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
  }
}
/* ------- end ------- */
/* Стили для .team  */
.team__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e7ec;
}
.team__list .user {
  position: relative;
}
.team__list .user:after, .team__list .user:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #e5e7ec;
  top: 24px;
  bottom: 24px;
  display: block;
}
.team__list .user:before {
  right: 0;
  display: none;
}
.team__list .user:after {
  left: 0;
}
.team__list .user:nth-child(4n):before {
  display: block;
}

.user {
  border-bottom: 1px solid #e5e7ec;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user__img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.user__title {
  margin: 0 0 4px 0;
  text-align: center;
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #00123f;
  line-height: normal;
  max-width: 220px;
}
.user__text {
  margin: 0;
  text-align: center;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .team__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .team .user:nth-child(4n):before {
    display: none;
  }
  .team .user:nth-child(3n):before {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .team__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .team .user:nth-child(3n):before {
    display: none;
  }
  .team .user:nth-child(2n):before {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .team__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .team .user:before {
    display: block !important;
  }
  .user {
    padding: 24px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* ================================================================================================================ */
/* ГЛАВНАЯ СТРАНИЦА =============================================================================================== */
/* ================================================================================================================ */
/* Стили для .main-screen */
.main-screen {
  overflow: hidden;
  background: #00123f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}
.main-screen .container {
  position: relative;
  z-index: 3;
}
.main-screen__ofer {
  max-width: 590px;
}
.main-screen__box1 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 70%;
}
.main-screen__box2 {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 15%;
  left: -9%;
}

.ofer__label {
  font-size: 18px;
  color: #cbaa76 !important;
  font-weight: 700;
}
.ofer__title {
  margin: 20px 0;
}
.ofer__text {
  max-width: 400px;
}
.ofer .men-present {
  margin-top: 32px;
}

.men-present {
  display: flex;
  align-items: center;
  gap: 20px;
}
.men-present__img {
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.men-present__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff !important;
  margin: 0;
}
.men-present__text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .main-screen__box1 {
    transform: translate(-50%, -50%) scale(0.7);
    top: 50%;
    left: 70%;
  }
  .main-screen__box2 {
    transform: translate(-50%, -50%) scale(0.7);
    top: 15%;
    left: -9%;
  }
}
@media screen and (max-width: 992px) {
  .main-screen__body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-screen__box1 {
    transform: translate(-50%, -50%) scale(0.5);
    top: 80%;
    left: 70%;
  }
  .main-screen__box2 {
    transform: translate(-50%, -50%) scale(0.5);
    top: 15%;
    left: -9%;
  }
  .ofer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ofer__title {
    text-align: center;
  }
  .ofer__text {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .main-screen__box1 {
    transform: translate(-50%, -50%) scale(0.4);
  }
  .main-screen__box2 {
    transform: translate(-50%, -50%) scale(0.4);
  }
  .ofer__title {
    margin: 8px 0;
  }
  .ofer__text {
    max-width: 260px;
  }
  .ofer .men-present {
    margin-top: 16px;
  }
  .men-present {
    gap: 8px;
  }
  .men-present__img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }
  .men-present__title {
    font-size: 16px;
  }
  .men-present__text {
    font-size: 12px;
  }
}
/* ------- end ------- */
/* Стили для .info-numbers */
.info-numbers__body {
  display: flex;
  gap: 32px;
}

.number__namber {
  margin: 0 0 12px 0;
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #00123f;
  line-height: normal;
}
.number__title {
  margin: 0 0 8px 0;
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #00123f;
  line-height: normal;
}
.number__text {
  margin: 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .info-numbers__body {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
  .info-numbers__body .hr-vertic {
    display: none;
  }
  .info-numbers__body .number {
    flex: 0 0 calc(50% - 16px);
  }
}
@media screen and (max-width: 576px) {
  .info-numbers__body {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .info-numbers__body .hr-vertic {
    display: block;
    width: 100%;
    height: 1px;
    max-width: 260px;
  }
  .info-numbers__body .number {
    width: 100%;
    max-width: 220px;
  }
  .number__namber {
    margin: 0 0 8px 0;
    font-size: 32px;
  }
  .number__title {
    margin: 0 0 4px 0;
    font-size: 18px;
  }
  .number__text {
    margin: 0;
  }
}
/* ------- end ------- */
/* Стили для .last-news */
.last-news {
  position: relative;
  overflow: hidden;
}
.last-news__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
}
.last-news__item {
  grid-row: span 2;
}
.last-news__item_big {
  grid-column: span 2;
  grid-row: span 3;
}

/* Стили для .news-plus */
.news-plus {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
}
.news-plus:hover .news-plus__img img {
  transform: scale(1.1);
}
.news-plus_mini .news-plus__body {
  padding: 24px;
}
.news-plus_mini .news-plus__title {
  font-size: 16px;
}
.news-plus_mini .news-plus__text {
  display: none;
}
.news-plus__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-plus__img img {
  transition: 0.5s;
}
.news-plus__img:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 18, 63, 0) 0%, rgb(0, 18, 63) 100%);
}
.news-plus__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.news-plus__info {
  pointer-events: auto;
}
.news-plus__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-plus__text {
  margin: 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .last-news__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .last-news__grid {
    gap: 8px;
  }
  .news-plus {
    border-radius: 12px;
  }
  .news-plus_mini .news-plus__body {
    padding: 16px;
  }
  .news-plus_mini .news-plus__title {
    font-size: 14px;
  }
  .news-plus__body {
    padding: 20px;
  }
  .news-plus__title {
    font-size: 18px;
    margin: 0;
    -webkit-line-clamp: 2;
  }
  .news-plus__text {
    display: none;
  }
}
/* ------- end ------- */
.video-plus {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
}
.video-plus:hover .video-plus__img img {
  transform: scale(1.1);
}
.video-plus__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-plus__img img {
  transition: 0.5s;
}
.video-plus__img:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 18, 63, 0) 0%, rgb(0, 18, 63) 100%);
}
.video-plus__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.video-plus__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  background: #cbaa76;
  transition: 0.3s;
}
.video-plus__play:before {
  font-size: 24px;
  color: #fff;
  margin-left: 5px;
}
.video-plus__play:hover {
  background: #b78e4e;
}
.video-plus__title {
  width: 100%;
  font-weight: 700;
  color: #fff;
  font-size: 20px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .video-plus {
    border-radius: 12px;
  }
  .video-plus__body {
    padding: 20px;
  }
  .video-plus__play {
    width: 50px;
    height: 50px;
  }
  .video-plus__play:before {
    font-size: 18px;
    margin-left: 3px;
  }
  .video-plus__title {
    font-size: 18px;
  }
}
/* ------- end ------- */
/* Стили для mission */
.mission__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mission__body .hr-vertic {
  height: 240px;
}
.mission__title {
  font-size: 24px;
  max-width: 180px;
  margin: 0;
}
.mission__list {
  display: flex;
  gap: 32px;
}

.mission-item__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #cbaa76;
}
.mission-item__icon:before {
  font-size: 28px;
  color: #fff;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .mission__body {
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
  .mission__body .hr-vertic {
    width: 100%;
    height: 1px;
  }
  .mission__title {
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .mission__list {
    flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 576px) {
  .mission__title {
    text-align: center;
    max-width: 100%;
  }
  .mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .mission-item__title {
    margin: 0;
    text-align: center;
  }
  .mission-item__text {
    text-align: center;
    margin: 0;
  }
}
/* ------- end ------- */
/* Стили для .project-home */
.project-home {
  overflow: hidden;
}

.project-home-slider .swiper {
  overflow: visible;
}

/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для .project-cart */
.project-cart {
  overflow: hidden;
  padding: 64px;
  position: relative;
  background: #f8f9fa;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 400px;
}
.project-cart__box {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 35%;
  left: 28%;
}
.project-cart__info {
  max-width: 380px;
  position: relative;
  z-index: 3;
}
.project-cart__title {
  font-size: 20px;
  font-weight: 700;
  color: #00123f;
}
.project-cart__btn {
  margin-top: 8px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .project-cart {
    padding: 0px;
    flex-direction: column;
  }
  .project-cart__box {
    position: relative;
    transform: translate(0%, 0%);
    top: 0%;
    left: 0%;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }
  .project-cart__box .box {
    position: absolute;
    transform: scale(1) translate(-50%, -50%);
    left: 60%;
    top: 50%;
  }
  .project-cart__info {
    max-width: 100%;
    padding: 48px;
  }
}
@media screen and (max-width: 576px) {
  .project-cart {
    border-radius: 32px;
  }
  .project-cart__box {
    height: 260px;
  }
  .project-cart__box .box {
    position: absolute;
    transform: scale(0.6) translate(-50%, -50%);
    left: 10%;
    top: -30%;
  }
  .project-cart__info {
    padding: 24px 20px;
  }
  .project-cart__title {
    font-size: 18px;
  }
}
/* ------- end ------- */
/* Стили для .contact-home */
.contact-home__body {
  display: flex;
  justify-content: space-between;
  gap: 72px;
}
.contact-home__form {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.contact-home__form .btn {
  margin-top: 4px;
}
.contact-home__title {
  margin-bottom: 16px;
}
.contact-home__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.contact-box__img {
  position: relative;
  padding-bottom: 70%;
  border-radius: 12px;
  overflow: hidden;
}
.contact-box__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #00123f;
}
.contact-box__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #00123f;
}
.contact-item:before {
  font-size: 16px;
  color: #cbaa76;
}
.contact-item_light {
  color: #fff;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .contact-home__body {
    gap: 40px;
  }
  .contact-home__form {
    flex: 0 0 320px;
    justify-content: start;
  }
  .contact-home__info {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .contact-home__body {
    flex-direction: column;
  }
  .contact-home__body .hr-vertic {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 576px) {
  .contact-home__form .btn {
    width: 100%;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.news-list__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .news-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-list__body {
    gap: 24;
  }
  .news-list__list {
    gap: 24px;
  }
}
@media screen and (max-width: 576px) {
  .news-list__list {
    gap: 32px;
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ------- end ------- */
/* Стили для .article-head */
.article-head {
  padding: 32px;
}
.article-head__body {
  position: relative;
  min-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.article-head__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article-head__img:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 18, 63, 0) 0%, rgb(0, 18, 63) 100%);
}
.article-head__ofer {
  position: relative;
  z-index: 3;
}
.article-head__title {
  font-family: "PTSerif", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  line-height: normal;
  margin: 10px 0;
}
.article-head__text {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: normal;
  margin: 0;
}
.article-head__mob {
  display: none;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .article-head {
    padding: 24px 20px;
  }
  .article-head__body {
    min-height: 320px;
    padding: 24px 0;
  }
  .article-head__title {
    font-size: 24px;
    margin: 0;
  }
  .article-head__text {
    font-size: 14px;
    display: none;
  }
  .article-head__mob {
    display: block;
    padding: 0 16px;
    margin: 20px 0 0 0;
    font-size: 16px;
  }
}
/* ------- end ------- */
/* Стили для .article-body */
.article-body__body {
  padding: 32px 0 72px 0;
  display: flex;
  gap: 40px;
}
.article-body__post {
  flex: 1 1 auto;
}
.article-body__post .share-block {
  margin-top: 24px;
}
.article-body__aside {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.mini-news {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-news__img {
  position: relative;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 16px;
  overflow: hidden;
}
.mini-news__title {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #00123f;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* показываем только 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.teg-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.teg-item {
  font-family: "PTSans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #cbaa76;
  line-height: normal;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .article-body__body {
    flex-direction: column;
  }
  .article-body__body .hr-vertic {
    width: 100%;
    height: 1px;
  }
  .article-body__post {
    width: 100%;
  }
  .article-body__aside {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .article-body__body {
    padding: 24px 0 48px 0;
    gap: 24px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
/* Стили для galerry */
.gallery-box {
  overflow: hidden;
  position: relative;
}

.galerry__grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
}
.galerry__item {
  padding-bottom: 70%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
}
.galerry__item_long {
  grid-row: span 2;
}
.galerry__item_big {
  grid-row: span 2;
  grid-column: span 2;
}
.galerry__item img {
  max-width: 100%;
  width: 100%;
}
.galerry__img {
  position: relative;
}

/* ------- адаптация ------- */
@media screen and (max-width: 768px) {
  .galerry__grid {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ------- end ------- */
/* Стили для -------- */
.news-dop {
  overflow: hidden;
}
.news-dop__slider {
  margin-top: 32px;
}

.news-slider .swiper {
  overflow: visible;
}
.news-slider .swiper-wrapper {
  margin-bottom: 32px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .news-dop {
    overflow: hidden;
  }
  .news-dop__slider {
    margin-top: 24px;
  }
  .news-slider .swiper-wrapper {
    margin-bottom: 24px;
  }
}
/* ------- end ------- */
/* Стили для .catalog-list */
.catalog-list__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catalog-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.catalog-list__title {
  margin: 0;
}
.catalog-list__result {
  margin: 0;
}
.catalog-list__main {
  display: flex;
  gap: 32px;
}
.catalog-list__aside {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.catalog-list__aside hr {
  flex: 0 0 1px;
}
.catalog-list__right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catalog-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.catalog-list__list .meesege-box {
  grid-column: span 3;
}
.check-list__sub {
  margin-left: 16px;
}

.aside-drop {
  padding: 16px;
  background: #cbaa76;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  justify-content: space-between;
  border-radius: 12px;
  font-weight: 700;
  display: none;
}
.aside-drop:before {
  font-size: 10px;
  color: #00123f;
  order: 2;
  color: #fff;
  transition: 0.3s;
}
.aside-drop.active {
  background: #00123f;
}
.aside-drop.active:before {
  transform: rotate(180deg);
}

/* ------- адаптация ------- */
@media screen and (max-width: 1300px) {
  .catalog-list__main {
    gap: 32px;
  }
  .catalog-list__aside {
    flex: 0 0 270px;
  }
  .catalog-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-list__list .meesege-box {
    grid-column: span 2;
  }
}
@media screen and (max-width: 992px) {
  .catalog-list__main {
    flex-direction: column;
    gap: 0;
  }
  .catalog-list__main hr {
    width: 100%;
    height: 1px;
  }
  .catalog-list__aside {
    width: 100%;
    flex: 1 1 auto;
  }
  .catalog-list__list {
    margin-top: 32px;
  }
  .aside-drop {
    margin-bottom: 20px;
    display: flex;
  }
  .aside-drop__body {
    overflow: hidden;
    max-height: 0px;
    transition: 0.3s;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .catalog-list__body {
    gap: 24px;
  }
  .catalog-list__aside {
    gap: 12px;
  }
  .catalog-list__aside hr {
    display: none;
  }
  .catalog-list__right {
    gap: 24px;
  }
  .catalog-list__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .catalog-list__list .meesege-box {
    grid-column: span 1;
  }
}
@media screen and (max-width: 576px) {
  .catalog-list__head {
    flex-direction: column;
    gap: 10px;
  }
  .catalog-list__list {
    margin-top: 24px;
  }
  .aside-drop {
    margin-bottom: 12px;
  }
  .aside-drop__body {
    margin-bottom: 12px;
  }
}
/* ------- end ------- */
/* Стили для .product-head */
.product-head {
  overflow: hidden;
  position: relative;
  padding: 32px 0;
}
.product-head__body {
  display: flex;
  gap: 32px;
}
.product-head__images {
  flex: 1 1 auto;
  min-width: 0px;
}
.product-head__info {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-head__top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-head__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-head__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-head__title {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #00123f;
  line-height: normal;
  margin: 12px 0;
}

.character__title {
  font-family: "PTSans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #00123f;
  line-height: normal;
  margin: 0;
  padding: 0 0 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5e7ec;
}
.character__item {
  margin: 6px 0;
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.character__item hr {
  flex: 1 1 auto;
  border-top: 1px dashed #e5e7ec;
  min-width: 32px;
}
.character__name {
  margin: 0;
  font-size: 14px;
  color: #00123f;
}
.character__value {
  margin: 0;
  font-size: 14px;
  text-align: right;
}
.character__open {
  display: none;
}

.gallery-big-slider {
  position: relative;
}
.gallery-big-slider__img {
  display: block;
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 24px;
}
.gallery-big-slider .button-prev,
.gallery-big-slider .button-next {
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.gallery-big-slider .button-prev {
  left: 16px;
}
.gallery-big-slider .button-next {
  right: 16px;
}

.gallery-mini-slider {
  margin-top: 12px;
}
.gallery-mini-slider__img {
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
  border-radius: 16px;
}
.gallery-mini-slider .swiper-slide .gallery-mini-slider__img {
  border: 2px solid transparent;
}
.gallery-mini-slider .swiper-slide-thumb-active .gallery-mini-slider__img {
  border: 2px solid #00123f;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .product-head__body {
    flex-direction: column;
  }
  .product-head__body > hr {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 576px) {
  .product-head {
    padding: 24px 0;
  }
  .product-head__body {
    gap: 24px;
  }
  .product-head__info {
    gap: 12px;
  }
  .product-head__top {
    gap: 6px;
  }
  .product-head__footer {
    flex-direction: column;
    gap: 12px;
  }
  .product-head__btns {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .product-head__btns .btn {
    width: 100%;
  }
  .product-head__title {
    font-size: 20px;
  }
  .product-head .price {
    gap: 12px;
  }
  .product-head .price__start {
    font-size: 28px;
  }
  .product-head .price__old {
    font-size: 20px;
  }
  .character__item {
    flex-wrap: wrap;
  }
  .character__body {
    transition: 0.3s;
    overflow: hidden;
    max-height: 100px;
    position: relative;
  }
  .character__body:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }
  .character__value {
    text-align: left;
  }
  .character__open {
    margin: 8px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .character__open:before {
    font-size: 8px;
    order: 2;
  }
  .character__open.active:before {
    transform: rotate(180deg);
  }
  .gallery-big-slider__img {
    border-radius: 20px;
  }
  .gallery-big-slider .button-prev,
  .gallery-big-slider .button-next {
    display: none;
  }
  .gallery-big-slider .button-prev {
    left: 12px;
  }
  .gallery-big-slider .button-next {
    right: 12px;
  }
  .gallery-mini-slider {
    margin-top: 8px;
  }
  .gallery-mini-slider__img {
    border-radius: 10px;
  }
}
/* ------- end ------- */
/* Стили для projects-list */
.projects-list {
  position: relative;
  overflow: hidden;
}
.projects-list__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.projects-list__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* ------- адаптация ------- */
@media screen and (max-width: 768px) {
  .projects-list__body {
    gap: 24px;
  }
  .projects-list__list {
    gap: 24px;
  }
}
@media screen and (max-width: 576px) {
  .projects-list__list {
    gap: 32px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
.contact-main {
  position: relative;
  overflow: hidden;
}
.contact-main__body {
  display: flex;
  gap: 48px;
  justify-content: space-between;
}
.contact-main__info {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-main__right {
  flex: 0 0 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .contact-main__right {
    flex: 0 0 320px;
  }
}
@media screen and (max-width: 992px) {
  .contact-main__body {
    flex-direction: column;
    gap: 32px;
  }
  .contact-main__body > hr {
    width: 100%;
    height: 1px;
    order: 2;
  }
  .contact-main__info {
    order: 3;
    gap: 24px;
  }
  .contact-main__info .contact-box {
    padding: 0;
  }
  .contact-main__right {
    order: 1;
  }
  .contact-main__form {
    order: -1;
  }
}
@media screen and (max-width: 576px) {
  .contact-main__body {
    gap: 24px;
  }
  .contact-main__info {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .contact-main__info .contact-box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-main__right {
    flex: 1 1 auto;
    display: flex;
    gap: 40px;
  }
  .contact-main__right .btn {
    width: 100%;
  }
  .contact-main__right .networks {
    justify-content: center;
  }
}
/* ------- end ------- */
/* Стили для .donat-block  */
.donat-block__body {
  margin-top: 24px;
  display: flex;
  gap: 24px;
}
.donat-block__left {
  flex: 0 0 35%;
}
.donat-block__right {
  flex: 1 1 auto;
}

.donat-box {
  background: #fff;
  padding: 32px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.donat-box__title {
  margin: 0 0 8px 0;
}
.donat-box__text {
  margin: 0;
  max-width: 350px;
}
.donat-box__inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.donat-box__inputs_two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .donat-block__body {
    flex-direction: column;
  }
  .donat-block__left {
    width: 100%;
  }
  .donat-block__right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .donat-box {
    padding: 24px;
    border-radius: 24px;
  }
  .donat-box__text {
    max-width: 100%;
  }
  .donat-box__inputs_two {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ------- end ------- */
/* Стили для -------- */
.contact-map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.contact-map__title {
  margin: 0;
}
.contact-map__body {
  margin-top: 24px;
  border-radius: 32px;
  overflow: hidden;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .contact-map__head {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .contact-map__title {
    margin: 0;
  }
  .contact-map__body {
    margin-top: 24px;
    border-radius: 32px;
    overflow: hidden;
  }
}
/* ------- end ------- */
/* Стили для .about-hea */
.about-head {
  position: relative;
}
.about-head__video {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 40%;
}
.about-head__body {
  padding: 32px 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-head__ofer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-head__title {
  font-size: 40px;
  color: #fff;
  margin: 0;
}
.about-head__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 700;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .about-head__video {
    padding-bottom: 70%;
  }
}
@media screen and (max-width: 576px) {
  .about-head__video {
    padding-bottom: 120%;
  }
  .about-head__title {
    font-size: 32px;
    color: #fff;
    margin: 0;
  }
  .about-head__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
  }
}
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */