@charset "UTF-8";
/*
Ця функція, яку названо customClamp, призначена для обмеження значень у заданому діапазоні, пропорційно розміру екрану. Давайте розглянемо її структуру та функціональність:

Аргументи функції:

$maxValue: Це максимальне значення, від якого ми хочемо обмежити.
$minValue: Це мінімальне значення, до якого ми хочемо обмежити.
$maxScreen: Розмір екрану, до якого ми хочемо прив'язати максимальне значення.
$minScreen: Розмір екрану, до якого ми хочемо прив'язати мінімальне значення.
Результат функції:

Функція повертає значення, обмежене у заданому діапазоні, пропорційно розміру екрану.
Опис алгоритму функції:

Використовуючи clamp, функція обмежує значення у заданому діапазоні.
Вираз calc(...) обчислює пропорційне значення відносно розміру екрану.

Формула використовує лінійну інтерполяцію між $minValue і $maxValue в залежності від того,
як відноситься поточний розмір екрану (100vw) до $minScreen і $maxScreen.

Вираз clamp(...) забезпечує, що обчислений результат не виходить за межі вказаного діапазону.

Ця функція корисна для створення адаптивних дизайнів, де ви хочете, щоб певні значення (наприклад, розмір шрифту або відступи) змінювалися пропорційно розміру екрану,
але залишалися у межах певного діапазону для забезпечення візуальної гармонії.

Використання міксина для властивості font-size
h1 {
  font-size: customClamp(36, 24, 1200, 320);
}

p {
  font-size: customClamp(18, 14, 1200, 320);
}


У цьому прикладі customClamp використовується для налаштування розміру шрифту (font-size) для заголовків (h1) та абзаців (p).
Параметри міксина передають максимальне та мінімальне значення шрифту, а також максимальні та мінімальні значення ширини екрану, на які потрібно реагувати.
Це дозволяє автоматично адаптувати розмір шрифту в залежності від ширини екрану, забезпечуючи більш гнучкий та адаптивний дизайн.
 */
