@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 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: "Circe";
  src: url("../fonts/Circe-Light.woff2") format("woff2"), url("../fonts/Circe-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Bold.woff2") format("woff2"), url("../fonts/Circe-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-ExtraBold.woff2") format("woff2"), url("../fonts/Circe-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Общие стили и классы*/
.container-big {
  max-width: 1364px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container {
  max-width: 1264px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.container-mini {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

body {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 130%;
}
@media (max-width: 992px) {
  body {
    line-height: 134%;
  }
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
}

.img-desctop {
  display: block;
}

.img-mob {
  display: none;
}

@media screen and (max-width: 576px) {
  .img-desctop {
    display: none;
  }
  .img-mob {
    display: block;
  }
}
.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;
  appearance: none;
  background: none;
  box-shadow: none;
  box-sizing: none;
  display: block;
  transition: 0.3s;
}
.btn_start {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  line-height: 140%;
  padding: 12px 32px;
  background: #474747;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .btn_start {
    line-height: 134%;
  }
}
.btn_start:hover {
  background: #000;
}
.btn_start:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  transform: skewX(-45deg);
  z-index: 2;
  animation: btn-animation 3s ease-in-out infinite;
}
.btn_border {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #b36500;
  line-height: 140%;
  padding: 12px 32px;
  background: none;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  border: 2px solid #b36500;
}
@media (max-width: 992px) {
  .btn_border {
    line-height: 134%;
  }
}
.btn_border:hover {
  background: #b36500;
  color: #fff;
}
.btn_bold {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #474747;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px 32px;
  background: none;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  border: 1px solid #474747;
}
@media (max-width: 992px) {
  .btn_bold {
    line-height: 134%;
  }
}
.btn_bold:hover {
  background: #474747;
  color: #fff;
}
.btn_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  padding: 20px 32px;
  background: #474747;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  border: 1px solid #474747;
}
@media (max-width: 992px) {
  .btn_empty {
    line-height: 134%;
  }
}
.btn_empty:hover {
  background: #fff;
  color: #474747;
}
.btn_acent {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  line-height: 140%;
  padding: 12px 32px;
  background: #b36500;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .btn_acent {
    line-height: 134%;
  }
}
.btn_acent:hover {
  background: #000;
}
.btn_acent:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  transform: skewX(-45deg);
  z-index: 2;
  animation: btn-animation 3s ease-in-out infinite;
}
.btn_white {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #000;
  line-height: 140%;
  padding: 12px 32px;
  background: #fff;
  border-radius: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .btn_white {
    line-height: 134%;
  }
}
.btn_white:hover {
  background: #b36500;
}
.btn_big {
  padding: 20px 56px;
  font-size: 14px;
}

/* Кнопка в избранное */
.like-link {
  transition: 0.3s;
}
.like-link:before {
  font-size: 28px;
  color: #fff;
}
.like-link.active:before {
  color: #ff0000;
}
.like-link:hover {
  transform: scale(1.1);
}

@keyframes btn-animation {
  0% {
    left: -200%;
  }
  100% {
    left: 300%;
  }
}
/* Загрузка */
.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: 20px 0;
  width: 100%;
}
.input-custom .iti {
  width: 100%;
}
.input-custom label {
  display: block;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  line-height: 140%;
  margin: 0 0 7px 0;
}
@media (max-width: 992px) {
  .input-custom label {
    line-height: 134%;
  }
}
.input-custom input {
  appearance: none;
  padding: 12px 16px;
  width: 100%;
  display: block;
  background: #fafafa;
  border: 2px solid #e9e9e9;
  border-radius: 0px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
}
@media (max-width: 992px) {
  .input-custom input {
    line-height: 134%;
  }
}
.input-custom input:focus {
  border: 2px solid #b36500;
}
.input-custom input.error {
  border: 3px solid #e52d2e;
}
.input-custom textarea {
  padding: 12px 16px;
  width: 100%;
  display: block;
  background: #fafafa;
  border: 2px solid #e9e9e9;
  border-radius: 0px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  height: 100px;
}
@media (max-width: 992px) {
  .input-custom textarea {
    line-height: 134%;
  }
}
.input-custom textarea:focus {
  border: 2px solid #b36500;
}
.input-custom textarea.error {
  border: 2px solid #e52d2e;
}

.input-custom-new {
  width: 100%;
}
.input-custom-new .iti {
  width: 100%;
}
.input-custom-new input {
  appearance: none;
  padding: 20px 0px;
  width: 100%;
  display: block;
  background: none;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
  line-height: 140%;
}
@media (max-width: 992px) {
  .input-custom-new input {
    line-height: 134%;
  }
}
.input-custom-new input:focus {
  border-bottom: 1px solid #b36500;
}
.input-custom-new input.error {
  border-bottom: 2px solid #e52d2e;
}