/*
Відступ як у контейнера для елементів, які поза ним
*/
@font-face {
  font-family: "Playfair";
  src: url("../fonts/Playfair.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Playfair-Italic";
  src: url("../fonts/Playfair-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  transition: all 0.4s ease;
}
*::after {
  transition: all 0.4s ease;
}
*::before {
  transition: all 0.4s ease;
}
html, body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}
a {
  text-decoration: none;
}
button {
  font-weight: 500;
}
.btn-one {
  padding: 15px 40px;
  border-radius: 0;
  border: 1px solid #fff;
  text-transform: uppercase;
  background: none;
  color: #fff;
  cursor: pointer;
}
.btn-one:hover {
  background: #fff;
  color: #000;
  animation: pulse 1s infinite;
}
h1, h2 {
  font-family: "Playfair", sans-serif;
  font-size: clamp(48px, calc(48px + (96 - 48) * ((100vw - 320px) / (1310 - 320))), 96px);
  font-weight: 401;
}
h1 span, h2 span {
  font-family: "Playfair-Italic", sans-serif;
  font-size: inherit !important;
  font-weight: 401;
}
.mini-title {
  font-size: clamp(16px, calc(16px + (22 - 16) * ((100vw - 320px) / (1310 - 320))), 22px);
}
.description {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 320px) / (1310 - 320))), 18px);
}
input, textarea {
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
}
.wpcf7 .wpcf7-response-output {
  display: none !important;
}
.wpcf7-spinner {
  display: none !important;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse-play {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 1510px) {
  section .container {
    max-width: 1310px !important;
  }
}
@media (max-width: 1510px) and (max-width: 1390px) {
  section .container {
    max-width: 92% !important;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-infobar, .fancybox-toolbar, .fancybox-caption, .fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-infobar .fancybox-infobar, .fancybox-show-toolbar .fancybox-toolbar, .fancybox-show-caption .fancybox-caption, .fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--previous, .fancybox-slide--current, .fancybox-slide--next {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}
.fancybox-slide--image::before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-swipe .fancybox-content, .fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox-container [data-selectable="true"] {
  cursor: text;
}
.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--video .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-video, .fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button, .fancybox-button:visited, .fancybox-button:link {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--play svg:nth-child(2), .fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}
.fancybox-button--pause svg:nth-child(1), .fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}
/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}
/* Styling for Small-Screen Devices */
@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:visited, .fancybox-share__button:link {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}
/* Styling for Small-Screen Devices */
@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  background-color: transparent;
}
.header .container {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media (max-width: 1390px) {
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
  }
}
.header .container .burger-btn {
  display: none;
}
@media (max-width: 1390px) {
  .header .container .burger-btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    z-index: 1000;
  }
  body.error-page .header .container .burger-btn {
    border: 2px solid #160b00;
  }
  .header .container .burger-btn span {
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    left: calc((40px - 18px) / 2);
    border-radius: 2px;
  }
  body.error-page .header .container .burger-btn span {
    background: #160b00;
  }
  .header .container .burger-btn span:nth-child(1) {
    top: 10px;
  }
  .header .container .burger-btn span:nth-child(2) {
    top: 18px;
  }
  .header .container .burger-btn span:nth-child(3) {
    top: 26px;
  }
  .header .container .burger-btn.open {
    background: #000;
    border-color: #fff;
  }
  .header .container .burger-btn.open span {
    background: #fff;
  }
  body.error-page .header .container .burger-btn.open span {
    background: #fff;
  }
  .header .container .burger-btn.open span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  .header .container .burger-btn.open span:nth-child(2) {
    opacity: 0;
  }
  .header .container .burger-btn.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }
}
.header .menu-overlay {
  display: none;
}
@media (max-width: 1390px) {
  .header .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    display: flex;
  }
  .header .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .header .menu-overlay .mobile-menu {
    position: relative;
    width: 300px;
    margin-left: 30px;
    margin-top: 10px;
  }
  .header .menu-overlay .mobile-menu .mobile-title {
    font-size: 48px;
    font-family: "Playfair", sans-serif;
    font-weight: 401;
    visibility: hidden;
  }
  .header .menu-overlay .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
  }
  .header .menu-overlay .mobile-menu ul li {
    margin: 20px 0;
  }
  .header .menu-overlay .mobile-menu ul li a {
    font-size: clamp(18px, calc(18px + (18 - 18) * ((100vw - 320px) / (1310 - 320))), 18px);
    font-weight: 600;
    color: #160b00;
    text-decoration: none;
  }
  .header .menu-overlay .mobile-menu ul li a:hover {
    color: #555;
  }
  .header .menu-overlay .mobile-menu .mobile-lang-switch {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 95px;
    padding: 10px 0;
  }
  .header .menu-overlay .mobile-menu .mobile-lang-switch a {
    background: transparent;
    border-radius: 22px;
    border: 1px solid #160b00;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: visible;
    font-weight: 600;
    text-align: center;
    color: #160b00;
    top: 0;
    left: 0;
    line-height: 40px;
  }
  .header .menu-overlay .mobile-menu .mobile-lang-switch .lang-switch__current {
    color: #fff;
    background: #160b00;
  }
  .header .menu-overlay .mobile-menu .mobile-lang-switch .lang-switch__other {
    border-color: rgba(22, 11, 0, 0.2);
    color: #160b00;
    background: #fff;
  }
  .header .menu-overlay .mobile-menu .mobile-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #160b00;
    border-radius: 50%;
    margin: 20px 0;
  }
  .header .menu-overlay .mobile-menu .mobile-whatsapp-button img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: invert(1);
  }
}
.header .menu-title {
  display: none;
}
.header .header-menu-one {
  grid-column: 1;
  justify-self: start;
}
@media (max-width: 1390px) {
  .header .header-menu-one {
    display: none;
  }
}
.header .header-menu-one ul {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-menu-one ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 0;
  overflow: hidden;
}
body.error-page .header .header-menu-one ul li a {
  color: #160b00;
}
.header .header-menu-one ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  width: 0;
}
body.error-page .header .header-menu-one ul li a::after {
  background-color: #160b00;
}
.header .header-menu-one ul li a:hover::after {
  width: 100%;
}
.header .logo {
  grid-column: 2;
  justify-self: center;
}
.header .logo img {
  display: block;
  width: 150px;
  height: 50px;
}
body.error-page .header .logo img {
  filter: invert(1);
}
@media (max-width: 990px) {
  .header .logo img {
    max-height: 90px;
  }
}
.header .header-menu-two {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
}
@media (max-width: 1390px) {
  .header .header-menu-two {
    display: none;
  }
}
.header .header-menu-two ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-menu-two ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  overflow: hidden;
  font-weight: 600;
}
body.error-page .header .header-menu-two ul li a {
  color: #160b00;
}
.header .header-menu-two ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  width: 0;
}
body.error-page .header .header-menu-two ul li a::after {
  background-color: #160b00;
}
.header .header-menu-two ul li a:hover::after {
  width: 100%;
}
.header .header-menu-two .lang-switch {
  margin-left: 20px;
  width: 40px;
  height: 40px;
  position: relative;
  overflow: visible;
  font-weight: 600;
}
body.error-page .header .header-menu-two .lang-switch {
  filter: invert(1);
}
.header .header-menu-two .lang-switch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
}
.header .header-menu-two .lang-switch:hover::before {
  height: 80px;
  border-radius: 20px;
  border: 1px solid white;
  background: #1b0e00;
}
body.error-page .header .header-menu-two .lang-switch:hover::before {
  background: none;
}
.header .header-menu-two .lang-switch__current {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.header .header-menu-two .lang-switch__other {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
}
.header .header-menu-two .lang-switch:hover .lang-switch__current {
  top: 0;
  opacity: 1;
}
.header .header-menu-two .lang-switch:hover .lang-switch__other {
  top: 40px;
  opacity: 1;
}
.header .header-menu-two .whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-left: 20px;
  border: 1px solid white;
  border-radius: 50%;
}
body.error-page .header .header-menu-two .whatsapp-button {
  filter: invert(1);
}
.header .header-menu-two .whatsapp-button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.header .header-menu-two .whatsapp-button:hover {
  background-color: #1b0e00;
}
body.error-page .header .header-menu-two .whatsapp-button:hover {
  border: 1px solid #1b0e00;
  filter: invert(0);
}
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .banner {
    min-height: 800px;
  }
}
.banner img, .banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 710px) {
  .banner img, .banner video {
    object-position: calc(100% + 240px) center;
  }
}
.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1420px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.banner .banner-tools {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  max-width: 870px;
}
@media (max-width: 1050px) {
  .banner .banner-tools .banner-title-br {
    display: none;
  }
}
.banner .banner-tools h1 {
  font-size: clamp(44px, calc(44px + (90 - 44) * ((100vw - 320px) / (1310 - 320))), 90px);
  color: white;
}
.banner .banner-tools h1 span {
  color: white;
}
.banner .banner-tools span {
  font-size: clamp(18px, calc(18px + (22 - 18) * ((100vw - 320px) / (1310 - 320))), 22px);
  line-height: 30px;
  color: rgba(255, 255, 255, 0.75);
}
.banner .banner-tools button {
  align-self: flex-start;
}
@media (max-width: 1390px) {
  .banner .banner-tools button {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
  }
}
@media (max-width: 450px) {
  .banner .banner-tools button {
    width: 100%;
  }
}
.about-us {
  padding: 70px 0;
}
.about-us .container {
  max-width: 1420px;
  margin: 0 auto;
}
.about-us .about-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .about-us .about-wrapper {
    flex-direction: column;
  }
}
.about-us .about-content {
  width: 50%;
  padding-right: 30px;
  box-sizing: border-box;
  align-self: flex-start;
}
@media (max-width: 1050px) {
  .about-us .about-content {
    width: 100%;
    padding-right: 0px;
  }
}
.about-us .about-model-wrapper {
  width: 50%;
  position: relative;
}
@media (max-width: 1050px) {
  .about-us .about-model-wrapper {
    margin-top: 50px;
    width: 100%;
  }
}
.about-us .about-model {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1050px) {
  .about-us .about-model {
    width: 100%;
  }
}
.about-us .play-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) scale(1);
  cursor: pointer;
}
@media (max-width: 1050px) {
  .about-us .play-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    cursor: pointer;
  }
}
.about-us .play-icon:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 1510px) {
  .about-us .text {
    padding-right: 50px;
  }
}
@media (max-width: 1050px) {
  .about-us .text {
    padding-right: 0;
  }
}
.about-us .text p.mini-title {
  line-height: 1.4;
  margin: 20px 0;
  color: #160b00;
}
.about-us .text p.description {
  line-height: 1.5;
  margin: 10px 0;
  color: #160b00;
}
.about-ceo {
  padding: 70px 0;
}
@media (max-width: 1050px) {
  .about-ceo {
    padding: 0;
  }
}
.about-ceo .container {
  max-width: 1420px;
  margin: 0 auto;
}
.about-ceo .about-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1050px) {
  .about-ceo .about-wrapper {
    flex-direction: column-reverse;
  }
}
.about-ceo .about-model-ceo {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1050px) {
  .about-ceo .about-model-ceo {
    margin-top: 20px;
    width: 50%;
    align-self: center;
  }
}
@media (max-width: 550px) {
  .about-ceo .about-model-ceo {
    width: 100%;
  }
}
.about-ceo .about-content-ceo {
  width: 990px;
  margin-left: auto;
}
@media (max-width: 1510px) {
  .about-ceo .about-content-ceo {
    margin-left: 50px;
  }
}
@media (max-width: 1050px) {
  .about-ceo .about-content-ceo {
    margin-left: 0;
    width: 100%;
  }
}
.about-ceo .mini-title {
  line-height: 1.4;
  margin: 20px 0;
  font-weight: 500;
  color: #160b00;
}
.about-ceo .description {
  line-height: 1.5;
  margin: 10px 0;
  color: #160b00;
}
.about-ceo .ceo-title {
  font-family: "Playfair", sans-serif;
  font-size: clamp(24px, calc(24px + (32 - 24) * ((100vw - 320px) / (1310 - 320))), 32px);
  color: #160b00;
  margin-top: 10px;
}
.work {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: #160b00;
  color: #fff;
  margin-top: 60px;
  min-height: 890px;
}
@media (max-width: 1390px) {
  .work {
    flex-direction: column;
    min-height: auto;
  }
}
.work .work-content {
  flex: 1;
  padding: 0 50px 0 0;
  padding-left: calc((100% - 1420px) / 2);
}
@media (max-width: 1510px) {
  .work .work-content {
    margin-left: calc((100% - 1310px) / 2);
    padding-left: calc((100% - 1310px) / 2);
    padding-top: 30px;
  }
}
@media (max-width: 1390px) {
  .work .work-content {
    margin-left: calc((100% - 92%) / 2);
    width: 92%;
  }
}
.work .work-content .work-how h1 {
  padding: 25px 0;
  font-size: clamp(48px, calc(48px + (66 - 48) * ((100vw - 320px) / (1310 - 320))), 66px) !important;
}
@media (max-width: 1390px) {
  .work .work-content .work-how h1 {
    padding: 15px 0 25px;
  }
}
@media (max-width: 1390px) {
  .work .work-list {
    margin: 20px 0 50px;
  }
}
.work .work-list .accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backface-visibility: hidden;
  transform: translateZ(0);
}
.work .work-list .accordion-item input {
  display: none;
}
.work .work-list .accordion-item label {
  display: block;
  font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 320px) / (1310 - 320))), 24px);
  cursor: pointer;
  outline: none;
  padding: 30px 25px 30px 0;
  position: relative;
  word-break: break-word;
}
@media (max-width: 1390px) {
  .work .work-list .accordion-item label {
    display: flex;
    align-items: flex-start;
  }
}
.work .work-list .accordion-item label span {
  font-size: inherit;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.work .work-list .accordion-item label::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.work .work-list .accordion-item input:checked + label {
  color: #fff;
}
.work .work-list .accordion-item input:checked + label span {
  color: #fff;
}
.work .work-list .accordion-item input:checked + label::after {
  transform: translateY(-50%) rotate(225deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.work .work-list .accordion-item .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: max-height, opacity;
}
.work .work-list .accordion-item .accordion-content p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1390px) {
  .work .work-list .accordion-item .accordion-content p {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
  }
}
.work .work-list .accordion-item input:checked ~ .accordion-content {
  max-height: 200px;
  opacity: 1;
}
.work .work-list .accordion-item:has(input:checked) {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.work .work-list .accordion-item:first-of-type span {
  padding-right: 23px !important;
}
@media (max-width: 640px) {
  .work .work-list .accordion-item:first-of-type span {
    padding-right: 3px !important;
  }
}
.work .work-image {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1390px) {
  .work .work-image {
    display: none;
  }
}
@media (max-width: 550px) {
  .work .work-image {
    display: block;
    width: 100%;
  }
}
.work .work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who {
  padding: 70px 0;
}
.who .container {
  max-width: 1420px;
  margin: 0 auto;
}
.who .who-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .who .who-wrapper {
    flex-direction: column;
  }
}
.who .who-content {
  width: 650px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 1510px) {
  .who .who-content {
    margin-right: 53px;
  }
}
@media (max-width: 1050px) {
  .who .who-content {
    width: 100%;
  }
}
.who .who-model-wrapper {
  position: relative;
}
@media (max-width: 1050px) {
  .who .who-model-wrapper {
    margin-top: 20px;
  }
}
.who .who-model-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1050px) {
  .who .who-model-wrapper img {
    width: 100%;
  }
}
.who .mini-title {
  line-height: 1.4;
  margin: 20px 0;
  color: #160b00;
}
.who p {
  line-height: 1.5;
  margin: 10px 0;
  color: #160b00;
}
.who button {
  background: #000;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 15px 40px;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}
@media (max-width: 550px) {
  .who button {
    width: 100%;
  }
}
.who button:hover {
  background: #fff;
  color: #000;
  animation: pulse 1s infinite;
}
.services {
  padding: 70px 0;
}
@media (max-width: 1390px) {
  .services {
    padding: 0;
  }
}
.services h1 {
  margin-bottom: 30px;
  margin-left: calc((100% - 1420px) / 2);
  color: #160b00;
}
@media (max-width: 1510px) {
  .services h1 {
    margin-left: calc((100% - 1310px) / 2);
  }
}
@media (max-width: 1390px) {
  .services h1 {
    margin-left: calc((100% - 92%) / 2);
  }
}
.services .services-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .services .services-grid {
    gap: 5px;
  }
}
@media (max-width: 550px) {
  .services .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .service-item {
  position: relative;
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  overflow: hidden;
}
.services .service-item .service-image {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
@media (max-width: 550px) {
  .services .service-item .service-image {
    display: block !important;
  }
}
.services .service-item .service-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
  z-index: 2;
}
.services .service-item .mini-title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair", sans-serif;
  font-size: clamp(22px, calc(22px + (32 - 22) * ((100vw - 320px) / (1310 - 320))), 32px);
  color: #fff;
  text-align: center;
  z-index: 3;
}
.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}
.advantages {
  padding: 70px 0;
}
.advantages .container {
  max-width: 1420px;
  margin: 0 auto;
}
.advantages .advantages-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1390px) {
  .advantages .advantages-wrapper {
    flex-direction: column;
  }
}
.advantages .advantages-grid-wrapper {
  flex: 1;
}
.advantages .advantages-grid-wrapper h1 {
  position: relative;
  bottom: 15px;
  font-size: clamp(42px, calc(42px + (89 - 42) * ((100vw - 320px) / (1310 - 320))), 89px);
}
.advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 550px) {
  .advantages .advantages-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advantages .advantages-grid .advantage-item {
  box-sizing: border-box;
  padding: 25px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
}
.advantages .advantages-grid .advantage-item:hover {
  border-top-color: #160b00 !important;
  border-right-color: #160b00 !important;
  border-bottom-color: #160b00 !important;
  border-left-color: #160b00 !important;
}
.advantages .advantages-grid .advantage-item:nth-child(-n+2) {
  border-top-color: #fff;
  border-left-color: #e8e7e6;
  border-bottom-color: #e8e7e6;
}
.advantages .advantages-grid .advantage-item:nth-child(n+5) {
  border-bottom-color: #fff;
  border-left-color: #e8e7e6;
}
.advantages .advantages-grid .advantage-item:nth-child(2n+1) {
  border-left-color: #fff;
}
.advantages .advantages-grid .advantage-item:nth-child(2n) {
  border-right-color: #fff;
  border-left-color: #e8e7e6;
}
.advantages .advantages-grid .advantage-item:nth-child(3), .advantages .advantages-grid .advantage-item:nth-child(4) {
  border-bottom-color: #e8e7e6;
}
@media (max-width: 550px) {
  .advantages .advantages-grid .advantage-item:nth-child(4), .advantages .advantages-grid .advantage-item:nth-child(2) {
    border-left-color: #fff;
  }
  .advantages .advantages-grid .advantage-item:nth-child(6) {
    border-top-color: #e8e7e6;
    border-left-color: #fff;
  }
}
.advantages .advantages-grid .advantage-item .mini-title {
  font-family: "Playfair", sans-serif;
  font-size: clamp(24px, calc(24px + (32 - 24) * ((100vw - 320px) / (1310 - 320))), 32px);
  margin-bottom: 10px;
}
html[lang="ru-RU"] .advantages .advantages-grid .advantage-item .mini-title {
  font-size: clamp(24px, calc(24px + (28 - 24) * ((100vw - 320px) / (1310 - 320))), 28px);
}
.advantages .advantages-grid .advantage-item .description {
  line-height: 1.5;
}
.advantages .advantages-image {
  width: 50%;
}
@media (max-width: 1390px) {
  .advantages .advantages-image {
    display: none;
    align-self: center;
  }
}
.advantages .advantages-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.projects {
  padding: 70px 0;
}
@media (max-width: 1390px) {
  .projects {
    padding: 0;
  }
}
.projects .container {
  max-width: 1420px;
  margin: 0 auto;
}
.projects h1 {
  margin-bottom: 30px;
}
.faq {
  padding: 70px 0 30px;
}
@media (max-width: 1050px) {
  .faq {
    padding: 70px 0 0;
  }
}
.faq .container {
  max-width: 1420px;
  margin: 0 auto;
}
.faq h1 {
  margin-bottom: 30px;
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq .faq-list .faq-item {
  position: relative;
  border: 1px solid rgba(22, 11, 0, 0.1);
  border-right-color: #fff;
  border-left-color: #fff;
}
.faq .faq-list .faq-item:not(:last-child) {
  border-bottom-color: transparent;
}
.faq .faq-list .faq-item .faq-label {
  display: block;
  padding: 30px 0;
  cursor: pointer;
  color: #160b00;
  position: relative;
}
.faq .faq-list .faq-item .faq-label input {
  display: none;
}
.faq .faq-list .faq-item .faq-label .faq-title {
  font-size: clamp(16px, calc(16px + (22 - 16) * ((100vw - 320px) / (1310 - 320))), 22px);
  position: relative;
  padding-right: 40px;
}
.faq .faq-list .faq-item .faq-label .faq-title::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(22, 11, 0, 0.25);
  border-bottom: 2px solid rgba(22, 11, 0, 0.25);
}
.faq .faq-list .faq-item .faq-label .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.faq .faq-list .faq-item .faq-label .faq-content p {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 320px) / (1310 - 320))), 18px);
  line-height: 1.5;
  margin: 10px 0 0;
  color: rgba(22, 11, 0, 0.75);
}
.faq .faq-list .faq-item .faq-label input:checked ~ .faq-content {
  max-height: 200px;
  opacity: 1;
}
.faq .faq-list .faq-item .faq-label input:checked ~ .faq-title::after {
  transform: translateY(-50%) rotate(225deg);
  border-right-color: #160b00;
  border-bottom-color: #160b00;
}
.faq .faq-list .faq-item:has(.faq-label input:checked) {
  border-top-color: #160b00;
  border-bottom-color: #160b00;
}
.contacts {
  width: 100%;
  background-color: #160b00;
  padding: 60px 0;
  margin-top: 70px;
}
@media (max-width: 1390px) {
  .contacts {
    margin-top: 70px;
  }
}
.contacts .container {
  max-width: 1420px;
  margin: 0 auto;
}
.contacts .contacts-wrapper {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 990px) {
  .contacts .contacts-wrapper {
    flex-direction: column-reverse;
  }
}
.contacts .contacts-content {
  width: 380px;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 990px) {
  .contacts .contacts-content {
    padding-top: 50px;
  }
}
@media (max-width: 550px) {
  .contacts .contacts-content {
    width: 100%;
    min-width: 100%;
  }
}
.contacts .contacts-content h1 {
  font-family: "Playfair", sans-serif;
  font-size: clamp(48px, calc(48px + (72 - 48) * ((100vw - 320px) / (1310 - 320))), 72px);
  color: #fff;
}
@media (max-width: 990px) {
  .contacts .contacts-content h1 {
    padding-top: 50px;
  }
}
.contacts .contacts-content .contacts-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts .contacts-content .contacts-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts .contacts-content .contacts-info .info-item img {
  width: 25px;
  height: auto;
}
.contacts .contacts-content .contacts-info .info-item span {
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
  color: #fff;
  position: relative;
  display: inline-block;
}
.contacts .contacts-content .contacts-info .info-item span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  width: 0;
}
.contacts .contacts-content .contacts-info .info-item span:hover::after {
  width: 100%;
}
.contacts .contacts-content .social-media {
  display: flex;
  gap: 10px;
}
.contacts .contacts-content .social-media .icon-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 8px;
}
.contacts .contacts-content .social-media .icon-wrap:hover {
  border-color: white;
}
.contacts .contacts-content .social-media .icon-wrap img {
  display: block;
  width: 50px;
}
@media (max-width: 990px) {
  .contacts .contacts-content .social-media .icon-wrap img {
    width: 40px;
  }
}
.contacts .contact-form {
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 990px) {
  .contacts .contact-form {
    padding-left: 0;
    border-left: none;
  }
}
.contacts .contact-form h1 {
  font-size: clamp(48px, calc(48px + (72 - 48) * ((100vw - 320px) / (1310 - 320))), 72px);
  color: #fff;
}
.contacts .contact-form h1 span {
  font-family: "Playfair-Italic", sans-serif;
  font-size: inherit;
}
.contacts .contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}
.contacts .contact-form .wpcf7-form .form-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 1050px) {
  .contacts .contact-form .wpcf7-form .form-row {
    flex-direction: column;
  }
}
.contacts .contact-form .wpcf7-form .form-row p {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contacts .contact-form .wpcf7-form .form-row p input.wpcf7-form-control {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
}
.contacts .contact-form .wpcf7-form .form-row p input.wpcf7-form-control:focus {
  outline: none;
  border-bottom: 1px solid #fff;
}
.contacts .contact-form .wpcf7-form .form-row p input.wpcf7-form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  resize: vertical;
  min-height: 95px;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-bottom: 1px solid #fff;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  margin-top: 30px;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
  margin-right: 7px;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked::after {
  opacity: 1;
}
.contacts .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1310 - 320))), 14px);
  color: #fff;
  cursor: pointer;
  position: relative;
  bottom: 2px;
  flex: 1;
  display: block;
}
.contacts .contact-form .wpcf7-form .wpcf7-submit {
  margin-top: 30px;
  padding: 15px 50px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
}
@media (max-width: 550px) {
  .contacts .contact-form .wpcf7-form .wpcf7-submit {
    width: 100%;
  }
}
.contacts .contact-form .wpcf7-form .wpcf7-submit:hover {
  background: #fff;
  color: #000;
}
.footer {
  background: #160b00;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .container {
  max-width: 1420px;
  margin: 0 auto;
}
.footer .footer-menu {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
@media (max-width: 1510px) {
  .footer .footer-menu {
    display: none;
  }
}
.footer .footer-menu .logo img {
  display: block;
  width: 150px;
  height: 50px;
}
.footer .footer-menu .footer-menu-all {
  display: flex;
  flex-direction: row;
}
.footer .footer-menu .footer-menu-all ul {
  display: flex;
  gap: 50px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-menu .footer-menu-all ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 5px 0;
  overflow: hidden;
  font-weight: 600;
}
.footer .footer-menu .footer-menu-all ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  width: 0;
}
.footer .footer-menu .footer-menu-all ul li a:hover::after {
  width: 100%;
}
.footer .footer-content ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 20px 0;
}
@media (max-width: 990px) {
  .footer .footer-content ul {
    flex-direction: column;
  }
}
@media (max-width: 990px) {
  .footer .footer-content ul li {
    text-align: center;
    margin: 5px 0;
  }
}
.footer .footer-content ul li a {
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1310 - 320))), 14px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.footer .footer-content ul li:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: clamp(12px, calc(12px + (14 - 12) * ((100vw - 320px) / (1310 - 320))), 14px);
}
.footer .footer-content ul li:last-child a {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.75);
}
.footer .footer-content ul li:last-child span {
  font-size: inherit;
  color: red;
}
.button-container {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  width: 90px;
}
@media (max-width: 1390px) {
  .button-container {
    right: 20px;
    width: 64px;
  }
}
.social-top-button {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.social-top-button img {
  object-fit: contain;
  width: 90px;
}
@media (max-width: 1390px) {
  .social-top-button img {
    width: 64px;
  }
}
.social-top-button.visible {
  opacity: 1;
  pointer-events: auto;
}
.social-capsule {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  background: #e8e7e6;
}
.social-capsule .capsule-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.social-capsule .capsule-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.social-capsule.visible {
  opacity: 1;
  pointer-events: auto;
}
.up-button {
  position: fixed;
  right: 30px;
  bottom: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  width: 90px;
}
@media (max-width: 1390px) {
  .up-button {
    right: 20px;
    width: 64px;
  }
}
.up-button img {
  object-fit: contain;
}
@media (max-width: 1390px) {
  .up-button img {
    width: 50px;
  }
}
.up-button.visible {
  opacity: 1;
  pointer-events: auto;
}
.error {
  padding: 50px 0 70px;
}
.error .container {
  width: 100%;
  max-width: 1420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}
.error .error-tools {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  gap: 8px;
}
@media (max-width: 550px) {
  .error .error-tools br {
    display: none;
  }
}
.error .error-tools img {
  max-width: 544px;
  margin: 8px 0;
}
@media (max-width: 990px) {
  .error .error-tools img {
    max-width: 100%;
  }
}
.error .error-tools .mini-title {
  font-family: "Playfair", sans-serif;
  font-weight: 500;
  font-size: clamp(32px, calc(32px + (48 - 32) * ((100vw - 320px) / (1310 - 320))), 48px);
  line-height: 62px;
}
.error .error-tools .description {
  line-height: 25px;
  color: rgba(22, 11, 0, 0.75);
}
.error .error-tools .description__black {
  background: #160b00;
  color: #fff;
  padding: 3px 7px;
}
.error .error-tools .description__if {
  color: #160b00;
}
.error .error-tools .try span {
  color: rgba(22, 11, 0, 0.75);
  line-height: 28px;
  font-size: clamp(14px, calc(14px + (15 - 14) * ((100vw - 320px) / (1310 - 320))), 15px);
}
.error .error-tools a {
  color: #160b00;
  background: #fff;
  border: 1px solid #160b00;
  margin-top: 20px;
}
.error .error-tools a:hover {
  background: #160b00;
  color: #fff;
}
@media (max-width: 1390px) {
  .error .error-tools a {
    font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
  }
}
@media (max-width: 450px) {
  .error .error-tools a {
    width: 100%;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
}
.cookies {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1320px;
  background: #fff;
  z-index: 9999;
  padding: 50px;
  justify-content: space-between;
}
@media (max-width: 1510px) {
  .cookies {
    width: 80%;
    bottom: 0;
  }
}
@media (max-width: 1290px) {
  .cookies {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 15px;
  }
}
.cookies .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 35px;
  height: 35px;
  background: #160b00;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.cookies .close-btn::before, .cookies .close-btn::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1.5px;
  width: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.cookies .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cookies .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cookies .description {
  max-width: 690px;
}
@media (max-width: 1510px) {
  .cookies .description {
    margin: 0 30px;
  }
}
.cookies .buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 1510px) {
  .cookies .buttons {
    margin: 0 30px;
  }
}
.cookies .buttons button {
  border: 1px solid #160b00;
  padding: 0;
  width: 200px;
  height: 60px;
  background: #fff;
  color: #160b00;
}
@media (max-width: 550px) {
  .cookies .buttons button {
    width: 150px;
  }
}
.cookies .buttons button:first-child {
  background: #160b00;
  color: #fff;
}
.cookies .buttons button:hover {
  background: #160b00;
  color: #fff;
}
.request {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1320px;
  background: #fff;
  z-index: 9999;
  justify-content: space-between;
}
@media (max-width: 1510px) {
  .request {
    width: 95%;
  }
}
@media (max-width: 1050px) {
  .request {
    width: 93%;
  }
}
.request .request-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 35px;
  height: 35px;
  background: #160b00;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.request .request-close-btn::before, .request .request-close-btn::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1.5px;
  width: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.request .request-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.request .request-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.request .request-photo {
  flex: 0 0 660px;
}
@media (max-width: 1510px) {
  .request .request-photo {
    flex: 0 0 620px;
  }
}
@media (max-height: 740px) {
  .request .request-photo {
    flex: 0 0 600px;
  }
}
@media (max-width: 1390px) {
  .request .request-photo {
    display: none;
  }
}
.request .request-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.request .request-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 50px 30px;
  justify-content: center;
}
.request .request-form br {
  display: none;
}
@media (max-width: 1390px) {
  .request .request-form {
    padding: 30px 50px 30px;
  }
}
@media (max-width: 550px) {
  .request .request-form {
    padding: 20px 20px 20px;
  }
}
@media (max-height: 470px) {
  .request .request-form {
    padding: 15px 20px 20px !important;
  }
}
.request .request-form h1 {
  font-size: clamp(35px, calc(35px + (62 - 35) * ((100vw - 320px) / (1310 - 320))), 62px);
  color: #160b00;
  padding-bottom: 10px;
}
.request .request-form .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.request .request-form .wpcf7-form p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.request .request-form .wpcf7-form .wpcf7-form-control {
  width: 100%;
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-text, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-tel, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-email {
  flex: 1;
  border: none;
  border-bottom: 1px solid #e8e7e6;
  background: transparent;
  color: #160b00;
  padding: 14px 0 10px;
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-text:focus, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-tel:focus, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-email:focus {
  outline: none;
  border-bottom: 1px solid #160b00;
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-text::placeholder, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-tel::placeholder, .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-email::placeholder {
  color: #160b00;
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  border: none;
  border-bottom: 1px solid #e8e7e6;
  background: transparent;
  color: #160b00;
  resize: vertical;
  height: 100px !important;
  padding: 12px 0;
}
@media (max-height: 650px) {
  .request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea {
    height: 60px !important;
  }
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-bottom: 1px solid #160b00;
}
.request .request-form .wpcf7-form .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #160b00;
}
.request .request-form .wpcf7-form .wpcf7-submit {
  padding: 15px 50px;
  margin-top: 17px;
  border: 1px solid #160b00;
  width: 100%;
  background: transparent;
  color: #160b00;
  text-transform: uppercase;
  cursor: pointer;
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 320px) / (1310 - 320))), 16px);
}
.request .request-form .wpcf7-form .wpcf7-submit:hover {
  background: #160b00;
  color: #fff;
}
.success {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 60px;
}
@media (max-width: 1050px) {
  .success {
    width: 60%;
    padding: 40px 40px;
  }
}
.success .success-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 35px;
  height: 35px;
  background: #160b00;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.success .success-close-btn::before, .success .success-close-btn::after {
  content: "";
  position: absolute;
  background: #fff;
  height: 1.5px;
  width: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.success .success-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.success .success-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.success .success-message {
  font-size: clamp(16px, calc(16px + (22 - 16) * ((100vw - 320px) / (1310 - 320))), 22px);
  color: #160b00;
  line-height: 1.4;
}
.video-popup {
  display: none;
  position: fixed;
  width: 920px;
  aspect-ratio: 1.7777777778;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
@media (max-height: 620px) {
  .video-popup {
    width: 820px;
  }
}
@media (max-height: 520px) {
  .video-popup {
    width: 720px;
  }
}
.video-popup .video-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 35px;
  height: 35px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}