/* -select */
.select-custom {
  margin: 20px 0;
}
.select-custom label {
  display: block;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 140%;
  margin: 0 0 7px 0;
}
@media (max-width: 992px) {
  .select-custom label {
    line-height: 134%;
  }
}
.select-custom__box {
  position: relative;
}
.select-custom__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
.select-custom select {
  cursor: pointer;
  appearance: none;
  padding: 12px 16px;
  width: 100%;
  display: block;
  background: #fafafa;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
}
@media (max-width: 992px) {
  .select-custom select {
    line-height: 134%;
  }
}
.select-custom select:focus {
  border: 1px solid #cfcfcf;
}

/* .select-custom {
   .choices__inner {
      cursor: pointer;
      @include fontMain(500, 140%, 14px, #000);
      padding: 5px 30px 5px 0px;
      border: none;
      background: none;
   }

   .choices[data-type*="select-one"]:after {
      background: url(../icon/arrow-d.svg) center no-repeat;
      border: none;
      width: 12px;
      height: 8px;
      margin: 0;
      right: 14px;
      margin-top: -3px;
      transition: 0.3s;
   }

   .choices__list--single {
      padding: 4px 40px 4px 4px;
   }
   .choices[data-type*="select-one"] .choices__inner {
      padding: 0;
   }

   .choices[data-type*="select-one"].is-open:after {
      border: none;
      transform: rotate(180deg);
      margin-top: -2px;
   }

   .select .choices__inner {
      background: #fff;
      border-radius: 20px;
      border: none;
   }

   .select .choices__list.choices__list--single {
      padding: 12px 12px 12px 12px;
   }

   .choices__item.choices__placeholder.choices__item--selectable {
      @include fontMain(500, 40px, 14px, #000);
      opacity: 1;
      // text-align: right;
   }

   .choices__list.choices__list--dropdown {
      margin-top: 10px;
      background: #ffffff;
      border: 1px solid #e9e9e9;
      box-shadow: 0px 4px 12px rgba(81, 81, 81, 0.25);
      border-radius: 6px;
      width: auto;
   }

   .choices__list--dropdown .choices__list {
      // width: auto;
      // max-width: 300px;
   }

   .choices__item.choices__item--choice.choices__placeholder.choices__item--selectable {
      text-align: left;
      @include fontMain(400, 140%, 16px, #000);
      color: #000;
      text-transform: none;
      width: 100%;
      white-space: nowrap;
   }
   .choices__list--dropdown .choices__item--selectable {
      padding: 14px 16px;
   }

   .choices__item.choices__item--choice.choices__placeholder.choices__item--selectable:after {
      display: none;
   }

   &.select-right {
      .choices__list.choices__list--dropdown {
         right: 0;
      }
   }
} */
/* -checkbox */
.input-checkbox {
  margin: 20px 0;
}
.input-checkbox input {
  display: none;
}
.input-checkbox label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
}
@media (max-width: 992px) {
  .input-checkbox label {
    line-height: 134%;
  }
}
.input-checkbox label:before {
  content: "";
  display: block;
  background: #f6f6f6;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0 12px 0 0;
}
.input-checkbox input:checked + label:before {
  border-color: #000;
  background: #000 url("../icon/check.svg") no-repeat center;
}

.input-radio {
  margin: 20px 0;
}
.input-radio input {
  display: none;
}
.input-radio label {
  cursor: pointer;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 140%;
  position: relative;
  padding: 3px 0 0 30px;
}
@media (max-width: 992px) {
  .input-radio label {
    line-height: 134%;
  }
}
.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);
}

/* ЕЛЕМЕНТЫ СЛАЙДЕРОВ */
.slider-slider {
  overflow: hidden;
}
/* -Пагинации */
.pagination-custom {
  margin: 0 30px;
}
.pagination-custom .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  opacity: 1;
  border: 2px solid #fff;
  background: none;
}
.pagination-custom .swiper-pagination-bullet-active {
  background: #fff;
}