.video-popup .video-close-btn::before, .video-popup .video-close-btn::after {
  content: "";
  position: absolute;
  background: #000;
  height: 1.5px;
  width: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.video-popup .video-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-popup .video-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.video-popup .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-popup .video-content, .video-popup .youtube-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  cursor: pointer;
  border: none;
}
.video-popup .video-play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .video-popup {
    width: 92%;
    height: auto;
    max-height: 80vh;
  }
}
.breadcrumbs {
  position: relative;
  display: none;
  justify-content: center;
  width: 100%;
  margin-top: 140px;
  height: 1vh;
  z-index: 2;
}
body:not(.main-page) .breadcrumbs {
  display: flex;
}
.breadcrumbs .breadcrumbs-content a {
  color: #5d5b5b;
}
.policy {
  padding: 50px 0 70px;
}
.policy .container {
  width: 100%;
  max-width: 1420px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 auto;
  gap: 15px;
}
.policy .container h1 {
  font-size: clamp(28px, calc(28px + (89 - 28) * ((100vw - 320px) / (1310 - 320))), 89px);
}
.policy .container ul {
  list-style-position: outside;
  padding-left: 1.2em;
  margin-left: 0;
}
.policy .container ul li {
  padding-left: 0;
  margin-left: 0;
}
.post {
  padding: 50px 0 70px;
}
.post .container {
  width: 100%;
  max-width: 1420px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 auto;
  gap: 15px;
}
.post .container .post-thumbnail {
  width: 100%;
  /*max-width: 800px;*/
  margin: clamp(15px, calc(15px + (30 - 15) * ((100vw - 320px) / (1310 - 320))), 30px) 0;
}
.post .container .post-thumbnail img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}
@media (max-width: 890px) {
  .post .container .post-thumbnail img {
    height: auto;
  }
}
.post .container h1 {
  font-size: clamp(28px, calc(28px + (64 - 28) * ((100vw - 320px) / (1310 - 320))), 64px);
}
.post .container h2 {
  font-size: clamp(28px, calc(28px + (32 - 28) * ((100vw - 320px) / (1310 - 320))), 32px);
}
.post .container ul {
  list-style-position: outside;
  padding-left: 1.2em;
  margin-left: 0;
}
.post .container ul li {
  padding-left: 0;
  margin-left: 0;
}
.post .container .description {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* правки Кати */
.playfair-display {
  font-family: "Playfair Display", serif;
  font-style: normal;
}
h1 {
  font-size: clamp(48px, calc(48px + (80 - 48) * ((100vw - 320px) / (1310 - 320))), 80px);
}
.banner .banner-tools {
  max-width: 1045px;
}
@media (max-width: 1400px) {
  .banner .container {
    top: 58% !important;
  }
  .work .work-content {
    max-height: max-content;
  }
}
.about-model-wrapper .play-icon:hover {
  transform: translate(-50%, -50%) scale(1.3) !important;
}
.header .container .burger-btn.open {
  position: fixed;
  right: 20px;
}
.about-ceo .about-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.about-ceo .about-wrapper img {
  display: block;
  max-width: 330px;
  height: 348px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-direction: column;
  }
  .service-item {
    order: var(--mobile-order, 0);
  }
}
@media (max-width: 640px) {
  .work .accordion-item label span {
    padding-right: 0 !important;
  }
  .work .accordion-item label {
    display: flex;
    gap: 33px;
  }
}
.about-us .play-icon {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: white;
}
.about-us .play-icon .play-icon-black {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background-color: #160b00;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(10px, 10px);
}
.about-us .play-icon .play-icon-black:hover {
  border: 1px solid #160b00;
  background-color: white;
}
.about-us .play-icon .play-icon-black:hover .play-icon-triangle {
  border-color: transparent transparent transparent #160b00;
}
.about-us .play-icon .play-icon-black .play-icon-triangle {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
  transform: rotate(0deg);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(35px, 28px);
  border-radius: 2px;
}
@media (max-width: 1050px) {
  .about-ceo .about-wrapper {
    flex-direction: column;
  }
  .about-ceo .about-wrapper .about-content-ceo {
    order: 1;
  }
  .about-ceo .about-wrapper img {
    order: 2;
  }
}
@media (max-width: 1400px) {
  .banner {
    height: 103svh;
  }
}