/* -блок управления слайдера */
.swiper-control {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -кнопки слайдера */
.button-prev,
.button-next {
  cursor: pointer;
  background: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-prev:before,
.button-next:before {
  font-size: 12px;
  color: #000;
}
.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--------------------*/
.margin-block {
  padding: 120px 0;
}

.decor-line-top {
  position: relative;
}
.decor-line-top:before {
  content: "";
  background: #999;
  position: absolute;
  width: 1px;
  left: calc((100% - 1200px) / 2 + 250px);
  height: 100px;
  top: 0px;
  z-index: 2;
}

/* Скрол вверх */
body:has(.header.fixed) .scroll-up {
  opacity: 1;
}

.scroll-up {
  position: fixed;
  z-index: 7;
  left: 8px;
  bottom: 8px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
}
.scroll-up:before {
  font-size: 75px;
  color: #dbdbdb;
  transition: 0.3s;
}

/* Скрол в верху страницы */
.scroll-indicator-container {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: none;
}

.scroll-indicator {
  height: 100%;
  width: 0;
  background-color: #b36500;
  transition: width 0.5s;
}

/* Основные заголовки и текста */
.title-start {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 45px;
  color: #000;
  line-height: 100%;
}
@media (max-width: 992px) {
  .title-start {
    line-height: 134%;
  }
}
.title-start span {
  font-weight: 700;
}

.title-mini {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: #000;
  line-height: 100%;
}
@media (max-width: 992px) {
  .title-mini {
    line-height: 134%;
  }
}
.title-mini span {
  font-weight: 700;
}

.title-icon {
  margin: 24px 0;
  display: flex;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 30px;
  color: #000;
  line-height: normal;
}
@media (max-width: 992px) {
  .title-icon {
    line-height: 134%;
  }
}
.title-icon:before {
  font-size: 32px;
  color: #000;
  margin-right: 16px;
}

.text-start {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: 150%;
}
@media (max-width: 992px) {
  .text-start {
    line-height: 134%;
  }
}

.list-start li {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: normal;
  margin: 7px 0;
}
.list-start li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  display: inline-block;
  margin-right: 7px;
  transform: translate(0, -30%);
}
@media (max-width: 992px) {
  .list-start li {
    line-height: 134%;
  }
}
.list-start li span {
  font-weight: 700;
}

.lion-info-right {
  display: flex;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: normal;
  text-align: right;
  font-style: italic;
}
@media (max-width: 992px) {
  .lion-info-right {
    line-height: 134%;
  }
}
.lion-info-right:before {
  order: 2;
  font-size: 32px;
  color: #000;
  margin-left: 16px;
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 1004px;
  }
}
@media screen and (max-width: 992px) {
  .margin-block {
    padding: 90px 0;
  }
  .decor-line-top:before {
    height: 70px;
    left: calc((100% - 704px) / 2 + 100px);
  }
  .container {
    max-width: 704px;
  }
  .title-start {
    font-size: 35px;
  }
}
@media screen and (max-width: 576px) {
  .margin-block {
    padding: 70px 0;
  }
  .decor-line-top:before {
    height: 55px;
    left: 96px;
  }
  .indent-mob {
    padding: 0 24px;
  }
  .container,
  .container-mini,
  .container-big {
    padding: 0 16px;
  }
  .title-start {
    font-size: 25px;
  }
  .title-mini {
    font-size: 25px;
  }
  .input-custom input {
    padding: 8px 16px;
  }
  .text-start {
    font-size: 16px;
  }
  .title-icon {
    font-size: 20px;
  }
  .list-start li {
    margin: 4px 0;
    font-size: 16px;
  }
}
.popup-link {
  cursor: pointer;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -10;
  background: rgba(0, 0, 0, 0.5);
  max-height: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.popup.active {
  opacity: 1;
  visibility: visible;
  z-index: 15;
}
.popup__wraper {
  width: 100%;
  position: relative;
  margin: auto;
  padding: 30px 15px;
  max-width: 790px;
}
.popup__body {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 0px;
  transform: scale(0);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
.popup__body_nopading {
  padding: 0;
}
.popup.active .popup__body {
  transform: scale(1);
}
.popup__close {
  cursor: pointer;
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
}
.popup__close:before {
  font-size: 24px;
  color: #000;
}

.popup-right {
  overflow: hidden;
}
.popup-right .popup__wraper {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 0px;
  max-width: 470px;
  height: 100%;
}
.popup-right .popup__body {
  padding: 20px;
  min-height: 100%;
  max-height: 100%;
  overflow: auto;
  border-radius: 0px;
  transform: scale(1) translate(100%, 0);
}
.popup-right.active .popup-right__body {
  transform: scale(1) translate(0, 0%);
}

.popup-img img {
  width: 100%;
}

@media screen and (max-width: 576px) {
  .popup-right .popup__wraper {
    margin: 0;
    max-width: none;
  }
  .popup-right .popup__body {
    padding: 20px 16px;
  }
}
.like__namber:empty {
  display: none;
}

@media (max-width: 768px) {
  .hide-for-mob {
    display: none !important;
  }
}

.show-for-mob {
  display: none !important;
}
@media (max-width: 768px) {
  .show-for-mob {
    display: block !important;
  }
}

@media (min-width: 479px) {
  .wider {
    margin-right: -80px !important;
  }
}

.page {
  overflow-x: hidden;
}
.page:has(.img-rose) .container {
  max-width: 980px;
}
.page:has(.img-rose) .main-screen__body {
  padding-left: 7px;
  padding-right: 0;
}

.o-hidden {
  overflow: hidden !important;
}

.error-page {
  min-height: 100vh;
  height: 100%;
  padding-bottom: 100px;
  padding-top: 100px;
}
.error-page__body {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 992px) {
  .error-page__body {
    margin-top: 50px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.error-page__content {
  max-width: 390px;
}
@media (max-width: 992px) {
  .error-page__content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
}
.error-page svg {
  object-fit: contain;
}
@media (max-width: 992px) {
  .error-page svg {
    width: 50%;
    height: fit-content;
  }
}

/* Стили для header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 26px 0;
  z-index: 10;
  transition: 0.3s;
}
.header.fixed {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.13) 0 4px 16px;
}
.header.fixed .logo:before {
  color: #000;
}
.header.fixed .navigation .menu-open::after {
  border-top-color: #000;
}
.header.fixed .navigation > ul > li > a, .header.fixed .navigation > ul > li > span {
  color: #000;
}
.header.fixed .burger {
  background: #000;
}
.header .container-big {
  padding-right: 132px;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  margin-right: 32px;
}
@media (max-width: 992px) {
  .header__logo {
    transform: scale(0.8);
  }
}
.header__like {
  z-index: 5;
}
.header .burger {
  position: relative;
  z-index: 5;
}

.m-0 {
  margin: 0 !important;
}

.logo {
  display: block;
}
.logo:before {
  transition: 0.3s;
  font-size: 45px;
  color: #fff;
}

.like {
  padding: 10px 16px;
  cursor: pointer;
  position: relative;
}
.like__mess {
  position: absolute;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  line-height: 1.35;
  padding: 18px 20px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 150px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 992px) {
  .like__mess {
    line-height: 134%;
  }
}
.like__mess.active {
  opacity: 1;
  visibility: visible;
}
.like__mess::before { 
  content: "";
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.like__namber {
  display: flex;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #ff0505;
  line-height: normal;
}
@media (max-width: 992px) {
  .like__namber {
    line-height: 134%;
  }
}
.like__namber:before {
  font-size: 22px;
  color: #ff0505;
  margin-right: 8px;
}

.burger-body {
  flex: 1 1 auto;
}

.language-switcher {
  text-transform: uppercase;
}

.navigation {
  width: 100%;
  display: flex;
  justify-content: end;
}
.navigation .menu-item-has-children:has(.active) > a {
  color: #b36500 !important;
}
.navigation .menu-item-has-children:has(.active) > a::after {
  border-top-color: #b36500 !important;
}
.navigation > ul {
  display: flex;
  align-items: center;
}
.navigation > ul > li {
  position: relative;
}
.navigation > ul > li.active a {
  position: relative;
  color: #b36500 !important;
}
.navigation > ul > li.active a:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #b36500;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
}
.navigation > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}
.navigation > ul > li {
  padding: 10px;
}
.navigation > ul > li > a, .navigation > ul > li > span {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    line-height: 134%;
  }
}
.navigation > ul > li > a:hover, .navigation > ul > li > span:hover {
  color: #b36500 !important;
}
.navigation > ul > li > a:hover::after, .navigation > ul > li > span:hover::after {
  border-top: 4px solid #b36500 !important;
}
.navigation > ul > li > a:hover ul, .navigation > ul > li > span:hover ul {
  opacity: 1;
  visibility: visible;
}
.navigation .menu-open, .navigation .sub-menu .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
}
.navigation .menu-open::after, .navigation .sub-menu .sub-menu .menu-item-has-children > a::after {
  transition: 0.3s;
  margin-left: 6px;
  content: "";
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 4px solid #fff;
}
.navigation .sub-menu .menu-item-has-children > a::after {
  border-top: 4px solid #000;
}
.navigation > ul > li > ul > li > a:hover::after, .navigation > ul > li > ul > li.expanded > a::after {
  border-top: 4px solid #b36500 !important;
}
.navigation .sub-menu .menu-item-has-children.expanded > a {
  color: #b36500;
}
.navigation .sub-menu .menu-item-has-children.expanded > a::after {
  border-top: 4px solid #b36500 !important;
}
.navigation > ul > li > ul {
  margin-top: 16px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.navigation > ul > li > ul::before {
  content: "";
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.navigation > ul > li > ul:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 32px;
  background: transparent;
  z-index: -1;
  transform: translate(0, -50%);
}
.navigation > ul > li > ul li, .navigation > ul > li > ul a {
  width: 100%;
  display: inline-block;
  color: black;
}
.navigation > ul > li > ul li.active > a {
  color: #b36500 !important;
}
.navigation > ul > li > ul li:not(:last-child) {
  margin-bottom: 12px;
}
.navigation > ul > li > ul > li > a {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  line-height: normal;
  line-height: 1.35;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .navigation > ul > li > ul > li > a {
    line-height: 134%;
  }
}
.navigation > ul > li > ul > li > a:hover {
  color: #b36500;
}
.navigation > ul > li > ul > li > a.active {
  color: #b36500 !important;
}

.sub-menu .menu-item-has-children:has(li.active) > a {
  color: #b36500 !important;
}
.sub-menu .menu-item-has-children:has(li.active) > .sub-menu {
  max-height: fit-content !important;
  margin-top: 7px;
}
.sub-menu .menu-item-has-children:not(.expanded) .sub-menu {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  margin: 0;
}
.sub-menu .menu-item-has-children .sub-menu {
  margin-top: 7px;
}
@media (min-width: 992px) {
  .sub-menu .menu-item-has-children .sub-menu {
    padding-left: 10px;
  }
}
.sub-menu .menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .language-switcher.expanded ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.burger {
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: none;
}
.burger__body {
  position: relative;
  height: 21px;
  width: 28px;
}
.burger span {
  position: absolute;
  width: 100%;
  height: 3px;
  display: block;
  background: #fff;
  transition: 0.5s;
}
.burger span:nth-child(1) {
  transform: translate(-50%, 0%);
  top: 0%;
  left: 50%;
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%) scale(1);
}
.burger span:nth-child(3) {
  top: 100%;
  transform: translate(-50%, -100%);
  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 (max-width: 992px) {
  .header {
    padding: 0;
  }
  .header__logo {
    display: none;
  }
  .header .container-big {
    padding: 0;
  }
  .header__like {
    right: 0px;
  }
  .burger {
    display: flex;
  }
  .burger-body {
    width: 100%;
    padding: 70px 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    min-height: 100%;
    max-height: 100%;
    overflow: auto;
    z-index: 4;
    transform: translate(-100%, 0);
    transition: 0.3s;
    opacity: 0;
  }
  .burger-body__close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
  }
  .burger-body.active {
    transform: translate(0%, 0);
    opacity: 1;
  }
  .navigation {
    justify-content: center;
    width: 100%;
  }
  .navigation > ul {
    width: 100%;
    flex-direction: column;
  }
  .navigation > ul > li {
    width: 100%;
  }
  .navigation > ul > li.expanded .sub-menu, .navigation > ul > li:has(.active) .sub-menu {
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .navigation > ul > li .sub-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .navigation > ul > li .sub-menu {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li .sub-menu li {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navigation > ul > li .sub-menu li a {
    width: fit-content;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    justify-content: center;
    text-align: center;
    display: block;
    width: 100%;
    padding: 16px;
    font-family: "Circe", Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000;
    line-height: 200%;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .navigation > ul > li > a, .navigation > ul > li > span {
    line-height: 134%;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li > a:hover::after, .navigation > ul > li > span:hover::after {
    border-top: 8px solid #b36500 !important;
  }
}
@media screen and (max-width: 992px) {
  .navigation .menu-open::after {
    margin-left: 12px;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 8px solid #000;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .navigation .menu-open::after {
    margin-left: 8px;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li > ul {
    margin-top: 0px;
    align-items: center;
    padding: 0px 20px 18px 20px;
    border-bottom: 1px solid #999;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .navigation > ul > li > ul::before {
    display: none;
  }
  .navigation > ul > li > ul:after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li > ul li:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 992px) {
  .navigation > ul > li > ul > li a {
    font-size: 20px;
    text-align: center;
  }
}
/* ------- end ------- */
/* Стили для popup-like/like-card */
.popup-like {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popup-like__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 20px 0;
}
.popup-like__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  line-height: normal;
  margin-right: 24px;
}
@media (max-width: 992px) {
  .popup-like__title {
    line-height: 134%;
  }
}
.popup-like__close {
  cursor: pointer;
}
.popup-like__close:before {
  color: #000;
  font-size: 24px;
}
.popup-like__list {
  flex: 1 1 auto;
}
.popup-like__form {
  margin-top: 48px;
}
.popup-like__form .btn {
  width: 100%;
}

.btn.expand-content-btn span:last-child {
  display: none;
}
.btn.expand-content-btn.expanded span:first-child {
  display: none;
}
.btn.expand-content-btn.expanded span:last-child {
  display: inline-block;
}

.like-card {
  margin: 16px 0;
  padding: 8px;
  border: 1px solid rgba(150, 150, 150, 0.1);
  display: flex;
  align-items: center;
}
.like-card__close {
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
}
.like-card__close:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: #000;
}
.like-card__close:hover {
  border-color: #ff0000;
}
.like-card__close:hover:before {
  color: #ff0000;
}
.like-card__img {
  margin: 0 16px;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.like-card__name {
  flex: 1 1 auto;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  line-height: normal;
}
@media (max-width: 992px) {
  .like-card__name {
    line-height: 134%;
  }
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .popup-like__head {
    padding: 0 0 16px 0;
  }
  .popup-like__title {
    font-size: 18px;
    margin-right: 18px;
  }
  .popup-like__close:before {
    font-size: 18px;
  }
  .popup-like__form {
    margin-top: 32px;
  }
  .like-card {
    margin: 12px 0;
  }
  .like-card__img {
    margin: 0 12px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
  .like-card__name {
    font-size: 14px;
  }
}
/* ------- end ------- */
/* Стили для main-screen */
.main-screen {
  position: relative;
}
.main-screen__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-screen__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}
.main-screen__body {
  overflow: hidden;
  min-height: 100vh;
  max-width: 964px;
  padding: 132px 32px 100px 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.margin-block + .review-home.margin-block {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.review-home + .review-home.phones {
  padding-bottom: 90px !important;
}

.review-home.margin-block .swiper {
  overflow: unset !important;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .main-screen__body {
    max-width: 660px;
    padding: 132px 32px 100px 32px;
  }
}
@media screen and (max-width: 992px) and (max-width: 1200px) {
  .main-screen__body {
    padding: 82px 32px 50px 32px;
  }
}
@media screen and (max-width: 576px) {
  .main-screen__body {
    max-width: 320px;
    padding: 82px 16px 50px 16px;
  }
}
/* ------- end ------- */
.container:has(.emotions__head.line) {
  padding-top: 26px;
}
@media (max-width: 992px) {
  .container:has(.emotions__head.line) {
    padding-top: 46px;
  }
}

/* Стили для ofer */
.ofer {
  width: 100%;
  position: relative;
}
@media (min-width: 479px) {
  .ofer:after, .ofer:before {
    content: "";
    background: #fff;
    position: absolute;
    width: 1px;
    left: 100px;
  }
}
.ofer:before {
  height: 250px;
  top: -32px;
  transform: translate(0%, -100%);
}
.ofer:after {
  height: 64px;
  bottom: 0px;
  transform: translate(0%, 100%);
}
.ofer__main {
  max-width: 660px;
}
.ofer__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 70px;
  color: #fff;
  line-height: 100%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .ofer__title {
    line-height: 134%;
  }
}
.ofer__head {
  margin-bottom: 24px;
}
.ofer__headline {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 70px;
  color: #fff;
  line-height: 100%;
}
@media (max-width: 992px) {
  .ofer__headline {
    line-height: 134%;
  }
}
.ofer__ul li {
  margin: 6px 0;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  line-height: normal;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .ofer__ul li {
    line-height: 134%;
  }
}
.ofer__ul li:before {
  content: "";
  min-width: 15px;
  min-height: 15px;
  max-width: 15px;
  max-height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin-right: 16px;
  margin-top: 5px;
}
.ofer__text {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  line-height: normal;
}
@media (max-width: 992px) {
  .ofer__text {
    line-height: 134%;
  }
}
.ofer__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ofer__icon {
  padding: 64px;
  display: block;
}
.ofer__icon:before {
  font-size: 75px;
  color: #fff;
}
.show-for-mob {
  display: none !important;
}
@media (max-width: 992px) {
  .show-for-mob {
    display: block !important;
  }
}

.connection-block__head {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  margin-left: -10px;
}
.connection-block_title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  margin-left: 8px;
}
@media (max-width: 992px) {
  .connection-block_title {
    line-height: 134%;
  }
}
.connection-block__networks {
  margin-bottom: 18px;
}
.connection-block__tel {
  display: block;
  margin-bottom: 8px;
}
.connection-block__links {
  display: flex;
  align-items: center;
}
.connection-block__links a {
  display: block;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .connection-block__links a {
    line-height: 134%;
  }
}
.connection-block__links a:not(:last-child) {
  margin-right: 3px;
}
.connection-block__links a:not(:last-child)::after {
  content: "|";
  margin-left: 3px;
}
.connection-block__links a:hover {
  color: #b36500;
}

.africa-map {
  position: relative;
  display: inline-block;
}
.africa-map:before {
  font-size: 45px;
  color: #fff;
}
.africa-map span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff0000;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.networks {
  display: flex;
  align-items: center;
}
.networks__item:before {
  font-size: 26px;
  color: #fff;
  transition: 0.3s;
}
.networks__item:hover:before {
  color: #b36500;
}
.networks__item:not(:last-child) {
  margin-right: 20px;
}

.tel {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: normal;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .tel {
    line-height: 134%;
  }
}
.tel:hover {
  color: #b36500;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .ofer__row {
    align-items: start;
  }
  .ofer__dop {
    padding-top: 64px;
  }
}
@media screen and (max-width: 992px) {
  .ofer__title {
    font-size: 60px;
  }
  .ofer__headline {
    font-size: 60px;
  }
}
@media screen and (max-width: 576px) {
  .ofer:after, .ofer:before {
    left: 0px;
  }
  .ofer:before {
    display: none;
  }
  .ofer:after {
    height: 300px;
    bottom: 120px;
    transform: translate(0%, 100%);
  }
  .ofer__title {
    font-size: 40px;
  }
  .ofer__headline {
    font-size: 40px;
  }
  .ofer__ul li {
    margin: 3px 0;
    font-size: 16px;
  }
  .ofer__ul li:before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    margin-right: 12px;
  }
  .ofer__text {
    font-size: 16px;
  }
  .ofer__icon {
    display: none;
  }
  .ofer__dop {
    padding: 32px 0 0 32px;
  }
}
/* ------- end ------- */
/* Стили для .text-block */
.text-block {
  overflow: hidden;
  padding: 120px 0;
}
.text-block__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.text-block__body_center {
  align-items: center;
}
.text-block__left {
  flex: 1 1 auto;
  padding-left: 100px;
  position: relative;
}
.text-block__left:after, .text-block__left:before {
  content: "";
  background: #999;
  position: absolute;
  width: 1px;
  left: 250px;
  z-index: -1;
}
.text-block__left:before {
  height: 180px;
  top: 0px;
  transform: translate(0%, -100%);
}
.text-block__title {
  margin: 32px 0;
}
.text-block__right {
  flex: 0 0 44%;
  margin-left: 56px;
}
.text-block__text {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: normal;
}
@media (max-width: 992px) {
  .text-block__text {
    line-height: 134%;
  }
}
.text-block__text p:not(:last-child) {
  margin-bottom: 24px;
}
.text-block__img img {
  max-width: 100%;
}
.text-block__open {
  margin-top: 90px;
  padding: 0 100px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
  .text-block__body {
    align-items: center;
  }
  .text-block__left {
    padding-left: 0px;
    position: relative;
  }
  .text-block__left:after, .text-block__left:before {
    left: 100px;
  }
  .text-block__desc {
    margin-top: 24px;
  }
  .text-block__open {
    padding: 0px;
  }
}
@media screen and (max-width: 992px) {
  .text-block {
    padding: 90px 0;
  }
  .text-block__body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .text-block__left {
    padding: 0 56px;
  }
  .text-block__left:after, .text-block__left:before {
    left: 132px;
  }
  .text-block__left:after {
    display: none;
  }
  .text-block__right {
    width: 100%;
    margin: 48px 0 0 0;
  }
  .text-block__img img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .text-block {
    padding: 50px 0;
  }
  .text-block__left {
    padding: 0px;
    padding: 0 32px;
  }
  .text-block__left:after, .text-block__left:before {
    left: calc(50% - 144px);
  }
  .text-block__right {
    width: 100%;
    margin-top: 32px;
  }
  .text-block__text {
    font-size: 18px;
  }
  .text-block__desc {
    position: relative;
    left: 10%;
    max-width: 324px;
    padding: 0 32px;
    font-size: 10px;
  }
  .text-block__open {
    margin-top: 32px;
  }
}
/* ------- end ------- */
/* Стили для connection */
.connection {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 5;
}
.connection__btn {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: pulse 2s infinite;
}
.connection__btn.active {
  animation: none;
}
.connection__btn.active .connection__open {
  transform: scale(0);
}
.connection__btn.active .connection__close {
  transform: scale(1);
}
.connection__open {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b36500;
  transition: 0.3s;
}
.connection__open:before {
  font-size: 24px;
  color: #fff;
}
.connection__close {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transform: scale(0);
  transition: 0.3s;
}
.connection__close:before {
  font-size: 16px;
  color: #000;
}
.connection__body {
  position: absolute;
  bottom: 120%;
  right: 0;
  background: #fff;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  transition: 0.3s;
  width: 300px;
}
.connection__body.active {
  opacity: 1;
  visibility: visible;
}
.connection__title {
  text-align: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  line-height: normal;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .connection__title {
    line-height: 134%;
  }
}
.connection__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.connection__list .connection-item {
  margin-bottom: 16px;
}

.connection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #000;
  line-height: normal;
  text-align: center;
}
.connection-item:before {
  font-size: 62px;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .connection-item {
    line-height: 134%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}
/* ------- end ------- */
/* Стили для .head-block */
.head-block {
  margin: 64px auto;
  max-width: 700px;
}
.head-block__top {
  border-left: 1px solid #999;
  padding-left: 48px;
  padding-top: 16px;
}
.head-block__lion {
  max-width: 430px;
  display: flex;
  align-items: center;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000;
  line-height: normal;
  font-style: italic;
}
@media (max-width: 992px) {
  .head-block__lion {
    line-height: 134%;
  }
}
.head-block__lion:before {
  font-size: 32px;
  color: #000;
  margin-right: 12px;
}
.head-block__title {
  margin: 40px 0;
}
.head-block__text {
  padding-left: 48px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #000;
  line-height: normal;
}
@media (max-width: 992px) {
  .head-block__text {
    line-height: 134%;
  }
}
.head-block__text p:not(:last-child) {
  margin-bottom: 24px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .head-block {
    margin: 48px auto;
  }
  .head-block__title {
    margin: 48px 0 32px 0;
  }
  .head-block__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .head-block {
    padding: 0 24px;
  }
  .head-block__top {
    border: none;
    padding: 0;
  }
  .head-block__lion {
    max-width: 280px;
    font-size: 10px;
  }
  .head-block__title {
    margin: 48px 0 24px 0;
  }
  .head-block__text {
    padding-left: 48px;
    font-size: 16px;
  }
}
/* ------- end ------- */
/* Стили для .photo-list  */
.photo-list {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}
.photo-list__item {
  padding: 16px;
  flex: 0 0 25%;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .photo-list {
    margin: -12px;
  }
  .photo-list__item {
    padding: 12px;
    flex: 0 0 33.3333%;
  }
}
@media screen and (max-width: 576px) {
  .photo-list {
    margin: -8px;
  }
  .photo-list__item {
    padding: 8px;
    flex: 0 0 50%;
  }
}
/* ------- end ------- */
/* Стили для .questions */
.questions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.questions__item {
  flex: 0 0 48%;
  margin-top: -1px;
}

.question {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.question__btn {
  cursor: pointer;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  line-height: normal;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .question__btn {
    line-height: 134%;
  }
}
.question__btn span {
  margin-right: 16px;
}
.question__btn:before {
  order: 2;
  transform: rotate(45deg);
  font-size: 20px;
  color: #000;
  transition: 0.3s;
  opacity: 0.7;
}
.question__btn.active:before {
  transform: rotate(90deg);
}
.question__content {
  overflow: hidden;
  max-height: 0px;
  transition: 0.3s;
}
.question__text {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 150%;
  padding-bottom: 32px;
}
@media (max-width: 992px) {
  .question__text {
    line-height: 134%;
  }
}
.question__text p:not(:last-child) {
  margin-bottom: 24px;
}
.question__text a {
  color: #b36500;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
  .questions__item {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 576px) {
  .question__btn {
    font-size: 18px;
    padding: 16px 0;
  }
  .question__text {
    font-size: 14px;
    padding-bottom: 24px;
  }
  .question__text p:not(:last-child) {
    margin-bottom: 14px;
  }
}
/* ------- end ------- */
/* Стили для .head-img */
.head-img {
  padding: 0 0 64px 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.head-img__img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.head-img__img_bootom {
  top: auto;
  bottom: 0;
  transform: translate(0, 0%);
}
.head-img__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.head-img__info {
  max-width: 66%;
  margin: 0 0 0 auto;
  padding: 24px 32px 0 0;
  position: relative;
}
.head-img__info:before {
  content: "";
  width: 1px;
  height: 180px;
  background: #999;
  position: absolute;
  top: 0;
  right: 0;
}
.head-img__lion {
  margin: 0 0 0 auto;
  margin-bottom: 32px;
  max-width: 500px;
}
.head-img__title {
  text-align: right;
  margin-bottom: 32px;
}
.head-img__text {
  text-align: right;
}

.compas-head-img {
  transform: translate(0, 50%);
}
@media (min-width: 992px) {
  .compas-head-img {
    left: -60px !important;
  }
}
@media (max-width: 992px) {
  .compas-head-img {
    left: -84px;
  }
}
@media (max-width: 768px) {
  .compas-head-img {
    left: 0;
  }
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
  .head-img {
    margin: 0 -16px;
    padding: 0 40px 48px 40px;
  }
  .head-img__info {
    min-width: 230px;
    padding: 24px 16px 0 0;
  }
  .head-img__info:before {
    height: 100px;
  }
  .head-img__text p {
    font-size: 12px;
  }
  .compas-head-img {
    max-width: 170px;
    transform: translate(-20%, 30%);
  }
}
/* ------- end ------- */
/* Стили для .text-title */
.text-title__body {
  border-top: 1px solid #999;
  margin-bottom: 48px;
}
.text-title__title {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.text-title-hotel {
  padding-top: 64px;
}

/* ------- end ------- */
/* Стили для .not-info  */
.not-info {
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not-info__img {
  width: 100%;
}
.not-info__img img {
  width: 100%;
}
.not-info__title {
  text-align: center;
  max-width: 370px;
  margin-top: 32px;
}
.not-info__btn {
  display: inline-block;
  margin-top: 24px;
}

.change-on-hover > *:first-child,
.change-on-hover > *:last-child {
  transition: all 0.2s ease;
}
.change-on-hover > *:last-child {
  opacity: 0;
}
.change-on-hover:hover > *:first-child {
  opacity: 0;
}
.change-on-hover:hover > *:last-child {
  opacity: 1;
}

/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */